diff -Nru libreoffice-5.0.1~rc2/avmedia/source/framework/mediaplayer.cxx libreoffice-5.0.2~rc2/avmedia/source/framework/mediaplayer.cxx --- libreoffice-5.0.1~rc2/avmedia/source/framework/mediaplayer.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/avmedia/source/framework/mediaplayer.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -101,12 +101,16 @@ { ::avmedia::MediaItem aRestoreItem; - mpMediaWindow->updateMediaItem( aRestoreItem ); + if (mpMediaWindow) + mpMediaWindow->updateMediaItem( aRestoreItem ); delete mpMediaWindow; mpMediaWindow = NULL; SfxDockingWindow::ToggleFloatingMode(); + if (isDisposed()) + return; + mpMediaWindow = new MediaWindow( this, true ); mpMediaWindow->setPosSize( Rectangle( Point(), GetOutputSizePixel() ) ); diff -Nru libreoffice-5.0.1~rc2/avmedia/source/opengl/oglplayer.cxx libreoffice-5.0.2~rc2/avmedia/source/opengl/oglplayer.cxx --- libreoffice-5.0.1~rc2/avmedia/source/opengl/oglplayer.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/avmedia/source/opengl/oglplayer.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -28,6 +28,7 @@ OGLPlayer::OGLPlayer() : Player_BASE(m_aMutex) , m_pHandle(NULL) + , m_xContext(OpenGLContext::Create()) , m_pOGLWindow(NULL) , m_bIsRendering(false) { @@ -38,8 +39,9 @@ osl::MutexGuard aGuard(m_aMutex); if( m_pHandle ) { - m_aContext.makeCurrent(); + m_xContext->makeCurrent(); gltf_renderer_release(m_pHandle); + m_xContext->dispose(); } releaseInputFiles(); } @@ -121,8 +123,10 @@ } // Set timer - m_aTimer.SetTimeout(1); + m_aTimer.SetTimeout(8); // is 125fps enough for anyone ? + m_aTimer.SetPriority(SchedulerPriority::LOW); m_aTimer.SetTimeoutHdl(LINK(this,OGLPlayer,TimerHandler)); + return true; } @@ -256,13 +260,13 @@ } assert(pChildWindow->GetParent()); - if( !m_aContext.init(pChildWindow) ) + if( !m_xContext->init(pChildWindow) ) { SAL_WARN("avmedia.opengl", "Context initialization failed"); return uno::Reference< media::XPlayerWindow >(); } - if( !m_aContext.supportMultiSampling() ) + if( !m_xContext->supportMultiSampling() ) { SAL_WARN("avmedia.opengl", "Context does not support multisampling!"); return uno::Reference< media::XPlayerWindow >(); @@ -275,7 +279,7 @@ } Size aSize = pChildWindow->GetSizePixel(); - m_aContext.setWinSize(aSize); + m_xContext->setWinSize(aSize); m_pHandle->viewport.x = 0; m_pHandle->viewport.y = 0; m_pHandle->viewport.width = aSize.Width(); @@ -292,7 +296,7 @@ // The background color is white by default, but we need to separate the // OpenGL window from the main window so set background color to grey glClearColor(0.5f, 0.5f, 0.5f, 0.5f); - m_pOGLWindow = new OGLWindow(*m_pHandle, m_aContext, *pChildWindow->GetParent()); + m_pOGLWindow = new OGLWindow(*m_pHandle, m_xContext, *pChildWindow->GetParent()); return uno::Reference< media::XPlayerWindow >( m_pOGLWindow ); } @@ -302,13 +306,13 @@ osl::MutexGuard aGuard(m_aMutex); assert(m_pHandle); - if( !m_aContext.init() ) + if( !m_xContext->init() ) { SAL_WARN("avmedia.opengl", "Offscreen context initialization failed"); return uno::Reference< media::XFrameGrabber >(); } - if( !m_aContext.supportMultiSampling() ) + if( !m_xContext->supportMultiSampling() ) { SAL_WARN("avmedia.opengl", "Context does not support multisampling!"); return uno::Reference< media::XFrameGrabber >(); diff -Nru libreoffice-5.0.1~rc2/avmedia/source/opengl/oglplayer.hxx libreoffice-5.0.2~rc2/avmedia/source/opengl/oglplayer.hxx --- libreoffice-5.0.1~rc2/avmedia/source/opengl/oglplayer.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/avmedia/source/opengl/oglplayer.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -69,7 +69,7 @@ libgltf::glTFHandle* m_pHandle; std::vector m_vInputFiles; - OpenGLContext m_aContext; + rtl::Reference m_xContext; AutoTimer m_aTimer; OGLWindow* m_pOGLWindow; bool m_bIsRendering; diff -Nru libreoffice-5.0.1~rc2/avmedia/source/opengl/oglwindow.cxx libreoffice-5.0.2~rc2/avmedia/source/opengl/oglwindow.cxx --- libreoffice-5.0.1~rc2/avmedia/source/opengl/oglwindow.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/avmedia/source/opengl/oglwindow.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -15,9 +15,9 @@ namespace avmedia { namespace ogl { -OGLWindow::OGLWindow( glTFHandle& rHandle, OpenGLContext& rContext, vcl::Window& rEventHandlerParent ) +OGLWindow::OGLWindow( glTFHandle& rHandle, const rtl::Reference &rContext, vcl::Window& rEventHandlerParent ) : m_rHandle( rHandle ) - , m_rContext( rContext ) + , m_xContext( rContext ) , m_rEventHandler( rEventHandlerParent ) , m_bVisible ( false ) , m_aLastMousePos(Point(0,0)) @@ -32,7 +32,7 @@ void SAL_CALL OGLWindow::update() throw (css::uno::RuntimeException, std::exception) { - m_rContext.makeCurrent(); + m_xContext->makeCurrent(); int nRet = gltf_prepare_renderer(&m_rHandle); if( nRet != 0 ) { @@ -41,7 +41,7 @@ } gltf_renderer(&m_rHandle); gltf_complete_renderer(&m_rHandle); - m_rContext.swapBuffers(); + m_xContext->swapBuffers(); } sal_Bool SAL_CALL OGLWindow::setZoomLevel( css::media::ZoomLevel /*eZoomLevel*/ ) throw (css::uno::RuntimeException, std::exception) @@ -98,7 +98,7 @@ if( m_rHandle.viewport.x != nX || m_rHandle.viewport.x != nY || m_rHandle.viewport.width != nWidth || m_rHandle.viewport.height != nHeight ) { - m_rContext.setWinSize(Size(nWidth,nHeight)); + m_xContext->setWinSize(Size(nWidth,nHeight)); m_rHandle.viewport.x = nX; m_rHandle.viewport.y = nY; m_rHandle.viewport.width = nWidth; diff -Nru libreoffice-5.0.1~rc2/avmedia/source/opengl/oglwindow.hxx libreoffice-5.0.2~rc2/avmedia/source/opengl/oglwindow.hxx --- libreoffice-5.0.1~rc2/avmedia/source/opengl/oglwindow.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/avmedia/source/opengl/oglwindow.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -28,7 +28,7 @@ com::sun::star::lang::XServiceInfo > { public: - OGLWindow( libgltf::glTFHandle& rHandle, OpenGLContext& rContext, vcl::Window& rEventHandlerParent ); + OGLWindow( libgltf::glTFHandle& rHandle, const rtl::Reference & rContext, vcl::Window& rEventHandlerParent ); virtual ~OGLWindow(); virtual void SAL_CALL update() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -67,7 +67,7 @@ DECL_LINK( CameraHandler, VclWindowEvent* ); libgltf::glTFHandle& m_rHandle; - OpenGLContext& m_rContext; + rtl::Reference m_xContext; vcl::Window& m_rEventHandler; bool m_bVisible; diff -Nru libreoffice-5.0.1~rc2/basctl/source/dlged/managelang.cxx libreoffice-5.0.2~rc2/basctl/source/dlged/managelang.cxx --- libreoffice-5.0.1~rc2/basctl/source/dlged/managelang.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/basctl/source/dlged/managelang.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -149,12 +149,19 @@ ScopedVclPtrInstance< SetDefaultLanguageDialog > aDlg( this, m_xLocalizationMgr ); if ( RET_OK == aDlg->Execute() ) { - // add new locales - Sequence< Locale > aLocaleSeq = aDlg->GetLocales(); - m_xLocalizationMgr->handleAddLocales( aLocaleSeq ); - // update listbox - ClearLanguageBox(); - FillLanguageBox(); + if (!m_xLocalizationMgr->isLibraryLocalized()) + { + SAL_WARN("basctl.basicide", "Adding langs to non-localized library tdf#93077"); + } + else + { + // add new locales + Sequence< Locale > aLocaleSeq = aDlg->GetLocales(); + m_xLocalizationMgr->handleAddLocales( aLocaleSeq ); + // update listbox + ClearLanguageBox(); + FillLanguageBox(); + } if (SfxBindings* pBindings = GetBindingsPtr()) pBindings->Invalidate( SID_BASICIDE_CURRENT_LANG ); @@ -277,16 +284,17 @@ { // fill list with all languages m_pLanguageLB->SetLanguageList( SvxLanguageListFlags::ALL, false ); - // remove the already localized languages - Sequence< Locale > aLocaleSeq = m_xLocalizationMgr->getStringResourceManager()->getLocales(); - const Locale* pLocale = aLocaleSeq.getConstArray(); - sal_Int32 i, nCount = aLocaleSeq.getLength(); - for ( i = 0; i < nCount; ++i ) - m_pLanguageLB->RemoveLanguage( LanguageTag::convertToLanguageType( pLocale[i] ) ); - // fill checklistbox if not in default mode if ( m_xLocalizationMgr->isLibraryLocalized() ) { + // remove the already localized languages + Sequence< Locale > aLocaleSeq = m_xLocalizationMgr->getStringResourceManager()->getLocales(); + const Locale* pLocale = aLocaleSeq.getConstArray(); + sal_Int32 i, nCount = aLocaleSeq.getLength(); + for ( i = 0; i < nCount; ++i ) + m_pLanguageLB->RemoveLanguage( LanguageTag::convertToLanguageType( pLocale[i] ) ); + + // fill checklistbox if not in default mode sal_uInt16 j, nCount_ = m_pLanguageLB->GetEntryCount(); for ( j = 0; j < nCount_; ++j ) { diff -Nru libreoffice-5.0.1~rc2/basic/source/classes/image.cxx libreoffice-5.0.2~rc2/basic/source/classes/image.cxx --- libreoffice-5.0.1~rc2/basic/source/classes/image.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/basic/source/classes/image.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -240,6 +240,99 @@ } break; } + case B_USERTYPES: + { + //assuming an empty string with just the lead 32bit/16bit len indicator + const size_t nMinStringSize = (eCharSet == RTL_TEXTENCODING_UNICODE) ? 4 : 2; + const size_t nMinRecordSize = nMinStringSize + sizeof(sal_Int16); + const size_t nMaxRecords = r.remainingSize() / nMinRecordSize; + if (nCount > nMaxRecords) + { + SAL_WARN("basic", "Parsing error: " << nMaxRecords << + " max possible entries, but " << nCount << " claimed, truncating"); + nCount = nMaxRecords; + } + + // User defined types + for (sal_uInt16 i = 0; i < nCount; i++) + { + OUString aTypeName = r.ReadUniOrByteString(eCharSet); + + sal_Int16 nTypeMembers; + r.ReadInt16(nTypeMembers); + + SbxObject *pType = new SbxObject(aTypeName); + SbxArray *pTypeMembers = pType->GetProperties(); + + for (sal_uInt16 j = 0; j < nTypeMembers; j++) + { + OUString aMemberName = r.ReadUniOrByteString(eCharSet); + + sal_Int16 aIntMemberType; + r.ReadInt16(aIntMemberType); + SbxDataType aMemberType = static_cast< SbxDataType > ( aIntMemberType ); + + SbxProperty *pTypeElem = new SbxProperty( aMemberName, aMemberType ); + + sal_uInt32 aIntFlag; + r.ReadUInt32(aIntFlag); + SbxFlagBits nElemFlags = static_cast< SbxFlagBits > ( aIntFlag ); + + pTypeElem->SetFlags(nElemFlags); + + sal_Int16 hasObject; + r.ReadInt16(hasObject); + + if (hasObject == 1) + { + if(aMemberType == SbxOBJECT) + { + // nested user defined types + // declared before use, so it is ok to reference it by name on load + OUString aNestedTypeName = r.ReadUniOrByteString(eCharSet); + SbxObject* pNestedTypeObj = static_cast< SbxObject* >( rTypes->Find( aNestedTypeName, SbxCLASS_OBJECT ) ); + if (pNestedTypeObj) + { + SbxObject* pCloneObj = cloneTypeObjectImpl( *pNestedTypeObj ); + pTypeElem->PutObject( pCloneObj ); + } + } + else + { + // an array + SbxDimArray* pArray = new SbxDimArray(); + + sal_Int16 isFixedSize; + r.ReadInt16(isFixedSize); + if (isFixedSize == 1) + pArray->setHasFixedSize( true ); + + sal_Int32 nDims; + r.ReadInt32(nDims); + for (sal_Int32 d = 0; d < nDims; d++) + { + sal_Int32 lBound; + sal_Int32 uBound; + r.ReadInt32(lBound).ReadInt32(uBound); + pArray->unoAddDim32(lBound, uBound); + } + + pTypeElem->PutObject( pArray ); + } + } + + pTypeMembers->Insert( pTypeElem, pTypeMembers->Count() ); + + } + + pType->Remove( OUString("Name"), SbxCLASS_DONTCARE ); + pType->Remove( OUString("Parent"), SbxCLASS_DONTCARE ); + + AddType(pType); + } + + break; + } case B_MODEND: goto done; default: @@ -360,6 +453,84 @@ pByteStrings.reset(); SbiCloseRecord( r, nPos ); } + // User defined types + if (rTypes) + { + sal_uInt16 nTypes = rTypes->Count(); + if (nTypes > 0 ) + { + nPos = SbiOpenRecord( r, B_USERTYPES, nTypes ); + + for (sal_uInt16 i = 0; i < nTypes; i++) + { + SbxObject* pType = static_cast< SbxObject* > ( rTypes->Get(i) ); + OUString aTypeName = pType->GetClassName(); + + r.WriteUniOrByteString( aTypeName, eCharSet ); + + SbxArray *pTypeMembers = pType->GetProperties(); + sal_uInt16 nTypeMembers = pTypeMembers->Count(); + + r.WriteInt16(nTypeMembers); + + for (sal_uInt16 j = 0; j < nTypeMembers; j++) + { + + SbxProperty* pTypeElem = static_cast< SbxProperty* > ( pTypeMembers->Get(j) ); + + OUString aElemName = pTypeElem->GetName(); + r.WriteUniOrByteString( aElemName, eCharSet ); + + SbxDataType dataType = pTypeElem->GetType(); + r.WriteInt16(dataType); + + SbxFlagBits nElemFlags = pTypeElem->GetFlags(); + r.WriteUInt32(static_cast< sal_uInt32 > (nElemFlags) ); + + SbxBase* pElemObject = pTypeElem->GetObject(); + + if (pElemObject) + { + r.WriteInt16(1); // has elem Object + + if( dataType == SbxOBJECT ) + { + // nested user defined types + // declared before use, so it is ok to reference it by name on load + SbxObject* pNestedType = static_cast< SbxObject* > ( pElemObject ); + r.WriteUniOrByteString( pNestedType->GetClassName(), eCharSet ); + } + else + { + // an array + SbxDimArray* pArray = static_cast< SbxDimArray* > ( pElemObject ); + + bool bFixedSize = pArray->hasFixedSize(); + if (bFixedSize) + r.WriteInt16(1); + else + r.WriteInt16(0); + + sal_Int32 nDims = pArray->GetDims(); + r.WriteInt32(nDims); + + for (sal_Int32 d = 0; d < nDims; d++) + { + sal_Int32 lBound; + sal_Int32 uBound; + pArray->GetDim32(d, lBound, uBound); + r.WriteInt32(lBound).WriteInt32(uBound); + } + } + } + else + r.WriteInt16(0); // no elem Object + + } + } + SbiCloseRecord( r, nPos ); + } + } // Set overall length SbiCloseRecord( r, nStart ); if( !SbiGood( r ) ) diff -Nru libreoffice-5.0.1~rc2/basic/source/classes/sbxmod.cxx libreoffice-5.0.2~rc2/basic/source/classes/sbxmod.cxx --- libreoffice-5.0.1~rc2/basic/source/classes/sbxmod.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/basic/source/classes/sbxmod.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1806,11 +1806,6 @@ } // Store only image, no source -bool SbModule::StoreBinaryData( SvStream& rStrm ) -{ - return StoreBinaryData( rStrm, 0 ); -} - bool SbModule::StoreBinaryData( SvStream& rStrm, sal_uInt16 nVer ) { bool bRet = Compile(); diff -Nru libreoffice-5.0.1~rc2/basic/source/inc/filefmt.hxx libreoffice-5.0.2~rc2/basic/source/inc/filefmt.hxx --- libreoffice-5.0.1~rc2/basic/source/inc/filefmt.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/basic/source/inc/filefmt.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -38,10 +38,13 @@ // Version F: #57844 introduction of SvNumberformat::StringToDouble // Version 10: #29955 generate for-loop-level in Statement-PCodes // Version 11: #29955 force anew compilation because of build-inconsistences +// Version 12: aoo#64377 increase code size that basic can handle +// tdf#75973 support user defined types B_USERTYPES in password protected macros +// #define B_LEGACYVERSION 0x00000011L -#define B_CURVERSION 0x00000012L #define B_EXT_IMG_VERSION 0x00000012L +#define B_CURVERSION 0x00000012L // The file contains either a module- or a library-record. // Those records contain further records. Every record's got @@ -69,6 +72,9 @@ #define B_SBXOBJECTS 0x5853 // SX SBX objects #define B_EXTSOURCE 0x5345 // ES extended source +#define B_USERTYPES 0x4369 // UT user defined types + + // A library record contains only module records // sal_uInt16 identifier BL // sal_uInt32 the record's length @@ -153,6 +159,28 @@ // sal_uInt16 number of objects // .... object data +// user defined types B_USERTYPES : +// sal_uInt16 identifier UT +// sal_uInt32 the record's length +// sal_uInt16 number of types +// Data for every user defined type: +// string instance type name +// sal_Int16 number of type members +// Data for every type member: +// string name +// sal_Int16 type +// sal_uInt32 flags +// sal_Int16 hasObjects (0/1) +// If hasObjects +// If member type is nested type +// string nested type name +// Else (array declaration) +// sal_Int16 isFixedSize (0/1) +// sal_Int32 number of dimensions +// Data for every dimension: +// sal_Int32 lower bound +// sal_Int32 upper bound + #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.0.1~rc2/basic/source/uno/scriptcont.cxx libreoffice-5.0.2~rc2/basic/source/uno/scriptcont.cxx --- libreoffice-5.0.1~rc2/basic/source/uno/scriptcont.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/basic/source/uno/scriptcont.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -18,6 +18,7 @@ */ #include "scriptcont.hxx" +#include #include #include #include @@ -652,7 +653,7 @@ throw uno::RuntimeException(); } SvMemoryStream aMemStream; - /*sal_Bool bStore = */pMod->StoreBinaryData( aMemStream ); + /*sal_Bool bStore = */pMod->StoreBinaryData( aMemStream, B_CURVERSION ); sal_Size nSize = aMemStream.Tell(); Sequence< sal_Int8 > aBinSeq( nSize ); @@ -795,7 +796,7 @@ embed::ElementModes::WRITE | embed::ElementModes::TRUNCATE ); SvMemoryStream aMemStream; - /*sal_Bool bStore = */pMod->StoreBinaryData( aMemStream ); + /*sal_Bool bStore = */pMod->StoreBinaryData( aMemStream, B_CURVERSION ); sal_Size nSize = aMemStream.Tell(); Sequence< sal_Int8 > aBinSeq( nSize ); diff -Nru libreoffice-5.0.1~rc2/bin/run libreoffice-5.0.2~rc2/bin/run --- libreoffice-5.0.1~rc2/bin/run 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/bin/run 2015-09-17 13:33:12.000000000 +0000 @@ -21,7 +21,7 @@ dir=$(realpath "${dir}/..") done - exedir="${dir}"/workdir/LinkTarget/Executable + exedir=$(cygpath -m "${dir}"/workdir/LinkTarget/Executable) export URE_BOOTSTRAP=file:///$(cygpath -m "${dir}")/instdir/program/fundamental.ini export PATH=${PATH:+$PATH:}"${dir}"/instdir/program diff -Nru libreoffice-5.0.1~rc2/canvas/Library_canvasfactory.mk libreoffice-5.0.2~rc2/canvas/Library_canvasfactory.mk --- libreoffice-5.0.1~rc2/canvas/Library_canvasfactory.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/canvas/Library_canvasfactory.mk 2015-09-17 13:33:12.000000000 +0000 @@ -29,6 +29,7 @@ cppu \ cppuhelper \ sal \ + vcl \ $(gb_UWINAPI) \ )) diff -Nru libreoffice-5.0.1~rc2/canvas/source/cairo/cairo_canvas.cxx libreoffice-5.0.2~rc2/canvas/source/cairo/cairo_canvas.cxx --- libreoffice-5.0.1~rc2/canvas/source/cairo/cairo_canvas.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/canvas/source/cairo/cairo_canvas.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -30,6 +30,7 @@ #include #include +#include #include #include @@ -58,6 +59,9 @@ if( maArguments.getLength() == 0 ) return; + // tdf#93870 - force VCL canvas in OpenGL mode for now. + assert( !OpenGLWrapper::isVCLOpenGLEnabled() ); + /* maArguments: 0: ptr to creating instance (Window or VirtualDevice) 1: SystemEnvData as a streamed Any (or empty for VirtualDevice) diff -Nru libreoffice-5.0.1~rc2/canvas/source/directx/dx_canvas.cxx libreoffice-5.0.2~rc2/canvas/source/directx/dx_canvas.cxx --- libreoffice-5.0.1~rc2/canvas/source/directx/dx_canvas.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/canvas/source/directx/dx_canvas.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -37,6 +37,7 @@ #include #include #include +#include #include #include @@ -82,6 +83,9 @@ if( maArguments.getLength() == 0 ) return; + // tdf#93870 - force VCL canvas in OpenGL mode for now. + assert( !OpenGLWrapper::isVCLOpenGLEnabled() ); + VERBOSE_TRACE( "Canvas::initialize called" ); // At index 1, we expect a HWND handle here, containing a diff -Nru libreoffice-5.0.1~rc2/canvas/source/factory/cf_service.cxx libreoffice-5.0.2~rc2/canvas/source/factory/cf_service.cxx --- libreoffice-5.0.1~rc2/canvas/source/factory/cf_service.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/canvas/source/factory/cf_service.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -40,6 +40,7 @@ #include #include #include +#include using namespace ::com::sun::star; @@ -310,6 +311,10 @@ m_bCacheHasForcedLastImpl, OUString("ForceSafeServiceImpl") ); + // tdf#93870 - force VCL canvas in OpenGL mode for now. + if( OpenGLWrapper::isVCLOpenGLEnabled() ) + bForceLastEntry = true; + // use anti-aliasing canvas, if config flag set (or not existing) bool bUseAAEntry(true); checkConfigFlag( bUseAAEntry, diff -Nru libreoffice-5.0.1~rc2/canvas/source/opengl/ogl_spritedevicehelper.cxx libreoffice-5.0.2~rc2/canvas/source/opengl/ogl_spritedevicehelper.cxx --- libreoffice-5.0.1~rc2/canvas/source/opengl/ogl_spritedevicehelper.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/canvas/source/opengl/ogl_spritedevicehelper.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -87,11 +87,12 @@ mnRadialTwoColorGradientProgram(0), mnRadialMultiColorGradientProgram(0), mnRectangularTwoColorGradientProgram(0), - mnRectangularMultiColorGradientProgram(0) + mnRectangularMultiColorGradientProgram(0), + mxContext(OpenGLContext::Create()) {} SpriteDeviceHelper::~SpriteDeviceHelper() - {} + { mxContext->dispose(); } void SpriteDeviceHelper::init( vcl::Window& rWindow, SpriteCanvas& rSpriteCanvas, @@ -104,8 +105,8 @@ VCLUnoHelper::GetInterface(&rWindow), uno::UNO_QUERY_THROW) ); - maContext.requestLegacyContext(); - maContext.init(&rWindow); + mxContext->requestLegacyContext(); + mxContext->init(&rWindow); // init window context initContext(); @@ -127,7 +128,7 @@ mnRectangularTwoColorGradientProgram = OpenGLHelper::LoadShaders("dummyVertexShader", "rectangularTwoColorGradientFragmentShader"); - maContext.makeCurrent(); + mxContext->makeCurrent(); notifySizeUpdate(rViewArea); // TODO(E3): check for GL_ARB_imaging extension @@ -140,7 +141,7 @@ mpDevice = NULL; mpTextureCache.reset(); - if( maContext.isInitialized() ) + if( mxContext->isInitialized() ) { glDeleteProgram( mnRectangularTwoColorGradientProgram ); glDeleteProgram( mnRectangularMultiColorGradientProgram ); @@ -153,11 +154,11 @@ geometry::RealSize2D SpriteDeviceHelper::getPhysicalResolution() { - if( !maContext.isInitialized() ) + if( !mxContext->isInitialized() ) return ::canvas::tools::createInfiniteSize2D(); // we're disposed // Map a one-by-one millimeter box to pixel - SystemChildWindow* pChildWindow = maContext.getChildWindow(); + SystemChildWindow* pChildWindow = mxContext->getChildWindow(); const MapMode aOldMapMode( pChildWindow->GetMapMode() ); pChildWindow->SetMapMode( MapMode(MAP_MM) ); const Size aPixelSize( pChildWindow->LogicToPixel(Size(1,1)) ); @@ -168,11 +169,11 @@ geometry::RealSize2D SpriteDeviceHelper::getPhysicalSize() { - if( !maContext.isInitialized() ) + if( !mxContext->isInitialized() ) return ::canvas::tools::createInfiniteSize2D(); // we're disposed // Map the pixel dimensions of the output window to millimeter - SystemChildWindow* pChildWindow = maContext.getChildWindow(); + SystemChildWindow* pChildWindow = mxContext->getChildWindow(); const MapMode aOldMapMode( pChildWindow->GetMapMode() ); pChildWindow->SetMapMode( MapMode(MAP_MM) ); const Size aLogSize( pChildWindow->PixelToLogic(pChildWindow->GetOutputSizePixel()) ); @@ -273,13 +274,13 @@ bool SpriteDeviceHelper::showBuffer( bool bIsVisible, bool /*bUpdateAll*/ ) { // hidden or disposed? - if( !bIsVisible || !maContext.isInitialized() || !mpSpriteCanvas ) + if( !bIsVisible || !mxContext->isInitialized() || !mpSpriteCanvas ) return false; if( !activateWindowContext() ) return false; - SystemChildWindow* pChildWindow = maContext.getChildWindow(); + SystemChildWindow* pChildWindow = mxContext->getChildWindow(); const ::Size& rOutputSize = pChildWindow->GetSizePixel(); initTransformation(rOutputSize); @@ -329,7 +330,7 @@ unx::glXWaitGL(); XSync( reinterpret_cast(mpDisplay), false ); */ - maContext.swapBuffers(); + mxContext->swapBuffers(); // flush texture cache, such that it does not build up // indefinitely. @@ -353,7 +354,7 @@ uno::Any SpriteDeviceHelper::getDeviceHandle() const { - const SystemChildWindow* pChildWindow = maContext.getChildWindow(); + const SystemChildWindow* pChildWindow = mxContext->getChildWindow(); return uno::makeAny( reinterpret_cast< sal_Int64 >(pChildWindow) ); } @@ -372,9 +373,9 @@ void SpriteDeviceHelper::notifySizeUpdate( const awt::Rectangle& rBounds ) { - if( maContext.isInitialized() ) + if( mxContext->isInitialized() ) { - SystemChildWindow* pChildWindow = maContext.getChildWindow(); + SystemChildWindow* pChildWindow = mxContext->getChildWindow(); pChildWindow->setPosSizePixel( 0,0,rBounds.Width,rBounds.Height); } @@ -509,7 +510,7 @@ bool SpriteDeviceHelper::activateWindowContext() { - maContext.makeCurrent(); + mxContext->makeCurrent(); return true; } diff -Nru libreoffice-5.0.1~rc2/canvas/source/opengl/ogl_spritedevicehelper.hxx libreoffice-5.0.2~rc2/canvas/source/opengl/ogl_spritedevicehelper.hxx --- libreoffice-5.0.1~rc2/canvas/source/opengl/ogl_spritedevicehelper.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/canvas/source/opengl/ogl_spritedevicehelper.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -140,7 +140,7 @@ unsigned int mnRectangularTwoColorGradientProgram; unsigned int mnRectangularMultiColorGradientProgram; - OpenGLContext maContext; + rtl::Reference mxContext; }; } diff -Nru libreoffice-5.0.1~rc2/chart2/source/controller/dialogs/DataBrowser.cxx libreoffice-5.0.2~rc2/chart2/source/controller/dialogs/DataBrowser.cxx --- libreoffice-5.0.1~rc2/chart2/source/controller/dialogs/DataBrowser.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/chart2/source/controller/dialogs/DataBrowser.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -674,13 +674,18 @@ aResult = aText; else if( aAny>>=fDouble ) { - sal_Int32 nLabelColor; - sal_Int32 nDateNumberFormat = DiagramHelper::getDateNumberFormat( Reference< util::XNumberFormatsSupplier >( m_xChartDoc, uno::UNO_QUERY) ); if( ! ::rtl::math::isNan( fDouble ) && m_spNumberFormatterWrapper.get() ) { + // If a numberformat was available here we could directly + // obtain the corresponding edit format in + // getDateTimeInputNumberFormat() instead of doing the + // guess work. + sal_Int32 nNumberFormat = DiagramHelper::getDateTimeInputNumberFormat( + Reference< util::XNumberFormatsSupplier >( m_xChartDoc, uno::UNO_QUERY), fDouble ); + sal_Int32 nLabelColor; bool bColorChanged = false; aResult = m_spNumberFormatterWrapper->getFormattedString( - nDateNumberFormat, fDouble, nLabelColor, bColorChanged ); + nNumberFormat, fDouble, nLabelColor, bColorChanged ); } } } @@ -1101,18 +1106,14 @@ return m_apDataBrowserModel->getNumberFormatKey( lcl_getColumnInData( nCol ), lcl_getRowInData( nRow )); } -bool DataBrowser::isDateString( const OUString& aInputString, double& fOutDateValue ) +bool DataBrowser::isDateTimeString( const OUString& aInputString, double& fOutDateTimeValue ) { sal_uInt32 nNumberFormat=0; SvNumberFormatter* pSvNumberFormatter = m_spNumberFormatterWrapper.get() ? m_spNumberFormatterWrapper->getSvNumberFormatter() : 0; - if( !aInputString.isEmpty() && pSvNumberFormatter && pSvNumberFormatter->IsNumberFormat( aInputString, nNumberFormat, fOutDateValue ) ) + if( !aInputString.isEmpty() && pSvNumberFormatter && pSvNumberFormatter->IsNumberFormat( aInputString, nNumberFormat, fOutDateTimeValue ) ) { - Reference< util::XNumberFormatsSupplier > xNumberFormatsSupplier( m_xChartDoc, uno::UNO_QUERY ); - Reference< util::XNumberFormats > xNumberFormats; - if( xNumberFormatsSupplier.is() ) - xNumberFormats = Reference< util::XNumberFormats >( xNumberFormatsSupplier->getNumberFormats() ); - if( DiagramHelper::isDateNumberFormat( nNumberFormat, xNumberFormats ) ) - return true; + short nType = pSvNumberFormatter->GetType( nNumberFormat); + return (nType & util::NumberFormat::DATE) || (nType & util::NumberFormat::TIME); } return false; } @@ -1154,10 +1155,10 @@ case DataBrowserModel::TEXTORDATE: { OUString aText( m_aTextEditField->GetText() ); - double fDateValue = 0.0; + double fValue = 0.0; bChangeValid = false; - if( isDateString( aText, fDateValue ) ) - bChangeValid = m_apDataBrowserModel->setCellAny( nCol, nRow, uno::makeAny( fDateValue ) ); + if( isDateTimeString( aText, fValue ) ) + bChangeValid = m_apDataBrowserModel->setCellAny( nCol, nRow, uno::makeAny( fValue ) ); if(!bChangeValid) bChangeValid = m_apDataBrowserModel->setCellAny( nCol, nRow, uno::makeAny( aText ) ); } diff -Nru libreoffice-5.0.1~rc2/chart2/source/controller/dialogs/DataBrowser.hxx libreoffice-5.0.2~rc2/chart2/source/controller/dialogs/DataBrowser.hxx --- libreoffice-5.0.1~rc2/chart2/source/controller/dialogs/DataBrowser.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/chart2/source/controller/dialogs/DataBrowser.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -86,7 +86,7 @@ */ double GetCellNumber( long nRow, sal_uInt16 nColumnId ) const; - bool isDateString( const OUString& aInputString, double& fOutDateValue ); + bool isDateTimeString( const OUString& aInputString, double& fOutDateTimeValue ); // Window virtual void Resize() SAL_OVERRIDE; diff -Nru libreoffice-5.0.1~rc2/chart2/source/inc/DiagramHelper.hxx libreoffice-5.0.2~rc2/chart2/source/inc/DiagramHelper.hxx --- libreoffice-5.0.1~rc2/chart2/source/inc/DiagramHelper.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/chart2/source/inc/DiagramHelper.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -244,6 +244,7 @@ static bool isSupportingDateAxis( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDiagram >& xDiagram ); static bool isDateNumberFormat( sal_Int32 nNumberFormat, const ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormats >& xNumberFormats ); static sal_Int32 getDateNumberFormat( const ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatsSupplier >& xNumberFormatsSupplier ); + static sal_Int32 getDateTimeInputNumberFormat( const ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatsSupplier >& xNumberFormatsSupplier, double fNumber ); static sal_Int32 getPercentNumberFormat( const ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatsSupplier >& xNumberFormatsSupplier ); diff -Nru libreoffice-5.0.1~rc2/chart2/source/tools/DiagramHelper.cxx libreoffice-5.0.2~rc2/chart2/source/tools/DiagramHelper.cxx --- libreoffice-5.0.1~rc2/chart2/source/tools/DiagramHelper.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/chart2/source/tools/DiagramHelper.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1190,6 +1190,55 @@ return nRet; } +sal_Int32 DiagramHelper::getDateTimeInputNumberFormat( const Reference< util::XNumberFormatsSupplier >& xNumberFormatsSupplier, double fNumber ) +{ + sal_Int32 nRet = 0; + + // Get the most detailed date/time format according to fNumber. + NumberFormatterWrapper aNumberFormatterWrapper( xNumberFormatsSupplier ); + SvNumberFormatter* pNumFormatter = aNumberFormatterWrapper.getSvNumberFormatter(); + if (!pNumFormatter) + SAL_WARN("chart2", "DiagramHelper::getDateTimeInputNumberFormat - no SvNumberFormatter"); + else + { + // Categorize the format according to the implementation of + // SvNumberFormatter::GetEditFormat(), making assumptions about what + // would be time only. + /* TODO: implement a method at SvNumberFormatter that does this and + * call instead, if Chart isn't able transport the proper format of the + * Axis, which of course would be much better.. */ + short nType; + if (0.0 <= fNumber && fNumber < 1.0) + { + // Clearly a time. + nType = util::NumberFormat::TIME; + nRet = pNumFormatter->GetFormatIndex( NF_TIME_HHMM, LANGUAGE_SYSTEM); + } + else if (fabs( fNumber) * 24 < 0x7fff) + { + // Assuming time within 32k hours or 3.7 years. + nType = util::NumberFormat::TIME; + nRet = pNumFormatter->GetFormatIndex( NF_TIME_HH_MMSS, LANGUAGE_SYSTEM); + } + else if (rtl::math::approxFloor( fNumber) != fNumber) + { + // Date+Time. + nType = util::NumberFormat::DATETIME; + nRet = pNumFormatter->GetFormatIndex( NF_DATETIME_SYS_DDMMYYYY_HHMMSS, LANGUAGE_SYSTEM); + } + else + { + // Date only. + nType = util::NumberFormat::DATE; + nRet = pNumFormatter->GetFormatIndex( NF_DATE_SYS_DDMMYYYY, LANGUAGE_SYSTEM); + } + + // Obtain the corresponding edit format. + nRet = pNumFormatter->GetEditFormat( fNumber, nRet, nType, LANGUAGE_SYSTEM, NULL); + } + return nRet; +} + sal_Int32 DiagramHelper::getPercentNumberFormat( const Reference< util::XNumberFormatsSupplier >& xNumberFormatsSupplier ) { sal_Int32 nRet=-1; diff -Nru libreoffice-5.0.1~rc2/chart2/source/view/main/VDataSeries.cxx libreoffice-5.0.2~rc2/chart2/source/view/main/VDataSeries.cxx --- libreoffice-5.0.1~rc2/chart2/source/view/main/VDataSeries.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/chart2/source/view/main/VDataSeries.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -520,9 +520,13 @@ if(aValuesX.getLength() > 0) { - fMax = fMin = aValuesX[0]; + sal_Int32 i = 0; + while ( i < aValuesX.getLength() && ::rtl::math::isNan( aValuesX[i] ) ) + i++; + if ( i < aValuesX.getLength() ) + fMax = fMin = aValuesX[i++]; - for (sal_Int32 i = 1; i < aValuesX.getLength(); i++) + for ( ; i < aValuesX.getLength(); i++) { const double aValue = aValuesX[i]; if ( aValue > fMax) diff -Nru libreoffice-5.0.1~rc2/configmgr/source/components.cxx libreoffice-5.0.2~rc2/configmgr/source/components.cxx --- libreoffice-5.0.1~rc2/configmgr/source/components.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/configmgr/source/components.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -532,17 +532,20 @@ modificationFileUrl_ = url; parseModificationLayer(url); } -#ifdef WNT - else if ( type == "winreg" ) - { - if (!url.isEmpty()) { - SAL_WARN( - "configmgr", - "winreg URL is not empty, URL handling is not implemented for winreg"); +#if defined WNT + else if (type == "winreg") { + WinRegType eType; + if (url == "LOCAL_MACHINE" || url.isEmpty()/*backwards comp.*/) { + eType = WinRegType::LOCAL_MACHINE; + } else if (url == "CURRENT_USER") { + eType = WinRegType::CURRENT_USER; + } else { + throw css::uno::RuntimeException( + "CONFIGURATION_LAYERS: unknown \"winreg\" kind \"" + url + + "\""); } OUString aTempFileURL; - if ( dumpWindowsRegistry(&aTempFileURL) ) - { + if (dumpWindowsRegistry(&aTempFileURL, eType)) { parseFileLeniently(&parseXcuFile, aTempFileURL, layer, data_, 0, 0, 0); layer++; osl::File::remove(aTempFileURL); diff -Nru libreoffice-5.0.1~rc2/configmgr/source/winreg.cxx libreoffice-5.0.2~rc2/configmgr/source/winreg.cxx --- libreoffice-5.0.1~rc2/configmgr/source/winreg.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/configmgr/source/winreg.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -188,10 +188,11 @@ } } -bool dumpWindowsRegistry(OUString* pFileURL) +bool dumpWindowsRegistry(OUString* pFileURL, WinRegType eType) { HKEY hKey; - if(RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SOFTWARE\\Policies\\LibreOffice", 0, KEY_READ, &hKey) != ERROR_SUCCESS) + HKEY hDomain = eType == LOCAL_MACHINE ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER; + if(RegOpenKeyExW(hDomain, L"SOFTWARE\\Policies\\LibreOffice", 0, KEY_READ, &hKey) != ERROR_SUCCESS) { SAL_INFO( "configmgr", diff -Nru libreoffice-5.0.1~rc2/configmgr/source/winreg.hxx libreoffice-5.0.2~rc2/configmgr/source/winreg.hxx --- libreoffice-5.0.1~rc2/configmgr/source/winreg.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/configmgr/source/winreg.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -13,7 +13,9 @@ namespace configmgr { -bool dumpWindowsRegistry(OUString* pFileURL); +enum WinRegType { LOCAL_MACHINE, CURRENT_USER }; + +bool dumpWindowsRegistry(OUString* pFileURL, WinRegType eType); } diff -Nru libreoffice-5.0.1~rc2/configure.ac libreoffice-5.0.2~rc2/configure.ac --- libreoffice-5.0.1~rc2/configure.ac 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/configure.ac 2015-09-17 13:33:12.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],[5.0.1.2],[],[],[http://documentfoundation.org/]) +AC_INIT([LibreOffice],[5.0.2.2],[],[],[http://documentfoundation.org/]) AC_PREREQ([2.59]) @@ -2764,7 +2764,7 @@ AC_MSG_CHECKING([what Mac OS X SDK to use]) - for _macosx_sdk in $with_macosx_sdk 10.8 10.9 10.10; do + for _macosx_sdk in $with_macosx_sdk 10.8 10.9 10.10 10.11; do MACOSX_SDK_PATH=`xcrun --sdk macosx${_macosx_sdk} --show-sdk-path 2> /dev/null` if test -d "$MACOSX_SDK_PATH"; then with_macosx_sdk="${_macosx_sdk}" @@ -2792,8 +2792,11 @@ 10.10) MACOSX_SDK_VERSION=101000 ;; + 10.11) + MACOSX_SDK_VERSION=101100 + ;; *) - AC_MSG_ERROR([with-macosx-sdk $with_macosx_sdk is not a supported value, supported values are 10.8--10]) + AC_MSG_ERROR([with-macosx-sdk $with_macosx_sdk is not a supported value, supported values are 10.8--11]) ;; esac @@ -2822,8 +2825,11 @@ 10.10) MAC_OS_X_VERSION_MIN_REQUIRED="101000" ;; + 10.11) + MAC_OS_X_VERSION_MIN_REQUIRED="101100" + ;; *) - AC_MSG_ERROR([with-macosx-version-min-required $with_macosx_version_min_required is not a supported value, supported values are 10.8--10]) + AC_MSG_ERROR([with-macosx-version-min-required $with_macosx_version_min_required is not a supported value, supported values are 10.8--11]) ;; esac @@ -2856,8 +2862,11 @@ 10.10) MAC_OS_X_VERSION_MAX_ALLOWED="101000" ;; + 10.11) + MAC_OS_X_VERSION_MAX_ALLOWED="101100" + ;; *) - AC_MSG_ERROR([with-macosx-version-max-allowed $with_macosx_version_max_allowed is not a supported value, supported values are 10.8--10]) + AC_MSG_ERROR([with-macosx-version-max-allowed $with_macosx_version_max_allowed is not a supported value, supported values are 10.8--11]) ;; esac @@ -9895,7 +9904,7 @@ AC_MSG_ERROR([System cairo required for gtk3 support, do not combine --enable-gtk3 with --without-system-cairo]) fi : ${with_system_cairo:=yes} - PKG_CHECK_MODULES(GTK3, gtk+-3.0 >= 3.2 gtk+-unix-print-3.0 gmodule-no-export-2.0 cairo, ENABLE_GTK3="TRUE", ENABLE_GTK3="") + PKG_CHECK_MODULES(GTK3, gtk+-3.0 >= 3.8 gtk+-unix-print-3.0 gmodule-no-export-2.0 cairo, ENABLE_GTK3="TRUE", ENABLE_GTK3="") if test "x$ENABLE_GTK3" = "xTRUE"; then R="gtk3" else diff -Nru libreoffice-5.0.1~rc2/cppcanvas/source/mtfrenderer/emfplus.cxx libreoffice-5.0.2~rc2/cppcanvas/source/mtfrenderer/emfplus.cxx --- libreoffice-5.0.1~rc2/cppcanvas/source/mtfrenderer/emfplus.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/cppcanvas/source/mtfrenderer/emfplus.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1111,31 +1111,35 @@ void Read (SvMemoryStream &s, sal_uInt32 dataSize, bool bUseWholeStream) { - sal_uInt32 header, unknown; + sal_uInt32 header, bitmapType; s.ReadUInt32( header ).ReadUInt32( type ); SAL_INFO("cppcanvas.emf", "EMF+\timage\nEMF+\theader: 0x" << std::hex << header << " type: " << type << std::dec ); if (type == 1) { // bitmap - s.ReadInt32( width ).ReadInt32( height ).ReadInt32( stride ).ReadInt32( pixelFormat ).ReadUInt32( unknown ); + s.ReadInt32( width ).ReadInt32( height ).ReadInt32( stride ).ReadInt32( pixelFormat ).ReadUInt32( bitmapType ); SAL_INFO("cppcanvas.emf", "EMF+\tbitmap width: " << width << " height: " << height << " stride: " << stride << " pixelFormat: 0x" << std::hex << pixelFormat << std::dec); - if (width == 0) { // non native formats + if ((bitmapType != 0) || (width == 0)) { // non native formats GraphicFilter filter; filter.ImportGraphic (graphic, OUString(), s); SAL_INFO("cppcanvas.emf", "EMF+\tbitmap width: " << graphic.GetBitmap().GetSizePixel().Width() << " height: " << graphic.GetBitmap().GetSizePixel().Height()); } - } else if (type == 2) { + } else if (type == 2) { // metafile sal_Int32 mfType, mfSize; s.ReadInt32( mfType ).ReadInt32( mfSize ); - SAL_INFO("cppcanvas.emf", "EMF+\tmetafile type: " << mfType << " dataSize: " << mfSize << " real size calculated from record dataSize: " << dataSize - 16); + if (bUseWholeStream) + dataSize = s.remainingSize(); + else + dataSize -= 16; + SAL_INFO("cppcanvas.emf", "EMF+\tmetafile type: " << mfType << " dataSize: " << mfSize << " real size calculated from record dataSize: " << dataSize); GraphicFilter filter; // workaround buggy metafiles, which have wrong mfSize set (n#705956 for example) - SvMemoryStream mfStream (const_cast(static_cast(s.GetData()) + s.Tell()), bUseWholeStream ? s.remainingSize() : dataSize - 16, StreamMode::READ); + SvMemoryStream mfStream (const_cast(static_cast(s.GetData()) + s.Tell()), dataSize, StreamMode::READ); filter.ImportGraphic (graphic, OUString(), mfStream); @@ -1810,9 +1814,12 @@ sal_uInt32 length = pAct->GetDataSize (); SvMemoryStream rMF ((void*) pAct->GetData (), length, StreamMode::READ); - length -= 4; + if (length < 12) { + SAL_INFO("cppcanvas.emf", "length is less than required header size"); + } - while (length > 0) { + // 12 is minimal valid EMF+ record size; remaining bytes are padding + while (length >= 12) { sal_uInt16 type, flags; sal_uInt32 size, dataSize; sal_Size next; @@ -1823,6 +1830,11 @@ if (size < 12) { SAL_INFO("cppcanvas.emf", "Size field is less than 12 bytes"); + } else if (size > length) { + SAL_INFO("cppcanvas.emf", "Size field is greater than bytes left"); + } + if (dataSize > (size-12)) { + SAL_INFO("cppcanvas.emf", "DataSize field is greater than Size-12"); } SAL_INFO("cppcanvas.emf", "EMF+ record size: " << size << " type: " << emfTypeToName(type) << " flags: " << flags << " data size: " << dataSize); @@ -1834,14 +1846,15 @@ mMStream.Seek(0); } - // 1st 4 bytes are unknown + OSL_ENSURE(dataSize >= 4, "No room for TotalObjectSize in EmfPlusContinuedObjectRecord"); + // 1st 4 bytes are TotalObjectSize mMStream.Write (static_cast(rMF.GetData()) + rMF.Tell() + 4, dataSize - 4); SAL_INFO("cppcanvas.emf", "EMF+ read next object part size: " << size << " type: " << type << " flags: " << flags << " data size: " << dataSize); } else { if (mbMultipart) { SAL_INFO("cppcanvas.emf", "EMF+ multipart record flags: " << mMFlags); mMStream.Seek (0); - processObjectRecord (mMStream, mMFlags, dataSize, true); + processObjectRecord (mMStream, mMFlags, 0, true); } mbMultipart = false; } diff -Nru libreoffice-5.0.1~rc2/cui/Library_cui.mk libreoffice-5.0.2~rc2/cui/Library_cui.mk --- libreoffice-5.0.1~rc2/cui/Library_cui.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/cui/Library_cui.mk 2015-09-17 13:33:12.000000000 +0000 @@ -70,6 +70,7 @@ boost_headers \ icuuc \ icu_headers \ + glew \ )) ifeq ($(OS),WNT) diff -Nru libreoffice-5.0.1~rc2/cui/source/dialogs/about.cxx libreoffice-5.0.2~rc2/cui/source/dialogs/about.cxx --- libreoffice-5.0.1~rc2/cui/source/dialogs/about.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/cui/source/dialogs/about.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -48,6 +48,7 @@ #include #include #include +#include using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; @@ -296,6 +297,11 @@ sVersion += m_sBuildStr.replaceAll("$BUILDID", sBuildId); } + if (OpenGLWrapper::isVCLOpenGLEnabled()) + { + sVersion += "-GL"; + } + if (EXTRA_BUILDID[0] != '\0') { sVersion += "\n" EXTRA_BUILDID; diff -Nru libreoffice-5.0.1~rc2/cui/source/options/optgdlg.cxx libreoffice-5.0.2~rc2/cui/source/options/optgdlg.cxx --- libreoffice-5.0.1~rc2/cui/source/options/optgdlg.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/cui/source/options/optgdlg.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -90,6 +90,7 @@ #include #include #include +#include #include "optgdlg.hxx" #include @@ -145,8 +146,10 @@ if (mbModified) { std::shared_ptr batch(comphelper::ConfigurationChanges::create()); - officecfg::Office::Common::VCL::UseOpenGL::set(mbUseOpenGL, batch); - officecfg::Office::Common::VCL::ForceOpenGL::set(mbForceOpenGL, batch); + if (!officecfg::Office::Common::VCL::UseOpenGL::isReadOnly()) + officecfg::Office::Common::VCL::UseOpenGL::set(mbUseOpenGL, batch); + if (!officecfg::Office::Common::VCL::ForceOpenGL::isReadOnly()) + officecfg::Office::Common::VCL::ForceOpenGL::set(mbForceOpenGL, batch); batch->commit(); } } @@ -546,7 +549,10 @@ bool CanvasSettings::IsHardwareAccelerationAvailable() const { - if( !mbHWAccelChecked ) + if( OpenGLWrapper::isVCLOpenGLEnabled() ) + mbHWAccelAvailable = false; + + else if( !mbHWAccelChecked ) { mbHWAccelChecked = true; @@ -699,6 +705,12 @@ // separate auto and other icon themes m_pIconStyleLB->SetSeparatorPos( 0 ); m_pIconStyleLB->SelectEntryPos(0); + + // FIXME: should really add code to show a 'lock' icon here. + if (officecfg::Office::Common::VCL::UseOpenGL::isReadOnly()) + m_pUseOpenGL->Enable(false); + if (officecfg::Office::Common::VCL::ForceOpenGL::isReadOnly()) + m_pForceOpenGL->Enable(false); } OfaViewTabPage::~OfaViewTabPage() diff -Nru libreoffice-5.0.1~rc2/cui/source/options/optjava.cxx libreoffice-5.0.2~rc2/cui/source/options/optjava.cxx --- libreoffice-5.0.1~rc2/cui/source/options/optjava.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/cui/source/options/optjava.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -343,6 +343,8 @@ } else m_pParamDlg->SetParameters( aParameterList ); +#else + (void) this; // Silence loplugin:staticmethods #endif return 0; } @@ -388,6 +390,8 @@ } else m_pPathDlg->SetClassPath( sClassPath ); +#else + (void) this; #endif return 0; } @@ -466,6 +470,8 @@ m_parJavaInfo = NULL; m_nInfoSize = 0; } +#else + (void) this; #endif } @@ -526,6 +532,8 @@ } jfw_freeJavaInfo( pSelectedJava ); +#else + (void) this; #endif } @@ -547,6 +555,7 @@ OUString* pLocation = new OUString( aLocObj.getFSysPath( INetURLObject::FSYS_DETECT ) ); pEntry->SetUserData( pLocation ); #else + (void) this; (void)_pInfo; #endif } @@ -644,6 +653,7 @@ Application::PostUserEvent( LINK( this, SvxJavaOptionsPage, StartFolderPickerHdl ) ); } #else + (void) this; (void)_rFolder; #endif } diff -Nru libreoffice-5.0.1~rc2/cui/source/tabpages/numfmt.cxx libreoffice-5.0.2~rc2/cui/source/tabpages/numfmt.cxx --- libreoffice-5.0.1~rc2/cui/source/tabpages/numfmt.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/cui/source/tabpages/numfmt.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -984,7 +984,10 @@ m_pEdLeadZeroes->Enable(); m_pBtnNegRed->Enable(); m_pBtnThousand->Enable(); - m_pEdDecimals->SetText( OUString::number( nDecimals ) ); + if ( nCategory == CAT_NUMBER && m_pLbFormat->GetSelectEntryPos() == 0 ) + m_pEdDecimals->SetText( "" ); //General format tdf#44399 + else + m_pEdDecimals->SetText( OUString::number( nDecimals ) ); m_pEdLeadZeroes->SetText( OUString::number( nZeroes ) ); m_pBtnNegRed->Check( bNegRed ); m_pBtnThousand->Check( bThousand ); @@ -1571,6 +1574,10 @@ sal_uInt16 nLeadZeroes = (m_pEdLeadZeroes->IsEnabled()) ? (sal_uInt16)m_pEdLeadZeroes->GetValue() : (sal_uInt16)0; + if ( pNumFmtShell->GetStandardName() == m_pEdFormat->GetText() ) + { + m_pEdDecimals->SetValue( nPrecision ); + } pNumFmtShell->MakeFormat( aFormat, bThousand, bNegRed, diff -Nru libreoffice-5.0.1~rc2/debian/changelog libreoffice-5.0.2~rc2/debian/changelog --- libreoffice-5.0.1~rc2/debian/changelog 2015-08-27 20:26:42.000000000 +0000 +++ libreoffice-5.0.2~rc2/debian/changelog 2015-09-24 13:31:22.000000000 +0000 @@ -1,4 +1,4 @@ -libreoffice (1:5.0.1~rc2-0ubuntu1~precise1.1) precise; urgency=medium +libreoffice (1:5.0.2~rc2-0ubuntu1~precise2) precise; urgency=medium * Backport from wily * debian/rules: @@ -9,6 +9,7 @@ - Use icu >= 4.6 - Explicitly use cpp 4.6 and pass --with-idlc-cpp=cpp-4.6 - Use boost >= 1.54 + - Disable Gtk+ 3.0 support (requires >= 3.8) - Pull-in BUILD_DEPS_INDEP on amd64 builds - Re-add transitionals for libreoffice-presenter-console, libreoffice-presentation-minimizer, libreoffice-emailmerge, @@ -18,13 +19,30 @@ * fix-boost-1.54-with-gcc-4.6.diff - boost.variant broken in combination with g++ 4.6.x series and C++0x - -- Rico Tzschichholz Thu, 27 Aug 2015 20:45:24 +0200 + -- Rico Tzschichholz Thu, 24 Sep 2015 08:43:06 +0200 -libreoffice (1:5.0.1~rc2-0ubuntu1~wily1) wily; urgency=medium +libreoffice (1:5.0.2~rc2-0ubuntu1~wily1~ppa1) wily; urgency=medium * new upstream rc + * removed upstreamed patches - -- Bjoern Michaelsen Mon, 24 Aug 2015 10:24:52 +0200 + -- Bjoern Michaelsen Fri, 18 Sep 2015 13:05:43 +0200 + +libreoffice (1:5.0.1-0ubuntu2~wily1~ppa1) wily; urgency=medium + + * use system libwps, libcmis, cppunit + * use system libetonyek, which is in main now (lp: #1410883) + + -- Bjoern Michaelsen Fri, 11 Sep 2015 09:21:37 +0200 + +libreoffice (1:5.0.1-0ubuntu1) wily; urgency=medium + + * new final upstream release + * changes vs. vivid: + - use cpp-5 (thanks Rico) + - use internal libwps, opencollada, collada2gltf, libcmis, cppunit + + -- Bjoern Michaelsen Mon, 31 Aug 2015 20:32:35 +0200 libreoffice (1:5.0.0-0ubuntu1~wily1) wily; urgency=medium @@ -103,18 +121,6 @@ -- Rene Engelhard Sat, 01 Aug 2015 14:00:45 +0200 -libreoffice (1:5.0.0~rc5-0ubuntu1~wily1) wily; urgency=medium - - * new upstream rc - - -- Bjoern Michaelsen Sat, 01 Aug 2015 18:31:31 +0200 - -libreoffice (1:5.0.0~rc4-1ubuntu1~wily1) wily; urgency=medium - - * New upstream rc - - -- Bjoern Michaelsen Wed, 29 Jul 2015 11:57:52 +0200 - libreoffice (1:5.0.0~rc4-1) experimental; urgency=medium * New upstream release candidate @@ -124,12 +130,6 @@ -- Rene Engelhard Sat, 25 Jul 2015 11:59:25 +0200 -libreoffice (1:5.0.0~rc3.1-1ubuntu1~wily1) wily; urgency=medium - - * merge from Debian - - -- Bjoern Michaelsen Fri, 10 Jul 2015 19:18:44 +0200 - libreoffice (1:5.0.0~rc3-1) experimental; urgency=medium * New upstream release candidate @@ -140,12 +140,6 @@ -- Rene Engelhard Sun, 12 Jul 2015 13:04:30 +0200 -libreoffice (1:5.0.0~rc2-1ubuntu1~wily1) wily; urgency=medium - - * merge from debian - - -- Bjoern Michaelsen Tue, 30 Jun 2015 13:49:59 +0200 - libreoffice (1:5.0.0~rc2-1) experimental; urgency=medium * New upstream release candidate @@ -161,12 +155,6 @@ -- Rene Engelhard Sun, 28 Jun 2015 20:18:19 +0200 -libreoffice (1:5.0.0~rc2-0ubuntu1~wily1) wily; urgency=medium - - * second upstream rc - - -- Bjoern Michaelsen Mon, 29 Jun 2015 10:49:18 +0200 - libreoffice (1:5.0.0~rc1-1) experimental; urgency=medium * New upstream release candidate @@ -187,19 +175,6 @@ -- Rene Engelhard Sat, 20 Jun 2015 13:45:07 +0200 -libreoffice (1:5.0.0~rc1-0ubuntu1~wily1) wily; urgency=medium - - * first upstream rc - * use system glm, mwaw, mdds again - - -- Bjoern Michaelsen Sun, 21 Jun 2015 22:36:08 +0200 - -libreoffice (1:5.0.0~beta3-0ubuntu1~wily1) wily; urgency=medium - - * first build on wily - - -- Bjoern Michaelsen Thu, 18 Jun 2015 18:39:42 +0200 - libreoffice (1:5.0.0~beta3-1) experimental; urgency=medium * New upstream beta release @@ -221,36 +196,6 @@ -- Rene Engelhard Wed, 10 Jun 2015 14:58:50 +0200 -libreoffice (1:5.0.0~beta3-0ubuntu1~vivid3) vivid; urgency=medium - - * new upstream beta - - -- Bjoern Michaelsen Thu, 11 Jun 2015 00:19:32 +0200 - -libreoffice (1:5.0.0~beta2-0ubuntu1~vivid1) vivid; urgency=medium - - * new upstream beta - - -- Bjoern Michaelsen Mon, 08 Jun 2015 18:33:47 +0200 - -libreoffice (1:5.0.0~beta1-1ubuntu1~vivid3) vivid; urgency=medium - - * use system lpsolve - - -- Bjoern Michaelsen Thu, 04 Jun 2015 10:23:24 +0200 - -libreoffice (1:5.0.0~beta1-1ubuntu1~vivid2) vivid; urgency=medium - - * use more internal libs for now - - -- Bjoern Michaelsen Wed, 03 Jun 2015 17:48:40 +0200 - -libreoffice (1:5.0.0~beta1-1ubuntu1~vivid1) vivid; urgency=medium - - * new upstream beta - - -- Bjoern Michaelsen Mon, 01 Jun 2015 17:20:48 +0200 - libreoffice (1:5.0.0~beta1-1) experimental; urgency=medium * New upstream beta release @@ -282,23 +227,18 @@ -- Rene Engelhard Tue, 21 Apr 2015 21:30:13 +0200 -libreoffice (1:4.4.2-1) unstable; urgency=low +libreoffice (1:4.4.4~rc3-0ubuntu2) wily; urgency=medium - * LibreOffice 4.4.2 final release (identical to rc2) + * No-change rebuild, follow-up for the libstdc++6 ABI transition. - * upload to unstable + -- Matthias Klose Tue, 04 Aug 2015 23:57:41 +0200 - * debian/patches/icu-icudata-link-fix-armhf.diff: fix internal icu build - on armhf ("stolen" from icu package) +libreoffice (1:4.4.4~rc3-0ubuntu1) wily; urgency=medium - -- Rene Engelhard Sun, 12 Apr 2015 12:11:31 +0200 - -libreoffice (1:4.4.2~rc2-1) experimental; urgency=medium - - * New upstream release candidate - - fixes "out of bounds write in hwp file filter" (CVE-2015-1774) + * new upstream rc, includes hack to prevent crash on exit (LP: #1418551) + * Fix mailmerge without libreoffice-base scenario - -- Rene Engelhard Fri, 27 Mar 2015 07:07:59 +0100 + -- Bjoern Michaelsen Mon, 06 Jul 2015 17:24:44 +0200 libreoffice (1:4.4.3~rc2-0ubuntu1~vivid5) vivid; urgency=medium @@ -318,6 +258,34 @@ -- Bjoern Michaelsen Mon, 04 May 2015 10:56:58 +0200 +libreoffice (1:4.4.2-1) unstable; urgency=low + + * LibreOffice 4.4.2 final release (identical to rc2) + + * upload to unstable + + * debian/patches/icu-icudata-link-fix-armhf.diff: fix internal icu build + on armhf ("stolen" from icu package) + + -- Rene Engelhard Sun, 12 Apr 2015 12:11:31 +0200 + +libreoffice (1:4.4.2-0ubuntu3) wily; urgency=medium + + * Cherry-pick from Debian for wps 0.4 + * debian/patches/libwps-0.4.diff: backport from upstream; adapt for libwps + 0.4 + * debian/rules: + - build-depend on libwps >= 0.4 + + -- Iain Lane Tue, 23 Jun 2015 10:12:03 +0100 + +libreoffice (1:4.4.2~rc2-1) experimental; urgency=medium + + * New upstream release candidate + - fixes "out of bounds write in hwp file filter" (CVE-2015-1774) + + -- Rene Engelhard Fri, 27 Mar 2015 07:07:59 +0100 + libreoffice (1:4.4.2-0ubuntu2) vivid; urgency=medium * add missing Replaces: (LP: #1443667) diff -Nru libreoffice-5.0.1~rc2/debian/control libreoffice-5.0.2~rc2/debian/control --- libreoffice-5.0.1~rc2/debian/control 2015-08-27 20:27:02.000000000 +0000 +++ libreoffice-5.0.2~rc2/debian/control 2015-09-24 13:31:49.000000000 +0000 @@ -47,6 +47,7 @@ libcommons-httpclient-java, libcommons-lang-java, libcommons-logging-java (>= 1.1.1-9), + libcppunit-dev (>= 0.12), libcups2-dev, libcurl4-gnutls-dev, libdbus-glib-1-dev (>= 0.70), @@ -63,7 +64,6 @@ libgraphite2-dev (>= 0.9.3), libgstreamer-plugins-base0.10-dev, libgstreamer0.10-dev, - libgtk-3-dev (>= 3.2~), libgtk2.0-dev (>= 2.10), libhsqldb-java (>> 1.8.0.10), libhunspell-dev (>= 1.1.5-2), @@ -1346,6 +1346,7 @@ libcommons-httpclient-java, libcommons-lang-java, libcommons-logging-java (>= 1.1.1-9), + libcppunit-dev (>= 0.12), libcups2-dev, libcurl4-gnutls-dev, libdbus-glib-1-dev (>= 0.70), @@ -1361,7 +1362,6 @@ libgraphite2-dev (>= 0.9.3), libgstreamer-plugins-base0.10-dev, libgstreamer0.10-dev, - libgtk-3-dev (>= 3.2~), libgtk2.0-dev (>= 2.10), libhsqldb-java (>> 1.8.0.10), libhunspell-dev (>= 1.1.5-2), diff -Nru libreoffice-5.0.1~rc2/debian/patches/gtk3-rtl.diff libreoffice-5.0.2~rc2/debian/patches/gtk3-rtl.diff --- libreoffice-5.0.1~rc2/debian/patches/gtk3-rtl.diff 2015-08-27 20:26:16.000000000 +0000 +++ libreoffice-5.0.2~rc2/debian/patches/gtk3-rtl.diff 1970-01-01 00:00:00.000000000 +0000 @@ -1,92 +0,0 @@ -From a803ec69f69068e0c45a7825094941b9ea765c1c Mon Sep 17 00:00:00 2001 -From: Khaled Hosny -Date: Mon, 17 Aug 2015 00:49:39 +0200 -Subject: Fix GTK3 right-to-left rendering -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -* Reverse the direction of arrows e.g. in menus -* Reverse the position of combobox button - -They are lumped together because fixing one breaks the other - -Change-Id: I65afb08785e67db72a72ad39f1de56db037b640a -Reviewed-on: https://gerrit.libreoffice.org/17788 -Tested-by: Jenkins -Reviewed-by: Norbert Thiebaud -Reviewed-on: https://gerrit.libreoffice.org/17845 -Reviewed-by: Caolán McNamara -Tested-by: Caolán McNamara - -diff --git a/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx b/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx -index 126d6d1..1f04b2e 100644 ---- a/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx -+++ b/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx -@@ -661,9 +666,11 @@ Rectangle GtkSalGraphics::NWGetComboBoxButtonRect( ControlType nType, - nButtonWidth = nArrowWidth + padding.left + padding.right; - if( nPart == PART_BUTTON_DOWN ) - { -+ Point aPos = Point(aAreaRect.Left() + aAreaRect.GetWidth() - nButtonWidth, aAreaRect.Top()); -+ if (AllSettings::GetLayoutRTL()) -+ aPos.X() = aAreaRect.Left(); - aButtonRect.SetSize( Size( nButtonWidth, aAreaRect.GetHeight() ) ); -- aButtonRect.SetPos( Point( aAreaRect.Left() + aAreaRect.GetWidth() - nButtonWidth, -- aAreaRect.Top() ) ); -+ aButtonRect.SetPos(aPos); - } - else if( nPart == PART_SUB_EDIT ) - { -@@ -675,7 +682,10 @@ Rectangle GtkSalGraphics::NWGetComboBoxButtonRect( ControlType nType, - aButtonRect.SetSize( Size( aAreaRect.GetWidth() - nButtonWidth - (adjust_left + adjust_right), - aAreaRect.GetHeight() - (adjust_top + adjust_bottom)) ); - Point aEditPos = aAreaRect.TopLeft(); -- aEditPos.X() += adjust_left; -+ if (AllSettings::GetLayoutRTL()) -+ aEditPos.X() += nButtonWidth; -+ else -+ aEditPos.X() += adjust_left; - aEditPos.Y() += adjust_top; - aButtonRect.SetPos( aEditPos ); - } -@@ -703,6 +713,8 @@ void GtkSalGraphics::PaintCombobox( GtkStateFlags flags, cairo_t *cr, - - Rectangle aEditBoxRect( areaRect ); - aEditBoxRect.SetSize( Size( areaRect.GetWidth() - buttonRect.GetWidth(), aEditBoxRect.GetHeight() ) ); -+ if (AllSettings::GetLayoutRTL()) -+ aEditBoxRect.SetPos( Point( areaRect.Left() + buttonRect.GetWidth(), areaRect.Top() ) ); - - arrowRect.SetSize( Size( (gint)(ARROW_SIZE), - (gint)(ARROW_SIZE) ) ); -@@ -719,7 +731,10 @@ void GtkSalGraphics::PaintCombobox( GtkStateFlags flags, cairo_t *cr, - { - gtk_style_context_save(mpEntryStyle); - gtk_style_context_set_state(mpEntryStyle, flags); -- gtk_style_context_set_junction_sides(mpEntryStyle, GTK_JUNCTION_RIGHT); -+ if (AllSettings::GetLayoutRTL()) -+ gtk_style_context_set_junction_sides(mpEntryStyle, GTK_JUNCTION_LEFT); -+ else -+ gtk_style_context_set_junction_sides(mpEntryStyle, GTK_JUNCTION_RIGHT); - - gtk_render_background(mpComboboxStyle, cr, - 0, 0, -@@ -727,12 +742,13 @@ void GtkSalGraphics::PaintCombobox( GtkStateFlags flags, cairo_t *cr, - gtk_render_frame(mpComboboxStyle, cr, - 0, 0, - areaRect.GetWidth(), areaRect.GetHeight()); -- - gtk_render_background(mpEntryStyle, cr, -- 0, 0, -+ (aEditBoxRect.Left() - areaRect.Left()), -+ (aEditBoxRect.Top() - areaRect.Top()), - aEditBoxRect.GetWidth(), aEditBoxRect.GetHeight() ); - gtk_render_frame(mpEntryStyle, cr, -- 0, 0, -+ (aEditBoxRect.Left() - areaRect.Left()), -+ (aEditBoxRect.Top() - areaRect.Top()), - aEditBoxRect.GetWidth(), aEditBoxRect.GetHeight() ); - - gtk_style_context_restore(mpEntryStyle); --- -cgit v0.10.2 - diff -Nru libreoffice-5.0.1~rc2/debian/patches/series libreoffice-5.0.2~rc2/debian/patches/series --- libreoffice-5.0.1~rc2/debian/patches/series 2015-08-27 18:57:30.000000000 +0000 +++ libreoffice-5.0.2~rc2/debian/patches/series 2015-09-24 06:40:45.000000000 +0000 @@ -29,7 +29,6 @@ rsc-no-error-about-unknown-switch.diff #liborcus-0.9.1.diff disable-tiledrendering-test.diff -gtk3-rtl.diff #lp-753627-readd-updated-Ubuntu-brand-palette-colors.diff #mailmerge-base.diff fdo-82229.patch diff -Nru libreoffice-5.0.1~rc2/debian/rules libreoffice-5.0.2~rc2/debian/rules --- libreoffice-5.0.1~rc2/debian/rules 2015-08-27 19:02:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/debian/rules 2015-09-24 06:44:07.000000000 +0000 @@ -71,11 +71,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=5.0.1.2 +lo_sources_ver=5.0.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-5-0-1 +GIT_BRANCH=libreoffice-5-0-2 endif ifeq "$(USE_SOURCE_TARBALLS)" "y" lo_sources_ver=$(shell cat $(CURDIR)/sources.ver | cut -d= -f2) @@ -715,14 +715,8 @@ # libcoinor-libcoinmp-dev is in vivid/universe, needs MIR, was shipped with LibreOffice 4.4 in vivid SYSTEM_STUFF := $(filter-out libgltf coinmp, $(SYSTEM_STUFF)) - # libetonyek 0.1.1 is in vivid/universe, needs MIR, was shipped with LibreOffice 4.3 in utopic - SYSTEM_STUFF := $(filter-out libetonyek, $(SYSTEM_STUFF)) - - # libwps 0.4-4 is not yet in wily/main, no MIR needed, needs sync from debian experimental - SYSTEM_STUFF := $(filter-out libwps, $(SYSTEM_STUFF)) - SYSTEM_STUFF := $(filter-out opencollada collada2gltf, $(SYSTEM_STUFF)) - SYSTEM_STUFF := $(filter-out libcmis cppunit, $(SYSTEM_STUFF)) + ifneq (,$(filter armel armhf,$(DEB_HOST_ARCH))) ENABLE_HELP=n endif @@ -732,6 +726,7 @@ ICU_MINVER= (>= 4.6) + BUILD_GTK3=n USE_UCPP=n GCC_VERSION= SYSTEM_GCC_VERSION= diff -Nru libreoffice-5.0.1~rc2/debian/shlibs.override.libetonyek libreoffice-5.0.2~rc2/debian/shlibs.override.libetonyek --- libreoffice-5.0.1~rc2/debian/shlibs.override.libetonyek 2015-08-25 15:28:51.000000000 +0000 +++ libreoffice-5.0.2~rc2/debian/shlibs.override.libetonyek 2015-09-24 13:26:23.000000000 +0000 @@ -1 +1 @@ -libetonyek-0.1 1 +libetonyek-0.1-lo 1 diff -Nru libreoffice-5.0.1~rc2/debian/shlibs.override.libmwaw libreoffice-5.0.2~rc2/debian/shlibs.override.libmwaw --- libreoffice-5.0.1~rc2/debian/shlibs.override.libmwaw 2015-08-25 15:28:51.000000000 +0000 +++ libreoffice-5.0.2~rc2/debian/shlibs.override.libmwaw 2015-09-24 13:26:23.000000000 +0000 @@ -1 +1 @@ -libmwaw-0.3 3 +libmwaw-0.3-lo 3 diff -Nru libreoffice-5.0.1~rc2/debian/shlibs.override.libodfgen libreoffice-5.0.2~rc2/debian/shlibs.override.libodfgen --- libreoffice-5.0.1~rc2/debian/shlibs.override.libodfgen 2015-08-25 15:28:51.000000000 +0000 +++ libreoffice-5.0.2~rc2/debian/shlibs.override.libodfgen 2015-09-24 13:26:23.000000000 +0000 @@ -1 +1 @@ -libodfgen-0.1 1 +libodfgen-0.1-lo 1 diff -Nru libreoffice-5.0.1~rc2/debian/shlibs.override.librevenge libreoffice-5.0.2~rc2/debian/shlibs.override.librevenge --- libreoffice-5.0.1~rc2/debian/shlibs.override.librevenge 2015-08-25 15:28:51.000000000 +0000 +++ libreoffice-5.0.2~rc2/debian/shlibs.override.librevenge 2015-09-24 13:26:23.000000000 +0000 @@ -1 +1 @@ -librevenge-0.0 0 +librevenge-0.0-lo 0 diff -Nru libreoffice-5.0.1~rc2/debian/shlibs.override.libwpd libreoffice-5.0.2~rc2/debian/shlibs.override.libwpd --- libreoffice-5.0.1~rc2/debian/shlibs.override.libwpd 2015-08-25 15:28:51.000000000 +0000 +++ libreoffice-5.0.2~rc2/debian/shlibs.override.libwpd 2015-09-24 13:26:23.000000000 +0000 @@ -1 +1 @@ -libwpd-0.10 10 +libwpd-0.10-lo 10 diff -Nru libreoffice-5.0.1~rc2/debian/shlibs.override.libwpg libreoffice-5.0.2~rc2/debian/shlibs.override.libwpg --- libreoffice-5.0.1~rc2/debian/shlibs.override.libwpg 2015-08-25 15:28:51.000000000 +0000 +++ libreoffice-5.0.2~rc2/debian/shlibs.override.libwpg 2015-09-24 13:26:23.000000000 +0000 @@ -1 +1 @@ -libwpg-0.3 3 +libwpg-0.3-lo 3 diff -Nru libreoffice-5.0.1~rc2/debian/shlibs.override.libwps libreoffice-5.0.2~rc2/debian/shlibs.override.libwps --- libreoffice-5.0.1~rc2/debian/shlibs.override.libwps 2015-08-25 15:28:51.000000000 +0000 +++ libreoffice-5.0.2~rc2/debian/shlibs.override.libwps 2015-09-24 13:26:23.000000000 +0000 @@ -1 +1 @@ -libwps-0.4 4 +libwps-0.4-lo 4 diff -Nru libreoffice-5.0.1~rc2/editeng/source/editeng/editattr.cxx libreoffice-5.0.2~rc2/editeng/source/editeng/editattr.cxx --- libreoffice-5.0.1~rc2/editeng/source/editeng/editattr.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/editeng/source/editeng/editattr.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -221,7 +221,6 @@ { Color aColor = static_cast(GetItem())->GetValue(); rFont.SetColor( aColor); - //fprintf(stderr, "Called SetFont with Color %d\n", aColor.GetColor()); } // class EditCharAttribBackgroundColor @@ -238,14 +237,11 @@ void EditCharAttribBackgroundColor::SetFont( SvxFont& rFont, OutputDevice* ) { Color aColor = static_cast(GetItem())->GetValue(); - rFont.SetFillColor( aColor); rFont.SetTransparent(false); - + rFont.SetFillColor(aColor); } - // class EditCharAttribLanguage - EditCharAttribLanguage::EditCharAttribLanguage( const SvxLanguageItem& rAttr, sal_uInt16 _nStart, sal_uInt16 _nEnd ) : EditCharAttrib( rAttr, _nStart, _nEnd ) { diff -Nru libreoffice-5.0.1~rc2/editeng/source/editeng/impedit4.cxx libreoffice-5.0.2~rc2/editeng/source/editeng/impedit4.cxx --- libreoffice-5.0.1~rc2/editeng/source/editeng/impedit4.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/editeng/source/editeng/impedit4.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -515,7 +515,8 @@ rOutput.WriteUInt32AsString( nNumber ); // Name of the template ... - rOutput.WriteCharPtr( " " ).WriteCharPtr( OUStringToOString(pStyle->GetName(), eDestEnc).getStr() ); + rOutput.WriteCharPtr( " " ); + RTFOutFuncs::Out_String( rOutput, pStyle->GetName(), eDestEnc ); rOutput.WriteCharPtr( ";}" ); nStyle++; } @@ -2414,8 +2415,7 @@ { // convert to window coordinates .... aClipRect.SetPos( pView->pImpEditView->GetWindowPos( aClipRect.TopLeft() ) ); - // If selected, then VDev ... - Paint( pView->pImpEditView, aClipRect, 0, pView->HasSelection() ); + pView->pImpEditView->GetWindow()->Invalidate(aClipRect); } } } diff -Nru libreoffice-5.0.1~rc2/editeng/source/items/textitem.cxx libreoffice-5.0.2~rc2/editeng/source/items/textitem.cxx --- libreoffice-5.0.1~rc2/editeng/source/items/textitem.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/editeng/source/items/textitem.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1850,9 +1850,12 @@ { } -SvxBackgroundColorItem:: SvxBackgroundColorItem( SvStream& rStrm, const sal_uInt16 Id ) : - SvxColorItem( rStrm, Id ) +SvxBackgroundColorItem::SvxBackgroundColorItem(SvStream& rStrm, const sal_uInt16 nId) + : SvxColorItem(nId) { + Color aColor; + aColor.Read(rStrm); + SetValue(aColor); } SvxBackgroundColorItem::SvxBackgroundColorItem( const SvxBackgroundColorItem& rCopy ) : @@ -1862,9 +1865,14 @@ SfxPoolItem* SvxBackgroundColorItem::Clone( SfxItemPool * ) const { - return new SvxBackgroundColorItem( *this ); + return new SvxBackgroundColorItem(*this); } +SvStream& SvxBackgroundColorItem::Store(SvStream& rStrm, sal_uInt16) const +{ + GetValue().Write(rStrm); + return rStrm; +} SfxPoolItem* SvxBackgroundColorItem::Create(SvStream& rStrm, sal_uInt16 ) const { @@ -1918,23 +1926,18 @@ } // class SvxColorItem ---------------------------------------------------- - SvxColorItem::SvxColorItem( const sal_uInt16 nId ) : SfxPoolItem( nId ), mColor( COL_BLACK ) { } - - SvxColorItem::SvxColorItem( const Color& rCol, const sal_uInt16 nId ) : SfxPoolItem( nId ), mColor( rCol ) { } - - SvxColorItem::SvxColorItem( SvStream &rStrm, const sal_uInt16 nId ) : SfxPoolItem( nId ) { @@ -1943,21 +1946,16 @@ mColor = aColor; } - - SvxColorItem::SvxColorItem( const SvxColorItem &rCopy ) : SfxPoolItem( rCopy ), mColor( rCopy.mColor ) { } - - SvxColorItem::~SvxColorItem() { } - sal_uInt16 SvxColorItem::GetVersion( sal_uInt16 nFFVer ) const { DBG_ASSERT( SOFFICE_FILEFORMAT_31==nFFVer || @@ -1967,8 +1965,6 @@ return SOFFICE_FILEFORMAT_50 >= nFFVer ? VERSION_USEAUTOCOLOR : 0; } - - bool SvxColorItem::operator==( const SfxPoolItem& rAttr ) const { DBG_ASSERT( SfxPoolItem::operator==(rAttr), "unequal types" ); @@ -1976,16 +1972,12 @@ return mColor == static_cast( rAttr ).mColor; } - - bool SvxColorItem::QueryValue( uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const { rVal <<= (sal_Int32)(mColor.GetColor()); return true; } - - bool SvxColorItem::PutValue( const uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) { sal_Int32 nColor = 0; @@ -1996,15 +1988,11 @@ return true; } - - SfxPoolItem* SvxColorItem::Clone( SfxItemPool * ) const { return new SvxColorItem( *this ); } - - SvStream& SvxColorItem::Store( SvStream& rStrm , sal_uInt16 nItemVersion ) const { if( VERSION_USEAUTOCOLOR == nItemVersion && @@ -2015,15 +2003,11 @@ return rStrm; } - - SfxPoolItem* SvxColorItem::Create(SvStream& rStrm, sal_uInt16 /*nVer*/ ) const { return new SvxColorItem( rStrm, Which() ); } - - bool SvxColorItem::GetPresentation ( SfxItemPresentation /*ePres*/, diff -Nru libreoffice-5.0.1~rc2/external/apr/UnpackedTarball_apr.mk libreoffice-5.0.2~rc2/external/apr/UnpackedTarball_apr.mk --- libreoffice-5.0.1~rc2/external/apr/UnpackedTarball_apr.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/apr/UnpackedTarball_apr.mk 2015-09-17 13:33:12.000000000 +0000 @@ -11,4 +11,10 @@ $(eval $(call gb_UnpackedTarball_set_tarball,apr,$(APR_TARBALL))) +$(eval $(call gb_UnpackedTarball_set_patchlevel,apr,0)) + +$(eval $(call gb_UnpackedTarball_add_patches,apr, \ + external/apr/uuid.patch \ +)) + # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.0.1~rc2/external/apr/uuid.patch libreoffice-5.0.2~rc2/external/apr/uuid.patch --- libreoffice-5.0.1~rc2/external/apr/uuid.patch 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/apr/uuid.patch 2015-09-17 13:33:12.000000000 +0000 @@ -0,0 +1,241 @@ +--- configure ++++ configure +@@ -26343,235 +26343,9 @@ + + echo "${nl}Checking for OS UUID Support..." + +-for ac_header in uuid.h uuid/uuid.h sys/uuid.h +-do : +- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" +-if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- break +-fi +- +-done +- +- +-apr_revert_save_LIBS=$LIBS +- +-# Prefer the flavor(s) that live in libc; +-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing uuid_create" >&5 +-$as_echo_n "checking for library containing uuid_create... " >&6; } +-if ${ac_cv_search_uuid_create+:} false; then : +- $as_echo_n "(cached) " >&6 +-else +- ac_func_search_save_LIBS=$LIBS +-cat confdefs.h - <<_ACEOF >conftest.$ac_ext +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char uuid_create (); +-int +-main () +-{ +-return uuid_create (); +- ; +- return 0; +-} +-_ACEOF +-for ac_lib in '' uuid; do +- if test -z "$ac_lib"; then +- ac_res="none required" +- else +- ac_res=-l$ac_lib +- LIBS="-l$ac_lib $ac_func_search_save_LIBS" +- fi +- if ac_fn_c_try_link "$LINENO"; then : +- ac_cv_search_uuid_create=$ac_res +-fi +-rm -f core conftest.err conftest.$ac_objext \ +- conftest$ac_exeext +- if ${ac_cv_search_uuid_create+:} false; then : +- break +-fi +-done +-if ${ac_cv_search_uuid_create+:} false; then : +- +-else +- ac_cv_search_uuid_create=no +-fi +-rm conftest.$ac_ext +-LIBS=$ac_func_search_save_LIBS +-fi +-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_uuid_create" >&5 +-$as_echo "$ac_cv_search_uuid_create" >&6; } +-ac_res=$ac_cv_search_uuid_create +-if test "$ac_res" != no; then : +- test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +- +-fi +- +-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing uuid_generate" >&5 +-$as_echo_n "checking for library containing uuid_generate... " >&6; } +-if ${ac_cv_search_uuid_generate+:} false; then : +- $as_echo_n "(cached) " >&6 +-else +- ac_func_search_save_LIBS=$LIBS +-cat confdefs.h - <<_ACEOF >conftest.$ac_ext +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char uuid_generate (); +-int +-main () +-{ +-return uuid_generate (); +- ; +- return 0; +-} +-_ACEOF +-for ac_lib in '' uuid; do +- if test -z "$ac_lib"; then +- ac_res="none required" +- else +- ac_res=-l$ac_lib +- LIBS="-l$ac_lib $ac_func_search_save_LIBS" +- fi +- if ac_fn_c_try_link "$LINENO"; then : +- ac_cv_search_uuid_generate=$ac_res +-fi +-rm -f core conftest.err conftest.$ac_objext \ +- conftest$ac_exeext +- if ${ac_cv_search_uuid_generate+:} false; then : +- break +-fi +-done +-if ${ac_cv_search_uuid_generate+:} false; then : +- +-else +- ac_cv_search_uuid_generate=no +-fi +-rm conftest.$ac_ext +-LIBS=$ac_func_search_save_LIBS +-fi +-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_uuid_generate" >&5 +-$as_echo "$ac_cv_search_uuid_generate" >&6; } +-ac_res=$ac_cv_search_uuid_generate +-if test "$ac_res" != no; then : +- test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +- +-fi +- +-if test "$ac_cv_search_uuid_create" = "none required" -o \ +- "$ac_cv_search_uuid_generate" = "none required"; then +- LIBS=$apr_revert_save_LIBS +-fi +- +-for ac_func in uuid_create uuid_generate +-do : +- as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" +-if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +-done +- +- +-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for os uuid usability" >&5 +-$as_echo_n "checking for os uuid usability... " >&6; } +-if ${apr_cv_osuuid+:} false; then : +- $as_echo_n "(cached) " >&6 +-else +- +-# Ensure this test closely mirrors misc/unix/rand.c! +-uuid_includes=" +-#if defined(HAVE_SYS_TYPES_H) +-#include +-#endif +-#if defined(HAVE_UNISTD_H) +-#include +-#endif +-#if defined(HAVE_UUID_H) +-#include +-#elif defined(HAVE_UUID_UUID_H) +-#include +-#elif defined(HAVE_SYS_UUID_H) +-#include +-#endif +-" +- apr_cv_osuuid=no +- if test $ac_cv_func_uuid_create = yes; then +- cat confdefs.h - <<_ACEOF >conftest.$ac_ext +-/* end confdefs.h. */ +-$uuid_includes +-int +-main () +-{ +- +- uuid_t g; +- uint32_t s; +- uuid_create(&g, &s); +- if (s == uuid_s_ok) s = 0; +- +- ; +- return 0; +-} +-_ACEOF +-if ac_fn_c_try_link "$LINENO"; then : +- apr_cv_osuuid=yes +-else +- apr_cv_func_uuid_create=no +-fi +-rm -f core conftest.err conftest.$ac_objext \ +- conftest$ac_exeext conftest.$ac_ext +- fi +- if test $ac_cv_func_uuid_generate = yes; then +- cat confdefs.h - <<_ACEOF >conftest.$ac_ext +-/* end confdefs.h. */ +-$uuid_includes +-int +-main () +-{ +- +- uuid_t g; +- uuid_generate(g); +- +- ; +- return 0; +-} +-_ACEOF +-if ac_fn_c_try_link "$LINENO"; then : +- apr_cv_osuuid=yes +-else +- apr_cv_func_uuid_generate=no +-fi +-rm -f core conftest.err conftest.$ac_objext \ +- conftest$ac_exeext conftest.$ac_ext +- fi +- +-fi +-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $apr_cv_osuuid" >&5 +-$as_echo "$apr_cv_osuuid" >&6; } +- +-if test $apr_cv_osuuid = yes; then +- osuuid="1" +-else +- osuuid="0" +- LIBS=$apr_revert_save_LIBS +-fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo no >&6; } ++osuuid="0" + + + diff -Nru libreoffice-5.0.1~rc2/external/libetonyek/ExternalPackage_libetonyek.mk libreoffice-5.0.2~rc2/external/libetonyek/ExternalPackage_libetonyek.mk --- libreoffice-5.0.1~rc2/external/libetonyek/ExternalPackage_libetonyek.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libetonyek/ExternalPackage_libetonyek.mk 2015-09-17 13:33:12.000000000 +0000 @@ -16,7 +16,7 @@ else ifeq ($(OS),WNT) $(eval $(call gb_ExternalPackage_add_file,libetonyek,$(LIBO_LIB_FOLDER)/libetonyek-0.1.dll,src/lib/.libs/libetonyek-0.1.dll)) else ifeq ($(filter IOS ANDROID,$(OS)),) -$(eval $(call gb_ExternalPackage_add_file,libetonyek,$(LIBO_LIB_FOLDER)/libetonyek-0.1.so.1,src/lib/.libs/libetonyek-0.1.so.1.0.$(ETONYEK_VERSION_MICRO))) +$(eval $(call gb_ExternalPackage_add_file,libetonyek,$(LIBO_LIB_FOLDER)/libetonyek-0.1-lo.so.1,src/lib/.libs/libetonyek-0.1-lo.so.1.0.$(ETONYEK_VERSION_MICRO))) endif # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.0.1~rc2/external/libetonyek/libetonyek-bundled-soname.patch.0 libreoffice-5.0.2~rc2/external/libetonyek/libetonyek-bundled-soname.patch.0 --- libreoffice-5.0.1~rc2/external/libetonyek/libetonyek-bundled-soname.patch.0 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libetonyek/libetonyek-bundled-soname.patch.0 2015-09-17 13:33:12.000000000 +0000 @@ -0,0 +1,11 @@ +--- src/lib/Makefile.in.orig 2015-08-07 10:51:32.494810336 +0200 ++++ src/lib/Makefile.in 2015-08-07 10:51:55.493809942 +0200 +@@ -463,7 +463,7 @@ + + libetonyek_@ETONYEK_MAJOR_VERSION@_@ETONYEK_MINOR_VERSION@_la_LIBADD = libetonyek_internal.la $(REVENGE_LIBS) $(XML_LIBS) $(ZLIB_LIBS) @LIBETONYEK_WIN32_RESOURCE@ + libetonyek_@ETONYEK_MAJOR_VERSION@_@ETONYEK_MINOR_VERSION@_la_DEPENDENCIES = libetonyek_internal.la @LIBETONYEK_WIN32_RESOURCE@ +-libetonyek_@ETONYEK_MAJOR_VERSION@_@ETONYEK_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic -no-undefined ++libetonyek_@ETONYEK_MAJOR_VERSION@_@ETONYEK_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic -no-undefined -release lo + libetonyek_@ETONYEK_MAJOR_VERSION@_@ETONYEK_MINOR_VERSION@_la_SOURCES = \ + EtonyekDocument.cpp + diff -Nru libreoffice-5.0.1~rc2/external/libetonyek/UnpackedTarball_libetonyek.mk libreoffice-5.0.2~rc2/external/libetonyek/UnpackedTarball_libetonyek.mk --- libreoffice-5.0.1~rc2/external/libetonyek/UnpackedTarball_libetonyek.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libetonyek/UnpackedTarball_libetonyek.mk 2015-09-17 13:33:12.000000000 +0000 @@ -22,6 +22,14 @@ external/libetonyek/0001-try-to-fix-build-on-Windows.patch.1 \ )) +ifneq ($(OS),MACOSX) +ifneq ($(OS),WNT) +$(eval $(call gb_UnpackedTarball_add_patches,libetonyek,\ + external/libetonyek/libetonyek-bundled-soname.patch.0 \ +)) +endif +endif + ifeq ($(COM_GCC_IS_CLANG),TRUE) ifneq ($(filter -fsanitize=%,$(CC)),) $(eval $(call gb_UnpackedTarball_add_patches,libetonyek, \ diff -Nru libreoffice-5.0.1~rc2/external/libmwaw/ExternalPackage_libmwaw.mk libreoffice-5.0.2~rc2/external/libmwaw/ExternalPackage_libmwaw.mk --- libreoffice-5.0.1~rc2/external/libmwaw/ExternalPackage_libmwaw.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libmwaw/ExternalPackage_libmwaw.mk 2015-09-17 13:33:12.000000000 +0000 @@ -16,7 +16,7 @@ else ifeq ($(OS),WNT) $(eval $(call gb_ExternalPackage_add_file,libmwaw,$(LIBO_LIB_FOLDER)/libmwaw-0.3.dll,src/lib/.libs/libmwaw-0.3.dll)) else ifeq ($(filter IOS ANDROID,$(OS)),) -$(eval $(call gb_ExternalPackage_add_file,libmwaw,$(LIBO_LIB_FOLDER)/libmwaw-0.3.so.3,src/lib/.libs/libmwaw-0.3.so.3.0.$(MWAW_VERSION_MICRO))) +$(eval $(call gb_ExternalPackage_add_file,libmwaw,$(LIBO_LIB_FOLDER)/libmwaw-0.3-lo.so.3,src/lib/.libs/libmwaw-0.3-lo.so.3.0.$(MWAW_VERSION_MICRO))) endif # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.0.1~rc2/external/libmwaw/libmwaw-bundled-soname.patch.0 libreoffice-5.0.2~rc2/external/libmwaw/libmwaw-bundled-soname.patch.0 --- libreoffice-5.0.1~rc2/external/libmwaw/libmwaw-bundled-soname.patch.0 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libmwaw/libmwaw-bundled-soname.patch.0 2015-09-17 13:33:12.000000000 +0000 @@ -0,0 +1,14 @@ +--- src/lib/Makefile.in.orig 2015-08-07 14:04:47.646611627 +0200 ++++ src/lib/Makefile.in 2015-08-07 14:25:49.888589996 +0200 +@@ -418,8 +418,8 @@ + + AM_CXXFLAGS = -I$(top_srcdir)/inc $(REVENGE_CFLAGS) $(DEBUG_CXXFLAGS) + libmwaw_@MWAW_MAJOR_VERSION@_@MWAW_MINOR_VERSION@_la_LIBADD = $(REVENGE_LIBS) @LIBMWAW_WIN32_RESOURCE@ +-libmwaw_@MWAW_MAJOR_VERSION@_@MWAW_MINOR_VERSION@_la_DEPENDENCIES = @LIBMWAW_WIN32_RESOURCE@ +-libmwaw_@MWAW_MAJOR_VERSION@_@MWAW_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic -no-undefined ++libmwaw_@MWAW_MAJOR_VERSION@_@MWAW_MINOR_VERSION@_la_DEPENDENCIES = @LIBMWAW_WIN32_RESOURCE@ ++libmwaw_@MWAW_MAJOR_VERSION@_@MWAW_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic -no-undefined -release lo + libmwaw_@MWAW_MAJOR_VERSION@_@MWAW_MINOR_VERSION@_la_SOURCES = \ + libmwaw_internal.cxx \ + libmwaw_internal.hxx \ + diff -Nru libreoffice-5.0.1~rc2/external/libmwaw/UnpackedTarball_libmwaw.mk libreoffice-5.0.2~rc2/external/libmwaw/UnpackedTarball_libmwaw.mk --- libreoffice-5.0.1~rc2/external/libmwaw/UnpackedTarball_libmwaw.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libmwaw/UnpackedTarball_libmwaw.mk 2015-09-17 13:33:12.000000000 +0000 @@ -21,6 +21,14 @@ endif endif +ifneq ($(OS),MACOSX) +ifneq ($(OS),WNT) +$(eval $(call gb_UnpackedTarball_add_patches,libmwaw, \ + external/libmwaw/libmwaw-bundled-soname.patch.0 \ +)) +endif +endif + ifeq ($(SYSTEM_REVENGE),) $(eval $(call gb_UnpackedTarball_add_patches,libmwaw, \ external/libmwaw/rpath.patch \ diff -Nru libreoffice-5.0.1~rc2/external/libodfgen/ExternalPackage_libodfgen.mk libreoffice-5.0.2~rc2/external/libodfgen/ExternalPackage_libodfgen.mk --- libreoffice-5.0.1~rc2/external/libodfgen/ExternalPackage_libodfgen.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libodfgen/ExternalPackage_libodfgen.mk 2015-09-17 13:33:12.000000000 +0000 @@ -16,7 +16,7 @@ else ifeq ($(OS),WNT) $(eval $(call gb_ExternalPackage_add_file,libodfgen,$(LIBO_LIB_FOLDER)/libodfgen-0.1.dll,src/.libs/libodfgen-0.1.dll)) else ifeq ($(filter IOS ANDROID,$(OS)),) -$(eval $(call gb_ExternalPackage_add_file,libodfgen,$(LIBO_LIB_FOLDER)/libodfgen-0.1.so.1,src/.libs/libodfgen-0.1.so.1.0.$(ODFGEN_VERSION_MICRO))) +$(eval $(call gb_ExternalPackage_add_file,libodfgen,$(LIBO_LIB_FOLDER)/libodfgen-0.1-lo.so.1,src/.libs/libodfgen-0.1-lo.so.1.0.$(ODFGEN_VERSION_MICRO))) endif # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.0.1~rc2/external/libodfgen/libodfgen-bundled-soname.patch.0 libreoffice-5.0.2~rc2/external/libodfgen/libodfgen-bundled-soname.patch.0 --- libreoffice-5.0.1~rc2/external/libodfgen/libodfgen-bundled-soname.patch.0 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libodfgen/libodfgen-bundled-soname.patch.0 2015-09-17 13:33:12.000000000 +0000 @@ -0,0 +1,11 @@ +--- src/Makefile.in.orig 2015-08-07 11:26:16.388774624 +0200 ++++ src/Makefile.in 2015-08-07 11:27:01.428773852 +0200 +@@ -372,7 +372,7 @@ + AM_CXXFLAGS = -I$(top_srcdir)/inc/ $(REVENGE_CFLAGS) $(DEBUG_CXXFLAGS) -DLIBODFGEN_BUILD + libodfgen_@LIBODFGEN_MAJOR_VERSION@_@LIBODFGEN_MINOR_VERSION@_la_LIBADD = @LIBODFGEN_WIN32_RESOURCE@ $(REVENGE_LIBS) + libodfgen_@LIBODFGEN_MAJOR_VERSION@_@LIBODFGEN_MINOR_VERSION@_la_DEPENDENCIES = @LIBODFGEN_WIN32_RESOURCE@ +-libodfgen_@LIBODFGEN_MAJOR_VERSION@_@LIBODFGEN_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic -no-undefined ++libodfgen_@LIBODFGEN_MAJOR_VERSION@_@LIBODFGEN_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic -no-undefined -release lo + libodfgen_@LIBODFGEN_MAJOR_VERSION@_@LIBODFGEN_MINOR_VERSION@_la_SOURCES = \ + DocumentElement.cxx \ + DocumentElement.hxx \ diff -Nru libreoffice-5.0.1~rc2/external/libodfgen/UnpackedTarball_libodfgen.mk libreoffice-5.0.2~rc2/external/libodfgen/UnpackedTarball_libodfgen.mk --- libreoffice-5.0.1~rc2/external/libodfgen/UnpackedTarball_libodfgen.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libodfgen/UnpackedTarball_libodfgen.mk 2015-09-17 13:33:12.000000000 +0000 @@ -27,4 +27,13 @@ )) endif +ifneq ($(OS),MACOSX) +ifneq ($(OS),WNT) +$(eval $(call gb_UnpackedTarball_add_patches,libodfgen, \ + external/libodfgen/libodfgen-bundled-soname.patch.0 \ +)) +endif +endif + + # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.0.1~rc2/external/librevenge/ExternalPackage_librevenge.mk libreoffice-5.0.2~rc2/external/librevenge/ExternalPackage_librevenge.mk --- libreoffice-5.0.1~rc2/external/librevenge/ExternalPackage_librevenge.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/librevenge/ExternalPackage_librevenge.mk 2015-09-17 13:33:12.000000000 +0000 @@ -16,7 +16,7 @@ else ifeq ($(OS),WNT) $(eval $(call gb_ExternalPackage_add_file,librevenge,$(LIBO_LIB_FOLDER)/librevenge-0.0.dll,src/lib/.libs/librevenge-0.0.dll)) else ifeq ($(filter IOS ANDROID,$(OS)),) -$(eval $(call gb_ExternalPackage_add_file,librevenge,$(LIBO_LIB_FOLDER)/librevenge-0.0.so.0,src/lib/.libs/librevenge-0.0.so.0.0.2)) +$(eval $(call gb_ExternalPackage_add_file,librevenge,$(LIBO_LIB_FOLDER)/librevenge-0.0-lo.so.0,src/lib/.libs/librevenge-0.0-lo.so.0.0.2)) endif # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.0.1~rc2/external/librevenge/librevenge-bundled-soname.patch.0 libreoffice-5.0.2~rc2/external/librevenge/librevenge-bundled-soname.patch.0 --- libreoffice-5.0.1~rc2/external/librevenge/librevenge-bundled-soname.patch.0 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/librevenge/librevenge-bundled-soname.patch.0 2015-09-17 13:33:12.000000000 +0000 @@ -0,0 +1,11 @@ +--- src/lib/Makefile.in.orig 2015-08-07 11:57:42.256742305 +0200 ++++ src/lib/Makefile.in 2015-08-07 11:58:11.818741799 +0200 +@@ -470,7 +470,7 @@ + -DLIBREVENGE_BUILD $(am__append_2) + librevenge_@RVNG_MAJOR_VERSION@_@RVNG_MINOR_VERSION@_la_LIBADD = @LIBREVENGE_WIN32_RESOURCE@ + librevenge_@RVNG_MAJOR_VERSION@_@RVNG_MINOR_VERSION@_la_DEPENDENCIES = @LIBREVENGE_WIN32_RESOURCE@ +-librevenge_@RVNG_MAJOR_VERSION@_@RVNG_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic $(no_undefined) ++librevenge_@RVNG_MAJOR_VERSION@_@RVNG_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic $(no_undefined) -release lo + librevenge_@RVNG_MAJOR_VERSION@_@RVNG_MINOR_VERSION@_la_SOURCES = \ + RVNGBinaryData.cpp \ + RVNGMemoryStream.cpp \ diff -Nru libreoffice-5.0.1~rc2/external/librevenge/UnpackedTarball_librevenge.mk libreoffice-5.0.2~rc2/external/librevenge/UnpackedTarball_librevenge.mk --- libreoffice-5.0.1~rc2/external/librevenge/UnpackedTarball_librevenge.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/librevenge/UnpackedTarball_librevenge.mk 2015-09-17 13:33:12.000000000 +0000 @@ -21,4 +21,12 @@ endif endif +ifneq ($(OS),MACOSX) +ifneq ($(OS),WNT) +$(eval $(call gb_UnpackedTarball_add_patches,librevenge, \ + external/librevenge/librevenge-bundled-soname.patch.0 \ +)) +endif +endif + # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.0.1~rc2/external/libwpd/ExternalPackage_libwpd.mk libreoffice-5.0.2~rc2/external/libwpd/ExternalPackage_libwpd.mk --- libreoffice-5.0.1~rc2/external/libwpd/ExternalPackage_libwpd.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libwpd/ExternalPackage_libwpd.mk 2015-09-17 13:33:12.000000000 +0000 @@ -16,7 +16,7 @@ else ifeq ($(OS),WNT) $(eval $(call gb_ExternalPackage_add_file,libwpd,$(LIBO_LIB_FOLDER)/libwpd-0.10.dll,src/lib/.libs/libwpd-0.10.dll)) else ifeq ($(filter IOS ANDROID,$(OS)),) -$(eval $(call gb_ExternalPackage_add_file,libwpd,$(LIBO_LIB_FOLDER)/libwpd-0.10.so.10,src/lib/.libs/libwpd-0.10.so.10.0.0)) +$(eval $(call gb_ExternalPackage_add_file,libwpd,$(LIBO_LIB_FOLDER)/libwpd-0.10-lo.so.10,src/lib/.libs/libwpd-0.10-lo.so.10.0.0)) endif # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.0.1~rc2/external/libwpd/libwpd-bundled-soname.patch.0 libreoffice-5.0.2~rc2/external/libwpd/libwpd-bundled-soname.patch.0 --- libreoffice-5.0.1~rc2/external/libwpd/libwpd-bundled-soname.patch.0 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libwpd/libwpd-bundled-soname.patch.0 2015-09-17 13:33:12.000000000 +0000 @@ -0,0 +1,11 @@ +--- src/lib/Makefile.in.orig 2015-08-06 21:41:41.073622494 +0200 ++++ src/lib/Makefile.in 2015-08-06 21:42:09.377622009 +0200 +@@ -429,7 +429,7 @@ + AM_CXXFLAGS = -I$(top_srcdir)/inc $(REVENGE_CFLAGS) $(DEBUG_CXXFLAGS) -DLIBWPD_BUILD=1 + libwpd_@WPD_MAJOR_VERSION@_@WPD_MINOR_VERSION@_la_LIBADD = $(REVENGE_LIBS) @LIBWPD_WIN32_RESOURCE@ + libwpd_@WPD_MAJOR_VERSION@_@WPD_MINOR_VERSION@_la_DEPENDENCIES = @LIBWPD_WIN32_RESOURCE@ +-libwpd_@WPD_MAJOR_VERSION@_@WPD_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic $(no_undefined) ++libwpd_@WPD_MAJOR_VERSION@_@WPD_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic $(no_undefined) -release lo + libwpd_@WPD_MAJOR_VERSION@_@WPD_MINOR_VERSION@_la_SOURCES = \ + libwpd_internal.cpp \ + libwpd_math.cpp \ diff -Nru libreoffice-5.0.1~rc2/external/libwpd/UnpackedTarball_libwpd.mk libreoffice-5.0.2~rc2/external/libwpd/UnpackedTarball_libwpd.mk --- libreoffice-5.0.1~rc2/external/libwpd/UnpackedTarball_libwpd.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libwpd/UnpackedTarball_libwpd.mk 2015-09-17 13:33:12.000000000 +0000 @@ -18,4 +18,12 @@ $(if $(SYSTEM_REVENGE),,external/libwpd/rpath.patch) \ )) +ifneq ($(OS),MACOSX) +ifneq ($(OS),WNT) +$(eval $(call gb_UnpackedTarball_add_patches,libwpd,\ + external/libwpd/libwpd-bundled-soname.patch.0 \ +)) +endif +endif + # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.0.1~rc2/external/libwpg/ExternalPackage_libwpg.mk libreoffice-5.0.2~rc2/external/libwpg/ExternalPackage_libwpg.mk --- libreoffice-5.0.1~rc2/external/libwpg/ExternalPackage_libwpg.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libwpg/ExternalPackage_libwpg.mk 2015-09-17 13:33:12.000000000 +0000 @@ -16,7 +16,7 @@ else ifeq ($(OS),WNT) $(eval $(call gb_ExternalPackage_add_file,libwpg,$(LIBO_LIB_FOLDER)/libwpg-0.3.dll,src/lib/.libs/libwpg-0.3.dll)) else ifeq ($(filter IOS ANDROID,$(OS)),) -$(eval $(call gb_ExternalPackage_add_file,libwpg,$(LIBO_LIB_FOLDER)/libwpg-0.3.so.3,src/lib/.libs/libwpg-0.3.so.3.0.0)) +$(eval $(call gb_ExternalPackage_add_file,libwpg,$(LIBO_LIB_FOLDER)/libwpg-0.3-lo.so.3,src/lib/.libs/libwpg-0.3-lo.so.3.0.0)) endif # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.0.1~rc2/external/libwpg/libwpg-bundled-soname.patch.0 libreoffice-5.0.2~rc2/external/libwpg/libwpg-bundled-soname.patch.0 --- libreoffice-5.0.1~rc2/external/libwpg/libwpg-bundled-soname.patch.0 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libwpg/libwpg-bundled-soname.patch.0 2015-09-17 13:33:12.000000000 +0000 @@ -0,0 +1,11 @@ +--- src/lib/Makefile.in.orig 2015-08-06 21:30:41.615633795 +0200 ++++ src/lib/Makefile.in 2015-08-06 21:31:03.764633415 +0200 +@@ -357,7 +357,7 @@ + AM_CXXFLAGS = -I$(top_srcdir)/inc $(REVENGE_CFLAGS) $(WPD_CFLAGS) $(DEBUG_CXXFLAGS) -DLIBWPG_BUILD=1 + libwpg_@WPG_MAJOR_VERSION@_@WPG_MINOR_VERSION@_la_LIBADD = $(WPD_LIBS) $(REVENGE_LIBS) @LIBWPG_WIN32_RESOURCE@ + libwpg_@WPG_MAJOR_VERSION@_@WPG_MINOR_VERSION@_la_DEPENDENCIES = @LIBWPG_WIN32_RESOURCE@ +-libwpg_@WPG_MAJOR_VERSION@_@WPG_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic -no-undefined ++libwpg_@WPG_MAJOR_VERSION@_@WPG_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic -no-undefined -release lo + libwpg_@WPG_MAJOR_VERSION@_@WPG_MINOR_VERSION@_la_SOURCES = \ + WPGraphics.cpp \ + WPGDashArray.cpp \ diff -Nru libreoffice-5.0.1~rc2/external/libwpg/UnpackedTarball_libwpg.mk libreoffice-5.0.2~rc2/external/libwpg/UnpackedTarball_libwpg.mk --- libreoffice-5.0.1~rc2/external/libwpg/UnpackedTarball_libwpg.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libwpg/UnpackedTarball_libwpg.mk 2015-09-17 13:33:12.000000000 +0000 @@ -17,4 +17,12 @@ external/libwpg/rpath.patch \ )) +ifneq ($(OS),MACOSX) +ifneq ($(OS),WNT) +$(eval $(call gb_UnpackedTarball_add_patches,libwpg, \ + external/libwpg/libwpg-bundled-soname.patch.0 \ +)) +endif +endif + # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.0.1~rc2/external/libwps/ExternalPackage_libwps.mk libreoffice-5.0.2~rc2/external/libwps/ExternalPackage_libwps.mk --- libreoffice-5.0.1~rc2/external/libwps/ExternalPackage_libwps.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libwps/ExternalPackage_libwps.mk 2015-09-17 13:33:12.000000000 +0000 @@ -16,7 +16,7 @@ else ifeq ($(OS),WNT) $(eval $(call gb_ExternalPackage_add_file,libwps,$(LIBO_LIB_FOLDER)/libwps-0.4.dll,src/lib/.libs/libwps-0.4.dll)) else ifeq ($(filter IOS ANDROID,$(OS)),) -$(eval $(call gb_ExternalPackage_add_file,libwps,$(LIBO_LIB_FOLDER)/libwps-0.4.so.4,src/lib/.libs/libwps-0.4.so.4.0.$(WPS_VERSION_MICRO))) +$(eval $(call gb_ExternalPackage_add_file,libwps,$(LIBO_LIB_FOLDER)/libwps-0.4-lo.so.4,src/lib/.libs/libwps-0.4-lo.so.4.0.$(WPS_VERSION_MICRO))) endif # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.0.1~rc2/external/libwps/libwps-bundled-soname.patch.0 libreoffice-5.0.2~rc2/external/libwps/libwps-bundled-soname.patch.0 --- libreoffice-5.0.1~rc2/external/libwps/libwps-bundled-soname.patch.0 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libwps/libwps-bundled-soname.patch.0 2015-09-17 13:33:12.000000000 +0000 @@ -0,0 +1,11 @@ +--- src/lib/Makefile.in.orig 2015-08-06 11:41:55.081239194 +0200 ++++ src/lib/Makefile.in 2015-08-06 11:42:16.903238820 +0200 +@@ -369,7 +369,7 @@ + AM_CXXFLAGS = -I$(top_srcdir)/inc $(REVENGE_CFLAGS) $(DEBUG_CXXFLAGS) -DBUILD_WPS=1 + libwps_@WPS_MAJOR_VERSION@_@WPS_MINOR_VERSION@_la_LIBADD = $(REVENGE_LIBS) @LIBWPS_WIN32_RESOURCE@ + libwps_@WPS_MAJOR_VERSION@_@WPS_MINOR_VERSION@_la_DEPENDENCIES = @LIBWPS_WIN32_RESOURCE@ +-libwps_@WPS_MAJOR_VERSION@_@WPS_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic -no-undefined ++libwps_@WPS_MAJOR_VERSION@_@WPS_MINOR_VERSION@_la_LDFLAGS = $(version_info) -export-dynamic -no-undefined -release lo + libwps_@WPS_MAJOR_VERSION@_@WPS_MINOR_VERSION@_la_SOURCES = \ + libwps_internal.cpp \ + libwps_tools_win.h \ diff -Nru libreoffice-5.0.1~rc2/external/libwps/UnpackedTarball_libwps.mk libreoffice-5.0.2~rc2/external/libwps/UnpackedTarball_libwps.mk --- libreoffice-5.0.1~rc2/external/libwps/UnpackedTarball_libwps.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/external/libwps/UnpackedTarball_libwps.mk 2015-09-17 13:33:12.000000000 +0000 @@ -19,4 +19,12 @@ $(if $(SYSTEM_REVENGE),,external/libwps/rpath.patch.0) \ )) +ifneq ($(OS),MACOSX) +ifneq ($(OS),WNT) +$(eval $(call gb_UnpackedTarball_add_patches,libwps,\ + external/libwps/libwps-bundled-soname.patch.0 \ +)) +endif +endif + # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.0.1~rc2/extras/source/autocorr/emoji/emoji.ulf libreoffice-5.0.2~rc2/extras/source/autocorr/emoji/emoji.ulf --- libreoffice-5.0.1~rc2/extras/source/autocorr/emoji/emoji.ulf 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/extras/source/autocorr/emoji/emoji.ulf 2015-09-17 13:33:12.000000000 +0000 @@ -3549,51 +3549,51 @@ [CLOCK_FACE_ONE-THIRTY] x-comment = "🕜 (U+1F55C), see http://wiki.documentfoundation.org/Emoji" -en-US = "1:30" +en-US = "1.30" [CLOCK_FACE_TWO-THIRTY] x-comment = "🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji" -en-US = "2:30" +en-US = "2.30" [CLOCK_FACE_THREE-THIRTY] x-comment = "🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji" -en-US = "3:30" +en-US = "3.30" [CLOCK_FACE_FOUR-THIRTY] x-comment = "🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji" -en-US = "4:30" +en-US = "4.30" [CLOCK_FACE_FIVE-THIRTY] x-comment = "🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji" -en-US = "5:30" +en-US = "5.30" [CLOCK_FACE_SIX-THIRTY] x-comment = "🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji" -en-US = "6:30" +en-US = "6.30" [CLOCK_FACE_SEVEN-THIRTY] x-comment = "🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji" -en-US = "7:30" +en-US = "7.30" [CLOCK_FACE_EIGHT-THIRTY] x-comment = "🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji" -en-US = "8:30" +en-US = "8.30" [CLOCK_FACE_NINE-THIRTY] x-comment = "🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji" -en-US = "9:30" +en-US = "9.30" [CLOCK_FACE_TEN-THIRTY] x-comment = "🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji" -en-US = "10:30" +en-US = "10.30" [CLOCK_FACE_ELEVEN-THIRTY] x-comment = "🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji" -en-US = "11:30" +en-US = "11.30" [CLOCK_FACE_TWELVE-THIRTY] x-comment = "🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji" -en-US = "12:30" +en-US = "12.30" [MOUNT_FUJI] x-comment = "🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji" diff -Nru libreoffice-5.0.1~rc2/extras/source/autocorr/lang/bg/DocumentList.xml libreoffice-5.0.2~rc2/extras/source/autocorr/lang/bg/DocumentList.xml --- libreoffice-5.0.1~rc2/extras/source/autocorr/lang/bg/DocumentList.xml 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/extras/source/autocorr/lang/bg/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 @@ -16,60 +16,59 @@ - - + - + - + - + - + - + - + - + - + - + - + - + @@ -1114,8 +1113,9 @@ - + + diff -Nru libreoffice-5.0.1~rc2/extras/source/autocorr/lang/ca/DocumentList.xml libreoffice-5.0.2~rc2/extras/source/autocorr/lang/ca/DocumentList.xml --- libreoffice-5.0.1~rc2/extras/source/autocorr/lang/ca/DocumentList.xml 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/extras/source/autocorr/lang/ca/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 @@ -353,6 +353,11 @@ + + + + + @@ -464,7 +469,7 @@ - + @@ -514,7 +519,7 @@ - + @@ -591,7 +596,7 @@ - + @@ -835,7 +840,7 @@ - + @@ -864,7 +869,7 @@ - + diff -Nru libreoffice-5.0.1~rc2/extras/source/autocorr/lang/de/DocumentList.xml libreoffice-5.0.2~rc2/extras/source/autocorr/lang/de/DocumentList.xml --- libreoffice-5.0.1~rc2/extras/source/autocorr/lang/de/DocumentList.xml 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/extras/source/autocorr/lang/de/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 @@ -1265,29 +1265,29 @@ - - + + - + - + - + - + - + - + - + - + - + - + diff -Nru libreoffice-5.0.1~rc2/extras/source/autocorr/lang/en-AU/DocumentList.xml libreoffice-5.0.2~rc2/extras/source/autocorr/lang/en-AU/DocumentList.xml --- libreoffice-5.0.1~rc2/extras/source/autocorr/lang/en-AU/DocumentList.xml 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/extras/source/autocorr/lang/en-AU/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 @@ -827,56 +827,56 @@ - + - + - + - + - + - + - + - + - + - + - + - + diff -Nru libreoffice-5.0.1~rc2/extras/source/autocorr/lang/en-US/DocumentList.xml libreoffice-5.0.2~rc2/extras/source/autocorr/lang/en-US/DocumentList.xml --- libreoffice-5.0.1~rc2/extras/source/autocorr/lang/en-US/DocumentList.xml 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/extras/source/autocorr/lang/en-US/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 @@ -832,56 +832,56 @@ - + - + - + - + - + - + - + - + - + - + - + - + diff -Nru libreoffice-5.0.1~rc2/extras/source/autocorr/lang/es/DocumentList.xml libreoffice-5.0.2~rc2/extras/source/autocorr/lang/es/DocumentList.xml --- libreoffice-5.0.1~rc2/extras/source/autocorr/lang/es/DocumentList.xml 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/extras/source/autocorr/lang/es/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 @@ -501,6 +501,8 @@ + + @@ -975,7 +977,7 @@ - + @@ -1444,7 +1446,7 @@ - + diff -Nru libreoffice-5.0.1~rc2/extras/source/autocorr/lang/is/DocumentList.xml libreoffice-5.0.2~rc2/extras/source/autocorr/lang/is/DocumentList.xml --- libreoffice-5.0.1~rc2/extras/source/autocorr/lang/is/DocumentList.xml 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.0.2~rc2/extras/source/autocorr/lang/is/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-5.0.1~rc2/extras/source/autocorr/lang/it/DocumentList.xml libreoffice-5.0.2~rc2/extras/source/autocorr/lang/it/DocumentList.xml --- libreoffice-5.0.1~rc2/extras/source/autocorr/lang/it/DocumentList.xml 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/extras/source/autocorr/lang/it/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 @@ -90,56 +90,56 @@ - + - + - + - + - + - + - + - + - + - + - + - + diff -Nru libreoffice-5.0.1~rc2/extras/source/autocorr/lang/nl/DocumentList.xml libreoffice-5.0.2~rc2/extras/source/autocorr/lang/nl/DocumentList.xml --- libreoffice-5.0.1~rc2/extras/source/autocorr/lang/nl/DocumentList.xml 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/extras/source/autocorr/lang/nl/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 @@ -178,6 +178,7 @@ + @@ -191,6 +192,7 @@ + @@ -599,6 +601,7 @@ + diff -Nru libreoffice-5.0.1~rc2/extras/source/autocorr/lang/pl/DocumentList.xml libreoffice-5.0.2~rc2/extras/source/autocorr/lang/pl/DocumentList.xml --- libreoffice-5.0.1~rc2/extras/source/autocorr/lang/pl/DocumentList.xml 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/extras/source/autocorr/lang/pl/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 @@ -534,6 +534,7 @@ + @@ -654,6 +655,7 @@ + @@ -715,7 +717,6 @@ - @@ -736,11 +737,8 @@ - + - - - @@ -751,11 +749,11 @@ - + @@ -773,9 +771,8 @@ - - + @@ -838,7 +835,6 @@ - @@ -872,9 +868,8 @@ - + - @@ -895,7 +890,6 @@ - @@ -934,6 +928,7 @@ + @@ -992,7 +987,6 @@ - @@ -1022,6 +1016,11 @@ + + + + + @@ -1080,7 +1079,7 @@ - + @@ -1106,7 +1105,8 @@ - + + @@ -1130,12 +1130,13 @@ + - - - + + + @@ -1160,7 +1161,6 @@ - @@ -1169,7 +1169,6 @@ - @@ -1206,6 +1205,7 @@ + @@ -1235,7 +1235,7 @@ - + @@ -1263,6 +1263,7 @@ + @@ -1272,15 +1273,15 @@ - + + - @@ -1344,7 +1345,6 @@ - @@ -1371,7 +1371,6 @@ - @@ -1385,7 +1384,6 @@ - @@ -1396,12 +1394,10 @@ - - @@ -1423,6 +1419,7 @@ + @@ -1466,6 +1463,7 @@ + @@ -1476,6 +1474,7 @@ + @@ -1497,12 +1496,14 @@ + + - + @@ -1556,6 +1557,7 @@ + @@ -1569,12 +1571,14 @@ + + @@ -1584,12 +1588,13 @@ - + - + + @@ -1608,8 +1613,8 @@ - + @@ -1630,6 +1635,7 @@ + diff -Nru libreoffice-5.0.1~rc2/extras/source/autocorr/lang/pt/DocumentList.xml libreoffice-5.0.2~rc2/extras/source/autocorr/lang/pt/DocumentList.xml --- libreoffice-5.0.1~rc2/extras/source/autocorr/lang/pt/DocumentList.xml 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/extras/source/autocorr/lang/pt/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 @@ -98,56 +98,56 @@ - + - + - + - + - + - + - + - + - + - + - + - + @@ -943,7 +943,12 @@ + + + + + Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/filter/qa/cppunit/data/met/fail/hang-2.met and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/filter/qa/cppunit/data/met/fail/hang-2.met differ diff -Nru libreoffice-5.0.1~rc2/filter/qa/cppunit/data/pbm/fail/crash-1.pbm libreoffice-5.0.2~rc2/filter/qa/cppunit/data/pbm/fail/crash-1.pbm --- libreoffice-5.0.1~rc2/filter/qa/cppunit/data/pbm/fail/crash-1.pbm 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.0.2~rc2/filter/qa/cppunit/data/pbm/fail/crash-1.pbm 2015-09-17 13:33:12.000000000 +0000 @@ -0,0 +1,6 @@ +P3 +30000000000000000000000000000000 1 +255 +103 79 59 + 95 7P 55 + 87 67 51 Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/filter/qa/cppunit/data/pict/fail/hang-1.pct and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/filter/qa/cppunit/data/pict/fail/hang-1.pct differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/filter/qa/cppunit/data/tiff/fail/hang-10.tiff and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/filter/qa/cppunit/data/tiff/fail/hang-10.tiff differ diff -Nru libreoffice-5.0.1~rc2/filter/source/flash/swfexporter.cxx libreoffice-5.0.2~rc2/filter/source/flash/swfexporter.cxx --- libreoffice-5.0.1~rc2/filter/source/flash/swfexporter.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/filter/source/flash/swfexporter.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -431,8 +431,8 @@ getMetaFile( xCompMaster, aMtfMaster, true ); getMetaFile( xComponent, aMtfPrivate, true ); - sal_uInt32 masterchecksum = aMtfMaster.GetChecksum(); - sal_uInt32 privatechecksum = aMtfPrivate.GetChecksum(); + BitmapChecksum masterchecksum = aMtfMaster.GetChecksum(); + BitmapChecksum privatechecksum = aMtfPrivate.GetChecksum(); // AS: If the slide has its own background if (privatechecksum) @@ -484,7 +484,7 @@ { Reference< XShapes > xShapes( xMasterPage, UNO_QUERY ); - sal_uInt32 shapesum = ActionSummer(xShapes); + BitmapChecksum shapesum = ActionSummer(xShapes); ChecksumCache::iterator it = gObjectCache.find(shapesum); @@ -631,7 +631,7 @@ getMetaFile( xComponent, aMtf, false, true ); sal_uInt16 nID; - sal_uInt32 checksum = aMtf.GetChecksum(); + BitmapChecksum checksum = aMtf.GetChecksum(); ChecksumCache::iterator it = gMetafileCache.find(checksum); @@ -748,7 +748,7 @@ return rMtf.GetActionSize() != 0; } -sal_uInt32 FlashExporter::ActionSummer(Reference< XShape >& xShape) +BitmapChecksum FlashExporter::ActionSummer(Reference< XShape >& xShape) { Reference< XShapes > xShapes( xShape, UNO_QUERY ); @@ -767,10 +767,10 @@ } } -sal_uInt32 FlashExporter::ActionSummer(Reference< XShapes >& xShapes) +BitmapChecksum FlashExporter::ActionSummer(Reference< XShapes >& xShapes) { sal_uInt32 nShapeCount = xShapes->getCount(); - sal_uInt32 shapecount = 0; + BitmapChecksum shapecount = 0; Reference< XShape > xShape2; diff -Nru libreoffice-5.0.1~rc2/filter/source/flash/swfexporter.hxx libreoffice-5.0.2~rc2/filter/source/flash/swfexporter.hxx --- libreoffice-5.0.1~rc2/filter/source/flash/swfexporter.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/filter/source/flash/swfexporter.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -29,11 +29,12 @@ #include #include #include +#include #include #include -typedef ::std::map ChecksumCache; +typedef ::std::map ChecksumCache; class GDIMetaFile; @@ -185,8 +186,8 @@ void exportShapes( const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShapes >& xShapes, bool bStream, bool bMaster ); void exportShape( const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >& xShape, bool bMaster); - sal_uInt32 ActionSummer(::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >& xShape); - sal_uInt32 ActionSummer(::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShapes >& xShapes); + BitmapChecksum ActionSummer(::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >& xShape); + BitmapChecksum ActionSummer(::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShapes >& xShapes); void animateShape( ShapeAnimationInfo& rAnimInfo ); void animatePage( PageInfo* pPageInfo ); diff -Nru libreoffice-5.0.1~rc2/filter/source/flash/swfwriter1.cxx libreoffice-5.0.2~rc2/filter/source/flash/swfwriter1.cxx --- libreoffice-5.0.1~rc2/filter/source/flash/swfwriter1.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/filter/source/flash/swfwriter1.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -787,7 +787,7 @@ sal_uInt16 Writer::defineBitmap( const BitmapEx &bmpSource, sal_Int32 nJPEGQualityLevel ) { - sal_uLong bmpChecksum = bmpSource.GetChecksum(); + BitmapChecksum bmpChecksum = bmpSource.GetChecksum(); ChecksumCache::iterator it = mBitmapCache.find(bmpChecksum); diff -Nru libreoffice-5.0.1~rc2/filter/source/flash/swfwriter.hxx libreoffice-5.0.2~rc2/filter/source/flash/swfwriter.hxx --- libreoffice-5.0.1~rc2/filter/source/flash/swfwriter.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/filter/source/flash/swfwriter.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -23,6 +23,7 @@ #include #include #include +#include #include #include #include @@ -106,7 +107,7 @@ -typedef ::std::map ChecksumCache; +typedef ::std::map ChecksumCache; /** unsigned int 16 compare operation for stl */ struct ltuint16 diff -Nru libreoffice-5.0.1~rc2/filter/source/graphicfilter/ios2met/ios2met.cxx libreoffice-5.0.2~rc2/filter/source/graphicfilter/ios2met/ios2met.cxx --- libreoffice-5.0.1~rc2/filter/source/graphicfilter/ios2met/ios2met.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/filter/source/graphicfilter/ios2met/ios2met.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -2660,21 +2660,34 @@ pOS2MET->ReadUInt16(nFieldType); pOS2MET->SeekRel(3); - nPos+=8; nFieldSize-=8; - if (pOS2MET->GetError()) break; - if (pOS2MET->IsEof()) { + if (pOS2MET->GetError()) + break; + + if (nFieldType==EndDocumnMagic) + break; + + if (pOS2MET->IsEof() || nFieldSize < 8) + { pOS2MET->SetError(SVSTREAM_FILEFORMAT_ERROR); ErrorCode=8; break; } - if (nFieldType==EndDocumnMagic) break; + nPos+=8; nFieldSize-=8; + + if (nFieldSize > pOS2MET->remainingSize()) + { + pOS2MET->SetError(SVSTREAM_FILEFORMAT_ERROR); + ErrorCode=8; + break; + } ReadField(nFieldType, nFieldSize); + nPos += nFieldSize; - nPos+=(sal_uLong)nFieldSize; - if (pOS2MET->Tell()>nPos) { + if (pOS2MET->Tell() > nPos) + { pOS2MET->SetError(SVSTREAM_FILEFORMAT_ERROR); ErrorCode=9; break; diff -Nru libreoffice-5.0.1~rc2/filter/source/graphicfilter/ipbm/ipbm.cxx libreoffice-5.0.2~rc2/filter/source/graphicfilter/ipbm/ipbm.cxx --- libreoffice-5.0.1~rc2/filter/source/graphicfilter/ipbm/ipbm.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/filter/source/graphicfilter/ipbm/ipbm.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -37,7 +37,7 @@ sal_uLong mnMode; // 0->PBM, 1->PGM, 2->PPM Bitmap maBmp; BitmapWriteAccess* mpAcc; - sal_uLong mnWidth, mnHeight; // dimensions in pixel + sal_Int32 mnWidth, mnHeight; // dimensions in pixel sal_uLong mnCol; sal_uLong mnMaxVal; // max value in the bool ImplReadBody(); @@ -83,7 +83,7 @@ if ( !( mbStatus = ImplReadHeader() ) ) return false; - if ( ( mnMaxVal == 0 ) || ( mnWidth == 0 ) || ( mnHeight == 0 ) ) + if ( ( mnMaxVal == 0 ) || ( mnWidth <= 0 ) || ( mnHeight <= 0 ) ) return false; // 0->PBM, 1->PGM, 2->PPM @@ -91,7 +91,8 @@ { case 0 : maBmp = Bitmap( Size( mnWidth, mnHeight ), 1 ); - if ( ( mpAcc = maBmp.AcquireWriteAccess() ) == 0 ) + mpAcc = maBmp.AcquireWriteAccess(); + if (!mpAcc || mpAcc->Width() != mnWidth || mpAcc->Height() != mnHeight) return false; mpAcc->SetPaletteEntryCount( 2 ); mpAcc->SetPaletteColor( 0, BitmapColor( 0xff, 0xff, 0xff ) ); @@ -217,17 +218,41 @@ nDat -= '0'; if ( nCount == 0 ) { + if (mnWidth > SAL_MAX_INT32 / 10) + { + return false; + } mnWidth *= 10; + if (nDat > SAL_MAX_INT32 - mnWidth) + { + return false; + } mnWidth += nDat; } else if ( nCount == 1 ) { + if (mnHeight > SAL_MAX_INT32 / 10) + { + return false; + } mnHeight *= 10; + if (nDat > SAL_MAX_INT32 - mnHeight) + { + return false; + } mnHeight += nDat; } else if ( nCount == 2 ) { + if (mnMaxVal > std::numeric_limits::max() / 10) + { + return false; + } mnMaxVal *= 10; + if (nDat > std::numeric_limits::max() - mnMaxVal) + { + return false; + } mnMaxVal += nDat; } } @@ -242,8 +267,8 @@ bool bPara, bFinished = false; sal_uInt8 nDat = 0, nCount; sal_uLong nGrey, nRGB[3]; - sal_uLong nWidth = 0; - sal_uLong nHeight = 0; + sal_Int32 nWidth = 0; + sal_Int32 nHeight = 0; if ( mbRaw ) { diff -Nru libreoffice-5.0.1~rc2/filter/source/graphicfilter/ipict/ipict.cxx libreoffice-5.0.2~rc2/filter/source/graphicfilter/ipict/ipict.cxx --- libreoffice-5.0.1~rc2/filter/source/graphicfilter/ipict/ipict.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/filter/source/graphicfilter/ipict/ipict.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -824,8 +824,7 @@ // read and write Bitmap bits: if ( nPixelSize == 1 || nPixelSize == 2 || nPixelSize == 4 || nPixelSize == 8 ) { - sal_uInt8 nByteCountAsByte, nFlagCounterByte; - sal_uInt16 nByteCount, nSrcBPL, nDestBPL; + sal_uInt16 nSrcBPL, nDestBPL; size_t nCount; if ( nPixelSize == 1 ) nSrcBPL = ( nWidth + 7 ) >> 3; @@ -851,6 +850,7 @@ } else { + sal_uInt16 nByteCount(0); if ( nRowBytes > 250 ) { pPict->ReadUInt16( nByteCount ); @@ -858,14 +858,16 @@ } else { + sal_uInt8 nByteCountAsByte(0); pPict->ReadUChar( nByteCountAsByte ); nByteCount = ( (sal_uInt16)nByteCountAsByte ) & 0x00ff; nDataSize += 1 + (sal_uLong)nByteCount; } - while ( nByteCount ) + while (pPict->good() && nByteCount) { - pPict->ReadUChar( nFlagCounterByte ); + sal_uInt8 nFlagCounterByte(0); + pPict->ReadUChar(nFlagCounterByte); if ( ( nFlagCounterByte & 0x80 ) == 0 ) { nCount = ( (sal_uInt16)nFlagCounterByte ) + 1; diff -Nru libreoffice-5.0.1~rc2/filter/source/graphicfilter/itiff/lzwdecom.cxx libreoffice-5.0.2~rc2/filter/source/graphicfilter/itiff/lzwdecom.cxx --- libreoffice-5.0.1~rc2/filter/source/graphicfilter/itiff/lzwdecom.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/filter/source/graphicfilter/itiff/lzwdecom.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -19,6 +19,8 @@ #include "lzwdecom.hxx" +#include +#include #define MAX_TABLE_SIZE 4096 @@ -161,8 +163,18 @@ return; } + unsigned char aSeenIndexes[MAX_TABLE_SIZE] = {0}; while (pTable[nCodeFirstData].nDataCount>1) + { + if (aSeenIndexes[nCodeFirstData]) + { + SAL_WARN("filter.tiff", "Loop in chain"); + bEOIFound = true; + return; + } + aSeenIndexes[nCodeFirstData] = 1; nCodeFirstData=pTable[nCodeFirstData].nPrevCode; + } pTable[nTableSize].nPrevCode=nPrevCode; pTable[nTableSize].nDataCount=pTable[nPrevCode].nDataCount+1; diff -Nru libreoffice-5.0.1~rc2/filter/source/msfilter/msdffimp.cxx libreoffice-5.0.2~rc2/filter/source/msfilter/msdffimp.cxx --- libreoffice-5.0.1~rc2/filter/source/msfilter/msdffimp.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/filter/source/msfilter/msdffimp.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -399,7 +399,8 @@ if ( aHd.nRecType == DFF_msofbtSolverContainer ) { DffRecordHeader aCRule; - while ( ( rIn.GetError() == 0 ) && ( rIn.Tell() < aHd.GetRecEndFilePos() ) ) + auto nEndPos = DffPropSet::SanitizeEndPos(rIn, aHd.GetRecEndFilePos()); + while ( ( rIn.GetError() == 0 ) && ( rIn.Tell() < nEndPos ) ) { ReadDffRecordHeader( rIn, aCRule ); if ( aCRule.nRecType == DFF_msofbtConnectorRule ) @@ -408,7 +409,8 @@ rIn >> *pRule; rContainer.aCList.push_back( pRule ); } - aCRule.SeekToEndOfRecord( rIn ); + if (!aCRule.SeekToEndOfRecord(rIn)) + break; } } return rIn; @@ -3253,12 +3255,19 @@ if ( pRecHd != NULL ) *pRecHd = aHd; else - aHd.SeekToBegOfRecord( rSt ); + { + bool bSeekSuccess = aHd.SeekToBegOfRecord(rSt); + if (!bSeekSuccess) + { + bRet = false; + break; + } + } } } if ( !bRet ) { - bool bSeekSuccess = aHd.SeekToEndOfRecord( rSt ); + bool bSeekSuccess = aHd.SeekToEndOfRecord(rSt); if (!bSeekSuccess) break; } @@ -3287,11 +3296,22 @@ if ( pRecHd ) *pRecHd = aHd; else - aHd.SeekToBegOfRecord( rStCtrl ); + { + bool bSeekSuccess = aHd.SeekToBegOfRecord(rStCtrl); + if (!bSeekSuccess) + { + bRet = false; + break; + } + } } } if ( !bRet ) - aHd.SeekToEndOfRecord( rStCtrl ); + { + bool bSeekSuccess = aHd.SeekToEndOfRecord(rStCtrl); + if (!bSeekSuccess) + break; + } } while ( rStCtrl.good() && rStCtrl.Tell() < nMaxFilePos && !bRet ); if ( !bRet ) @@ -4139,17 +4159,17 @@ SEEK_FROM_BEGINNING ) ) { sal_uInt32 nBytesLeft = maShapeRecords.Current()->nRecLen; - sal_uInt32 nUDData; - sal_uInt16 nPID; while( 5 < nBytesLeft ) { - rSt.ReadUInt16( nPID ); - if ( rSt.GetError() != 0 ) + sal_uInt16 nPID(0); + rSt.ReadUInt16(nPID); + if (!rSt.good()) break; - rSt.ReadUInt32( nUDData ); - if ( rSt.GetError() != 0 ) + sal_uInt32 nUDData(0); + rSt.ReadUInt32(nUDData); + if (!rSt.good()) break; - if ( nPID == 447 ) + if (nPID == 447) { mbRotateGranientFillWithAngle = nUDData & 0x20; break; @@ -4973,15 +4993,15 @@ && maShapeRecords.Current()->nRecLen ) { sal_uInt32 nBytesLeft = maShapeRecords.Current()->nRecLen; - sal_uInt32 nUDData; - sal_uInt16 nPID; while( 5 < nBytesLeft ) { - rSt.ReadUInt16( nPID ); - if ( rSt.GetError() != 0 ) + sal_uInt16 nPID(0); + rSt.ReadUInt16(nPID); + if (!rSt.good()) break; - rSt.ReadUInt32( nUDData ); - switch( nPID ) + sal_uInt32 nUDData(0); + rSt.ReadUInt32(nUDData); + switch (nPID) { case 0x038F: pImpRec->nXAlign = nUDData; break; case 0x0390: @@ -5011,7 +5031,7 @@ pImpRec->isHorizontalRule = true; break; } - if ( rSt.GetError() != 0 ) + if (!rSt.good()) break; nBytesLeft -= 6; } diff -Nru libreoffice-5.0.1~rc2/filter/source/msfilter/svdfppt.cxx libreoffice-5.0.2~rc2/filter/source/msfilter/svdfppt.cxx --- libreoffice-5.0.1~rc2/filter/source/msfilter/svdfppt.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/filter/source/msfilter/svdfppt.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -707,6 +707,18 @@ } } +sal_uLong DffPropSet::SanitizeEndPos(SvStream &rIn, sal_uLong nEndRecPos) +{ + auto nStreamLen = rIn.Tell() + rIn.remainingSize(); + if (nEndRecPos > nStreamLen) + { + SAL_WARN("filter.ms", "Parsing error: " << nStreamLen << + " max end pos, but " << nEndRecPos << " claimed, truncating"); + nEndRecPos = nStreamLen; + } + return nEndRecPos; +} + /* ProcessObject is called from ImplSdPPTImport::ProcessObj to handle all application specific things, such as the import of text, animation effects, header footer and placeholder. @@ -732,7 +744,8 @@ { sal_Int16 nHeaderFooterInstance = -1; DffRecordHeader aClientDataHd; - while ( ( rSt.GetError() == 0 ) && ( rSt.Tell() < maShapeRecords.Current()->GetRecEndFilePos() ) ) + auto nEndRecPos = SanitizeEndPos(rSt, maShapeRecords.Current()->GetRecEndFilePos()); + while ( ( rSt.GetError() == 0 ) && ( rSt.Tell() < nEndRecPos ) ) { ReadDffRecordHeader( rSt, aClientDataHd ); switch ( aClientDataHd.nRecType ) @@ -772,7 +785,8 @@ } break; } - aClientDataHd.SeekToEndOfRecord( rSt ); + if (!aClientDataHd.SeekToEndOfRecord(rSt)) + break; } } if ( ( aPlaceholderAtom.nPlaceholderId == PptPlaceholder::NOTESSLIDEIMAGE ) && !rPersistEntry.bNotesMaster ) @@ -1353,9 +1367,8 @@ while( nCurrentEditAtomStrmPos ) { sal_uInt32 nPersistIncPos = aCurrentEditAtom.nOffsetPersistDirectory; - if ( nPersistIncPos ) + if (nPersistIncPos && rStCtrl.Seek(nPersistIncPos) == nPersistIncPos) { - rStCtrl.Seek( nPersistIncPos ); DffRecordHeader aPersistHd; ReadDffRecordHeader( rStCtrl, aPersistHd ); if ( aPersistHd.nRecType == PPT_PST_PersistPtrIncrementalBlock ) @@ -1785,8 +1798,10 @@ if ( const_cast(this)->maShapeRecords.SeekToContent( rStCtrl, DFF_msofbtClientData, SEEK_FROM_CURRENT_AND_RESTART ) ) { DffRecordHeader aPlaceHd; + + auto nEndRecPos = SanitizeEndPos(rStCtrl, const_cast(this)->maShapeRecords.Current()->GetRecEndFilePos()); while ( ( rStCtrl.GetError() == 0 ) - && ( rStCtrl.Tell() < const_cast(this)->maShapeRecords.Current()->GetRecEndFilePos() ) ) + && ( rStCtrl.Tell() < nEndRecPos ) ) { ReadDffRecordHeader( rStCtrl, aPlaceHd ); if ( aPlaceHd.nRecType == PPT_PST_RecolorInfoAtom ) @@ -1795,7 +1810,10 @@ break; } else - aPlaceHd.SeekToEndOfRecord( rStCtrl ); + { + if (!aPlaceHd.SeekToEndOfRecord(rStCtrl)) + break; + } } } @@ -2387,7 +2405,8 @@ } } } - aProgTagBinaryDataHd.SeekToEndOfRecord( rSt ); + if (!aProgTagBinaryDataHd.SeekToEndOfRecord(rSt)) + break; } } if ( !bRetValue ) @@ -2538,11 +2557,17 @@ while( ( pMasterPersist && pMasterPersist->aSlideAtom.nFlags & 2 ) // it is possible that a masterpage && pMasterPersist->aSlideAtom.nMasterId ) // itself is following a master colorscheme { - sal_uInt16 nNextMaster = pMasterPages->FindPage( pMasterPersist->aSlideAtom.nMasterId ); + auto nOrigMasterId = pMasterPersist->aSlideAtom.nMasterId; + sal_uInt16 nNextMaster = pMasterPages->FindPage(nOrigMasterId); if ( nNextMaster == PPTSLIDEPERSIST_ENTRY_NOTFOUND ) break; else pMasterPersist = &(*pPageList2)[ nNextMaster ]; + if (pMasterPersist->aSlideAtom.nMasterId == nOrigMasterId) + { + SAL_WARN("filter.ms", "loop in atom chain"); + break; + } } } if ( pMasterPersist ) @@ -2551,7 +2576,7 @@ } } } - // resgister current color scheme + // register current color scheme const_cast(this)->nPageColorsNum = nAktPageNum; const_cast(this)->ePageColorsKind = eAktPageKind; } @@ -2562,7 +2587,7 @@ bool SdrPowerPointImport::SeekToShape( SvStream& rSt, void* pClientData, sal_uInt32 nId ) const { bool bRet = SvxMSDffManager::SeekToShape( rSt, pClientData, nId ); - if ( !bRet ) + if (!bRet && pClientData) { ProcessData& rData = *static_cast(pClientData); PptSlidePersistEntry& rPersistEntry = rData.rPersistEntry; @@ -2643,7 +2668,9 @@ sal_Int32 nPosX = 0; sal_Int32 nPosY = 0; - while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < rComment10Hd.GetRecEndFilePos() ) ) + + auto nEndRecPos = DffPropSet::SanitizeEndPos(rStCtrl, rComment10Hd.GetRecEndFilePos()); + while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < nEndRecPos ) ) { DffRecordHeader aCommentHd; ReadDffRecordHeader( rStCtrl, aCommentHd ); @@ -2680,7 +2707,8 @@ } break; } - aCommentHd.SeekToEndOfRecord( rStCtrl ); + if (!aCommentHd.SeekToEndOfRecord(rStCtrl)) + break; } Point aPosition( nPosX, nPosY ); rMan.Scale( aPosition ); @@ -2718,7 +2746,8 @@ { rSlidePersist.pHeaderFooterEntry = new HeaderFooterEntry( pMasterPersist ); ProcessData aProcessData( rSlidePersist, SdPageCapsule(pRet) ); - while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < aPageHd.GetRecEndFilePos() ) ) + auto nEndRecPos = SanitizeEndPos(rStCtrl, aPageHd.GetRecEndFilePos()); + while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < nEndRecPos ) ) { DffRecordHeader aHd; ReadDffRecordHeader( rStCtrl, aHd ); @@ -2739,7 +2768,8 @@ while( ( rStCtrl.GetError() == 0 ) && SeekToRec( rStCtrl, PPT_PST_Comment10, aContentDataHd.GetRecEndFilePos(), &aComment10Hd ) ) { ImportComment10( *this, rStCtrl, pRet, aComment10Hd ); - aComment10Hd.SeekToEndOfRecord( rStCtrl ); + if (!aComment10Hd.SeekToEndOfRecord(rStCtrl)) + break; } } } @@ -2753,7 +2783,8 @@ sal_uInt32 nPPDrawOfs = rStCtrl.Tell(); // importing the background object before importing the page - while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < aPPDrawHd.GetRecEndFilePos() ) ) + auto nPPEndRecPos = SanitizeEndPos(rStCtrl, aPPDrawHd.GetRecEndFilePos()); + while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < nPPEndRecPos ) ) { DffRecordHeader aEscherObjListHd; ReadDffRecordHeader( rStCtrl, aEscherObjListHd ); @@ -2771,11 +2802,17 @@ PptSlidePersistEntry* pE = &(*pPageList)[ nMasterNum ]; while( ( pE->aSlideAtom.nFlags & 4 ) && pE->aSlideAtom.nMasterId ) { - sal_uInt16 nNextMaster = pMasterPages->FindPage( pE->aSlideAtom.nMasterId ); + auto nOrigMasterId = pE->aSlideAtom.nMasterId; + sal_uInt16 nNextMaster = pMasterPages->FindPage(nOrigMasterId); if ( nNextMaster == PPTSLIDEPERSIST_ENTRY_NOTFOUND ) break; else pE = &(*pPageList)[ nNextMaster ]; + if (pE->aSlideAtom.nMasterId == nOrigMasterId) + { + SAL_WARN("filter.ms", "loop in atom chain"); + break; + } } if ( pE->nBackgroundOffset ) { @@ -2810,12 +2847,14 @@ } if ( aEscherObjListHd.nRecType == DFF_msofbtSpContainer ) break; - aEscherObjListHd.SeekToEndOfRecord( rStCtrl ); + if (!aEscherObjListHd.SeekToEndOfRecord(rStCtrl)) + break; } // now importing page rStCtrl.Seek( nPPDrawOfs ); - while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < aPPDrawHd.GetRecEndFilePos() ) ) + auto nHdEndRecPos = SanitizeEndPos(rStCtrl, aPPDrawHd.GetRecEndFilePos()); + while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < nHdEndRecPos ) ) { DffRecordHeader aEscherObjListHd; ReadDffRecordHeader( rStCtrl, aEscherObjListHd ); @@ -2827,7 +2866,8 @@ if ( SeekToRec( rStCtrl, DFF_msofbtSpContainer, aEscherObjListHd.GetRecEndFilePos(), &aShapeHd ) ) { aShapeHd.SeekToEndOfRecord( rStCtrl ); - while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < aEscherObjListHd.GetRecEndFilePos() ) ) + auto nListEndRecPos = SanitizeEndPos(rStCtrl, aEscherObjListHd.GetRecEndFilePos()); + while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < nListEndRecPos ) ) { ReadDffRecordHeader( rStCtrl, aShapeHd ); if ( ( aShapeHd.nRecType == DFF_msofbtSpContainer ) || ( aShapeHd.nRecType == DFF_msofbtSpgrContainer ) ) @@ -2848,7 +2888,9 @@ insertShapeId( nShapeId, pObj ); } } - aShapeHd.SeekToEndOfRecord( rStCtrl ); + bool bSuccess = aShapeHd.SeekToEndOfRecord(rStCtrl); + if (!bSuccess) + break; } } } @@ -2856,7 +2898,8 @@ } if ( aEscherObjListHd.nRecType == DFF_msofbtSpgrContainer ) break; - aEscherObjListHd.SeekToEndOfRecord( rStCtrl ); + if (!aEscherObjListHd.SeekToEndOfRecord(rStCtrl)) + break; } if ( rSlidePersist.pBObj ) @@ -2872,7 +2915,8 @@ } break; } - aHd.SeekToEndOfRecord( rStCtrl ); + if (!aHd.SeekToEndOfRecord(rStCtrl)) + break; } if ( rSlidePersist.pSolverContainer ) SolveSolver( *rSlidePersist.pSolverContainer ); @@ -3071,7 +3115,8 @@ void SdrEscherImport::ImportHeaderFooterContainer( DffRecordHeader& rHd, HeaderFooterEntry& rE ) { rHd.SeekToContent( rStCtrl ); - while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < rHd.GetRecEndFilePos() ) ) + auto nEndRecPos = SanitizeEndPos(rStCtrl, rHd.GetRecEndFilePos()); + while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < nEndRecPos ) ) { DffRecordHeader aHd; ReadDffRecordHeader( rStCtrl, aHd ); @@ -3091,7 +3136,8 @@ } break; } - aHd.SeekToEndOfRecord( rStCtrl ); + if (!aHd.SeekToEndOfRecord(rStCtrl)) + break; } } @@ -3171,14 +3217,16 @@ pListHd->SeekToContent( rSt ); if ( pListHd && SdrPowerPointImport::SeekToContentOfProgTag( 9, rSt, *pListHd, aContentDataHd ) ) { - while ( ( rSt.GetError() == 0 ) && ( rSt.Tell() < aContentDataHd.GetRecEndFilePos() ) ) + auto nEndRecPos = DffPropSet::SanitizeEndPos(rSt, aContentDataHd.GetRecEndFilePos()); + while ( ( rSt.GetError() == 0 ) && ( rSt.Tell() < nEndRecPos ) ) { ReadDffRecordHeader( rSt, aHd ); switch ( aHd.nRecType ) { case PPT_PST_ExtendedBuGraContainer : { - while ( ( rSt.GetError() == 0 ) && ( rSt.Tell() < aHd.GetRecEndFilePos() ) ) + auto nHdEndRecPos = DffPropSet::SanitizeEndPos(rSt, aHd.GetRecEndFilePos()); + while ( ( rSt.GetError() == 0 ) && ( rSt.Tell() < nHdEndRecPos ) ) { sal_uInt16 nType; DffRecordHeader aBuGraAtomHd; @@ -3219,7 +3267,8 @@ #ifdef DBG_UTIL else OSL_FAIL( "PPTExParaProv::PPTExParaProv - unknown atom interpreting the PPT_PST_ExtendedBuGraContainer (SJ)" ); #endif - aBuGraAtomHd.SeekToEndOfRecord( rSt ); + if (!aBuGraAtomHd.SeekToEndOfRecord(rSt)) + break; } if ( !aBuGraList.empty() ) bGraphics = true; @@ -3243,13 +3292,15 @@ break; #endif } - aHd.SeekToEndOfRecord( rSt ); + if (!aHd.SeekToEndOfRecord(rSt)) + break; } } if ( pHd && SdrPowerPointImport::SeekToContentOfProgTag( 9, rSt, *pHd, aContentDataHd ) ) { // get the extended paragraph styles on mainmaster ( graphical bullets, num ruling ... ) - while ( ( rSt.GetError() == 0 ) && ( rSt.Tell() < aContentDataHd.GetRecEndFilePos() ) ) + auto nEndRecPos = DffPropSet::SanitizeEndPos(rSt, aContentDataHd.GetRecEndFilePos()); + while ( ( rSt.GetError() == 0 ) && ( rSt.Tell() < nEndRecPos ) ) { ReadDffRecordHeader( rSt, aHd ); switch ( aHd.nRecType ) @@ -3258,12 +3309,12 @@ { if ( aHd.nRecInstance < PPT_STYLESHEETENTRYS ) { - sal_uInt16 nDepth, i = 0; + sal_uInt16 nDepth = 0, i = 0; rSt.ReadUInt16( nDepth ); if ( i <= 5 ) { - - while ( ( rSt.GetError() == 0 ) && ( rSt.Tell() < aHd.GetRecEndFilePos() ) && ( i < nDepth ) ) + auto nHdEndRecPos = DffPropSet::SanitizeEndPos(rSt, aHd.GetRecEndFilePos()); + while ( ( rSt.GetError() == 0 ) && ( rSt.Tell() < nHdEndRecPos ) && ( i < nDepth ) ) { bStyles = true; ReadPPTExtParaLevel( rSt, aExtParaSheet[ aHd.nRecInstance ].aExtParaLevel[ i++ ] ); @@ -3291,7 +3342,8 @@ case 0xf144 : break; } - aHd.SeekToEndOfRecord( rSt ); + if (!aHd.SeekToEndOfRecord(rSt)) + break; } } rSt.Seek( nOldPos ); @@ -4024,18 +4076,20 @@ { pEnvHeader->SeekToContent( rIn ); DffRecordHeader aTxMasterStyleHd; - while ( rIn.Tell() < pEnvHeader->GetRecEndFilePos() ) + auto nEndRecPos = DffPropSet::SanitizeEndPos(rIn, pEnvHeader->GetRecEndFilePos()); + while (rIn.Tell() < nEndRecPos) { ReadDffRecordHeader( rIn, aTxMasterStyleHd ); if ( aTxMasterStyleHd.nRecType == PPT_PST_TxMasterStyleAtom ) { - sal_uInt16 nLevelAnz; - rIn.ReadUInt16( nLevelAnz ); + sal_uInt16 nLevelAnz(0); + rIn.ReadUInt16(nLevelAnz); sal_uInt16 nLev = 0; bool bFirst = true; bFoundTxMasterStyleAtom04 = true; - while ( rIn.GetError() == 0 && rIn.Tell() < aTxMasterStyleHd.GetRecEndFilePos() && nLev < nLevelAnz ) + auto nTxEndRecPos = DffPropSet::SanitizeEndPos(rIn, aTxMasterStyleHd.GetRecEndFilePos()); + while (rIn.GetError() == 0 && rIn.Tell() < nTxEndRecPos && nLev < nLevelAnz && nLev < nMaxPPTLevels) { if ( nLev ) { @@ -4066,21 +4120,29 @@ break; } else - aTxMasterStyleHd.SeekToEndOfRecord( rIn ); + { + if (!aTxMasterStyleHd.SeekToEndOfRecord(rIn)) + break; + } } } rSlideHd.SeekToContent( rIn ); + DffRecordHeader aTxMasterStyleHd; - while ( rIn.Tell() < rSlideHd.GetRecEndFilePos() ) + auto nEndRecPos = DffPropSet::SanitizeEndPos(rIn, rSlideHd.GetRecEndFilePos()); + while (rIn.Tell() < nEndRecPos) { ReadDffRecordHeader( rIn, aTxMasterStyleHd ); if ( aTxMasterStyleHd.nRecType == PPT_PST_TxMasterStyleAtom ) break; else - aTxMasterStyleHd.SeekToEndOfRecord( rIn ); + { + if (!aTxMasterStyleHd.SeekToEndOfRecord(rIn)) + break; + } } - while ( ( aTxMasterStyleHd.nRecType == PPT_PST_TxMasterStyleAtom ) && ( rIn.Tell() < rSlideHd.GetRecEndFilePos() ) ) //TODO: aTxMasterStyleHd may be used without having been properly initialized + while ( ( aTxMasterStyleHd.nRecType == PPT_PST_TxMasterStyleAtom ) && ( rIn.Tell() < nEndRecPos ) ) //TODO: aTxMasterStyleHd may be used without having been properly initialized { sal_uInt32 nInstance = aTxMasterStyleHd.nRecInstance; if ( ( nInstance < PPT_STYLESHEETENTRYS ) && @@ -4120,17 +4182,18 @@ break; } } - sal_uInt16 nLevelAnz; - rIn.ReadUInt16( nLevelAnz ); - if ( nLevelAnz > 5 ) + sal_uInt16 nLevelAnz(0); + rIn.ReadUInt16(nLevelAnz); + if (nLevelAnz > nMaxPPTLevels) { OSL_FAIL( "PPTStyleSheet::Ppt-TextStylesheet hat mehr als 5 Ebenen! (SJ)" ); - nLevelAnz = 5; + nLevelAnz = nMaxPPTLevels; } sal_uInt16 nLev = 0; bool bFirst = true; - while ( rIn.GetError() == 0 && rIn.Tell() < aTxMasterStyleHd.GetRecEndFilePos() && nLev < nLevelAnz ) + auto nTxEndRecPos = DffPropSet::SanitizeEndPos(rIn, aTxMasterStyleHd.GetRecEndFilePos()); + while ( rIn.GetError() == 0 && rIn.Tell() < nTxEndRecPos && nLev < nLevelAnz ) { if ( nLev && ( nInstance < 5 ) ) { @@ -4179,7 +4242,8 @@ } #endif } - aTxMasterStyleHd.SeekToEndOfRecord( rIn ); + if (!aTxMasterStyleHd.SeekToEndOfRecord(rIn)) + break; ReadDffRecordHeader( rIn, aTxMasterStyleHd ); } if ( !mpCharSheet[ TSS_TYPE_SUBTITLE ] ) @@ -4209,7 +4273,8 @@ { pEnvHeader2->SeekToContent( rIn ); DffRecordHeader aTxMasterStyleHd2; - while ( rIn.Tell() < pEnvHeader2->GetRecEndFilePos() ) + auto nEnvEndRecPos = DffPropSet::SanitizeEndPos(rIn, pEnvHeader2->GetRecEndFilePos()); + while (rIn.Tell() < nEnvEndRecPos) { ReadDffRecordHeader( rIn, aTxMasterStyleHd2 ); if ( aTxMasterStyleHd2.nRecType == PPT_PST_TxMasterStyleAtom ) @@ -4219,7 +4284,8 @@ sal_uInt16 nLev = 0; bool bFirst = true; - while ( rIn.GetError() == 0 && rIn.Tell() < aTxMasterStyleHd2.GetRecEndFilePos() && nLev < nLevelAnz ) + auto nTxEndRecPos = DffPropSet::SanitizeEndPos(rIn, aTxMasterStyleHd2.GetRecEndFilePos()); + while ( rIn.GetError() == 0 && rIn.Tell() < nTxEndRecPos && nLev < nLevelAnz ) { if ( nLev ) { @@ -4250,7 +4316,10 @@ break; } else - aTxMasterStyleHd2.SeekToEndOfRecord( rIn ); + { + if (!aTxMasterStyleHd2.SeekToEndOfRecord(rIn)) + break; + } } } } @@ -4736,17 +4805,18 @@ sal_uInt32 nCharIdx = 0; rRecHd.SeekToContent( rIn ); - while ( rIn.Tell() < rRecHd.GetRecEndFilePos() ) + auto nEndRecPos = DffPropSet::SanitizeEndPos(rIn, rRecHd.GetRecEndFilePos()); + while (rIn.Tell() < nEndRecPos && rIn.good()) { - sal_uInt32 nCharCount, - nFlags, i; - if ( nRecordType == PPT_PST_TextSpecInfoAtom ) { + sal_uInt32 nCharCount(0); rIn.ReadUInt32( nCharCount ); nCharIdx += nCharCount; } - rIn.ReadUInt32( nFlags ); + + sal_uInt32 nFlags(0); + rIn.ReadUInt32(nFlags); PPTTextSpecInfo* pEntry = new PPTTextSpecInfo( nCharIdx ); if ( pTextSpecDefault ) @@ -4756,7 +4826,7 @@ pEntry->nLanguage[ 1 ] = pTextSpecDefault->nLanguage[ 1 ]; pEntry->nLanguage[ 2 ] = pTextSpecDefault->nLanguage[ 2 ]; } - for ( i = 1; nFlags && i ; i <<= 1 ) + for (sal_uInt32 i = 1; nFlags && i ; i <<= 1) { sal_uInt16 nLang = 0; switch( nFlags & i ) @@ -5082,7 +5152,9 @@ if ( rExtParaHd.nRecType == PPT_PST_ExtendedParagraphAtom ) { rIn.Seek( rExtParaHd.nFilePos + 8 ); - while( ( rIn.GetError() == 0 ) && ( rIn.Tell() < rExtParaHd.GetRecEndFilePos() ) ) + + auto nEndRecPos = DffPropSet::SanitizeEndPos(rIn, rExtParaHd.GetRecEndFilePos()); + while( ( rIn.GetError() == 0 ) && ( rIn.Tell() < nEndRecPos ) ) { aStyleTextProp9.resize( aStyleTextProp9.size() + 1 ); aStyleTextProp9.back().Read( rIn ); @@ -5204,9 +5276,13 @@ PPTCharPropSet aCharPropSet( nCurrentPara ); if ( bTextPropAtom ) + { ReadCharProps( rIn, aCharPropSet, aString, nCharCount, nCharAnzRead, bTextPropAtom, nExtParaPos, aStyleTextProp9, nExtParaFlags, nBuBlip, nHasAnm, nAnmScheme ); + if (!rIn.good()) + break; + } else nCharCount = nStringLen; @@ -5282,7 +5358,7 @@ break; } } - } + } if ( !aCharPropList.empty() && ( aCharPropList.back()->mnParagraph != nCurrentPara ) ) { PPTCharPropSet* pCharPropSet = new PPTCharPropSet( *aCharPropList.back(), nCurrentPara ); @@ -6449,7 +6525,8 @@ if ( ( nTmpSlideId == nSlideId ) && ( pHd->nRecInstance == nRefNum ) ) { - pHd->SeekToEndOfRecord( rIn ); + if (!pHd->SeekToEndOfRecord(rIn)) + break; ReadDffRecordHeader( rIn, aPresRuleHd ); if ( aPresRuleHd.nRecType == PPT_PST_ExtendedParagraphAtom ) { @@ -6474,10 +6551,12 @@ bStatus = false; else { - rIn.Seek( pE->nSlidePersistStartOffset ); + auto nOffset(pE->nSlidePersistStartOffset); + bStatus = (nOffset == rIn.Seek(nOffset)); // now we got the right page and are searching for the right // TextHeaderAtom - while ( rIn.Tell() < pE->nSlidePersistEndOffset ) + auto nEndRecPos = DffPropSet::SanitizeEndPos(rIn, pE->nSlidePersistEndOffset); + while (bStatus && rIn.Tell() < nEndRecPos) { ReadDffRecordHeader( rIn, aClientTextBoxHd ); if ( aClientTextBoxHd.nRecType == PPT_PST_TextHeaderAtom ) @@ -6488,7 +6567,8 @@ break; } } - aClientTextBoxHd.SeekToEndOfRecord( rIn ); + if (!aClientTextBoxHd.SeekToEndOfRecord(rIn)) + break; } if ( rIn.Tell() > pE->nSlidePersistEndOffset ) bStatus = false; @@ -6501,12 +6581,14 @@ // we have to calculate the correct record len DffRecordHeader aTmpHd; - while ( rIn.Tell() < pE->nSlidePersistEndOffset ) + nEndRecPos = DffPropSet::SanitizeEndPos(rIn, pE->nSlidePersistEndOffset); + while (rIn.Tell() < nEndRecPos) { ReadDffRecordHeader( rIn, aTmpHd ); if ( ( aTmpHd.nRecType == PPT_PST_SlidePersistAtom ) || ( aTmpHd.nRecType == PPT_PST_TextHeaderAtom ) ) break; - aTmpHd.SeekToEndOfRecord( rIn ); + if (!aTmpHd.SeekToEndOfRecord(rIn)) + break; aClientTextBoxHd.nRecLen += aTmpHd.nRecLen + DFF_COMMON_RECORD_HEADER_SIZE; } aClientTextBoxHd.SeekToContent( rIn ); @@ -6606,7 +6688,8 @@ // or ParaTabStops and append them on this textobj rIn.Seek( nFilePos ); ::std::vector< PPTFieldEntry* > FieldList; - while ( rIn.Tell() < aClientTextBoxHd.GetRecEndFilePos() ) + auto nEndRecPos = DffPropSet::SanitizeEndPos(rIn, aClientTextBoxHd.GetRecEndFilePos()); + while (rIn.Tell() < nEndRecPos) { ReadDffRecordHeader( rIn, aTextHd ); sal_uInt16 nVal = 0; @@ -6773,7 +6856,8 @@ } break; } - aTextHd.SeekToEndOfRecord( rIn ); + if (!aTextHd.SeekToEndOfRecord(rIn)) + break; if ( pEntry ) { // sorting fields ( hi >> lo ) diff -Nru libreoffice-5.0.1~rc2/filter/source/svg/svgexport.cxx libreoffice-5.0.2~rc2/filter/source/svg/svgexport.cxx --- libreoffice-5.0.1~rc2/filter/source/svg/svgexport.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/filter/source/svg/svgexport.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -422,9 +422,9 @@ -sal_uLong GetBitmapChecksum( const MetaAction* pAction ) +BitmapChecksum GetBitmapChecksum( const MetaAction* pAction ) { - sal_uLong nChecksum = 0; + BitmapChecksum nChecksum = 0; const MetaActionType nType = pAction->GetType(); switch( nType ) @@ -506,8 +506,8 @@ const GDIMetaFile& aMtf2 = rObjRep2.GetRepresentation(); if( aMtf1.GetActionSize() == 1 && aMtf2.GetActionSize() == 1 ) { - sal_uLong nChecksum1 = GetBitmapChecksum( aMtf1.GetAction( 0 ) ); - sal_uLong nChecksum2 = GetBitmapChecksum( aMtf2.GetAction( 0 ) ); + BitmapChecksum nChecksum1 = GetBitmapChecksum( aMtf1.GetAction( 0 ) ); + BitmapChecksum nChecksum2 = GetBitmapChecksum( aMtf2.GetAction( 0 ) ); return ( nChecksum1 == nChecksum2 ); } else @@ -1301,7 +1301,7 @@ MetaAction* pAction = aMtf.GetAction( 0 ); if( pAction ) { - sal_uLong nId = GetBitmapChecksum( pAction ); + BitmapChecksum nId = GetBitmapChecksum( pAction ); sId = "bitmap(" + OUString::number( nId ) + ")"; mpSVGExport->AddAttribute( XML_NAMESPACE_NONE, "id", sId ); diff -Nru libreoffice-5.0.1~rc2/filter/source/svg/svgwriter.cxx libreoffice-5.0.2~rc2/filter/source/svg/svgwriter.cxx --- libreoffice-5.0.1~rc2/filter/source/svg/svgwriter.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/filter/source/svg/svgwriter.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1361,7 +1361,7 @@ } // bitmap placeholder element - sal_uLong nId = SVGActionWriter::GetChecksum( pAction ); + BitmapChecksum nId = SVGActionWriter::GetChecksum( pAction ); OUString sId = "bitmap-placeholder(" + msShapeId + "." + OUString::number( nId ) + ")"; @@ -1383,7 +1383,7 @@ const GDIMetaFile& rMtf = *mpTextEmbeddedBitmapMtf; OUString sId, sRefId; - sal_uLong nId, nChecksum = 0; + BitmapChecksum nId, nChecksum = 0; Point aPt; Size aSz; sal_uLong nCount = rMtf.GetActionSize(); @@ -1781,7 +1781,7 @@ return aPathData; } -sal_uLong SVGActionWriter::GetChecksum( const MetaAction* pAction ) +BitmapChecksum SVGActionWriter::GetChecksum( const MetaAction* pAction ) { GDIMetaFile aMtf; MetaAction* pA = const_cast(pAction); diff -Nru libreoffice-5.0.1~rc2/filter/source/svg/svgwriter.hxx libreoffice-5.0.2~rc2/filter/source/svg/svgwriter.hxx --- libreoffice-5.0.1~rc2/filter/source/svg/svgwriter.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/filter/source/svg/svgwriter.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -371,7 +371,7 @@ public: static OUString GetPathString( const tools::PolyPolygon& rPolyPoly, bool bLine ); - static sal_uLong GetChecksum( const MetaAction* pAction ); + static BitmapChecksum GetChecksum( const MetaAction* pAction ); public: diff -Nru libreoffice-5.0.1~rc2/.gitreview libreoffice-5.0.2~rc2/.gitreview --- libreoffice-5.0.1~rc2/.gitreview 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/.gitreview 2015-09-17 13:33:12.000000000 +0000 @@ -3,5 +3,5 @@ port=29418 project=core defaultremote=logerrit -defaultbranch=libreoffice-5-0-1 +defaultbranch=libreoffice-5-0-2 Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/icon-themes/breeze/framework/res/folder_32.png and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/icon-themes/breeze/framework/res/folder_32.png differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/icon-themes/breeze/framework/res/info_26.png and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/icon-themes/breeze/framework/res/info_26.png differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/icon-themes/breeze/framework/res/recent-documents.png and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/icon-themes/breeze/framework/res/recent-documents.png differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/icon-themes/breeze/framework/res/remote-documents.png and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/icon-themes/breeze/framework/res/remote-documents.png differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/icon-themes/breeze/res/odb_32_8.png and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/icon-themes/breeze/res/odb_32_8.png differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/icon-themes/breeze/res/odf_32_8.png and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/icon-themes/breeze/res/odf_32_8.png differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/icon-themes/breeze/res/odg_32_8.png and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/icon-themes/breeze/res/odg_32_8.png differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/icon-themes/breeze/res/odp_32_8.png and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/icon-themes/breeze/res/odp_32_8.png differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/icon-themes/breeze/res/odt_32_8.png and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/icon-themes/breeze/res/odt_32_8.png differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/icon-themes/sifr/cmd/sc_linearrowsquare.png and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/icon-themes/sifr/cmd/sc_linearrowsquare.png differ diff -Nru libreoffice-5.0.1~rc2/icon-themes/sifr/links.txt libreoffice-5.0.2~rc2/icon-themes/sifr/links.txt --- libreoffice-5.0.1~rc2/icon-themes/sifr/links.txt 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/icon-themes/sifr/links.txt 2015-09-17 13:33:12.000000000 +0000 @@ -88,3 +88,14 @@ # text background colour Impress/Draw cmd/sc_charbackcolor.png cmd/sc_backcolor.png cmd/lc_charbackcolor.png cmd/lc_backcolor.png + +# insert rows and columns +cmd/lc_insertrowsbefore.png cmd/lc_insertrows.png +cmd/sc_insertrowsbefore.png cmd/sc_insertrows.png +cmd/lc_insertcolumnsbefore.png cmd/lc_insertcolumns.png +cmd/sc_insertcolumnsbefore.png cmd/sc_insertcolumns.png +cmd/lc_insertrowsafter.png cmd/lc_insertrows.png +cmd/sc_insertrowsafter.png cmd/sc_insertrows.png +cmd/lc_insertcolumnsafter.png cmd/lc_insertcolumns.png +cmd/sc_insertcolumnsafter.png cmd/sc_insertcolumns.png + diff -Nru libreoffice-5.0.1~rc2/include/basic/sbmod.hxx libreoffice-5.0.2~rc2/include/basic/sbmod.hxx --- libreoffice-5.0.1~rc2/include/basic/sbmod.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/basic/sbmod.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -119,7 +119,6 @@ void ClearAllBP(); // Store only image, no source (needed for new password protection) - bool StoreBinaryData( SvStream& ); bool StoreBinaryData( SvStream&, sal_uInt16 nVer ); bool LoadBinaryData( SvStream&, sal_uInt16 nVer ); bool LoadBinaryData( SvStream& ); diff -Nru libreoffice-5.0.1~rc2/include/clew/clew.h libreoffice-5.0.2~rc2/include/clew/clew.h --- libreoffice-5.0.1~rc2/include/clew/clew.h 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/clew/clew.h 2015-09-17 13:33:12.000000000 +0000 @@ -416,6 +416,7 @@ // cl_device_info #define CL_DEVICE_MAX_COMPUTE_UNITS 0x1002 +#define CL_DEVICE_PREFERRED_VECTOR_WIDTH_FLOAT 0x100A #define CL_DEVICE_MAX_CLOCK_FREQUENCY 0x100C #define CL_DEVICE_GLOBAL_MEM_SIZE 0x101F #define CL_DEVICE_NAME 0x102B diff -Nru libreoffice-5.0.1~rc2/include/comphelper/windowserrorstring.hxx libreoffice-5.0.2~rc2/include/comphelper/windowserrorstring.hxx --- libreoffice-5.0.1~rc2/include/comphelper/windowserrorstring.hxx 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/comphelper/windowserrorstring.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -0,0 +1,46 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#ifndef INCLUDED_COMPHELPER_WINDOWSERRORSTRING_HXX +#define INCLUDED_COMPHELPER_WINDOWSERRORSTRING_HXX + +#include +#include +#include + +namespace { + +inline OUString WindowsErrorString(DWORD nErrorCode) +{ + LPWSTR pMsgBuf; + + if (FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, + NULL, + nErrorCode, + MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), + (LPWSTR)&pMsgBuf, + 0, + NULL) == 0) + return OUString::number(nErrorCode, 16); + + if (pMsgBuf[wcslen(pMsgBuf)-1] == '\n') + pMsgBuf[wcslen(pMsgBuf)-1] = '\0'; + + OUString result(pMsgBuf); + + LocalFree(pMsgBuf); + + return result; +} + +} // anonymous namespace + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.0.1~rc2/include/editeng/colritem.hxx libreoffice-5.0.2~rc2/include/editeng/colritem.hxx --- libreoffice-5.0.1~rc2/include/editeng/colritem.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/editeng/colritem.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -82,6 +82,7 @@ SvxBackgroundColorItem(const SvxBackgroundColorItem& rCopy); virtual SfxPoolItem* Clone(SfxItemPool* pPool = 0) const SAL_OVERRIDE; + virtual SvStream& Store(SvStream& rStream, sal_uInt16 nVersion) const SAL_OVERRIDE; virtual SfxPoolItem* Create(SvStream &, sal_uInt16) const SAL_OVERRIDE; virtual bool QueryValue(css::uno::Any& rVal, sal_uInt8 nMemberId = 0) const SAL_OVERRIDE; virtual bool PutValue(const css::uno::Any& rVal, sal_uInt8 nMemberId = 0) SAL_OVERRIDE; diff -Nru libreoffice-5.0.1~rc2/include/filter/msfilter/dffpropset.hxx libreoffice-5.0.2~rc2/include/filter/msfilter/dffpropset.hxx --- libreoffice-5.0.1~rc2/include/filter/msfilter/dffpropset.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/filter/msfilter/dffpropset.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -60,6 +60,7 @@ OUString GetPropertyString( sal_uInt32 nId, SvStream& rStrm ) const; bool SeekToContent( sal_uInt32 nRecType, SvStream& rSt ) const; void InitializePropSet( sal_uInt16 nPropSetType ) const; + static sal_uLong SanitizeEndPos(SvStream &rIn, sal_uLong nEndRecPos); friend SvStream& ReadDffPropSet( SvStream& rIn, DffPropSet& rPropSet ); friend SvStream& operator|=( SvStream& rIn, DffPropSet& rPropSet ); diff -Nru libreoffice-5.0.1~rc2/include/filter/msfilter/svdfppt.hxx libreoffice-5.0.2~rc2/include/filter/msfilter/svdfppt.hxx --- libreoffice-5.0.1~rc2/include/filter/msfilter/svdfppt.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/filter/msfilter/svdfppt.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -168,6 +168,8 @@ + sal_uInt32('T') * 0x00010000 + sal_uInt32('0') * 0x01000000; +const int nMaxPPTLevels = 5; + // Object IDs for StarDraw UserData #define PPT_OBJECTINFO_ID (1) @@ -712,7 +714,7 @@ struct PPTExtParaSheet { - PPTExtParaLevel aExtParaLevel[ 5 ]; + PPTExtParaLevel aExtParaLevel[nMaxPPTLevels]; }; struct PPTBuGraEntry @@ -759,7 +761,7 @@ struct PPTCharSheet { - PPTCharLevel maCharLevel[ 5 ]; + PPTCharLevel maCharLevel[nMaxPPTLevels]; explicit PPTCharSheet( sal_uInt32 nInstance ); PPTCharSheet( const PPTCharSheet& rCharSheet ); @@ -792,7 +794,7 @@ { public: - PPTParaLevel maParaLevel[ 5 ]; + PPTParaLevel maParaLevel[nMaxPPTLevels]; explicit PPTParaSheet( sal_uInt32 nInstance ); PPTParaSheet( const PPTParaSheet& rParaSheet ); @@ -997,8 +999,8 @@ sal_Int32 nFlags; sal_uInt16 nDefaultTab; - sal_uInt16 nTextOfs[ 5 ]; - sal_uInt16 nBulletOfs[ 5 ]; + sal_uInt16 nTextOfs[nMaxPPTLevels]; + sal_uInt16 nBulletOfs[nMaxPPTLevels]; PPTTabEntry* pTab; sal_uInt16 nTabCount; diff -Nru libreoffice-5.0.1~rc2/include/formula/grammar.hxx libreoffice-5.0.2~rc2/include/formula/grammar.hxx --- libreoffice-5.0.1~rc2/include/formula/grammar.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/formula/grammar.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -43,7 +43,11 @@ CONV_LOTUS_A1, /* external? 3d? A1.B2 */ - CONV_LAST /* for loops, must always be last */ + CONV_LAST, /* for loops, must always be last */ + + // not a real address convention, a special case for INDIRECT function interpretation + // only -> try using CONV_OOO, failing that CONV_XL_A1 + CONV_A1_XL_A1 }; //! CONV_UNSPECIFIED is a negative value! diff -Nru libreoffice-5.0.1~rc2/include/opencl/openclwrapper.hxx libreoffice-5.0.2~rc2/include/opencl/openclwrapper.hxx --- libreoffice-5.0.1~rc2/include/opencl/openclwrapper.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/opencl/openclwrapper.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -52,6 +52,7 @@ int mnCmdQueuePos; bool mnKhrFp64Flag; bool mnAmdFp64Flag; + cl_uint mnPreferredVectorWidthFloat; }; extern OPENCL_DLLPUBLIC GPUEnv gpuEnv; diff -Nru libreoffice-5.0.1~rc2/include/svx/numvset.hxx libreoffice-5.0.2~rc2/include/svx/numvset.hxx --- libreoffice-5.0.1~rc2/include/svx/numvset.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/svx/numvset.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -49,7 +49,6 @@ class SVX_DLLPUBLIC SvxNumValueSet : public ValueSet { - Color aLineColor; sal_uInt16 nPageType; bool bHTMLMode; Rectangle aOrgRect; diff -Nru libreoffice-5.0.1~rc2/include/svx/unobrushitemhelper.hxx libreoffice-5.0.2~rc2/include/svx/unobrushitemhelper.hxx --- libreoffice-5.0.1~rc2/include/svx/unobrushitemhelper.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/svx/unobrushitemhelper.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -46,7 +46,8 @@ SVX_DLLPUBLIC SvxBrushItem getSvxBrushItemFromSourceSet( const SfxItemSet& rSourceSet, sal_uInt16 nBackgroundID, - bool bSearchInParents = true); + bool bSearchInParents = true, + bool bXMLImportHack = false); #endif // _UNOBRUSHITEMHELPER_HXX diff -Nru libreoffice-5.0.1~rc2/include/tools/color.hxx libreoffice-5.0.2~rc2/include/tools/color.hxx --- libreoffice-5.0.1~rc2/include/tools/color.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/tools/color.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -201,7 +201,7 @@ } SvStream& Read(SvStream& rIStream, bool bNewFormat = true); - SvStream& Write(SvStream& rOStream, bool bNewFormat = true); + SvStream& Write(SvStream& rOStream, bool bNewFormat = true) const; TOOLS_DLLPUBLIC friend SvStream& ReadColor(SvStream& rIStream, Color& rColor); TOOLS_DLLPUBLIC friend SvStream& WriteColor(SvStream& rOStream, const Color& rColor); diff -Nru libreoffice-5.0.1~rc2/include/vcl/alpha.hxx libreoffice-5.0.2~rc2/include/vcl/alpha.hxx --- libreoffice-5.0.1~rc2/include/vcl/alpha.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/alpha.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -52,7 +52,7 @@ Size GetSizePixel() const { return Bitmap::GetSizePixel(); } sal_uLong GetSizeBytes() const { return Bitmap::GetSizeBytes(); } - sal_uLong GetChecksum() const { return Bitmap::GetChecksum(); } + BitmapChecksum GetChecksum() const { return Bitmap::GetChecksum(); } Bitmap GetBitmap() const; diff -Nru libreoffice-5.0.1~rc2/include/vcl/animate.hxx libreoffice-5.0.2~rc2/include/vcl/animate.hxx --- libreoffice-5.0.1~rc2/include/vcl/animate.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/animate.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -97,7 +97,7 @@ rAnimBmp.aBmpEx.IsEqual( aBmpEx ) ); } - sal_uLong GetChecksum() const; + BitmapChecksum GetChecksum() const; }; struct AInfo @@ -173,7 +173,7 @@ void Replace( const AnimationBitmap& rNewAnimationBmp, sal_uInt16 nAnimation ); sal_uLong GetSizeBytes() const; - sal_uLong GetChecksum() const; + BitmapChecksum GetChecksum() const; public: diff -Nru libreoffice-5.0.1~rc2/include/vcl/bitmapex.hxx libreoffice-5.0.2~rc2/include/vcl/bitmapex.hxx --- libreoffice-5.0.1~rc2/include/vcl/bitmapex.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/bitmapex.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -96,7 +96,7 @@ sal_uInt16 GetBitCount() const { return aBitmap.GetBitCount(); } sal_uLong GetSizeBytes() const; - sal_uLong GetChecksum() const; + BitmapChecksum GetChecksum() const; public: diff -Nru libreoffice-5.0.1~rc2/include/vcl/bitmap.hxx libreoffice-5.0.2~rc2/include/vcl/bitmap.hxx --- libreoffice-5.0.1~rc2/include/vcl/bitmap.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/bitmap.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include @@ -386,7 +387,7 @@ */ bool GetSystemData( BitmapSystemData& rData ) const; - sal_uLong GetChecksum() const; + BitmapChecksum GetChecksum() const; Bitmap CreateDisplayBitmap( OutputDevice* pDisplay ); Bitmap GetColorTransformedBitmap() const; diff -Nru libreoffice-5.0.1~rc2/include/vcl/checksum.hxx libreoffice-5.0.2~rc2/include/vcl/checksum.hxx --- libreoffice-5.0.1~rc2/include/vcl/checksum.hxx 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/checksum.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -0,0 +1,92 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + + +#ifndef INCLUDED_VCL_INC_CHECKSUM_HXX +#define INCLUDED_VCL_INC_CHECKSUM_HXX + +#include +#include +#include +#include + +#include +#include +#include + +#define BITMAP_CHECKSUM_SIZE 8 +#define BITMAP_CHECKSUM_BITS BOOST_PP_MUL(BITMAP_CHECKSUM_SIZE, 8) + +typedef sal_uInt64 BitmapChecksum; +typedef sal_uInt8 BitmapChecksumOctetArray[BITMAP_CHECKSUM_SIZE]; + +#define BITMAP_CHECKSUM_SET_OCTET(z, i, unused) \ +p[i] = (sal_uInt8)(n >> BOOST_PP_MUL(8, i)); + + +inline void BCToBCOA( BitmapChecksum n , BitmapChecksumOctetArray p ) +{ + BOOST_PP_REPEAT(BITMAP_CHECKSUM_SIZE , BITMAP_CHECKSUM_SET_OCTET, unused) +} + +#ifdef __cplusplus +extern "C" { +#endif + +/*======================================================================== + * + * vcl_crc64 interface. + * + *======================================================================*/ +/** Evaluate CRC64 over given data. + + This function evaluates the CRC polynomial 0xEDB88320. + + @param Crc [in] CRC64 over previous data or zero. + @param Data [in] data buffer. + @param DatLen [in] data buffer length. + @return new CRC64 value. + */ +VCL_DLLPUBLIC sal_uInt64 SAL_CALL vcl_crc64 ( + sal_uInt64 Crc, + const void *Data, sal_uInt32 DatLen +) SAL_THROW_EXTERN_C(); + + + +VCL_DLLPUBLIC const sal_uInt64* vcl_get_crc64_table(); + + +#ifdef __cplusplus +} +#endif + +inline BitmapChecksum vcl_get_checksum ( + BitmapChecksum Checksum, + const void *Data, + sal_uInt32 DatLen +) +{ + return (BitmapChecksum)(vcl_crc64( Checksum, Data, DatLen )); +} + + +#endif // INCLUDED_VCL_INC_CHECKSUM_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.0.1~rc2/include/vcl/edit.hxx libreoffice-5.0.2~rc2/include/vcl/edit.hxx --- libreoffice-5.0.1~rc2/include/vcl/edit.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/edit.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -105,13 +105,13 @@ SAL_DLLPRIVATE void ImplInitEditData(); SAL_DLLPRIVATE void ImplModified(); SAL_DLLPRIVATE OUString ImplGetText() const; - SAL_DLLPRIVATE void ImplRepaint(vcl::RenderContext& rRenderContext, bool bLayout = false); + SAL_DLLPRIVATE void ImplRepaint(vcl::RenderContext& rRenderContext, const Rectangle& rRectangle, bool bLayout = false); SAL_DLLPRIVATE void ImplInvalidateOrRepaint(); SAL_DLLPRIVATE void ImplDelete( const Selection& rSelection, sal_uInt8 nDirection, sal_uInt8 nMode ); SAL_DLLPRIVATE void ImplSetText( const OUString& rStr, const Selection* pNewSelection = 0 ); SAL_DLLPRIVATE void ImplInsertText( const OUString& rStr, const Selection* pNewSelection = 0, bool bIsUserInput = false ); SAL_DLLPRIVATE OUString ImplGetValidString( const OUString& rString ) const; - SAL_DLLPRIVATE void ImplClearBackground(vcl::RenderContext& rRenderContext, long nXStart, long nXEnd); + SAL_DLLPRIVATE void ImplClearBackground(vcl::RenderContext& rRenderContext, const Rectangle& rRectangle, long nXStart, long nXEnd); SAL_DLLPRIVATE void ImplPaintBorder(vcl::RenderContext& rRenderContext, long nXStart, long nXEnd); SAL_DLLPRIVATE void ImplShowCursor( bool bOnlyIfVisible = true ); SAL_DLLPRIVATE void ImplAlign(); diff -Nru libreoffice-5.0.1~rc2/include/vcl/gdimtf.hxx libreoffice-5.0.2~rc2/include/vcl/gdimtf.hxx --- libreoffice-5.0.1~rc2/include/vcl/gdimtf.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/gdimtf.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -198,7 +198,7 @@ void SetHookHdl( const Link<>& rLink ) { aHookHdlLink = rLink; } const Link<>& GetHookHdl() const { return aHookHdlLink; } - sal_uLong GetChecksum() const; + BitmapChecksum GetChecksum() const; sal_uLong GetSizeBytes() const; // Methods for reading and writing the new formats; diff -Nru libreoffice-5.0.1~rc2/include/vcl/graph.hxx libreoffice-5.0.2~rc2/include/vcl/graph.hxx --- libreoffice-5.0.1~rc2/include/vcl/graph.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/graph.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -161,9 +161,9 @@ void SetAnimationNotifyHdl( const Link<>& rLink ); Link<> GetAnimationNotifyHdl() const; - sal_uLong GetAnimationLoopCount() const; + sal_uLong GetAnimationLoopCount() const; - sal_uLong GetChecksum() const; + BitmapChecksum GetChecksum() const; public: diff -Nru libreoffice-5.0.1~rc2/include/vcl/idle.hxx libreoffice-5.0.2~rc2/include/vcl/idle.hxx --- libreoffice-5.0.1~rc2/include/vcl/idle.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/idle.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -32,7 +32,7 @@ Idle( const sal_Char *pDebugName = NULL ); Idle( const Idle& rIdle ); - virtual void Start(); + virtual void Start() SAL_OVERRIDE; /// Make it possible to associate a callback with this idle handler /// of course, you can also sub-class and override 'Invoke' diff -Nru libreoffice-5.0.1~rc2/include/vcl/opengl/OpenGLContext.hxx libreoffice-5.0.2~rc2/include/vcl/opengl/OpenGLContext.hxx --- libreoffice-5.0.1~rc2/include/vcl/opengl/OpenGLContext.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/opengl/OpenGLContext.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -56,13 +56,19 @@ #include #include #include +#include +#include +#include +#include #include +#include class OpenGLFramebuffer; class OpenGLProgram; class OpenGLTexture; class SalGraphicsImpl; +class OpenGLTests; /// Holds the information of our new child window struct GLWindow @@ -166,9 +172,14 @@ class VCL_DLLPUBLIC OpenGLContext { -public: + friend class OpenGLTests; OpenGLContext(); +public: + static rtl::Reference Create(); ~OpenGLContext(); + void acquire() { mnRefCount++; } + void release() { if ( --mnRefCount == 0 ) delete this; } + void dispose(); void requestLegacyContext(); void requestSingleBufferedRendering(); @@ -193,13 +204,8 @@ bool AcquireDefaultFramebuffer(); OpenGLFramebuffer* AcquireFramebuffer( const OpenGLTexture& rTexture ); static void ReleaseFramebuffer( OpenGLFramebuffer* pFramebuffer ); -#ifdef DBG_UTIL - void AddRef(SalGraphicsImpl*); - void DeRef(SalGraphicsImpl*); -#else - void AddRef(); - void DeRef(); -#endif + void UnbindTextureFromFramebuffers( GLuint nTexture ); + void ReleaseFramebuffer( const OpenGLTexture& rTexture ); void ReleaseFramebuffers(); @@ -207,11 +213,18 @@ OpenGLProgram* GetProgram( const OUString& rVertexShader, const OUString& rFragmentShader, const OString& preamble = "" ); OpenGLProgram* UseProgram( const OUString& rVertexShader, const OUString& rFragmentShader, const OString& preamble = "" ); + /// Is this GL context the current context ? bool isCurrent(); + /// release bound resources from the current context static void clearCurrent(); - + /// release contexts etc. before (potentially) allowing another thread run. + static void prepareForYield(); + /// Is there a current GL context ? + static bool hasCurrent(); /// make this GL context current - so it is implicit in subsequent GL calls void makeCurrent(); + /// Put this GL context to the end of the context list. + void registerAsCurrent(); /// reset the GL context so this context is not implicit in subsequent GL calls. void resetCurrent(); void swapBuffers(); @@ -232,12 +245,18 @@ return mbInitialized; } + bool requestedLegacy() + { + return mbRequestLegacyContext; + } + bool supportMultiSampling() const; static SystemWindowData generateWinData(vcl::Window* pParent, bool bRequestLegacyContext); private: SAL_DLLPRIVATE bool InitGLEW(); + SAL_DLLPRIVATE void InitGLEWDebugging(); SAL_DLLPRIVATE bool initWindow(); SAL_DLLPRIVATE bool ImplInit(); #if defined( UNX ) && !defined MACOSX && !defined IOS && !defined ANDROID && !defined(LIBO_HEADLESS) @@ -266,15 +285,15 @@ OpenGLFramebuffer* mpFirstFramebuffer; OpenGLFramebuffer* mpLastFramebuffer; - struct ProgramKey + struct ProgramHash { - ProgramKey( const OUString& vertexShader, const OUString& fragmentShader, const OString& preamble ); - bool operator< ( const ProgramKey& other ) const; - OUString vertexShader; - OUString fragmentShader; - OString preamble; + size_t operator()( const rtl::OString& aDigest ) const + { + return (size_t)( rtl_crc32( 0, aDigest.getStr(), aDigest.getLength() ) ); + } }; - std::map > maPrograms; + typedef std::unordered_map< rtl::OString, std::shared_ptr, ProgramHash > ProgramCollection; + ProgramCollection maPrograms; OpenGLProgram* mpCurrentProgram; #ifdef DBG_UTIL std::set maParents; @@ -284,8 +303,9 @@ vcl::Region maClipRegion; int mnPainting; - OpenGLContext* mpPrevContext; - OpenGLContext* mpNextContext; + // Don't hold references to ourselves: + OpenGLContext *mpPrevContext; + OpenGLContext *mpNextContext; }; #endif diff -Nru libreoffice-5.0.1~rc2/include/vcl/opengl/OpenGLHelper.hxx libreoffice-5.0.2~rc2/include/vcl/opengl/OpenGLHelper.hxx --- libreoffice-5.0.1~rc2/include/vcl/opengl/OpenGLHelper.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/opengl/OpenGLHelper.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -11,6 +11,7 @@ #define INCLUDED_VCL_OPENGL_OPENGLHELPER_HXX #include +#include #include #include @@ -22,10 +23,26 @@ # include #endif +/// Helper to do a SAL_INFO as well as a GL log. +#define VCL_GL_INFO(area,stream) \ + do { \ + if (SAL_DETAIL_ENABLE_LOG_INFO) \ + { \ + ::std::ostringstream detail_stream; \ + detail_stream << stream; \ + OpenGLHelper::debugMsgStream((area),detail_stream); \ + } \ + } while (false) + class VCL_DLLPUBLIC OpenGLHelper { + OpenGLHelper() SAL_DELETED_FUNCTION; // Should not be instantiated + public: - static GLint LoadShaders(const OUString& rVertexShaderName, const OUString& rFragmentShaderName, const OString& preamble = "" ); + + static rtl::OString GetDigest(const OUString& rVertexShaderName, const OUString& rFragmentShaderName, const rtl::OString& preamble = "" ); + + static GLint LoadShaders(const OUString& rVertexShaderName, const OUString& rFragmentShaderName, const rtl::OString& preamble = "", const rtl::OString& rDigest = "" ); /** * The caller is responsible for allocate the memory for the RGBA buffer, before call @@ -48,15 +65,23 @@ static void createFramebuffer(long nWidth, long nHeight, GLuint& nFramebufferId, GLuint& nRenderbufferDepthId, GLuint& nRenderbufferColorId, bool bRenderbuffer = true); - // Get OpenGL version (needs a context) + /// Get OpenGL version (needs a context) static float getGLVersion(); static void checkGLError(const char* aFile, size_t nLine); /** + * Insert a glDebugMessage into the queue - helpful for debugging + * with apitrace to annotate the output and correlate it with code. + */ + static void debugMsgPrint(const char *pArea, const char *pFormat, ...); + static void debugMsgStream(const char *pArea, std::ostringstream const &pStream); + + /** * checks if the device/driver pair is on our OpenGL blacklist */ static bool isDeviceBlacklisted(); + /** * checks if the system supports all features that are necessary for the OpenGL VCL support */ diff -Nru libreoffice-5.0.1~rc2/include/vcl/opengl/OpenGLWrapper.hxx libreoffice-5.0.2~rc2/include/vcl/opengl/OpenGLWrapper.hxx --- libreoffice-5.0.1~rc2/include/vcl/opengl/OpenGLWrapper.hxx 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/opengl/OpenGLWrapper.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -0,0 +1,26 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +// Fully wrapped methods that have no exotic GL / GLEW header deps. + +#ifndef INCLUDED_VCL_OPENGL_OPENGLWRAPPER_HXX +#define INCLUDED_VCL_OPENGL_OPENGLWRAPPER_HXX + +#include + +class VCL_DLLPUBLIC OpenGLWrapper +{ +public: + /** + * Returns true if VCL has OpenGL rendering enabled + */ + static bool isVCLOpenGLEnabled(); +}; + +#endif // INCLUDED_VCL_OPENGL_OPENGLWRAPPER_HXX diff -Nru libreoffice-5.0.1~rc2/include/vcl/outdev.hxx libreoffice-5.0.2~rc2/include/vcl/outdev.hxx --- libreoffice-5.0.1~rc2/include/vcl/outdev.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/outdev.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -608,9 +608,21 @@ const Point& rSrcPt, const Size& rSrcSize, bool bWindowInvalidate = false ); - // Call before and after a paint operation to reduce flushing - void BeginPaint(); - void EndPaint(); + /** + * Instantiate across a paint operation to defer flushing + * to the end. + * + * NB. holding a handle avoids problems with + * the underlying SalGraphics and it's implementation + * changing. + */ + class PaintScope { + void *pHandle; + public: + PaintScope(OutputDevice *); + ~PaintScope(); + void flush(); + }; protected: diff -Nru libreoffice-5.0.1~rc2/include/vcl/salnativewidgets.hxx libreoffice-5.0.2~rc2/include/vcl/salnativewidgets.hxx --- libreoffice-5.0.1~rc2/include/vcl/salnativewidgets.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/salnativewidgets.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -279,6 +279,25 @@ && maSize.Width() == aOther.maSize.Width() && maSize.Height() == aOther.maSize.Height(); } + + bool canCacheControl() + { + switch(mnType) + { + case CTRL_CHECKBOX: + case CTRL_RADIOBUTTON: + return false; + + case CTRL_MENUBAR: + if (mnPart == PART_ENTIRE_CONTROL) + return false; + break; + + default: + break; + } + return true; + } }; struct ControlCacheHashFunction diff -Nru libreoffice-5.0.1~rc2/include/vcl/scrbar.hxx libreoffice-5.0.2~rc2/include/vcl/scrbar.hxx --- libreoffice-5.0.1~rc2/include/vcl/scrbar.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/vcl/scrbar.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -153,7 +153,7 @@ using Window::ImplInit; SAL_DLLPRIVATE void ImplInit( vcl::Window* pParent, WinBits nStyle ); - virtual void ApplySettings(vcl::RenderContext& rRenderContext); + virtual void ApplySettings(vcl::RenderContext& rRenderContext) SAL_OVERRIDE; public: explicit ScrollBarBox( vcl::Window* pParent, WinBits nStyle = 0 ); diff -Nru libreoffice-5.0.1~rc2/include/xmloff/PageMasterStyleMap.hxx libreoffice-5.0.2~rc2/include/xmloff/PageMasterStyleMap.hxx --- libreoffice-5.0.1~rc2/include/xmloff/PageMasterStyleMap.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/xmloff/PageMasterStyleMap.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -90,12 +90,12 @@ // at export time using CTF_PM_FLAGMASK and XML_PM_CTF_START as detector // to find the first entry for header/footer (!), see // SvXMLAutoStylePoolP_Impl::exportXML, look for XML_STYLE_FAMILY_PAGE_MASTER -#define CTF_PM_REPEAT_OFFSET_X (XML_PM_CTF_START + 0x0035) -#define CTF_PM_REPEAT_OFFSET_Y (XML_PM_CTF_START + 0x0036) -#define CTF_PM_FILLGRADIENTNAME (XML_PM_CTF_START + 0x0037) -#define CTF_PM_FILLHATCHNAME (XML_PM_CTF_START + 0x0038) -#define CTF_PM_FILLBITMAPNAME (XML_PM_CTF_START + 0x0039) -#define CTF_PM_FILLTRANSNAME (XML_PM_CTF_START + 0x0040) +#define CTF_PM_REPEAT_OFFSET_X (XML_PM_CTF_START + 0x0037) +#define CTF_PM_REPEAT_OFFSET_Y (XML_PM_CTF_START + 0x0038) +#define CTF_PM_FILLGRADIENTNAME (XML_PM_CTF_START + 0x0039) +#define CTF_PM_FILLHATCHNAME (XML_PM_CTF_START + 0x0040) +#define CTF_PM_FILLBITMAPNAME (XML_PM_CTF_START + 0x0041) +#define CTF_PM_FILLTRANSNAME (XML_PM_CTF_START + 0x0042) #define CTF_PM_SCALETO (XML_PM_CTF_START + 0x0051) // calc specific #define CTF_PM_SCALETOPAGES (XML_PM_CTF_START + 0x0052) diff -Nru libreoffice-5.0.1~rc2/include/xmloff/txtprmap.hxx libreoffice-5.0.2~rc2/include/xmloff/txtprmap.hxx --- libreoffice-5.0.1~rc2/include/xmloff/txtprmap.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/xmloff/txtprmap.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -198,6 +198,8 @@ #define CTF_RELHEIGHTREL (XML_TEXT_CTF_START + 169) #define CTF_CHAR_BACKGROUND (XML_TEXT_CTF_START + 170) #define CTF_CHAR_HIGHLIGHT (XML_TEXT_CTF_START + 171) +#define CTF_FILLSTYLE (XML_TEXT_CTF_START + 172) +#define CTF_FILLCOLOR (XML_TEXT_CTF_START + 173) enum class TextPropMap { diff -Nru libreoffice-5.0.1~rc2/include/xmloff/xmlexppr.hxx libreoffice-5.0.2~rc2/include/xmloff/xmlexppr.hxx --- libreoffice-5.0.1~rc2/include/xmloff/xmlexppr.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/include/xmloff/xmlexppr.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -151,7 +151,8 @@ void exportXML( SvXMLExport& rExport, const ::std::vector< XMLPropertyState >& rProperties, - SvXmlExportFlags nFlags = SvXmlExportFlags::NONE ) const; + SvXmlExportFlags nFlags = SvXmlExportFlags::NONE, + bool bUseExtensionNamespaceForGraphicProperties = false ) const; /** like above but only properties whose property map index is within the * specified range are exported diff -Nru libreoffice-5.0.1~rc2/instsetoo_native/CustomTarget_setup.mk libreoffice-5.0.2~rc2/instsetoo_native/CustomTarget_setup.mk --- libreoffice-5.0.1~rc2/instsetoo_native/CustomTarget_setup.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/instsetoo_native/CustomTarget_setup.mk 2015-09-17 13:33:12.000000000 +0000 @@ -52,7 +52,7 @@ && echo 'BRAND_BASE_DIR=$${ORIGIN}/..' \ && echo 'BRAND_INI_DIR=$${ORIGIN}' \ && echo 'BRAND_SHARE_SUBDIR=$(LIBO_SHARE_FOLDER)' \ - && echo 'CONFIGURATION_LAYERS=xcsxcu:$${BRAND_BASE_DIR}/$(LIBO_SHARE_FOLDER)/registry res:$${BRAND_BASE_DIR}/$(LIBO_SHARE_FOLDER)/registry bundledext:$${$${BRAND_BASE_DIR}/$(LIBO_ETC_FOLDER)/$(call gb_Helper_get_rcfile,louno):BUNDLED_EXTENSIONS_USER}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini sharedext:$${$${BRAND_BASE_DIR}/$(LIBO_ETC_FOLDER)/$(call gb_Helper_get_rcfile,louno):SHARED_EXTENSIONS_USER}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini userext:$${$${BRAND_BASE_DIR}/$(LIBO_ETC_FOLDER)/$(call gb_Helper_get_rcfile,louno):UNO_USER_PACKAGES_CACHE}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini user:$${$$BRAND_BASE_DIR/$(LIBO_ETC_FOLDER)/$(call gb_Helper_get_rcfile,bootstrap):UserInstallation}/user/registrymodifications.xcu' \ + && echo 'CONFIGURATION_LAYERS=xcsxcu:$${BRAND_BASE_DIR}/$(LIBO_SHARE_FOLDER)/registry res:$${BRAND_BASE_DIR}/$(LIBO_SHARE_FOLDER)/registry $(if $(filter WNT,$(OS)),winreg:LOCAL_MACHINE )bundledext:$${$${BRAND_BASE_DIR}/$(LIBO_ETC_FOLDER)/$(call gb_Helper_get_rcfile,louno):BUNDLED_EXTENSIONS_USER}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini sharedext:$${$${BRAND_BASE_DIR}/$(LIBO_ETC_FOLDER)/$(call gb_Helper_get_rcfile,louno):SHARED_EXTENSIONS_USER}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini userext:$${$${BRAND_BASE_DIR}/$(LIBO_ETC_FOLDER)/$(call gb_Helper_get_rcfile,louno):UNO_USER_PACKAGES_CACHE}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini $(if $(filter WNT,$(OS)),winreg:CURRENT_USER )user:$${$$BRAND_BASE_DIR/$(LIBO_ETC_FOLDER)/$(call gb_Helper_get_rcfile,bootstrap):UserInstallation}/user/registrymodifications.xcu' \ && echo 'LO_JAVA_DIR=$${BRAND_BASE_DIR}/$(LIBO_SHARE_JAVA_FOLDER)' \ && echo 'LO_LIB_DIR=$${BRAND_BASE_DIR}/$(LIBO_LIB_FOLDER)' \ && echo 'BAK_EXTENSIONS=$${$$ORIGIN/$(call gb_Helper_get_rcfile,louno):TMP_EXTENSIONS}' \ diff -Nru libreoffice-5.0.1~rc2/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java libreoffice-5.0.2~rc2/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java --- libreoffice-5.0.1~rc2/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java 2015-09-17 13:33:12.000000000 +0000 @@ -152,9 +152,12 @@ } // we enable tcpNoDelay for loopback connections because // it can make a significant speed difference on linux boxes. - if (tcpNoDelay != null || ((InetSocketAddress)socket.getRemoteSocketAddress()).getAddress().isLoopbackAddress()) { + if (tcpNoDelay != null) { socket.setTcpNoDelay(tcpNoDelay.booleanValue()); } + else if (((InetSocketAddress)socket.getRemoteSocketAddress()).getAddress().isLoopbackAddress()) { + socket.setTcpNoDelay(true); + } return new SocketConnection(acceptingDescription, socket); } catch(IOException e) { diff -Nru libreoffice-5.0.1~rc2/jurt/com/sun/star/lib/connections/socket/socketConnector.java libreoffice-5.0.2~rc2/jurt/com/sun/star/lib/connections/socket/socketConnector.java --- libreoffice-5.0.1~rc2/jurt/com/sun/star/lib/connections/socket/socketConnector.java 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/jurt/com/sun/star/lib/connections/socket/socketConnector.java 2015-09-17 13:33:12.000000000 +0000 @@ -146,8 +146,10 @@ try { // we enable tcpNoDelay for loopback connections because // it can make a significant speed difference on linux boxes. - if (desc.getTcpNoDelay() != null || isLoopbackAddress) + if (desc.getTcpNoDelay() != null) socket.setTcpNoDelay(desc.getTcpNoDelay().booleanValue()); + else if (isLoopbackAddress) + socket.setTcpNoDelay(true); con = new SocketConnection(connectionDescription, socket); } catch (IOException e) { diff -Nru libreoffice-5.0.1~rc2/libreofficekit/source/gtk/lokdocview.cxx libreoffice-5.0.2~rc2/libreofficekit/source/gtk/lokdocview.cxx --- libreoffice-5.0.1~rc2/libreofficekit/source/gtk/lokdocview.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/libreofficekit/source/gtk/lokdocview.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -171,7 +171,7 @@ */ void renderDocument(GdkRectangle* pPartial); /// Sets rWidth and rHeight from a "width, height" string. - void payloadToSize(const char* pPayload, long& rWidth, long& rHeight); + static void payloadToSize(const char* pPayload, long& rWidth, long& rHeight); /// Returns the GdkRectangle of a width,height,x,y string. static GdkRectangle payloadToRectangle(const char* pPayload); /// Returns the GdkRectangles of a w,h,x,y;w2,h2,x2,y2;... string. diff -Nru libreoffice-5.0.1~rc2/offapi/com/sun/star/datatransfer/XTransferable2.idl libreoffice-5.0.2~rc2/offapi/com/sun/star/datatransfer/XTransferable2.idl --- libreoffice-5.0.1~rc2/offapi/com/sun/star/datatransfer/XTransferable2.idl 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/offapi/com/sun/star/datatransfer/XTransferable2.idl 2015-09-17 13:33:12.000000000 +0000 @@ -8,7 +8,7 @@ #ifndef __com_sun_star_datatransfer_XTransferable2_idl__ #define __com_sun_star_datatransfer_XTransferable2_idl__ -#include +#include module com { module sun { module star { module datatransfer { diff -Nru libreoffice-5.0.1~rc2/offapi/com/sun/star/drawing/FillProperties.idl libreoffice-5.0.2~rc2/offapi/com/sun/star/drawing/FillProperties.idl --- libreoffice-5.0.1~rc2/offapi/com/sun/star/drawing/FillProperties.idl 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/offapi/com/sun/star/drawing/FillProperties.idl 2015-09-17 13:33:12.000000000 +0000 @@ -26,7 +26,7 @@ #include #include #include - +#include module com { module sun { module star { module drawing { diff -Nru libreoffice-5.0.1~rc2/officecfg/registry/data/org/openoffice/Office/Common.xcu libreoffice-5.0.2~rc2/officecfg/registry/data/org/openoffice/Office/Common.xcu --- libreoffice-5.0.1~rc2/officecfg/registry/data/org/openoffice/Office/Common.xcu 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/officecfg/registry/data/org/openoffice/Office/Common.xcu 2015-09-17 13:33:12.000000000 +0000 @@ -139,6 +139,13 @@ ${DICT_REPO_URL} + + + false + false + true + + diff -Nru libreoffice-5.0.1~rc2/officecfg/registry/schema/org/openoffice/Office/Calc.xcs libreoffice-5.0.2~rc2/officecfg/registry/schema/org/openoffice/Office/Calc.xcs --- libreoffice-5.0.1~rc2/officecfg/registry/schema/org/openoffice/Office/Calc.xcs 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/officecfg/registry/schema/org/openoffice/Office/Calc.xcs 2015-09-17 13:33:12.000000000 +0000 @@ -1373,7 +1373,7 @@ true, and a formula contains only these operators and functions, it might be calculated using OpenCL. - +;-;*;/;RAND;SIN;COS;TAN;ATAN;EXP;LN;SQRT;NORMSDIST;NORMSINV;ROUND;POWER;SUMPRODUCT;MIN;MAX;SUM;PRODUCT;AVERAGE;COUNT;VAR;NORMDIST;CORREL;COVAR;PEARSON;SLOPE;SUMIFS + +;-;*;/;RAND;SIN;COS;TAN;ATAN;EXP;LN;SQRT;NORMSDIST;NORMSINV;ROUND;POWER;SUMPRODUCT;MIN;MAX;SUM;PRODUCT;AVERAGE;COUNT;VAR;NORMDIST;VLOOKUP;CORREL;COVAR;PEARSON;SLOPE;SUMIFS diff -Nru libreoffice-5.0.1~rc2/officecfg/registry/schema/org/openoffice/Office/Common.xcs libreoffice-5.0.2~rc2/officecfg/registry/schema/org/openoffice/Office/Common.xcs --- libreoffice-5.0.1~rc2/officecfg/registry/schema/org/openoffice/Office/Common.xcs 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/officecfg/registry/schema/org/openoffice/Office/Common.xcs 2015-09-17 13:33:12.000000000 +0000 @@ -5632,7 +5632,7 @@ Combinations of (OS, OS version, OpenCL platform vendor, OpenCL device name, OpenCL driver version) that are known to be bad. Each entry is a string consisting of five parts separated by slashes. An empty part matches anything. In case a slash, percent or semicolon occurs inside a part, it is replaced by a percent followed by the corresponding number as two hex digits. The parts except OS can contain regular expressions. Inside these regular expressions the usual characters .*()[]\ are special and should be quoted with a backslash to be interpreted literally. OS should be just one of "Linux", "OS X" (including the space) or "Windows" (without quotes). Has higher priority than OpenCLWhiteList. - Windows//Intel\(R\) Corporation//9\.17\.10\.2884 + Windows//Intel\(R\) Corporation//9\.17\.10\.2884;Windows//Intel\(R\) Corporation//4\.2\.0\.99 diff -Nru libreoffice-5.0.1~rc2/oox/source/core/xmlfilterbase.cxx libreoffice-5.0.2~rc2/oox/source/core/xmlfilterbase.cxx --- libreoffice-5.0.1~rc2/oox/source/core/xmlfilterbase.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/oox/source/core/xmlfilterbase.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -118,7 +118,8 @@ "http://schemas.openxmlformats.org/markup-compatibility/2006", "http://schemas.openxmlformats.org/spreadsheetml/2006/main/v2", "http://schemas.microsoft.com/office/drawing/2008/diagram", - "http://schemas.microsoft.com/office/spreadsheetml/2009/9/main" + "http://schemas.microsoft.com/office/spreadsheetml/2009/9/main", + "http://schemas.libreoffice.org/" }; static const sal_Int32 namespaceIds[] = { @@ -145,7 +146,8 @@ NMSP_mce, NMSP_mceTest, NMSP_dsp, - NMSP_xls14Lst + NMSP_xls14Lst, + NMSP_loext }; Sequence< beans::Pair< OUString, sal_Int32 > > aRet(SAL_N_ELEMENTS(namespaceIds)); diff -Nru libreoffice-5.0.1~rc2/oox/source/drawingml/transform2dcontext.cxx libreoffice-5.0.2~rc2/oox/source/drawingml/transform2dcontext.cxx --- libreoffice-5.0.1~rc2/oox/source/drawingml/transform2dcontext.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/oox/source/drawingml/transform2dcontext.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -66,7 +66,8 @@ { const OUString sXValue = rAttribs.getString( XML_x ).get(); const OUString sYValue = rAttribs.getString( XML_y ).get(); - if( !sXValue.isEmpty() && nType == XML_rect ) + + if( !sXValue.isEmpty() ) mrShape.getTextBody()->getTextProperties().moTextOffLeft = GetCoordinate( sXValue.toInt32() - mrShape.getPosition().X ); if( !sYValue.isEmpty() ) mrShape.getTextBody()->getTextProperties().moTextOffUpper = GetCoordinate( sYValue.toInt32() - mrShape.getPosition().Y ); diff -Nru libreoffice-5.0.1~rc2/oox/source/ppt/slidefragmenthandler.cxx libreoffice-5.0.2~rc2/oox/source/ppt/slidefragmenthandler.cxx --- libreoffice-5.0.1~rc2/oox/source/ppt/slidefragmenthandler.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/oox/source/ppt/slidefragmenthandler.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -194,7 +194,7 @@ case PPT_TOKEN( cmLst ): break; case PPT_TOKEN( cm ): - if(!mpSlidePersistPtr->getCommentsList().cmLst.empty()) + if (!mpSlidePersistPtr->getCommentsList().cmLst.empty() && !getCharVector().empty()) { // set comment text for earlier comment mpSlidePersistPtr->getCommentsList().cmLst.back().setText( getCharVector().back() ); diff -Nru libreoffice-5.0.1~rc2/oox/source/shape/WpsContext.cxx libreoffice-5.0.2~rc2/oox/source/shape/WpsContext.cxx --- libreoffice-5.0.1~rc2/oox/source/shape/WpsContext.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/oox/source/shape/WpsContext.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -13,6 +13,9 @@ #include #include #include +#include +#include +#include #include @@ -76,9 +79,33 @@ } else { - comphelper::SequenceAsHashMap aCustomShapeGeometry(xPropertySet->getPropertyValue("CustomShapeGeometry")); - aCustomShapeGeometry["TextPreRotateAngle"] = uno::makeAny(sal_Int32(-270)); - xPropertySet->setPropertyValue("CustomShapeGeometry", uno::makeAny(aCustomShapeGeometry.getAsConstPropertyValueList())); + // Get the existing rotation of the shape. + drawing::HomogenMatrix3 aMatrix; + xPropertySet->getPropertyValue("Transformation") >>= aMatrix; + basegfx::B2DHomMatrix aTransformation; + aTransformation.set(0, 0, aMatrix.Line1.Column1); + aTransformation.set(0, 1, aMatrix.Line1.Column2); + aTransformation.set(0, 2, aMatrix.Line1.Column3); + aTransformation.set(1, 0, aMatrix.Line1.Column1); + aTransformation.set(1, 1, aMatrix.Line2.Column2); + aTransformation.set(1, 2, aMatrix.Line3.Column3); + aTransformation.set(2, 0, aMatrix.Line1.Column1); + aTransformation.set(2, 1, aMatrix.Line2.Column2); + aTransformation.set(2, 2, aMatrix.Line3.Column3); + basegfx::B2DTuple aScale; + basegfx::B2DTuple aTranslate; + double fRotate = 0; + double fShearX = 0; + aTransformation.decompose(aScale, aTranslate, fRotate, fShearX); + + // If the text is not rotated the way the shape wants it already, set the angle. + const sal_Int32 nRotation = -270; + if (basegfx::rad2deg(fRotate) != static_cast(NormAngle360(nRotation * 100)) / 100) + { + comphelper::SequenceAsHashMap aCustomShapeGeometry(xPropertySet->getPropertyValue("CustomShapeGeometry")); + aCustomShapeGeometry["TextPreRotateAngle"] = uno::makeAny(nRotation); + xPropertySet->setPropertyValue("CustomShapeGeometry", uno::makeAny(aCustomShapeGeometry.getAsConstPropertyValueList())); + } } } diff -Nru libreoffice-5.0.1~rc2/oox/source/token/namespaces.hxx.tail libreoffice-5.0.2~rc2/oox/source/token/namespaces.hxx.tail --- libreoffice-5.0.1~rc2/oox/source/token/namespaces.hxx.tail 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/oox/source/token/namespaces.hxx.tail 2015-09-17 13:33:12.000000000 +0000 @@ -55,6 +55,7 @@ #define WPS_TOKEN( token ) OOX_TOKEN( wps, token ) #define WPG_TOKEN( token ) OOX_TOKEN( wpg, token ) #define W_TOKEN( token ) OOX_TOKEN( doc, token ) +#define LOEXT_TOKEN( token ) OOX_TOKEN( loext, token ) diff -Nru libreoffice-5.0.1~rc2/oox/source/token/namespaces-strict.txt libreoffice-5.0.2~rc2/oox/source/token/namespaces-strict.txt --- libreoffice-5.0.1~rc2/oox/source/token/namespaces-strict.txt 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/oox/source/token/namespaces-strict.txt 2015-09-17 13:33:12.000000000 +0000 @@ -80,3 +80,6 @@ # xls14Lst for features introduced by excel 2010 xls14Lst http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + +# LibreOffice's own extensions +loext http://schemas.libreoffice.org/ diff -Nru libreoffice-5.0.1~rc2/oox/source/token/namespaces.txt libreoffice-5.0.2~rc2/oox/source/token/namespaces.txt --- libreoffice-5.0.1~rc2/oox/source/token/namespaces.txt 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/oox/source/token/namespaces.txt 2015-09-17 13:33:12.000000000 +0000 @@ -80,3 +80,6 @@ # xls14Lst for features introduced by excel 2010 xls14Lst http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + +# LibreOffice's own extensions +loext http://schemas.libreoffice.org/ diff -Nru libreoffice-5.0.1~rc2/oox/source/token/tokens.txt libreoffice-5.0.2~rc2/oox/source/token/tokens.txt --- libreoffice-5.0.1~rc2/oox/source/token/tokens.txt 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/oox/source/token/tokens.txt 2015-09-17 13:33:12.000000000 +0000 @@ -69,6 +69,8 @@ Broadcaster Button CF +CalcA1 +CalcA1ExcelA1 Camera Cancel Caption @@ -141,6 +143,8 @@ ElectronicSource Embed EnhancedMetaFile +ExcelA1 +ExcelR1C1 Extend Extension External @@ -392,6 +396,7 @@ Type Types UIObj +Unspecified URI URL UpdateMode @@ -2137,6 +2142,7 @@ explosion expression ext +extCalcPr extLst extend extendable @@ -3165,6 +3171,7 @@ locked lockedCanvas lockrotationcenter +loext log logBase lon @@ -4954,6 +4961,7 @@ strikeTLBR strikeV string +stringRefSyntax stringValue1 stringValue2 stripedRightArrow diff -Nru libreoffice-5.0.1~rc2/opencl/source/openclwrapper.cxx libreoffice-5.0.2~rc2/opencl/source/openclwrapper.cxx --- libreoffice-5.0.1~rc2/opencl/source/openclwrapper.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/opencl/source/openclwrapper.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -501,6 +501,11 @@ gpuInfo->mnKhrFp64Flag = bKhrFp64; gpuInfo->mnAmdFp64Flag = bAmdFp64; + gpuInfo->mnPreferredVectorWidthFloat = 0; + + clGetDeviceInfo(gpuInfo->mpArryDevsID[0], CL_DEVICE_PREFERRED_VECTOR_WIDTH_FLOAT, sizeof(cl_uint), + &gpuInfo->mnPreferredVectorWidthFloat, NULL); + return false; } diff -Nru libreoffice-5.0.1~rc2/readlicense_oo/license/CREDITS.fodt libreoffice-5.0.2~rc2/readlicense_oo/license/CREDITS.fodt --- libreoffice-5.0.1~rc2/readlicense_oo/license/CREDITS.fodt 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/readlicense_oo/license/CREDITS.fodt 2015-09-17 13:33:12.000000000 +0000 @@ -1,28 +1,28 @@ - Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/5.0.0.5$Linux_X86_64 LibreOffice_project/437e4abdf9e72fd0a6e6f8697a0e659bc77f9b102012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA + Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/5.0.2.1$Linux_X86_64 LibreOffice_project/9a18d52abbdfbdc2ac9acebec2b92e7859eb73b72012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA - 501 + 660 501 - 41197 - 22518 + 53024 + 30023 true true view2 - 3676 - 3471 + 4064 + 5029 501 - 501 - 41697 - 23017 + 660 + 53523 + 30681 0 0 false - 100 + 75 false @@ -68,7 +68,7 @@ false false true - 3480553 + 3597204 false false false @@ -311,24 +311,24 @@ - + - + - + - + - + - + @@ -392,26 +392,23 @@ - + - + - + - + - + - - - @@ -440,43 +437,46 @@ - - - - - - + + + + + + + + - - - - - - - + - + - + - + - + - + - + - + + + + + + + + @@ -755,7 +755,7 @@ - + iVBORw0KGgoAAAANSUhEUgAAATkAAABkCAYAAAD9hkdsAAAAAXNSR0IArs4c6QAAAAZiS0dE AP8A/wD/oL2nkwAAAAlwSFlzAAAOuQAADrkBuAYXvwAAAAd0SU1FB9oMChUNCQOjP/4AADYV SURBVHja7V0HfBXF9r65N0B67yEhQIAkJEAggSQklNB7B0UELAhIFYIUReBhQewFEBREUBEQ @@ -1017,8 +1017,8 @@ pEmTJk2aNGnSpEmTJk2aNGmqif4fv2ovuUlKae4AAAAASUVORK5CYII= - Credits - 1068 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2015-08-20 15:14:11. + Credits + 1081 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2015-09-17 14:55:28. * marks developers whose first contributions happened after 2010-09-28. Developers committing code since 2010-09-28 @@ -1045,10 +1045,10 @@ Vladimir GlazunovCommits: 25434Joined: 2000-12-04 - Caolán McNamaraCommits: 17819Joined: 2000-10-10 + Caolán McNamaraCommits: 18025Joined: 2000-10-10 - Stephan BergmannCommits: 9705Joined: 2000-10-04 + Stephan BergmannCommits: 9942Joined: 2000-10-04 Ivo HinkelmannCommits: 9480Joined: 2002-09-09 @@ -1056,7 +1056,7 @@ - Tor LillqvistCommits: 6977Joined: 2010-03-23 + Tor LillqvistCommits: 7035Joined: 2010-03-23 Kohei YoshidaCommits: 5360Joined: 2009-06-19 @@ -1065,21 +1065,21 @@ Frank Schoenheit [fs]Commits: 5008Joined: 2000-09-19 - Michael StahlCommits: 4808Joined: 2008-06-16 + Michael StahlCommits: 4879Joined: 2008-06-16 - Miklos VajnaCommits: 4710Joined: 2010-07-29 + Miklos VajnaCommits: 4753Joined: 2010-07-29 - *Noel GrandinCommits: 4214Joined: 2011-12-12 + *Noel GrandinCommits: 4425Joined: 2011-12-12 - *Markus MohrhardCommits: 3753Joined: 2011-03-17 + *Markus MohrhardCommits: 3857Joined: 2011-03-17 - David TardonCommits: 3074Joined: 2009-11-12 + David TardonCommits: 3085Joined: 2009-11-12 @@ -1087,10 +1087,10 @@ Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 - Ocke Janssen [oj]Commits: 2850Joined: 2000-09-20 + Eike RathkeCommits: 2872Joined: 2000-10-11 - Eike RathkeCommits: 2798Joined: 2000-10-11 + Ocke Janssen [oj]Commits: 2850Joined: 2000-09-20 Mathias BauerCommits: 2580Joined: 2000-09-20 @@ -1101,13 +1101,13 @@ Oliver SpechtCommits: 2458Joined: 2000-09-21 - *Thomas ArnholdCommits: 2176Joined: 2011-01-16 + Jan HolesovskyCommits: 2188Joined: 2009-06-23 - Jan HolesovskyCommits: 2174Joined: 2009-06-23 + *Thomas ArnholdCommits: 2176Joined: 2011-01-16 - *Norbert ThiebaudCommits: 2119Joined: 2010-09-29 + *Norbert ThiebaudCommits: 2121Joined: 2010-09-29 @@ -1115,13 +1115,13 @@ Philipp Lohmann [pl]Commits: 2089Joined: 2000-09-21 - Bjoern MichaelsenCommits: 1929Joined: 2009-10-14 + Bjoern MichaelsenCommits: 1931Joined: 2009-10-14 Christian LippkaCommits: 1805Joined: 2000-09-25 - *Julien NabetCommits: 1763Joined: 2010-11-04 + *Julien NabetCommits: 1775Joined: 2010-11-04 @@ -1129,7 +1129,7 @@ *Matúš KukanCommits: 1636Joined: 2011-04-06 - *Andras TimarCommits: 1621Joined: 2010-10-02 + *Andras TimarCommits: 1626Joined: 2010-10-02 Luboš LuňákCommits: 1521Joined: 2010-09-21 @@ -1140,7 +1140,7 @@ - *Tomaž VajngerlCommits: 1335Joined: 2012-06-02 + *Tomaž VajngerlCommits: 1359Joined: 2012-06-02 Fridrich ŠtrbaCommits: 1324Joined: 2007-02-22 @@ -1160,14 +1160,17 @@ Armin Le GrandCommits: 1187Joined: 2000-09-25 - Thorsten BehrensCommits: 1127Joined: 2001-04-25 + Thorsten BehrensCommits: 1131Joined: 2001-04-25 - *Matteo CasalinCommits: 984Joined: 2011-11-13 + *Matteo CasalinCommits: 1050Joined: 2011-11-13 + *Takeshi AbeCommits: 966Joined: 2010-11-08 + + Petr MladekCommits: 958Joined: 2006-10-03 @@ -1176,9 +1179,6 @@ *Lionel Elie MamaneCommits: 942Joined: 2011-01-15 - - *Takeshi AbeCommits: 936Joined: 2010-11-08 - @@ -1216,7 +1216,7 @@ Joachim LingnerCommits: 745Joined: 2000-10-05 - *Zolnai TamásCommits: 730Joined: 2012-08-06 + *Zolnai TamásCommits: 733Joined: 2012-08-06 Release EngineeringCommits: 728Joined: 2008-10-02 @@ -1227,24 +1227,24 @@ Andre FischerCommits: 719Joined: 2001-02-06 - *Andrzej HuntCommits: 696Joined: 2012-03-27 + *Andrzej HuntCommits: 697Joined: 2012-03-27 Joerg Skottke [jsk]Commits: 678Joined: 2008-06-17 - *Joseph PowersCommits: 658Joined: 2010-10-15 + *Michael MeeksCommits: 671Joined: 2013-09-10 - Kai SommerfeldCommits: 651Joined: 2000-10-10 + *Joseph PowersCommits: 658Joined: 2010-10-15 - Ingrid HalamaCommits: 639Joined: 2001-01-19 + Kai SommerfeldCommits: 651Joined: 2000-10-10 - *Michael MeeksCommits: 611Joined: 2013-09-10 + Ingrid HalamaCommits: 639Joined: 2001-01-19 *Rafael DominguezCommits: 606Joined: 2011-02-13 @@ -1269,10 +1269,10 @@ *Peter FoleyCommits: 442Joined: 2011-09-04 - Dirk VoelzkeCommits: 392Joined: 2000-11-27 + Rene EngelhardCommits: 392Joined: 2005-03-14 - Rene EngelhardCommits: 391Joined: 2005-03-14 + Dirk VoelzkeCommits: 392Joined: 2000-11-27 *Ivan TimofeevCommits: 380Joined: 2011-09-16 @@ -1286,15 +1286,15 @@ Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 - *Olivier HallotCommits: 312Joined: 2010-10-25 + *Olivier HallotCommits: 322Joined: 2010-10-25 - *Xisco FauliCommits: 311Joined: 2011-02-06 + Christian LohmaierCommits: 313Joined: 2008-06-01 - Christian LohmaierCommits: 305Joined: 2008-06-01 + *Xisco FauliCommits: 311Joined: 2011-02-06 Radek DoulikCommits: 305Joined: 2010-05-03 @@ -1308,44 +1308,44 @@ - *Siqi LiuCommits: 277Joined: 2013-04-13 + *Katarina BehrensCommits: 279Joined: 2010-10-13 - *Pierre-André JacquodCommits: 276Joined: 2010-11-13 + *Siqi LiuCommits: 277Joined: 2013-04-13 - *Katarina BehrensCommits: 273Joined: 2010-10-13 + *Pierre-André JacquodCommits: 276Joined: 2010-11-13 - Lars LanghansCommits: 260Joined: 2000-09-22 + *David OstrovskyCommits: 262Joined: 2012-04-01 - Muthu SubramanianCommits: 248Joined: 2010-08-25 + Lars LanghansCommits: 260Joined: 2000-09-22 - *Robert Antoni Buj GelonchCommits: 247Joined: 2014-06-11 + *Yousuf PhilipsCommits: 249Joined: 2014-09-21 - *Yousuf PhilipsCommits: 241Joined: 2014-09-21 + Muthu SubramanianCommits: 248Joined: 2010-08-25 - *David OstrovskyCommits: 237Joined: 2012-04-01 + *Robert Antoni Buj GelonchCommits: 247Joined: 2014-06-11 - *Khaled HosnyCommits: 230Joined: 2011-01-28 + *Khaled HosnyCommits: 232Joined: 2011-01-28 - *Maxim MonastirskyCommits: 212Joined: 2013-10-27 + *Maxim MonastirskyCommits: 226Joined: 2013-10-27 - *Szymon KłosCommits: 210Joined: 2014-03-22 + *Szymon KłosCommits: 224Joined: 2014-03-22 - *László NémethCommits: 210Joined: 2010-09-29 + *László NémethCommits: 217Joined: 2010-09-29 @@ -1356,10 +1356,10 @@ *Robert NagyCommits: 191Joined: 2010-11-04 - *Marcos Paulo de SouzaCommits: 188Joined: 2012-09-26 + *Jacobo Aragunde PérezCommits: 190Joined: 2013-09-25 - *Jacobo Aragunde PérezCommits: 186Joined: 2013-09-25 + *Marcos Paulo de SouzaCommits: 188Joined: 2012-09-26 @@ -1373,15 +1373,15 @@ *Nigel HawkinsCommits: 160Joined: 2010-10-28 - *Artur DordaCommits: 151Joined: 2012-04-15 + *Adolfo Jayme BarrientosCommits: 153Joined: 2013-06-21 - *Gert FallerCommits: 151Joined: 2010-10-25 + *Artur DordaCommits: 151Joined: 2012-04-15 - *Adolfo Jayme BarrientosCommits: 151Joined: 2013-06-21 + *Gert FallerCommits: 151Joined: 2010-10-25 Gregor HartmannCommits: 141Joined: 2000-10-12 @@ -1415,7 +1415,7 @@ *Sebastian SpaethCommits: 119Joined: 2010-09-28 - *Arnaud VersiniCommits: 118Joined: 2010-10-05 + *Arnaud VersiniCommits: 119Joined: 2010-10-05 @@ -1440,10 +1440,10 @@ *Louis-Francis Ratté-BoulianneCommits: 102Joined: 2014-10-29 - *Thomas KlausnerCommits: 98Joined: 2010-10-01 + *Jan-Marek GlogowskiCommits: 99Joined: 2013-11-14 - *Jan-Marek GlogowskiCommits: 97Joined: 2013-11-14 + *Thomas KlausnerCommits: 98Joined: 2010-10-01 @@ -1451,18 +1451,18 @@ *Stefan KnorrCommits: 91Joined: 2011-07-04 - *Krisztian PinterCommits: 90Joined: 2013-02-18 + *Laurent GodardCommits: 91Joined: 2011-05-06 - *Daniel BankstonCommits: 88Joined: 2012-04-03 + *Krisztian PinterCommits: 90Joined: 2013-02-18 - *Tim RetoutCommits: 88Joined: 2012-02-14 + *Daniel BankstonCommits: 88Joined: 2012-04-03 - *Laurent GodardCommits: 87Joined: 2011-05-06 + *Tim RetoutCommits: 88Joined: 2012-02-14 *Adam CoCommits: 86Joined: 2013-04-28 @@ -1496,14 +1496,17 @@ *Ricardo MontaniaCommits: 82Joined: 2012-08-18 - *Douglas MenckenCommits: 76Joined: 2013-12-11 + *Albert ThuswaldnerCommits: 76Joined: 2011-01-26 - *Tobias MadlCommits: 74Joined: 2014-09-15 + *Douglas MenckenCommits: 76Joined: 2013-12-11 + *Tobias MadlCommits: 74Joined: 2014-09-15 + + *Korrawit PruegsanusakCommits: 74Joined: 2011-05-28 @@ -1512,11 +1515,11 @@ *weigaoCommits: 72Joined: 2014-05-07 + + Thorsten BosbachCommits: 70Joined: 2008-06-18 - - Bartosz KosiorekCommits: 70Joined: 2010-09-17 @@ -1526,25 +1529,25 @@ *Kevin HunterCommits: 67Joined: 2010-10-22 + + *Michaël LefèvreCommits: 67Joined: 2011-02-22 - - *Jelle van der WaaCommits: 66Joined: 2013-06-16 - *Winfried DonkersCommits: 64Joined: 2013-08-06 + *Winfried DonkersCommits: 66Joined: 2013-08-06 - *Albert ThuswaldnerCommits: 63Joined: 2011-01-26 + *Michael WeghornCommits: 61Joined: 2014-09-10 + + *Riccardo MagliocchettiCommits: 61Joined: 2012-01-25 - - Wolfram Garten [wg]Commits: 61Joined: 2009-10-23 @@ -1554,11 +1557,11 @@ *Marco CecchettiCommits: 59Joined: 2011-04-14 + + Marc Neumann [msc]Commits: 59Joined: 2008-06-20 - - *shiming zhangCommits: 59Joined: 2013-11-04 @@ -1568,27 +1571,24 @@ *Pierre-Eric Pelloux-PrayerCommits: 57Joined: 2012-06-20 + + *yiming juCommits: 57Joined: 2013-11-01 - - *Joren De CuyperCommits: 56Joined: 2014-02-06 - *Michael WeghornCommits: 55Joined: 2014-09-10 + *Pranav KantCommits: 55Joined: 2015-06-02 Nikolai PretzellCommits: 54Joined: 2001-03-09 - - *Mihály PalenikCommits: 54Joined: 2013-07-11 - - *Pranav KantCommits: 54Joined: 2015-06-02 + *Mihály PalenikCommits: 54Joined: 2013-07-11 *yangzhangCommits: 54Joined: 2013-11-04 @@ -1664,49 +1664,49 @@ Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 - *Peter JentschCommits: 42Joined: 2011-01-07 + *Martin HoskenCommits: 43Joined: 2011-02-25 - *Mark WielaardCommits: 42Joined: 2013-05-13 + *Luc CastermansCommits: 42Joined: 2011-11-13 - *matteocamCommits: 42Joined: 2014-02-25 + *Peter JentschCommits: 42Joined: 2011-01-07 - *Luc CastermansCommits: 41Joined: 2011-11-13 + *Mark WielaardCommits: 42Joined: 2013-05-13 - *Sébastien Le RayCommits: 41Joined: 2011-02-10 + *matteocamCommits: 42Joined: 2014-02-25 - *Christian M. HellerCommits: 41Joined: 2013-02-24 + *Matthias FreundCommits: 42Joined: 2014-09-08 - *Martin HoskenCommits: 41Joined: 2011-02-25 + *Henry CastroCommits: 42Joined: 2015-01-09 - *Henry CastroCommits: 41Joined: 2015-01-09 + *Niklas JohanssonCommits: 42Joined: 2011-11-07 - *Francisco SaitoCommits: 40Joined: 2011-03-21 + *Sébastien Le RayCommits: 41Joined: 2011-02-10 - *Niklas JohanssonCommits: 40Joined: 2011-11-07 + *Christian M. HellerCommits: 41Joined: 2013-02-24 - *Kayo HamidCommits: 39Joined: 2010-10-09 + *Francisco SaitoCommits: 40Joined: 2011-03-21 - *minwangCommits: 39Joined: 2013-11-04 + *Kayo HamidCommits: 39Joined: 2010-10-09 - *Matthias FreundCommits: 38Joined: 2014-09-08 + *minwangCommits: 39Joined: 2013-11-04 *Valentin KettnerCommits: 38Joined: 2014-03-17 @@ -1742,6 +1742,9 @@ + *RosemaryCommits: 36Joined: 2015-06-23 + + *Christophe JAILLETCommits: 36Joined: 2012-06-14 @@ -1750,112 +1753,120 @@ *Santiago MartinezCommits: 35Joined: 2012-01-20 + + *xukai liuCommits: 35Joined: 2013-11-01 - - *Laurent CharrièreCommits: 35Joined: 2010-10-14 + *Jean-Pierre LedureCommits: 35Joined: 2013-10-12 + + *Philippe JungCommits: 35Joined: 2015-05-01 + + *Priyanka GaikwadCommits: 35Joined: 2013-11-12 *dechuangCommits: 35Joined: 2013-11-04 - - *Marc-André LaverdièreCommits: 34Joined: 2011-06-21 *Steve YinCommits: 34Joined: 2013-11-14 + + - *Jean-Pierre LedureCommits: 33Joined: 2013-10-12 + *Tobias LippertCommits: 34Joined: 2014-01-02 - *Tobias LippertCommits: 33Joined: 2014-01-02 + *Varun DhallCommits: 33Joined: 2015-03-07 - - *Andreas MantkeCommits: 33Joined: 2010-09-29 *Alexander WilmsCommits: 33Joined: 2012-05-26 + + *GokulCommits: 32Joined: 2012-07-10 *Yogesh BharateCommits: 32Joined: 2013-10-11 - - - *Varun DhallCommits: 32Joined: 2015-03-07 + *Vishv BrahmbhattCommits: 32Joined: 2013-01-28 - *Vishv BrahmbhattCommits: 32Joined: 2013-01-28 + *Mihai VargaCommits: 32Joined: 2014-02-27 + + *fengzengCommits: 31Joined: 2013-11-04 *muleiCommits: 30Joined: 2013-11-01 - - *Kenneth VenkenCommits: 30Joined: 2010-10-15 *Christoph HerzogCommits: 30Joined: 2011-01-07 + + *Manal AlhassounCommits: 30Joined: 2012-09-10 *Isamu MogiCommits: 30Joined: 2013-04-27 - - *Rodolfo Ribeiro GomesCommits: 29Joined: 2012-12-19 *Wols ListsCommits: 29Joined: 2010-11-07 + + *Elton ChungCommits: 29Joined: 2012-01-31 *xinjiangCommits: 29Joined: 2013-11-04 - - *Harri PitkänenCommits: 29Joined: 2010-10-04 *Sushil ShindeCommits: 28Joined: 2013-10-21 + + *Szabolcs DezsiCommits: 28Joined: 2012-02-16 + *Daniel RobertsonCommits: 28Joined: 2015-06-27 + + *Aurimas FišerasCommits: 28Joined: 2010-10-11 - - *Pallavi JadhavCommits: 28Joined: 2013-02-08 + + Andre Fischer<andre.f.fischerCommits: 28Joined: 2010-07-21 @@ -1865,10 +1876,13 @@ *Gökçen EraslanCommits: 27Joined: 2012-04-15 + + *Josh HeidenreichCommits: 26Joined: 2011-07-20 + - *Josh HeidenreichCommits: 26Joined: 2011-07-20 + *Regina HenschelCommits: 26Joined: 2010-11-04 *Maxime de RoucyCommits: 26Joined: 2012-03-08 @@ -1877,7 +1891,7 @@ *Joel MaderoCommits: 25Joined: 2012-06-15 - *Regina HenschelCommits: 25Joined: 2010-11-04 + *Juergen FunkCommits: 25Joined: 2014-09-17 @@ -1888,29 +1902,29 @@ *Kurosawa TakeshiCommits: 25Joined: 2011-01-04 - *Mihai VargaCommits: 25Joined: 2014-02-27 + *Uray M. JánosCommits: 24Joined: 2012-07-17 - *Uray M. JánosCommits: 24Joined: 2012-07-17 + *VortCommits: 24Joined: 2014-01-21 - *VortCommits: 24Joined: 2014-01-21 + *Daniel SikelerCommits: 24Joined: 2014-08-28 - *Daniel SikelerCommits: 24Joined: 2014-08-28 + *Mark HungCommits: 24Joined: 2014-11-04 - *Felix ZhangCommits: 23Joined: 2011-10-19 + *Marco CecchettiCommits: 23Joined: 2014-12-24 - *Julien ChaffraixCommits: 23Joined: 2011-04-12 + *Felix ZhangCommits: 23Joined: 2011-10-19 - *Juergen FunkCommits: 23Joined: 2014-09-17 + *Julien ChaffraixCommits: 23Joined: 2011-04-12 *José Guilherme VanzCommits: 23Joined: 2012-09-26 @@ -1924,6 +1938,9 @@ + *Ashod NakashianCommits: 23Joined: 2015-01-07 + + *Lucas BaudinCommits: 23Joined: 2011-01-25 @@ -1932,11 +1949,11 @@ *Robert RothCommits: 23Joined: 2010-10-31 + + *Christian DywanCommits: 23Joined: 2011-04-14 - - *zhenyu yuanCommits: 22Joined: 2013-11-06 @@ -1946,11 +1963,11 @@ *Jacek WolszczakCommits: 22Joined: 2010-10-07 + + *Ruslan KabatsayevCommits: 22Joined: 2012-05-11 - - Giuseppe CastagnoCommits: 22Joined: 2007-12-09 @@ -1958,30 +1975,38 @@ *Frédéric WangCommits: 22Joined: 2013-06-22 + *Justin LuthCommits: 22Joined: 2014-09-30 + + + + *Laurent AlonsoCommits: 22Joined: 2011-10-23 *Júlio HoffimannCommits: 22Joined: 2010-10-18 - - *Nicolas ChristenerCommits: 21Joined: 2011-03-10 *Rohit DeshmukhCommits: 21Joined: 2013-09-30 + + *Tushar BendeCommits: 20Joined: 2013-09-27 + *Rishabh KumarCommits: 20Joined: 2015-02-13 + + *Brad SowdenCommits: 20Joined: 2011-12-27 - - *Andy HolderCommits: 20Joined: 2010-12-06 + + Eric BachardCommits: 20Joined: 2005-10-19 @@ -1989,83 +2014,69 @@ *Petr VorelCommits: 20Joined: 2012-02-17 - *Justin LuthCommits: 20Joined: 2014-09-30 - - - - *Peilin XiaoCommits: 19Joined: 2013-12-09 *Lennard WasserthalCommits: 19Joined: 2012-08-11 + + *Baptiste DaroussinCommits: 19Joined: 2011-01-31 *AndrewCommits: 19Joined: 2014-02-26 - - Xiaofei ZhangCommits: 19Joined: 2010-06-28 *Ravindra VidhateCommits: 19Joined: 2014-01-30 + + *Jens CarlCommits: 18Joined: 2014-05-28 *Abdulelah AlarifiCommits: 18Joined: 2012-12-12 - - *Tomofumi YagiCommits: 18Joined: 2011-10-20 - *Rishabh KumarCommits: 18Joined: 2015-02-13 - - *Joost WezenbeekCommits: 18Joined: 2010-10-24 - - Hanno Meyer-ThurowCommits: 18Joined: 2010-09-16 - - *Ashod NakashianCommits: 18Joined: 2015-01-07 + Hanno Meyer-ThurowCommits: 18Joined: 2010-09-16 *Peter FoleyCommits: 18Joined: 2014-09-08 - *Mark HungCommits: 18Joined: 2014-11-04 - - *Boris DušekCommits: 18Joined: 2013-07-21 - - *Alfonso EusebioCommits: 17Joined: 2011-01-16 + + *Jian Hong ChengCommits: 17Joined: 2012-06-26 - *Daniel RobertsonCommits: 17Joined: 2015-06-27 + *Pedro GiffuniCommits: 17Joined: 2011-10-28 *Bálint DózsaCommits: 17Joined: 2011-02-10 - - *Umesh KadamCommits: 17Joined: 2014-01-10 + + *navin patidarCommits: 17Joined: 2013-01-06 @@ -2075,23 +2086,29 @@ *Jean-Noël RouvignacCommits: 16Joined: 2013-01-09 - - *tsahi glikCommits: 16Joined: 2013-06-04 + + *Anders JonssonCommits: 16Joined: 2010-12-11 - *Pedro GiffuniCommits: 16Joined: 2011-10-28 + *Mike KaganskiCommits: 16Joined: 2015-04-26 - *Jordan AyersCommits: 16Joined: 2010-11-04 + *Łukasz HryniukCommits: 16Joined: 2015-01-02 + + + *Vasily MelenchukCommits: 16Joined: 2015-01-27 + *Jordan AyersCommits: 16Joined: 2010-11-04 + + *Chris LaplanteCommits: 16Joined: 2014-04-07 @@ -2100,11 +2117,11 @@ *Maciej RumianowskiCommits: 16Joined: 2011-07-19 + + *Luke DixonCommits: 16Joined: 2010-10-26 - - *Lei De BinCommits: 16Joined: 2012-07-04 @@ -2114,28 +2131,22 @@ *Luke SymesCommits: 15Joined: 2010-10-01 - - *Catalin IacobCommits: 15Joined: 2012-02-10 - - *Mike KaganskiCommits: 15Joined: 2015-04-26 + *Catalin IacobCommits: 15Joined: 2012-02-10 *Heena GuptaCommits: 15Joined: 2014-06-17 - *Cosimo CecchiCommits: 15Joined: 2011-11-02 - - *Yifan JCommits: 15Joined: 2010-12-16 - - *Joachim TremourouxCommits: 15Joined: 2010-11-19 + + *Arnaud VersiniCommits: 15Joined: 2013-08-10 @@ -2143,27 +2154,27 @@ Octavio AlvarezCommits: 15Joined: 2010-09-13 - *Vasily MelenchukCommits: 15Joined: 2015-01-27 - - - - *Alexander BergmannCommits: 15Joined: 2012-01-13 *Povilas KanapickasCommits: 15Joined: 2010-10-18 + + + + *Cosimo CecchiCommits: 15Joined: 2011-11-02 + *Zhe WangCommits: 14Joined: 2012-06-20 *Sun YingCommits: 14Joined: 2012-08-16 - - *Juan PiccaCommits: 14Joined: 2014-07-23 + + *Richard PALOCommits: 14Joined: 2014-11-09 @@ -2173,11 +2184,11 @@ *Zsolt BölönyCommits: 14Joined: 2015-01-10 - - *Sven WehnerCommits: 13Joined: 2014-01-16 + + *gerhard oettlCommits: 13Joined: 2012-08-27 @@ -2187,10 +2198,13 @@ *LeMoyne CastleCommits: 13Joined: 2010-10-25 + + *Mathias HasselmannCommits: 13Joined: 2013-01-14 + - *Mathias HasselmannCommits: 13Joined: 2013-01-14 + *Björgvin RagnarssonCommits: 13Joined: 2012-02-13 *Muhammad HaggagCommits: 13Joined: 2012-02-01 @@ -2221,7 +2235,7 @@ *Wilhelm PfluegerCommits: 12Joined: 2011-02-05 - *Björgvin RagnarssonCommits: 12Joined: 2012-02-13 + *Olivier RCommits: 12Joined: 2011-08-01 *Jean-Baptiste FaureCommits: 12Joined: 2011-02-20 @@ -2238,17 +2252,14 @@ *Enrico Weigelt, metux ITSCommits: 11Joined: 2012-11-14 - *Łukasz HryniukCommits: 11Joined: 2015-01-02 + *Jonas Finnemann JensenCommits: 11Joined: 2010-10-01 - *Jonas Finnemann JensenCommits: 11Joined: 2010-10-01 + *Abdulaziz A AlayedCommits: 11Joined: 2013-01-22 - *Abdulaziz A AlayedCommits: 11Joined: 2013-01-22 - - *David BolenCommits: 11Joined: 2012-03-07 @@ -2257,11 +2268,11 @@ Frank PetersCommits: 11Joined: 2010-05-20 - - *Andre FischeCommits: 11Joined: 2011-02-10 + + *Michael JaumannCommits: 11Joined: 2014-09-02 @@ -2271,449 +2282,452 @@ *Charu TyagiCommits: 11Joined: 2014-06-25 - - - - *Olivier RCommits: 11Joined: 2011-08-01 - *René KjellerupCommits: 11Joined: 2010-10-14 + + *Jianyuan LiCommits: 10Joined: 2012-08-16 *Kristian RietveldCommits: 10Joined: 2011-10-15 - - *Mirek MazelCommits: 10Joined: 2012-06-05 *Theo van KlaverenCommits: 10Joined: 2011-03-10 + + *Luke PetrolekasCommits: 10Joined: 2011-02-12 *Timo HeinoCommits: 10Joined: 2010-11-22 - - *Dinesh PatilCommits: 9Joined: 2014-03-12 *Steven ButlerCommits: 9Joined: 2011-01-07 + + *Matthew PottageCommits: 9Joined: 2014-07-26 *Surendran MahendranCommits: 9Joined: 2010-11-05 - - *Mattias JohnssonCommits: 9Joined: 2010-10-18 *David VogtCommits: 9Joined: 2012-02-05 + + *Benjamin NiCommits: 8Joined: 2015-04-02 *Norah A. AbanumayCommits: 8Joined: 2012-07-30 - - *Ádám Csaba KirályCommits: 8Joined: 2013-02-28 *Michael CallahanCommits: 8Joined: 2010-12-06 + + *Troy RolloCommits: 8Joined: 2011-07-11 *Michael DunphyCommits: 8Joined: 2013-04-18 - - *Robert DargaudCommits: 8Joined: 2011-04-12 *Ursache VladimirCommits: 8Joined: 2015-02-10 + + *Tomcsik BenceCommits: 8Joined: 2012-01-14 *Ahmad H. Al HarthiCommits: 8Joined: 2012-12-31 - - Fong LinCommits: 8Joined: 2010-09-14 *RajashriCommits: 8Joined: 2013-12-06 + + *SouravCommits: 8Joined: 2014-03-15 *Stefan WeibergCommits: 8Joined: 2014-08-28 - - *HeiherCommits: 8Joined: 2015-07-07 *Timothy PearsonCommits: 8Joined: 2012-08-18 + + *Daisuke NishinoCommits: 8Joined: 2011-11-06 *karthCommits: 8Joined: 2013-01-07 - - *Nathan YeeCommits: 8Joined: 2015-01-01 *IanCommits: 8Joined: 2015-08-06 + + *Jonathan AdamsCommits: 8Joined: 2012-03-16 Jody GoldbergCommits: 8Joined: 2010-09-15 - - *Jenei GáborCommits: 8Joined: 2011-07-29 *Martin SrebotnjakCommits: 7Joined: 2010-12-19 + + *Pranav KantCommits: 7Joined: 2015-03-01 *David DelmaCommits: 7Joined: 2014-05-13 - - *Roi IllouzCommits: 7Joined: 2013-10-20 *Thies PierdolaCommits: 7Joined: 2011-01-28 + + *Phillip SzCommits: 7Joined: 2015-03-16 *Mathias MichelCommits: 7Joined: 2012-11-19 - - *Sergey DavidoffCommits: 7Joined: 2011-04-11 *Terrence EngerCommits: 7Joined: 2011-10-27 + + *SJacobiCommits: 7Joined: 2013-03-05 *Christopher CopitsCommits: 7Joined: 2012-09-19 - - *Deena FrancisCommits: 7Joined: 2014-07-29 *Keith CurtisCommits: 7Joined: 2013-12-20 + + *Issa AlkurtassCommits: 7Joined: 2012-09-04 *Gert van ValkenhoefCommits: 7Joined: 2012-02-14 - - *Keith McRaeCommits: 7Joined: 2012-01-18 *Wang LeiCommits: 7Joined: 2012-06-14 + + *Trent MacAlpineCommits: 7Joined: 2014-03-06 *Eric SeynaeveCommits: 7Joined: 2013-02-04 - - *Samuel CantrellCommits: 7Joined: 2011-06-11 - *Stefan RingCommits: 7Joined: 2014-01-09 + *Oliver SpechtCommits: 7Joined: 2015-09-03 + + - *Brennan VincentCommits: 7Joined: 2012-04-02 + *Stefan RingCommits: 7Joined: 2014-01-09 - *Marco CecchettiCommits: 6Joined: 2014-12-24 + *Brennan VincentCommits: 7Joined: 2012-04-02 - - *Dennis RoczekCommits: 6Joined: 2015-06-09 *Xavier ALTCommits: 6Joined: 2011-03-06 + + *RaalCommits: 6Joined: 2014-12-31 *Thomas CollertonCommits: 6Joined: 2011-11-18 - - *Michel RenonCommits: 6Joined: 2015-05-19 *Phil BordelonCommits: 6Joined: 2010-09-30 + + *Anurag JainCommits: 6Joined: 2011-04-05 *Jorenz ParagasCommits: 6Joined: 2015-06-23 - - *David VerrierCommits: 6Joined: 2013-02-26 *tianyaoCommits: 6Joined: 2013-11-09 + + *Anurag KanungoCommits: 6Joined: 2013-04-19 *Jeroen NijhofCommits: 6Joined: 2014-05-01 - - *Ricardo MorenoCommits: 6Joined: 2010-11-03 *Christoph LutzCommits: 6Joined: 2013-11-05 + + *Sven WehnerCommits: 6Joined: 2014-01-11 *Daniel Di MarcoCommits: 6Joined: 2010-11-15 - - *shiraharaCommits: 6Joined: 2011-01-28 *Bryan QuigleyCommits: 6Joined: 2013-11-10 + + *Alexander O. AnisimovCommits: 6Joined: 2010-11-06 *Werner KoernerCommits: 5Joined: 2012-12-11 - - *Antoine ProulxCommits: 5Joined: 2011-01-30 *Timothy MarkleCommits: 5Joined: 2014-01-31 + + *ericb2Commits: 5Joined: 2011-10-30 *Ciorba EdmondCommits: 5Joined: 2013-06-11 - - *Wei Ming KhooCommits: 5Joined: 2012-02-17 *Jan KantertCommits: 5Joined: 2014-06-12 + + *Matthias HofmannCommits: 5Joined: 2013-03-08 *Bernhard RosenkraenzerCommits: 5Joined: 2010-11-01 - - *Miguel GomezCommits: 5Joined: 2013-04-02 *pje335_NLCommits: 5Joined: 2013-05-10 + + *Pavel JaníkCommits: 5Joined: 2012-11-29 *MÁTÉ GergelyCommits: 5Joined: 2013-07-19 - - *Marc-Andre LaverdiereCommits: 5Joined: 2011-07-19 *Giuseppe BilottaCommits: 5Joined: 2014-09-09 + + *Tobias RosenbergerCommits: 5Joined: 2011-01-31 *Kohei YoshidaCommits: 5Joined: 2013-09-07 - - *Jack LeighCommits: 5Joined: 2015-03-18 *Bence BabatiCommits: 5Joined: 2012-08-13 + + *Michael T. WhiteleyCommits: 5Joined: 2011-11-25 *Gustavo Buzzatti PachecoCommits: 5Joined: 2011-12-15 - - *David HobleyCommits: 5Joined: 2010-10-04 *Gil ForcadaCommits: 5Joined: 2010-09-28 + + *Lionel DricotCommits: 5Joined: 2012-06-04 *Jeffrey ChangCommits: 5Joined: 2011-06-01 - - *Pavel KysilkaCommits: 5Joined: 2012-06-25 *Tom TromeyCommits: 4Joined: 2011-08-11 + + *Santiago AlessandriCommits: 4Joined: 2010-11-11 *Ken BiondiCommits: 4Joined: 2014-03-05 - - *Rodolfo Ribeiro GomesCommits: 4Joined: 2015-01-31 *Andrew C. E. DentCommits: 4Joined: 2010-10-24 + + *Kate GossCommits: 4Joined: 2012-02-11 *ClioCommits: 4Joined: 2011-01-30 - - *Elie RouxCommits: 4Joined: 2013-05-29 *Simon DannerCommits: 4Joined: 2014-08-02 + + *Thomas ViehmannCommits: 4Joined: 2014-08-15 *Alex HenrieCommits: 4Joined: 2014-03-05 - - *Maja DjordjevicCommits: 4Joined: 2011-01-06 *Michael MuenchCommits: 4Joined: 2011-02-13 + + *Ulrich KitzingerCommits: 4Joined: 2013-11-30 *Kevin SuoCommits: 4Joined: 2014-11-06 - - *Sameer DeshmukhCommits: 4Joined: 2013-04-20 *XiaoliCommits: 4Joined: 2013-03-23 + + *Mariana MarasoiuCommits: 4Joined: 2012-03-14 *Nicholas ShanksCommits: 4Joined: 2012-09-04 - - + + *Damjan JovanovicCommits: 4Joined: 2015-08-26 + *Jeffrey StedfastCommits: 4Joined: 2014-07-26 + + *An LeendersCommits: 4Joined: 2011-01-25 + *Dennis FrancisCommits: 4Joined: 2015-04-15 + + *José Guilherme VanzCommits: 4Joined: 2013-10-20 @@ -2739,16 +2753,19 @@ *V Stuart FooteCommits: 4Joined: 2014-12-04 + *Ryan McCoskrieCommits: 4Joined: 2014-09-14 + + *Nourah.AlShoeibiCommits: 4Joined: 2013-07-07 *Yong Lin MaCommits: 4Joined: 2012-06-07 + + *Fridrich StrbaCommits: 4Joined: 2013-03-08 - - *Pantelis KoukousoulasCommits: 4Joined: 2011-03-14 @@ -2758,11 +2775,11 @@ *Florian ReisingerCommits: 4Joined: 2012-06-22 + + *Zheng FanCommits: 4Joined: 2013-04-22 - - *Raimundo MouraCommits: 4Joined: 2012-06-16 @@ -2772,70 +2789,78 @@ *Samphan RaruenromCommits: 4Joined: 2011-03-24 + + + + *tageziCommits: 4Joined: 2015-09-16 + *Alan DuCommits: 3Joined: 2010-10-12 - - *Stefan SchickCommits: 3Joined: 2013-02-18 *Petr KrausCommits: 3Joined: 2013-03-26 + + *Gioele BarabucciCommits: 3Joined: 2010-11-18 *Simon LongCommits: 3Joined: 2015-07-08 - - *Cameron PaulCommits: 3Joined: 2012-02-27 *Markus MaierCommits: 3Joined: 2012-11-25 + + *Gabriele BulfonCommits: 3Joined: 2013-07-05 *Michael KochCommits: 3Joined: 2011-01-21 - - *Jonathan AquilinaCommits: 3Joined: 2011-01-18 *Pierre-Eric Pelloux-PrayerCommits: 3Joined: 2015-02-08 + + *vjinochCommits: 3Joined: 2013-04-09 *Sushil ShindeCommits: 3Joined: 2014-09-21 - - *Michael BauerCommits: 3Joined: 2011-11-23 *Mathieu VonlanthenCommits: 3Joined: 2012-07-19 + + + + *Matthew NichollsCommits: 3Joined: 2015-04-01 + *Florian Allmann-RahnCommits: 3Joined: 2011-08-22 *Dávid VastagCommits: 3Joined: 2013-02-04 - - *Andrea PescettiCommits: 3Joined: 2013-10-07 + + *Peter BaumgartenCommits: 3Joined: 2012-11-24 @@ -2845,11 +2870,11 @@ *Peter Senna TschudinCommits: 3Joined: 2014-05-26 - - *Marek DoleželCommits: 3Joined: 2015-07-06 + + *Kay SchenkCommits: 3Joined: 2014-09-19 @@ -2859,11 +2884,11 @@ *Golnaz IrannejadCommits: 3Joined: 2013-04-02 - - *Tantai TanakanokCommits: 3Joined: 2011-02-09 + + *Luboš LuňákCommits: 3Joined: 2014-03-18 @@ -2873,11 +2898,11 @@ *Tom ThorogoodCommits: 3Joined: 2012-02-28 - - *Chris Carpenter(mordocai)Commits: 3Joined: 2011-02-02 + + *Alexander ThurgoodCommits: 3Joined: 2011-01-26 @@ -2887,11 +2912,11 @@ *Marina PlakalovicCommits: 3Joined: 2012-12-14 - - *Tobias MuellerCommits: 3Joined: 2014-02-10 + + *Haidong LianCommits: 3Joined: 2013-07-24 @@ -2901,11 +2926,11 @@ *Robert M CampbellCommits: 3Joined: 2013-11-13 - - *Renato FerreiraCommits: 3Joined: 2014-11-15 + + *Cheng-Chia TsengCommits: 3Joined: 2012-01-16 @@ -2915,15 +2940,18 @@ *Dmitry AshkadovCommits: 3Joined: 2011-08-29 - - *Istvan TuriCommits: 3Joined: 2012-08-16 + + *Mihkel TõnnovCommits: 3Joined: 2012-07-02 + *Lucas SatabinCommits: 3Joined: 2015-08-25 + + Keith StribleyCommits: 3Joined: 2010-06-29 @@ -3039,20 +3067,20 @@ *Popa Adrian MariusCommits: 2Joined: 2015-03-26 - *Matthew NichollsCommits: 2Joined: 2015-04-01 + *Akash ShetyeCommits: 2Joined: 2013-03-23 - *Akash ShetyeCommits: 2Joined: 2013-03-23 - - *Michal SvecCommits: 2Joined: 2011-07-12 *Adam MrózCommits: 2Joined: 2013-02-24 + *n.r.pearsonCommits: 2Joined: 2015-09-09 + + *Ed DeanCommits: 2Joined: 2011-01-14 @@ -3072,6 +3100,9 @@ + *Derrick RochaCommits: 2Joined: 2015-09-11 + + *Anderson RobertoCommits: 2Joined: 2014-01-15 @@ -3080,11 +3111,11 @@ Loiseleur MichelCommits: 2Joined: 2010-09-14 + + *Mukhiddin YusupovCommits: 2Joined: 2014-05-19 - - *Sergey FarbotkaCommits: 2Joined: 2012-09-21 @@ -3094,11 +3125,11 @@ *Boris EgorovCommits: 2Joined: 2014-09-08 + + *Clarence GuoCommits: 2Joined: 2014-05-26 - - *Laszlo Kis-AdamCommits: 2Joined: 2015-03-12 @@ -3108,11 +3139,11 @@ *Andreas SchierlCommits: 2Joined: 2012-01-30 + + *Viktor VargaCommits: 2Joined: 2013-08-28 - - *gamebusterzCommits: 2Joined: 2015-02-19 @@ -3122,9 +3153,6 @@ *Justin MalcolmCommits: 2Joined: 2010-09-29 - - *Ryan McCoskrieCommits: 2Joined: 2014-09-14 - @@ -3142,10 +3170,10 @@ - *Mox SoiniCommits: 2Joined: 2015-06-02 + *Lubosz SarneckiCommits: 2Joined: 2015-08-20 - *Dennis P. FrancisCommits: 2Joined: 2015-04-15 + *Mox SoiniCommits: 2Joined: 2015-06-02 *Sean McMurrayCommits: 2Joined: 2010-10-20 @@ -3176,14 +3204,17 @@ *Chris HoppeCommits: 2Joined: 2013-06-27 - *David SteeleCommits: 2Joined: 2012-04-24 + *Derrick RochaCommits: 2Joined: 2015-08-26 - *William GathoyeCommits: 2Joined: 2012-02-28 + *David SteeleCommits: 2Joined: 2012-04-24 + *William GathoyeCommits: 2Joined: 2012-02-28 + + *PKEuSCommits: 2Joined: 2012-02-05 @@ -3192,11 +3223,11 @@ *Austin ChenCommits: 2Joined: 2015-03-25 + + *Gregg KingCommits: 2Joined: 2013-02-26 - - *Marcin eXine MCommits: 2Joined: 2010-11-02 @@ -3206,11 +3237,11 @@ *Mark WilliamsCommits: 2Joined: 2014-12-17 + + *Rolf HemmerlingCommits: 2Joined: 2013-06-15 - - *Arne de BruijnCommits: 2Joined: 2012-12-11 @@ -3220,11 +3251,11 @@ *Martin HollmichelCommits: 2Joined: 2015-06-29 + + *Flex LiuCommits: 2Joined: 2012-09-04 - - *Janos FaragoCommits: 2Joined: 2013-09-03 @@ -3234,11 +3265,11 @@ *Christos StrubulisCommits: 2Joined: 2012-12-09 + + *Jose Santiago Jimenez SarmientoCommits: 2Joined: 2012-04-24 - - *Jing XianCommits: 2Joined: 2013-06-26 @@ -3248,12 +3279,12 @@ *Greggory HernandezCommits: 2Joined: 2012-02-22 - - *Jagan LokanathaCommits: 2Joined: 2013-11-19 - + *Jagan LokanathaCommits: 2Joined: 2013-11-19 + + *Arno TeigsethCommits: 2Joined: 2011-09-14 @@ -3262,11 +3293,11 @@ *Karsten GerloffCommits: 2Joined: 2011-02-06 + + *Sophie GautierCommits: 2Joined: 2010-12-19 - - *Karthik A PadmanabhanCommits: 2Joined: 2012-03-31 @@ -3276,11 +3307,11 @@ *dbeurleCommits: 2Joined: 2015-01-12 + + *Carlos LuqueCommits: 2Joined: 2015-07-16 - - *Robert SedakCommits: 2Joined: 2010-10-05 @@ -3290,11 +3321,11 @@ *Janit AnjariaCommits: 2Joined: 2013-04-19 + + *Moritz KuettCommits: 2Joined: 2013-03-23 - - *Abeer SethiCommits: 2Joined: 2012-04-12 @@ -3304,11 +3335,11 @@ *Cyril RoelandtCommits: 2Joined: 2011-04-26 + + *Yury TarasievichCommits: 2Joined: 2011-11-23 - - *Hideki IkedaCommits: 2Joined: 2014-06-25 @@ -3318,11 +3349,11 @@ *Daniel HerdeCommits: 2Joined: 2012-08-09 + + *Michael NattererCommits: 2Joined: 2011-04-08 - - *Markus WernigCommits: 2Joined: 2015-03-18 @@ -3332,11 +3363,11 @@ *Johann MessnerCommits: 2Joined: 2012-08-28 + + *Nadav VinikCommits: 2Joined: 2010-10-21 - - *Bisal NayalCommits: 2Joined: 2014-05-07 @@ -3346,11 +3377,11 @@ *Goran RakicCommits: 1Joined: 2013-03-30 + + *Ross BurtonCommits: 1Joined: 2012-04-18 - - *Martin BrownCommits: 1Joined: 2013-02-23 @@ -3360,11 +3391,11 @@ *Milan CrhaCommits: 1Joined: 2013-02-07 + + *Rich WarehamCommits: 1Joined: 2012-01-12 - - *Swachhand LokhandeCommits: 1Joined: 2015-03-07 @@ -3374,11 +3405,11 @@ *Ruggero CyrilleCommits: 1Joined: 2014-10-18 + + *Pádraig BradyCommits: 1Joined: 2011-10-21 - - *Foo Lai ChooCommits: 1Joined: 2014-11-26 @@ -3388,11 +3419,11 @@ *Kenneth BeckCommits: 1Joined: 2013-03-02 + + *Udo SchuermannCommits: 1Joined: 2012-04-16 - - *Valek FilippovCommits: 1Joined: 2013-02-23 @@ -3402,11 +3433,11 @@ *Mattias PõldaruCommits: 1Joined: 2014-12-06 + + *Kevin HausmannCommits: 1Joined: 2012-08-17 - - *Andreas SliwkaCommits: 1Joined: 2011-02-06 @@ -3416,11 +3447,11 @@ *Michael DunphyCommits: 1Joined: 2015-03-22 + + *Ta Duc TungCommits: 1Joined: 2011-08-08 - - *Alex KempshallCommits: 1Joined: 2011-08-14 @@ -3430,11 +3461,11 @@ *Neven ĆosićCommits: 1Joined: 2012-10-08 + + *Lennart PoetteringCommits: 1Joined: 2014-10-09 - - *Mathieu DCommits: 1Joined: 2012-11-19 @@ -3444,501 +3475,501 @@ *Valter MuraCommits: 1Joined: 2015-06-07 + + + + *Nathan WellsCommits: 1Joined: 2015-09-03 + *Dobra GaborCommits: 1Joined: 2015-04-02 - - *Naser SharifiCommits: 1Joined: 2012-11-26 *Shreyansh GandhiCommits: 1Joined: 2014-06-10 + + *Michael KovarikCommits: 1Joined: 2015-01-07 *Mathias SuppCommits: 1Joined: 2014-02-25 - - *Eric S. RaymondCommits: 1Joined: 2013-06-07 *Bernhard M. WiedemannCommits: 1Joined: 2011-10-17 + + *Neil Voss (fourier)Commits: 1Joined: 2013-05-24 *tinderboxCommits: 1Joined: 2013-04-11 - - *pgajdosCommits: 1Joined: 2011-01-31 *Roman EiseleCommits: 1Joined: 2011-11-23 + + *Simon WilperCommits: 1Joined: 2015-01-24 *Andreas K. Huettel (dilfridge)Commits: 1Joined: 2015-01-04 - - *JesseCommits: 1Joined: 2011-12-14 *Javier CatalaCommits: 1Joined: 2012-04-26 + + *yjw9012Commits: 1Joined: 2013-12-30 *armijnCommits: 1Joined: 2010-12-30 - - *Ondřej SmržCommits: 1Joined: 2013-03-10 *Italo VignoliCommits: 1Joined: 2012-03-09 + + *massinissaHamidiCommits: 1Joined: 2015-05-07 *Andor ErtseyCommits: 1Joined: 2011-09-04 - - *ritztroCommits: 1Joined: 2015-04-11 *Jihui ChoiCommits: 1Joined: 2015-06-22 + + *Srijan ChoudharyCommits: 1Joined: 2013-08-10 *Marcel HBCommits: 1Joined: 2011-05-03 - - *Xavi Escriche GalindoCommits: 1Joined: 2012-04-24 *Stefan WeigelCommits: 1Joined: 2011-10-17 + + *Paula MannesCommits: 1Joined: 2012-11-30 *Trevor MurphyCommits: 1Joined: 2010-10-20 - - *mmeof2Commits: 1Joined: 2015-05-09 *Marco BiscaroCommits: 1Joined: 2012-08-27 + + *Johannes WidmerCommits: 1Joined: 2013-03-23 *Ryo ONODERACommits: 1Joined: 2014-04-07 - - *umairshahidCommits: 1Joined: 2015-05-29 *Masataka ShinkeCommits: 1Joined: 2012-02-15 + + *Phil HartCommits: 1Joined: 2012-06-29 *Vicente Rafael Estevez VacasCommits: 1Joined: 2012-04-22 - - *Bryan QuigleyCommits: 1Joined: 2012-12-12 *Michal SiedlaczekCommits: 1Joined: 2014-01-25 + + *Jean-Yves RoyerCommits: 1Joined: 2011-03-07 *Victor LeeCommits: 1Joined: 2011-12-24 - - *AWASHIRO IkuyaCommits: 1Joined: 2011-01-04 *Olivier PlotonCommits: 1Joined: 2012-12-12 + + *Joshua CogliatiCommits: 1Joined: 2012-01-06 *xjclCommits: 1Joined: 2014-08-04 - - *Chen ZuoJunCommits: 1Joined: 2012-10-08 *Javier Silva SanahujaCommits: 1Joined: 2012-04-23 + + *Andrew RistCommits: 1Joined: 2012-10-05 *Travis CarterCommits: 1Joined: 2012-06-22 - - *Péter SzathmáryCommits: 1Joined: 2015-01-07 *Hiroto KagotaniCommits: 1Joined: 2014-08-19 + + *Alberto RuizCommits: 1Joined: 2011-03-31 *Petr GajdosCommits: 1Joined: 2015-04-07 - - *Stefano FacchiniCommits: 1Joined: 2013-08-22 *Milan ZelenkaCommits: 1Joined: 2014-03-26 + + *Mark WrightCommits: 1Joined: 2013-02-09 *Piet van OostrumCommits: 1Joined: 2015-03-12 - - *roopak12345Commits: 1Joined: 2014-03-09 *Juan Pablo Martínez CortésCommits: 1Joined: 2011-11-28 + + *Vincent PovirkCommits: 1Joined: 2011-12-19 *Christopher BackhouseCommits: 1Joined: 2010-12-06 - - *Andy HearnCommits: 1Joined: 2011-01-09 *Karl KoehlerCommits: 1Joined: 2011-11-11 + + *Alexandre FournierCommits: 1Joined: 2010-11-06 *Martin OwensCommits: 1Joined: 2014-07-27 - - *Edmund LaugassonCommits: 1Joined: 2015-01-07 *Douglas Rodrigues de AlmeidaCommits: 1Joined: 2012-09-15 + + *Nicolas ChristenerCommits: 1Joined: 2013-08-04 *Hamza AbdelkebirCommits: 1Joined: 2013-02-23 - - *Jacqueline RahemipourCommits: 1Joined: 2013-03-23 *Aditya KaleCommits: 1Joined: 2014-04-01 + + *Jonathan RiddellCommits: 1Joined: 2014-11-22 *James CCommits: 1Joined: 2011-12-20 - - *Tim RichardsonCommits: 1Joined: 2013-06-04 *Hannah LyhneCommits: 1Joined: 2014-04-01 + + *Florent GallaireCommits: 1Joined: 2012-04-21 *Milos SramekCommits: 1Joined: 2012-01-20 - - *Evertjan GarretsenCommits: 1Joined: 2010-10-04 *William LachanceCommits: 1Joined: 2011-06-08 + + *krishnan parthasarathiCommits: 1Joined: 2010-10-07 *ZirkCommits: 1Joined: 2015-01-07 - - *Kevin PengCommits: 1Joined: 2012-07-20 *Paolo PozzanCommits: 1Joined: 2010-12-19 + + *Rolf KoetterCommits: 1Joined: 2013-11-05 *Ward van WanrooijCommits: 1Joined: 2012-06-25 - - *Arkadiusz MiśkiewiczCommits: 1Joined: 2014-10-09 *NeilBrownCommits: 1Joined: 2010-09-28 + + *Miguel FernándezCommits: 1Joined: 2012-04-26 *Gábor NyersCommits: 1Joined: 2013-03-02 - - *Jean-François Fortin TamCommits: 1Joined: 2013-06-10 *Tadele AssefaCommits: 1Joined: 2013-01-15 + + *Martin LiškaCommits: 1Joined: 2014-03-26 *Jose ManuelCommits: 1Joined: 2012-04-25 - - *Michael DuelliCommits: 1Joined: 2013-08-01 *Vojta KoukalCommits: 1Joined: 2013-03-03 + + *Chris CheneyCommits: 1Joined: 2011-04-27 *Aleksandr AndreevCommits: 1Joined: 2015-04-20 - - *Irányossy Knoblauch ArtúrCommits: 1Joined: 2013-04-06 *Fahad Al-SaidiCommits: 1Joined: 2014-07-16 + + *ricardobottoCommits: 1Joined: 2013-05-18 *Cassio NeriCommits: 1Joined: 2011-05-01 - - *Danny BrownCommits: 1Joined: 2013-09-18 *David PenzesCommits: 1Joined: 2011-06-14 + + *Jason GerlowskiCommits: 1Joined: 2014-03-07 *Manas JoshiCommits: 1Joined: 2014-03-17 - - *Aron BudeaCommits: 1Joined: 2014-12-22 *sagarCommits: 1Joined: 2012-09-15 + + *Karan DesaiCommits: 1Joined: 2012-04-01 *Steven MeyerCommits: 1Joined: 2013-03-13 - - *Paulo JoséCommits: 1Joined: 2011-04-01 *Dona HertelCommits: 1Joined: 2011-04-14 + + *Aldo Román NureñaCommits: 1Joined: 2012-04-09 *Kalman KemenczyCommits: 1Joined: 2010-10-28 - - *Naruhiko OgasawaraCommits: 1Joined: 2014-10-25 *Ankitkumar Rameshchandra PatelCommits: 1Joined: 2012-01-20 + + *Babu VincentCommits: 1Joined: 2014-09-19 *Heiko ScheidtCommits: 1Joined: 2014-08-03 - - *Arfrever Frehtes Taifersar ArahesisCommits: 1Joined: 2012-04-02 *OKANO TakayoshiCommits: 1Joined: 2013-01-29 + + *Alex IvanCommits: 1Joined: 2013-04-15 *sonakshi nathaniCommits: 1Joined: 2013-06-26 - - *Sam TukeCommits: 1Joined: 2015-05-21 *Hansgerd SchneiderCommits: 1Joined: 2013-04-02 + + *Ayantha RandikaCommits: 1Joined: 2014-01-23 *Jorge Cunha MendesCommits: 1Joined: 2015-04-03 - - *Jan HubickaCommits: 1Joined: 2014-02-18 *Joseph BrownCommits: 1Joined: 2012-08-14 + + *Dan CorneanuCommits: 1Joined: 2010-12-29 *Tim JanikCommits: 1Joined: 2012-08-10 - - *dbarisakkurtCommits: 1Joined: 2012-02-02 *Pavel KacerCommits: 1Joined: 2013-04-11 + + *Fernando GovernatoreCommits: 1Joined: 2012-02-25 *Christophe StrobbeCommits: 1Joined: 2011-08-09 - - *matt_51Commits: 1Joined: 2013-11-05 *Karthick Prasad GunasekaranCommits: 1Joined: 2015-03-22 + + *J. Fernando LagrangeCommits: 1Joined: 2014-02-02 *Jan NieuwenhuizenCommits: 1Joined: 2011-04-28 - - *Pieter AdriaensenCommits: 1Joined: 2014-12-21 *James Michael DuPontCommits: 1Joined: 2013-08-30 - - *RosemaryCommits: 1Joined: 2015-06-23 - + + *Reem.ALotaibiCommits: 1Joined: 2013-07-25 - - *DaveCommits: 1Joined: 2012-08-23 @@ -3948,11 +3979,11 @@ *Daniel MihalyiCommits: 1Joined: 2012-02-06 + + *Quentin PradetCommits: 1Joined: 2012-12-21 - - *Adrià Cereto MassaguéCommits: 1Joined: 2010-10-26 @@ -3962,11 +3993,11 @@ *Ionut BiruCommits: 1Joined: 2012-05-14 + + *mb93783Commits: 1Joined: 2010-12-21 - - *Christoph LutzCommits: 1Joined: 2011-09-06 @@ -3976,11 +4007,11 @@ *Rafael CabralCommits: 1Joined: 2011-03-31 + + *Jiri BlechaCommits: 1Joined: 2013-03-02 - - *Tomas HlavatyCommits: 1Joined: 2014-06-03 @@ -3990,11 +4021,11 @@ *ACTomCommits: 1Joined: 2015-03-23 + + *Tim-Philipp MüllerCommits: 1Joined: 2012-07-29 - - *Sujith SudhakaranCommits: 1Joined: 2015-04-07 @@ -4004,11 +4035,11 @@ *Freek de KruijfCommits: 1Joined: 2010-12-19 + + *Carsten NiehausCommits: 1Joined: 2012-02-09 - - *Tarun KumarCommits: 1Joined: 2014-03-07 @@ -4018,11 +4049,11 @@ *Nick SavageCommits: 1Joined: 2010-10-01 + + *Monica Ramirez ArcedaCommits: 1Joined: 2012-04-23 - - *camilleCommits: 1Joined: 2010-12-13 @@ -4032,11 +4063,11 @@ *Dushyant BhalgamiCommits: 1Joined: 2014-07-04 + + *Peter TillemansCommits: 1Joined: 2012-06-26 - - *Andrey TurkinCommits: 1Joined: 2011-02-09 @@ -4046,11 +4077,11 @@ *Stephan van den AkkerCommits: 1Joined: 2012-06-07 + + *Maxime CôtéCommits: 1Joined: 2011-04-19 - - *AdrienCommits: 1Joined: 2013-08-18 @@ -4060,11 +4091,11 @@ *robert BabiakCommits: 1Joined: 2015-03-25 + + *Rubén JáñezCommits: 1Joined: 2010-10-11 - - *Laureano G. LindeCommits: 1Joined: 2012-04-15 @@ -4074,11 +4105,11 @@ *Jaime NavarroCommits: 1Joined: 2012-04-20 + + *Maarten HoesCommits: 1Joined: 2014-12-20 - - *vincentCommits: 1Joined: 2013-03-22 @@ -4086,104 +4117,115 @@ *Erik AuerswaldCommits: 1Joined: 2013-07-09 + *brinzingCommits: 1Joined: 2015-08-22 + + + + *Henning DiedlerCommits: 1Joined: 2013-11-02 *Jun NOGATACommits: 1Joined: 2015-01-07 - - *Ota ChasákCommits: 1Joined: 2013-04-24 *Jan BobisudCommits: 1Joined: 2013-04-29 + + *Ashish BanerjeeCommits: 1Joined: 2013-04-04 *Alaa.BukhariCommits: 1Joined: 2013-07-04 - - *Guillaume FillolCommits: 1Joined: 2011-01-29 *Andrew WestCommits: 1Joined: 2011-10-21 + + *Antoine CœurCommits: 1Joined: 2015-06-11 *Dennis E. HamiltonCommits: 1Joined: 2013-01-19 - - *Hugo Beauzée-LuyssenCommits: 1Joined: 2011-09-28 *Modestas RimkusCommits: 1Joined: 2011-11-21 + + *Brian FraserCommits: 1Joined: 2013-09-03 *Michael HornCommits: 1Joined: 2015-03-21 - - *pkoroau pkoroauCommits: 1Joined: 2012-12-20 *Audrey TangCommits: 1Joined: 2014-08-05 + + *Krunoslav ŠebetićCommits: 1Joined: 2013-07-18 *Victor PortellaCommits: 1Joined: 2014-11-05 - - *gdm.manmeetCommits: 1Joined: 2014-03-18 *Juergen SteinhilberCommits: 1Joined: 2012-03-05 + + *Juan A. Suarez RomeroCommits: 1Joined: 2014-12-15 *Jordi MallachCommits: 1Joined: 2012-05-03 - - *Daniel NaberCommits: 1Joined: 2012-05-09 *Martin RichardCommits: 1Joined: 2012-01-31 + + *Neil StalkerCommits: 1Joined: 2010-10-02 + *Tomáš ChvátalCommits: 1Joined: 2015-09-15 + + *Alberto FerreiraCommits: 1Joined: 2012-06-08 - - *Wolfgang SilbermayrCommits: 1Joined: 2010-10-21 + + *Gordon LackCommits: 1Joined: 2012-05-09 + *Sergey FukanchikCommits: 1Joined: 2015-09-17 + + *Andrew BranchCommits: 1Joined: 2013-02-20 @@ -4240,14 +4282,17 @@ *Kenneth AafløyCommits: 1Joined: 2012-01-11 - *scitoCommits: 1Joined: 2015-04-13 + *Samuel MehrbrodtCommits: 1Joined: 2015-09-15 - *Danny RobertsCommits: 1Joined: 2011-02-18 + *scitoCommits: 1Joined: 2015-04-13 + *Danny RobertsCommits: 1Joined: 2011-02-18 + + *LesterCommits: 1Joined: 2012-10-23 @@ -4256,11 +4301,11 @@ *Seyeong KimCommits: 1Joined: 2014-10-06 + + *Florian EffenbergerCommits: 1Joined: 2015-08-04 - - *Michal HorakCommits: 1Joined: 2014-04-21 @@ -4270,11 +4315,11 @@ *Yohei YukawaCommits: 1Joined: 2013-05-06 + + *Jakub GolebiewskiCommits: 1Joined: 2013-04-09 - - *PhyzerCommits: 1Joined: 2014-09-13 @@ -4284,19 +4329,18 @@ *Dolives BenoitCommits: 1Joined: 2011-07-04 + + *Damien ChambeCommits: 1Joined: 2014-06-15 - - *galbarnissanCommits: 1Joined: 2014-12-03 - + - Contributors to bundled templates @@ -4905,17 +4949,17 @@ We do not distinguish between commits that were imported from the OOo code base and those who went directly into the LibreOffice code base as: - + - a) it is technically not possible to distinguish between commits that go directly into the LibreOffice code base and commits that were merged in from the OpenOffice.org code base, and + a) it is technically not possible to distinguish between commits that go directly into the LibreOffice code base and commits that were merged in from the OpenOffice.org code base, and - b) contributors to the OOo code base should also be credited for the excellent work they do. + b) contributors to the OOo code base should also be credited for the excellent work they do. Do note that LibreOffice used to be divided into 20 git repositories. Pushing a change into all repositories will be counted as 20 commits as there is no way to distinguish this from 20 separate commits. Total contributions to the TDF Wiki - 2138 individuals contributed: + 2156 individuals contributed: @@ -4923,35 +4967,35 @@ - K-j (5498) + K-j (5541) - Roczek, Dennis (5455) + Roczek, Dennis (5472) Uroveits (4074) - Tryon, Robinson (3475) + Tryon, Robinson (3504) - Pierre-yves samyn (3449) + Pierre-yves samyn (3473) - (2845) + (2849) - Gautier, Sophie (2751) + Gautier, Sophie (2762) - Tagezi (2270) + Goncharuk, Lera (2333) - Balland-Poirier, Laurent (2139) + Balland-Poirier, Laurent (2143) Bielefeld, Rainer (2075) @@ -4960,12 +5004,12 @@ Jeanweber (1892) - Effenberger, Florian (1568) + Effenberger, Florian (1570) - Marcpare (1379) + Marcpare (1382) Michaelsen, Björn (1363) @@ -4974,12 +5018,12 @@ Adailton (1203) - Mirek2 (1162) + Mac-Cormick, João (1173) - Mac-Cormick, João (1161) + Mirek2 (1162) Buzzatti Pacheco, Gustavo (1125) @@ -4999,7 +5043,7 @@ Meeks, Michael (845) - Ostrovsky, David (759) + Ostrovsky, David (813) Naruoga (743) @@ -5007,16 +5051,16 @@ - Filmsi (728) + Filmsi (733) - Jayme Barrientos, Adolfo (723) + Jayme Barrientos, Adolfo (728) - Teo91 (723) + Teo91 (726) - GerryT (692) + GerryT (717) @@ -5024,10 +5068,10 @@ Drew (646) - Enoki (630) + Enoki (641) - H-k (628) + H-k (629) Hallot, Olivier (602) @@ -5038,10 +5082,10 @@ Jmadero (595) - Nouws, Cor (565) + Nouws, Cor (573) - Behrens, Thorsten (556) + Behrens, Thorsten (560) Clement21.philippe (554) @@ -5100,18 +5144,18 @@ Luz Coelho, Rogério (409) - Alexander Wilms (392) + Holešovský, Jan (400) - Holešovský, Jan (390) + Alexander Wilms (392) - Yoshida, Kohei (386) + Rathke, Eike (387) - Rathke, Eike (384) + Yoshida, Kohei (386) Foral (384) @@ -5125,7 +5169,7 @@ StefanW (379) - McNamara, Caolán (375) + McNamara, Caolán (376) Emanuel Marcatinco (374) @@ -5147,16 +5191,16 @@ - Rönkkö, Niko (322) + Thiebaud, Norbert (327) - Thiebaud, Norbert (321) + Rönkkö, Niko (322) - Lohmaier, Christian (301) + Tardon, David (312) - Tardon, David (300) + Lohmaier, Christian (302) @@ -5167,10 +5211,10 @@ Emanuel A. Marcatinco B. (290) - Librelegal (289) + Librelegal (290) - Foote, V Stuart (281) + Foote, V Stuart (287) @@ -5181,14 +5225,17 @@ Helen russian (266) - Gerald (255) + Philips, Yousuf (262) - Tseng, Cheng-Chia (254) + Gerald (255) + Tseng, Cheng-Chia (254) + + Remarques (252) @@ -5197,12 +5244,12 @@ Adrianoafonso (245) - - Stahl, Michael (243) - + Stahl, Michael (244) + + Loic (240) @@ -5211,75 +5258,72 @@ Steve (237) - - Philips, Yousuf (234) - - Bosdonnat, Cédric (228) + Mohrhard, Markus (236) - Dippold, Bernhard (226) + Hibagonsan (231) - Mohrhard, Markus (220) + Bosdonnat, Cédric (228) - Almusaireae (219) + Dippold, Bernhard (226) - Khirano (215) + Elcico (224) - Gilvanvilarim (213) + Almusaireae (219) - Andreschnabel (205) + Kkwet38 (218) - Jbfaure (204) + Khirano (215) - Kkwet38 (204) + Gilvanvilarim (213) - XsLiDian (203) + Andreschnabel (205) - Elcico (200) + Jbfaure (205) - Hackert, Thomas (199) + XsLiDian (203) - Wheatbix (198) + Hackert, Thomas (199) - Erhardt (193) + Wheatbix (198) - Lillqvist, Tor (191) + Lillqvist, Tor (196) - Schulz, Charles-H. (189) + Erhardt (193) - DmitryBowie (188) + Schulz, Charles-H. (189) - Tarnhold (187) + DmitryBowie (188) - Hibagonsan (184) + Tarnhold (187) Méixome, Antón (179) @@ -5304,31 +5348,34 @@ Luizheli (172) - Furusho (168) + Furusho (169) Jiang, Yifan (168) - Matuaki (163) + Kaplan, Lior (165) - See (160) + Matuaki (163) - Snelders, Rob (159) + Veracape (161) - Veracape (155) + See (160) - Kaplan, Lior (154) + Snelders, Rob (159) + Henschel, Regina (154) + + Pitkänen, Harri (151) @@ -5337,11 +5384,11 @@ Vignoli, Italo (148) + + Gonzalez, Daniel (146) - - Mipmap (144) @@ -5351,19 +5398,16 @@ Heliojsf (137) - - P.guimberteau (137) - - Norah (135) + P.guimberteau (137) - Weissenbacher, Philipp (135) + Weissenbacher, Philipp (136) - Henschel, Regina (133) + Norah (135) Filhocf (132) @@ -5371,19 +5415,22 @@ + Bergmann, Stephan (132) + + Richteruwe (131) - Bergmann, Stephan (130) + Kerwyn (130) Michel, Mathias (129) + + Mamane, Lionel Elie (128) - - Nik (127) @@ -5393,11 +5440,11 @@ Michelr (123) + + RGB.ES (123) - - Trapezus (122) @@ -5405,9 +5452,6 @@ Ikuya (121) - Kerwyn (121) - - Lodahl (121) @@ -5419,7 +5463,7 @@ Liebel, Jennifer (119) - Abe, Takeshi (117) + Abe, Takeshi (118) Rodriguez, Daniel Armando (115) @@ -5436,35 +5480,35 @@ Vohe (113) - Marcus Gama (112) + Beluga (112) - Medieval (111) + Marcus Gama (112) - Phorious (108) + Medieval (111) - Beluga (107) + Sam m (109) - Schulthess, Franziska (107) + Phorious (108) - Ki Drupadi (106) + Schulthess, Franziska (107) - Sam m (106) + Ki Drupadi (106) - Mantke, Andreas (102) + Bitsfritz (104) - Bitsfritz (102) + Mantke, Andreas (102) @@ -5486,7 +5530,7 @@ AlanC (98) - Nemeth (95) + Nemeth (98) Andreasg (92) @@ -5525,6 +5569,9 @@ + Klaibson (82) + + Nabet, Julien (82) @@ -5533,11 +5580,11 @@ 80686 (79) + + KeithCu (78) - - Milos (78) @@ -5547,9 +5594,6 @@ Pechlaner, Wolfgang (78) - - Klaibson (76) - @@ -5559,14 +5603,17 @@ K.K.Ashisuto (75) - Albino (74) + Óvári (75) - Fišeras, Aurimas (74) + Albino (74) + Fišeras, Aurimas (74) + + Lbalbalba (74) @@ -5575,11 +5622,11 @@ Junmeguro (73) + + Jeanmi2403 (72) - - Aury88 (71) @@ -5589,25 +5636,25 @@ Al-Harthi, Ahmad Hussein (70) + + Jo7ueb (70) - - Malhassoun (69) - Óvári (69) + Castermans, Luc (68) Freetank (68) + + Fábio Farias (68) - - Jucasaca (68) @@ -5617,53 +5664,53 @@ Ptux (67) + + StanG (65) - - Karbasion, Bersam (64) - Castermans, Luc (64) + Gghh (64) Oipila (64) - - Evy (63) - - Kees538 (63) + Baffclan (63) - Kudelis, Rimas (63) + Evy (63) - Baffclan (61) + Kees538 (63) - Denco (61) + Kudelis, Rimas (63) + Denco (61) + + Frieder (61) Jlgrenar (60) - Gghh (59) + Deneb (58) + + Neel, Daniel (58) - - Loflex (58) @@ -5673,11 +5720,11 @@ Bmcs (57) + + Camillem (57) - - Davefilms (56) @@ -5687,9 +5734,20 @@ Ramones (56) + + Jrahemipour (55) + + Sikeler (55) + + + Shunesburg69 (54) + + + Hunt, Andrzej (53) + @@ -5699,10 +5757,10 @@ Sunny2038 (53) - Hunt, Andrzej (52) + Petrizzo (52) - Petrizzo (52) + Timur LOL (52) @@ -5724,19 +5782,16 @@ Popa, Adrian Marius (51) - Timur LOL (51) - - Agd (50) Halparker (50) - - Ronaldo (50) + + Catalin Festila (49) @@ -5746,36 +5801,28 @@ Mpescador (49) - - Vardomescro (49) + + Lviktoria (48) - Sikeler (48) - - Dagobert 78 (47) - - - - Deneb (46) - Moreno, Eduardo (46) Sk94 (46) + + Bfo (45) - - Bhorst (44) @@ -5783,9 +5830,6 @@ Quest-88 (44) - Shunesburg69 (44) - - Aaronxu (43) @@ -5889,6 +5933,9 @@ + Paz (35) + + Pingping111 (35) @@ -5897,11 +5944,11 @@ Caco13 (34) + + Mahfiaz (34) - - Quikee (34) @@ -5911,11 +5958,11 @@ Subramanian, Muthu (34) + + Aragunde Pérez, Jacobo (33) - - Corrius, Jesús (33) @@ -5925,13 +5972,10 @@ Mars (33) - - Mateus.m.luna (33) - - Paz (33) + Mateus.m.luna (33) Pereriksson (33) @@ -5945,6 +5989,9 @@ + Horáček, Stanislav (33) + + Clio (32) @@ -5953,26 +6000,26 @@ Dryomov, Artur (32) - - Enger, Terrence (32) - - Xuacu (32) + Enger, Terrence (32) - IvanM (31) + Xuacu (32) - Alexanderwerner (30) + Alexanderwerner (31) - Njsg (30) + IvanM (31) + Njsg (30) + + Tclovis (30) @@ -5981,11 +6028,11 @@ Cida.Coltro (29) + + Darbe (29) - - Haaninjo (29) @@ -5995,11 +6042,11 @@ Серж (29) + + Ace-dent (28) - - EdvaldoSCruz (28) @@ -6009,11 +6056,11 @@ Jihui choi (28) + + المسيكين (28) - - Bormant (27) @@ -6023,9 +6070,6 @@ Micm (27) - - Horáček, Stanislav (27) - @@ -6113,21 +6157,24 @@ - Olorin (23) + Thuswaldner, Albert (24) - PaoloPelloni (23) + Nogajun (23) - TaeWong (23) + Olorin (23) - Team One (23) + PaoloPelloni (23) - Thuswaldner, Albert (23) + TaeWong (23) + + + Team One (23) Bellerophon (22) @@ -6135,11 +6182,11 @@ Balazs, Bjoern (22) + + HenryGR (22) - - JChimene (22) @@ -6149,39 +6196,39 @@ Yanpas (22) + + + + Enio.gemmo (21) + Grandin, Noel (21) - - Montané, Joan (21) Johannes (21) + + Liusiqi43 (21) Necdetyucel (21) - - - - Nogajun (21) - Wayra (21) Bugmenot (20) + + Grasip (20) - - HeinF (20) @@ -6191,11 +6238,11 @@ Mattsturgeon (20) + + XMatence (20) - - Yorick (20) @@ -6205,11 +6252,11 @@ Guateconexion (19) + + Icobgr (19) - - JaronBaron (19) @@ -6219,11 +6266,11 @@ Kentarch (19) + + Magliocchetti, Riccardo (19) - - Jingtao, Yan (18) @@ -6233,11 +6280,11 @@ Narayan (18) + + Power, Noel (18) - - Olivier (18) @@ -6247,11 +6294,11 @@ Schiavinatto (18) + + Sooth (18) - - Toxitom (18) @@ -6261,11 +6308,11 @@ Valdirbarbosa (18) + + 林漢昌 (18) - - Akerbeltz (17) @@ -6275,11 +6322,11 @@ Chd (17) + + Dlmoretz (17) - - Ertsey, Andor (17) @@ -6289,42 +6336,50 @@ Gulmorais (17) + + Juergenfenn (17) - - + + Lenochod (17) + Rubembarreto (17) Taken (17) + + Thumperward (17) Uwealtmann (17) - - Yumakino (17) Беломир (17) + + Dhersh (16) + Elpapki (16) + + Gippy73 (16) - - Houbsi (16) + + MoIshihara (16) @@ -6334,11 +6389,11 @@ P.Guimberteau (16) - - Ristoi (16) + + Vuhung (16) @@ -6348,11 +6403,11 @@ APerson (15) - - Airon90 (15) + + Andy98 (15) @@ -6362,11 +6417,11 @@ Craigo (15) - - Franklin (15) + + Khlood Elsayed (15) @@ -6374,41 +6429,41 @@ Lefevre00 (15) - Lenochod (15) - - - - Luctur (15) Miko (15) + + Naudy (15) Dominguez, Rafael (15) - - PauGNU (15) Raul.malea (15) + + Thorogood, Tom (15) 暗影遺言 (15) - - + + Afaccioli74 (14) + Fina (14) + + Kosiorek, Bartosz (14) @@ -6418,11 +6473,11 @@ Halencarjunior (14) - - Irmhild (14) + + Lfernandocarvalho (14) @@ -6432,11 +6487,11 @@ Lutch (14) - - Mderoucy (14) + + Reinsle (14) @@ -6446,11 +6501,11 @@ Testnoda (14) - - Thangamani-arun (14) + + Akoscomp (13) @@ -6460,52 +6515,55 @@ Alyssonware (13) - - Beuss (13) + + Cedric31 (13) - Elpapki (13) - - Gallaecio (13) - - Kadekilo (13) Leomota (13) + + Ljelly (13) Luc (13) - - Luked (13) Mabbb (13) + + Mihkel (13) Mortense (13) + + Odd123 (13) + + + Pete Boyd (13) + - Pete Boyd (13) + Royerjy (13) S.Gecko (13) @@ -6564,18 +6622,18 @@ Immanuelg (12) - Monastirsky, Maxim (12) + Godard, Laurent (12) - Pcapeluto (12) + Monastirsky, Maxim (12) - Gupta, Rachit (12) + Pcapeluto (12) - Royerjy (12) + Gupta, Rachit (12) Staticsafe (12) @@ -6617,9 +6675,6 @@ - Godard, Laurent (11) - - Luiz Henrique Natalino (11) @@ -6628,95 +6683,95 @@ Johansson, Niklas (11) - - Nuernbergerj (11) - - Odd123 (11) - + + PeeWee (11) Rogeniobelem (11) - - Salmaan (11) Raruenrom, Samphan (11) + + Steve- - (11) Sunk8 (11) - - Gomez, Andres (11) Webmink (11) + + Zero0w (11) Admasonscottisha (10) - - Aeusebio (10) Algotruneman (10) + + AliIsingor (10) Castagno, Giuseppe (10) - - Blargh (10) Diginin (10) + + Eagles051387 (10) Eduardogula (10) - - El7r (10) Elrath (10) + + J.baer (10) Kirill NN (10) - - + + Krabina (10) + Lionlinux (10) + + MNeto (10) @@ -6726,11 +6781,11 @@ Chung, Elton (10) - - Mikalai (10) + + Nateyee (10) @@ -6740,11 +6795,11 @@ Revol (10) - - Ronja (10) + + Möller, Sören — spelled Soeren Moeller in some patches (10) @@ -6754,11 +6809,11 @@ Teseu (10) - - Tomg (10) + + User8192 (10) @@ -6768,10 +6823,13 @@ Al-Abdulrazzaq, Abdulmajeed (9) + + Agger (9) + - Afaccioli74 (9) + Alexpikptz (9) AtkinsSJ (9) @@ -6962,14 +7020,11 @@ Kednar (8) - Krabina (8) + Rietveld, Kristian (8) - Rietveld, Kristian (8) - - Leigh, Jack (8) @@ -6978,11 +7033,11 @@ Manj k (8) - - Mrmox2 (8) + + NightMonkey (8) @@ -6992,11 +7047,11 @@ Foley, Peter (8) - - Peterpall (8) + + Ricardolau (8) @@ -7006,11 +7061,11 @@ Thejack (8) - - Tibbylickle (8) + + Troumad (8) @@ -7020,11 +7075,11 @@ VlhOwn (8) - - Yakusha (8) + + Yostane (8) @@ -7034,11 +7089,11 @@ Andrea.soragna (7) - - Bastik (7) + + Bjherbison (7) @@ -7048,11 +7103,11 @@ Capiscuas (7) - - Ciaran (7) + + Dado (7) @@ -7062,11 +7117,11 @@ Esbardu (7) - - GuKK-Devel (7) + + Hunter, Kevin (7) @@ -7076,15 +7131,18 @@ Ledure, Jean-Pierre (7) - - Jstnlth (7) + + M1cky (7) + Mariosv (7) + + Mbayer (7) @@ -7130,11 +7188,14 @@ Toxicbits (7) - Wabuo (7) + Ulf hamburg (7) + Wabuo (7) + + Woordje (7) @@ -7143,12 +7204,12 @@ Andreas ka (6) - - Armin Dänzer (6) - + Armin Dänzer (6) + + Asian flower (6) @@ -7157,11 +7218,11 @@ Barend (6) + + Bobe (6) - - Bruno (6) @@ -7171,11 +7232,11 @@ ClausKofoed (6) + + BEN MANSOUR, Mohamed-Ali (6) - - Ddxavier (6) @@ -7185,11 +7246,11 @@ DotnetCarpenter (6) + + Douglas, Mencken (6) - - Dr.Faust (6) @@ -7199,11 +7260,11 @@ Edmond ciorba (6) + + Equis (6) - - FPhoenix (6) @@ -7213,11 +7274,11 @@ Gallaire, Florent (6) + + Fisiu (6) - - Florian heckl (6) @@ -7227,11 +7288,11 @@ Googly Googly (6) + + HdV (6) - - Hmoi (6) @@ -7241,11 +7302,11 @@ Infoprof (6) + + Iplaw67 (6) - - Timofeev, Ivan (6) @@ -7255,11 +7316,11 @@ Glogowski, Jan-Marek (6) + + Kawichi (6) - - Levlazinskiy (6) @@ -7269,11 +7330,11 @@ Manas (6) + + Manop (6) - - Mas (6) @@ -7283,11 +7344,11 @@ Mikeyy (6) + + Mmetz (6) - - Ndlsas (6) @@ -7297,11 +7358,11 @@ Only you (6) + + Konefal, Pawel (6) - - Peter Chastain (6) @@ -7311,11 +7372,11 @@ Rotaj (6) + + Sn!py (6) - - Sukit (6) @@ -7325,11 +7386,11 @@ Thorwil (6) + + Tyree (6) - - VACHER (6) @@ -7339,11 +7400,11 @@ Virthus (6) + + Wagner Augusto Silva Rodrigo (6) - - Wasserthal (6) @@ -7353,11 +7414,11 @@ صفا الفليج (6) + + 3blz (5) - - Adam Co (5) @@ -7367,9 +7428,6 @@ AleXanDeR G (5) - - Alexpikptz (5) - @@ -7480,14 +7538,11 @@ Mak (5) - Mariosv (5) + Mgaster (5) - Mgaster (5) - - Laplante, Chris (5) @@ -7496,11 +7551,11 @@ OSVALDO LINS VIANA (5) - - Orcmid (5) + + Pepe (5) @@ -7510,11 +7565,11 @@ Pkoroau (5) - - Poeml (5) + + Kant, Pranav (5) @@ -7524,11 +7579,11 @@ Raknor (5) - - Raulpaes (5) + + Rogerio DA (5) @@ -7538,11 +7593,11 @@ Chvátal, Tomáš (5) - - Sergej (5) + + So solid moo (5) @@ -7552,11 +7607,11 @@ Starseeker (5) - - Taylorh140 (5) + + Terentev.mn (5) @@ -7566,11 +7621,11 @@ Tranzistors (5) - - Wt (5) + + AHi (4) @@ -7580,11 +7635,11 @@ Aas (4) - - Agron (4) + + Albertoeda (4) @@ -7594,11 +7649,11 @@ Alex1 (4) - - Alvarenga (4) + + Alzoo (4) @@ -7608,11 +7663,11 @@ AndikaTriwidada (4) - - Andrea Gelmini (4) + + Andréb (4) @@ -7622,11 +7677,11 @@ Arhitectul (4) - - Axel (4) + + Ayhanyalcinsoy (4) @@ -7636,11 +7691,11 @@ Bigbek (4) - - Blender3dartist (4) + + Bntser (4) @@ -7650,11 +7705,11 @@ ConquerorsHaki (4) - - CyrilBeaussier (4) + + Deivan (4) @@ -7664,11 +7719,11 @@ DmitryRamones (4) - - Doubi (4) + + Dragon (4) @@ -7678,81 +7733,81 @@ Eisaks (4) - - - - Enio.gemmo (4) - Erx700 (4) + + Fmolinero (4) GKFX (4) - - Garrowolf (4) Gmjs (4) + + Hossein (4) ImperfectlyInformed (4) - - Jamesleader (4) Jiehong (4) + + Jjmeric (4) JnRouvignac (4) - - Jonata (4) Jones (4) + + Jooste (4) Joriki (4) - - Le Bigot, Jean-Tiare (4) Lee (4) + + Lethargilistic (4) + Loren.rogers (4) + + MDDN (4) - - Haggag, Muhammad (4) + + MPascual (4) @@ -7762,11 +7817,11 @@ Marco c (4) - - Mhonline (4) + + Weghorn, Michael (4) @@ -7776,11 +7831,11 @@ Kaganski, Mike (4) - - Morgan greywolf (4) + + Mortgage01 (4) @@ -7790,11 +7845,11 @@ Oscar90210 (4) - - Osnola (4) + + Paolopoz (4) @@ -7804,11 +7859,11 @@ Pjacquod (4) - - Prolog.guy (4) + + Psao (4) @@ -7818,11 +7873,11 @@ Reyn100 (4) - - Samson (4) + + Sasha (4) @@ -7832,11 +7887,11 @@ SpencerMann (4) - - Sswales (4) + + Stevenmw (4) @@ -7846,11 +7901,11 @@ Tct (4) - - Thetic (4) + + Tk (4) @@ -7860,305 +7915,305 @@ Txwikinger (4) - - Ufas (4) + + UlKu (4) - Ulf hamburg (4) - - Valtermura (4) - - V., Artem (4) Wcolen (4) + + Wikiuser (4) Williamjmorenor (4) - - Wpeixoto (4) Денис (4) + + Aalam (3) Adept (3) - - Aexyn (3) Alex.simoes (3) + + Alexsfagundes (3) Almorca (3) - - Antanasb (3) Armin (3) + + Armin W. (3) Arthur Zennig (3) - - Aurelien (3) Baena (3) + + Bellerophon2 (3) Benjwgarner (3) - - Bindassanant (3) Bodhi-Baum (3) + + Bootingman (3) Brub (3) - - Bryanquigley (3) Burdakov (3) + + CIB.Mathias (3) CallieCarney (3) - - Castro (3) Charu (3) + + Claudiosegovia (3) Cmorgan (3) - - Colokalle (3) Cono (3) + + DaSch (3) DanShearer (3) - - Beurle, Darcy (3) Bankston, Daniel (3) + + Dmtrs32 (3) Donbrookman (3) - - Robertson, Daniel (3) Dubyk (3) + + EdgeE (3) Elproferoman (3) - - ErSey (3) Ericatamiris (3) + + Estebanmonge (3) Fraang (3) - - Franzjakob (3) Frob tea (3) + + Fulldecent (3) FunkyPenguin (3) - - Gokcen (3) Gouchi (3) + + Hansgerd.schneider (3) Herrmarder (3) - - IanL (3) Imcon (3) + + It-christian (3) JDM (3) - - Jennifer.park (3) Murugan, Jesso Clarence (3) + + Jhbn (3) Joe312213 (3) - - Johannes Rohr (3) Joseroberto (3) + + Juanpabl (3) K Karthikeyan (3) - - Kbiondi (3) Kevinob (3) + + Kfogel (3) Khunshan (3) - - - + Kkrothapalli (3) Kristof (3) + + Kscanne (3) LO Rob (3) - - Lennoazevedo (3) Libcub (3) + + LucaCappelletti (3) + Hryniuk, Łukasz (3) + + Luuk (3) - - Margott (3) + + Matteocam (3) @@ -8168,15 +8223,18 @@ Maxwell (3) - - Mhsmsantos (3) + + Michaelwheatland (3) + NGHLibreOffice (3) + + Neookano (3) @@ -8250,11 +8308,14 @@ Sangeeta (3) - Sayt (3) + Satabin (3) + Sayt (3) + + Sebby (3) @@ -8263,364 +8324,372 @@ Shelandy (3) + + + + Skinnerbird (3) + Soliac (3) - - Songchuan (3) Soued031 (3) + + StefanRing (3) SteveKelem (3) - - Strugee (3) Suren (3) + + Sushils (3) Taylor46 (3) - - TheWebalyst (3) Timsamoff (3) + + Tititou36 (3) Kumar, Tarun (3) - - Tomi Toivio (3) Toxifier (3) + + TrnsltLife (3) Tushantin (3) - - Kitzinger, Ulrich (3) Vinctor (3) + + Vljubovic (3) Wagnerluis1982 (3) - - Khoo, Wei Ming (3) WesPeacock (3) + + Xaker1 (3) Yukawa (3) - - Kolesnykov, Yurii (3) Yvon Henel (3) + + Zaxebo1 (3) §chinagl (3) - - ترجمان05 (3) AbbeyI19jfjc (2) + + AdamPrado8 (2) AdrianValdez4 (2) - - AdriannaJeppese (2) Adsha (2) + + Agarciamog (2) Aimee (2) - - AliceOliver7 (2) Alisha (2) + + AlmedaFrancis (2) AlphonsoNava4 (2) - - AmyCarney5 (2) Anasiic (2) + + Andrew (2) AndrewKuhn7 (2) - - AndrewUlrich (2) Anipeter (2) + + Anjar (2) Ankit (2) - - AnnabelMcmullen (2) AnnunciationGunn (2) + + AntonJefferson (2) AntoniaMead8 (2) - - Jain, Anurag (2) Aplatypus (2) + + ApostlesSheldon (2) Arkanosis (2) - - Asal (2) Ashaneba (2) + + AvaGreer1 (2) BZT42 (2) - - Bachka (2) BernardMeza9 (2) + + BettieGiordano (2) BirdRivas2 (2) - - BlazejJones1 (2) BlessedOrozco (2) + + BoD (2) Bogcahi (2) - - Boivie (2) Boldizsakawi7 (2) + + BoleslausSaunders (2) Bram (2) - - BrandiToomer (2) BridgetJarvis (2) + + Bruceschaller (2) BryantMclean6 (2) - - ButlerBarron6 (2) C1pr1an (2) + + CallieMvzap (2) CallieSalgado (2) - - CamilleMccarthy (2) CandidoRutherford (2) + + CapistranOleary (2) CaraDang6 (2) - - Carlosr (2) CarolinaCalling (2) + + CarrieDaniels (2) CarrollRico2 (2) - - Iacob, Catalin (2) CavesGill8 (2) + + Celsovsm (2) Cgrosdemange (2) - - Chabermu (2) Chanda57Oyhnbco (2) + + ChanieSnow2 (2) Cheche (2) - - ChrzcicielCampbell (2) Cjbackhouse (2) + + + + Cl-r (2) + ClariceThorne (2) ClaudiaCramer (2) - - Clemen Beek (2) + + Codingmicha (2) @@ -8630,11 +8699,11 @@ CoralieCarr7 (2) - - Crxssi (2) + + CupertinoDarnell (2) @@ -8644,11 +8713,11 @@ CyrillicEscobedo (2) - - DaCaPo (2) + + Dag (2) @@ -8658,11 +8727,11 @@ DaisieQuigley (2) - - DanForrest2 (2) + + Danese (2) @@ -8672,11 +8741,11 @@ DarellFarnell (2) - - Darkixion (2) + + David4you (2) @@ -8686,11 +8755,11 @@ Debugercz (2) - - DelinaRomano5 (2) + + DellePoole7 (2) @@ -8700,11 +8769,11 @@ Dennis' Spam test account (2) - - Retout, Tim (2) + + Django (2) @@ -8714,11 +8783,11 @@ Domasj (2) - - Domsau2 (2) + + DonaldBryant7 (2) @@ -8728,11 +8797,11 @@ Dreambox Cccam (2) - - Duiliodias (2) + + DukeDejesus7 (2) @@ -8742,11 +8811,11 @@ Ed (2) - - EdaFreeman3 (2) + + Eduardoarandah (2) @@ -8756,11 +8825,11 @@ Efs710920mex (2) - - Ejep520 (2) + + Sánchez, Bartolomé (2) @@ -8770,11 +8839,11 @@ ElisabethHolcomb (2) - - Elixir (2) + + EllieBowers3 (2) @@ -8784,11 +8853,11 @@ Eloquence (2) - - ElsieMacias7 (2) + + Emily (2) @@ -8798,11 +8867,11 @@ EnosKraus6 (2) - - Erdalronahi (2) + + Eren (2) @@ -8812,11 +8881,11 @@ Erikcht (2) - - Ersteinmal (2) + + ErwinHammond3 (2) @@ -8826,11 +8895,11 @@ EsterEngland7 (2) - - EthylCardenas (2) + + FannyTillman8 (2) @@ -8840,11 +8909,11 @@ Fcojavmc (2) - - Feldo (2) + + Ffinlo (2) @@ -8854,11 +8923,11 @@ FlorenceGrossman (2) - - FlorenceKim1 (2) + + Flyntyuei2 (2) @@ -8868,15 +8937,18 @@ FordRhodes5 (2) - - FranciscoByrne (2) + + FredaDowning7 (2) + Fukanchik, Sergey (2) + + Garcia.marc (2) @@ -8961,14 +9033,17 @@ Hector (2) - Helo (2) + Hellpé (2) - Hemmerling (2) + Helo (2) + Hemmerling (2) + + Jensen, Henrik (2) @@ -8977,11 +9052,11 @@ HermitMuller1 (2) + + Herronrobertson (2) - - HershelPeterson (2) @@ -8991,11 +9066,11 @@ Ian22 (2) + + IkeVasquez9 (2) - - IlaRoberts4 (2) @@ -9005,11 +9080,11 @@ InezFinney8 (2) + + IraLane4 (2) - - IrinaMccormack (2) @@ -9019,11 +9094,11 @@ IsadoraFoster (2) + + IsaiahBuck5 (2) - - IsiahLackey2 (2) @@ -9033,11 +9108,11 @@ JacintaGibson (2) + + Adams, Jonathan (2) - - C., James (2) @@ -9047,11 +9122,11 @@ JanuariusStringer (2) + + Jasmins (2) - - JasperSawyer7 (2) @@ -9061,11 +9136,11 @@ JayStafford3 (2) + + Jcubic (2) - - Jeraldinesewell (2) @@ -9075,11 +9150,11 @@ JettieGibson2 (2) + + Jgpestana (2) - - Lingard, J. Graeme (2) @@ -9089,11 +9164,11 @@ Jnicolas (2) + + JoWi (2) - - JonesRichter8 (2) @@ -9103,11 +9178,11 @@ João Pedro (2) + + Jstaniek (2) - - JudasPeoples9 (2) @@ -9117,12 +9192,12 @@ JudithGraves6 (2) - - Jumoun (2) - + Jumoun (2) + + JustinaEldridge (2) @@ -9131,11 +9206,11 @@ KarkGunn4 (2) + + Karolus (2) - - Kasos (2) @@ -9145,11 +9220,11 @@ Keepiledar (2) + + KeithC (2) - - Khokkanen (2) @@ -9159,11 +9234,11 @@ KlementynaMckinney (2) + + Kmr (2) - - KolbeKline1 (2) @@ -9173,11 +9248,11 @@ KroniK907 (2) + + KrystalMinchin (2) - - KsaweryDempsey (2) @@ -9187,11 +9262,11 @@ L (2) + + LariaJohn3 (2) - - LeanaParks2 (2) @@ -9201,11 +9276,11 @@ LemuelHo1 (2) + + LemuelWerner5 (2) - - Lhcezar (2) @@ -9215,11 +9290,11 @@ Lino (2) + + Liotier (2) - - Lliehu (2) @@ -9229,16 +9304,13 @@ Petrolekas, Luke (2) - - LubomyrWalden (2) - - LucretiLlb (2) + LubomyrWalden (2) - Hryniuk, Łukasz (2) + LucretiLlb (2) LynnForbes3 (2) @@ -9423,27 +9495,30 @@ Mttza1 (2) - Mzalewski (2) + Musicstave (2) - Nacerix (2) + Mzalewski (2) + Nacerix (2) + + Narcisgarcia (2) NealEspinoza6 (2) - NettaHurd9 (2) + NettaHurd9 (2) + + NettieParra1 (2) - - NewtonZuniga9 (2) @@ -9453,11 +9528,11 @@ NicholasLanier (2) + + NinaLam6 (2) - - Noirin (2) @@ -9467,11 +9542,11 @@ NorrisAndersen (2) + + NovemberVogel (2) - - Nsharifi (2) @@ -9481,11 +9556,11 @@ OUPS (2) + + Oiaohm (2) - - OlaPost6 (2) @@ -9495,11 +9570,11 @@ OlivierC (2) + + OnopriyBrandon (2) - - OrlandoArellano (2) @@ -9509,11 +9584,11 @@ Percherie (2) + + PercherskySanford (2) - - Senna Tschudin, Peter (2) @@ -9523,11 +9598,11 @@ Szelat, Phillip (2) + + Pierre (2) - - Pitonyak (2) @@ -9537,11 +9612,11 @@ PolishHungarianSharp (2) + + Posterboy (2) - - PragueBergman (2) @@ -9551,11 +9626,11 @@ R.Yu. (2) + + Rahul050 (2) - - Rania (2) @@ -9565,11 +9640,11 @@ ReaganBaudin (2) + + ReeseShepherd (2) - - ReginaldMcgraw (2) @@ -9579,11 +9654,11 @@ RenniePrescott (2) + + RetaStern5 (2) - - RhodaMackey3 (2) @@ -9593,11 +9668,11 @@ Rmarquardt (2) + + Roadrunner (2) - - RollandHannah (2) @@ -9607,11 +9682,11 @@ RosalinBlaubaum (2) + + RosannaPaul7 (2) - - RosariaLampungm (2) @@ -9621,11 +9696,11 @@ RoyShelton7 (2) + + Ryan (2) - - Sagar.libo (2) @@ -9635,11 +9710,11 @@ Sankarshan (2) + + SavinaShaffer (2) - - SebastianNorth (2) @@ -9649,11 +9724,11 @@ Sergwish (2) + + Sfeuser (2) - - Shaforostoff (2) @@ -9663,11 +9738,11 @@ Shaun.schutte (2) + + SidneyArredondo (2) - - Silwol (2) @@ -9677,11 +9752,11 @@ SlavicNapier8 (2) + + Smile4ever (2) - - Soothsilver (2) @@ -9691,11 +9766,11 @@ Spledger (2) + + Sshelagh (2) - - Ssorgatem (2) @@ -9705,11 +9780,11 @@ Stappers (2) + + Stephan66 (2) - - Stuarta0 (2) @@ -9717,437 +9792,445 @@ Sturm (2) + Sungkhum (2) + + + + SusanSwain3 (2) Svante (2) - - Sven.fischer.de (2) Sydbarrett74 (2) + + Synanceia (Pierre) (2) Tauon (2) - - Techal (2) Teelittle (2) + + TeenaWilburn (2) TeresaMacias3 (2) - - Teresavillegas1 (2) TerraShears (2) + + TheaGallardo8 (2) TheodoseyPeralta (2) - - TheophilusHess (2) Thomase (2) + + Thomeck (2) Thorongil (2) - - Tim1075 (2) TimothyChilds (2) + + TomaMora8 (2) Tomkeb (2) - - Tomrobert87 (2) TraciKQAZnsqjho (2) + + TressieCulver (2) Tux40000 (2) - - Usik64 (2) ValessioBrito (2) + + VanHogan7 (2) Melenchuk, Vasily (2) - - VasylynaKendall (2) VerneDodd5 (2) + + VernitaDonley (2) VeronaXiong3 (2) - - VeronicaGrimes (2) ViolaPraed (2) + + Viper550 (2) VirginArredondo (2) - - VladimirBassett (2) VladimirPrince (2) + + VladislavA (2) Volker (2) - - VolodymyraGagnon (2) Vossman (2) + + WaclawaSavage (2) WalentynaPatrick (2) - - WallaceSolano (2) WarrenChristian (2) + + WashingtonOakley (2) Watermelons (2) - - WeronikaKeene (2) WilhelminaEaton (2) + + WincentyMorrison (2) Wirelessben (2) - - Wkn (2) Wulei (2) + + Xoristzatziki (2) Yaw (2) - - ZiriaKo (2) ZoraWinkler1 (2) + + ريماس هيثم (2) 流星依旧 (2) - - AaronPeterson (1) Abde.jarti99 (1) + + Abdulaziz A Alayed (1) Absolute Garcinia (1) - - Acetfntfh (1) AdalberDesailll (1) + + Adlard.matthew (1) Advicesformen (1) - - Aevora (1) Agradecido (1) + + Ainurshakirov (1) Ajaxfiore (1) - - Albrechtloh (1) Aleks (1) + + Henrie, Alex (1) Alex38-68 (1) - - Alex80 (1) Alexandrevicenzi (1) + + Alexandri (1) Alexis Wilke (1) - - Alexnivan (1) Alexsandro Matias (1) + + Alg (1) Ali (1) - - AlphonsDen (1) Alverne (1) + + Amacater (1) Andarilhobotto (1) - - AndreasEk (1) AndreasK (1) + + AndreasNeudecker (1) AndresZapata (1) - - Andrey.turkin (1) Andriazdk2177 (1) + + AngelaRusconi (1) AngelinChisolm (1) - - AniVar (1) AntoineVe (1) + + AntoniePonder (1) Anurag kanungo (1) - - Apfelsaft (1) ArdenRatcliff (1) + + Arekm (1) Ari (1) - - ArielleWx (1) Arkonide (1) + + Armandos (1) Arnaudc (1) - - Arnoldu (1) Teigseth, Arno (1) + + Artintal (1) Nakashian, Ashod (1) - - Asiersar (1) Astalaseven (1) + + AstridGoo (1) Tang, Audrey (1) - - Augustina (1) AundreaPqf (1) + + AvaPANumrgiabjx (1) Ayoooub (1) - - B3t (1) + Bailiwick (1) + + + + Bailly02 (1) @@ -10155,12 +10238,12 @@ Bandera (1) - - - + Barbara21F (1) + + BarryLovegrove (1) @@ -10170,11 +10253,11 @@ Bckurera (1) - - BelindaApplerot (1) + + BernardHannafor (1) @@ -10184,11 +10267,11 @@ Beyoken (1) - - Beznogov (1) + + Bezzy (1) @@ -10198,11 +10281,11 @@ Bgranados (1) - - BillyBurke (1) + + Biofool (1) @@ -10212,11 +10295,11 @@ Bkg2018 (1) - - Bkolaimeraq (1) + + BlakeGartrell (1) @@ -10226,11 +10309,11 @@ BlancheClopton (1) - - Blandyna (1) + + Bolo (1) @@ -10240,11 +10323,11 @@ Borowcm (1) - - Bortis (1) + + Sowden, Brad (1) @@ -10254,6 +10337,9 @@ BridgettC (1) + + Brinzing, Oliver (1) + @@ -10549,7 +10635,6 @@ EarnestT57 (1) - Echada (1) @@ -10622,6 +10707,9 @@ + Esben aaberg (1) + + EstebanUD (1) @@ -10630,11 +10718,11 @@ Evelyn3794 (1) + + Evfool (1) - - Factooor (1) @@ -10644,11 +10732,11 @@ Falcao (1) + + Farhaf (1) - - FarzanehSarafraz (1) @@ -10658,11 +10746,11 @@ FelipaSwan (1) + + Fenchi (1) - - Ferlodev (1) @@ -10672,11 +10760,11 @@ Fghj (1) + + Flirtwomens (1) - - Foobar (1) @@ -10686,16 +10774,13 @@ Francesco (1) - - Fred.th (1) - - Ftigeot (1) + Fred.th (1) - Fukanchik (1) + Ftigeot (1) Manas Joshi (1) @@ -10726,14 +10811,17 @@ GeeZ (1) - Geoff newson (1) + Gekacheka (1) - van Valkenhoef, Gert (1) + Geoff newson (1) + van Valkenhoef, Gert (1) + + Houston, Gary (1) @@ -10742,11 +10830,11 @@ Gicmo (1) + + Gmeijssen (1) - - Gmolleda (1) @@ -10756,11 +10844,11 @@ Grahl (1) + + Hernandez, Gregg (1) - - Grover47Ywzdn (1) @@ -10770,11 +10858,11 @@ Gstein (1) + + Guhde (1) - - Guillaume (1) @@ -10784,11 +10872,11 @@ Gwidion (1) + + HFujimaki (1) - - HKagerer (1) @@ -10798,11 +10886,11 @@ Haggai (1) + + Hagos (1) - - Hamati (1) @@ -10812,11 +10900,11 @@ Hasinasi (1) + + Rui Wang (1) - - HelenWalston (1) @@ -10826,11 +10914,11 @@ Heygo (1) + + Heyheyitshay (1) - - Hfischer (1) @@ -10840,11 +10928,11 @@ Hillrich (1) + + HiltonFtel (1) - - Hitomi t (1) @@ -10854,11 +10942,11 @@ Hlavaty, Tomas (1) + + Honza.havlicek (1) - - HoracioRydge (1) @@ -10868,11 +10956,11 @@ Hosiryuhosi (1) + + Hriostat (1) - - HumbertGno (1) @@ -10880,198 +10968,206 @@ Hwoehrle (1) + Ialbors (1) + + + + Ian (1) Ianjo (1) - - IbraM (1) IceBlur (1) + + Ida (1) Gilham, Ian (1) - - Igorizyumin (1) Ipodsoft (1) + + Irene (1) IrrevdJohn (1) - - IrvinFunkw (1) IslaXTDhiovhyzo (1) + + IsraelGill (1) JDługosz (1) - - JK2308 (1) JO3EMC (1) + + Jab (1) Jacquelin (1) - - JacquelineEqf (1) Jailletc36 (1) + + JaimeS (1) JameyAllred (1) - - Jamil (1) JamisonDamron (1) + + JanEnEm (1) Janani (1) - - JanetteBa (1) Jani (1) + + Jazzon (1) Jcdericco (1) - - Chaffraix, Julien (1) JeanAmessdvaei (1) + + JeanMcPhillamy (1) JeanVSAF (1) - - JeannetteGaertn (1) Jeeva03789 (1) + + JefferyMackenna (1) Jeongkyu (1) - - JerryShi (1) Gao, Qiwen (1) + + JestineNww (1) Bruhn, Jan-Henrik (1) - - Jimmyhaynbj (1) Jinocvla (1) + + JiroMatsuzawa (1) Jmarchn (1) - - Joachim (1) Joaofernando (1) + + JoelH (1) JolieZepps (1) - - JomarSilva (1) JonelleFritz (1) + + JonnaCainzabvwf (1) + JordanS (1) + + Jorge Rodríguez Fonseca (1) - - Jorgemendes (1) + + Joselaurian (1) @@ -11081,11 +11177,11 @@ José Eduardo (1) - - JoyLittler (1) + + Jpl (1) @@ -11095,11 +11191,11 @@ JudeMcCafferty (1) - - Juergen (1) + + JuliannSnider (1) @@ -11109,11 +11205,11 @@ Picca, Juan (1) - - Jwcampbell (1) + + KSBMiranda (1) @@ -11123,11 +11219,11 @@ KatjaG (1) - - Bhat, Kishor (1) + + KendraDunstan (1) @@ -11137,11 +11233,11 @@ Kenton3255 (1) - - KerrieMarino (1) + + KieraY22at (1) @@ -11151,11 +11247,11 @@ Koeleman (1) - - Kosmous (1) + + KourtneNester (1) @@ -11165,11 +11261,11 @@ Kying (1) - - LKPSharylptwsdo (1) + + LMKemm (1) @@ -11179,11 +11275,11 @@ LaPingvino (1) - - Laskov (1) + + LatoshaZnu (1) @@ -11193,11 +11289,11 @@ LaurelLangton (1) - - LaverneNavarret (1) + + LavinaVandermar (1) @@ -11207,11 +11303,11 @@ Learner (1) - - Learnwellwithme93 (1) + + Librestez54 (1) @@ -11221,11 +11317,11 @@ LilianG44nxresx (1) - - LillianaRad (1) + + LillieNlowccx (1) @@ -11235,11 +11331,11 @@ Literacyglenys (1) - - Liturgist (1) + + Llalllal1 (1) @@ -11249,11 +11345,11 @@ Lorne (1) - - Lucas Filho (1) + + LudieNutter (1) @@ -11263,11 +11359,11 @@ Luke (1) - - LydiaDgxuysav (1) + + LyndonCastiglio (1) @@ -11277,11 +11373,11 @@ M1ndfr3ak (1) - - MJW (1) + + Mabel7997eelu (1) @@ -11291,11 +11387,11 @@ Maemst (1) - - Magicienap (1) + + Mahdiekrani (1) @@ -11305,11 +11401,11 @@ Maliuta (1) - - Manveru1986 (1) + + MarcelProut (1) @@ -11319,11 +11415,11 @@ MarcoZ (1) - - Biscaro, Marco (1) + + MarcosHanson (1) @@ -11333,11 +11429,11 @@ MargoBergman (1) - - MarianaConnell (1) + + Mariano Gaudix (1) @@ -11347,11 +11443,11 @@ MarkWielaaard (1) - - Markcoomes (1) + + Markzog21 (1) @@ -11361,11 +11457,11 @@ MarthaWaterman (1) - - Marwan (1) + + MaryellenW31 (1) @@ -11375,11 +11471,11 @@ Masaki tamakoshi (1) - - Massao (1) + + Matsuura (1) @@ -11389,11 +11485,11 @@ Campanelli, Matteo (1) - - Matěj (1) + + MavisReit (1) @@ -11402,12 +11498,12 @@ Bechler, Moritz (1) - - - + Doležel, Marek (1) + + Megan44Dgxg (1) @@ -11417,11 +11513,11 @@ MellisaIQU (1) - - Menturi (1) + + MeriMerideth (1) @@ -11431,11 +11527,11 @@ Mhaehnel (1) - - Mhcrnl (1) + + Mhenriday (1) @@ -11445,11 +11541,11 @@ MicaelaLaurantu (1) - - Michaelwood (1) + + Michka B (1) @@ -11459,11 +11555,11 @@ Midomidi2013 (1) - - MiguelKastner (1) + + Miguelverdu (1) @@ -11473,11 +11569,11 @@ MilagroWilkerso (1) - - Milanbv (1) + + Miles (1) @@ -11487,11 +11583,11 @@ MitchellP (1) - - Miurahr (1) + + Mixer (1) @@ -11501,11 +11597,11 @@ Mmeof (1) - - Moberg (1) + + ModestoZzc (1) @@ -11515,11 +11611,11 @@ Momo50 (1) - - Morvan (1) + + Soini, Mox (1) @@ -11529,11 +11625,11 @@ Mw (1) - - MyraBlacklow (1) + + NEOhidra (1) @@ -11543,11 +11639,11 @@ Namikawa (1) - - NannetteFreedma (1) + + Nanotron (1) @@ -11557,11 +11653,11 @@ Nedrichards (1) - - NellieSMWX (1) + + Neteler (1) @@ -11571,11 +11667,11 @@ Nickko (1) - - Christener, Nicolas (1) + + NiklasHor (1) @@ -11585,11 +11681,11 @@ Ngo, Minh (1) - - Nnino2 (1) + + Northwestfirestarters (1) @@ -11599,11 +11695,11 @@ Notafish (1) - - Nouiurm (1) + + Norbert X (1) @@ -11613,11 +11709,11 @@ OBMLorraine (1) - - Oclei (1) + + Oig (1) @@ -11627,11 +11723,11 @@ Okusi (1) - - Olea (1) + + OliverHoffnung (1) @@ -11641,11 +11737,11 @@ Onurkucuk67 (1) - - Oosterkamp (1) + + Ophelia2399 (1) @@ -11655,11 +11751,11 @@ Oui (1) - - Ozpoz (1) + + PBsoft (1) @@ -11669,11 +11765,11 @@ Padenton (1) - - PamalaDorsch (1) + + Pankaj (1) @@ -11683,11 +11779,11 @@ Passerpunt (1) - - Pastim (1) + + PatriceMerrick (1) @@ -11697,11 +11793,11 @@ PearlFelton (1) - - PearlMoyazw (1) + + PenelopHewlett (1) @@ -11711,11 +11807,11 @@ Vorel, Petr (1) - - Pharmankur (1) + + Phb.nbnet.nb.ca (1) @@ -11725,11 +11821,11 @@ Philhart (1) - - PhilipTimms (1) + + Philippe43 (1) @@ -11739,11 +11835,11 @@ Phomes (1) - - Piero (1) + + PieterDeBruijn (1) @@ -11753,11 +11849,11 @@ Pilavi (1) - - Piratu (1) + + Piternoize (1) @@ -11767,11 +11863,11 @@ Pkavinda (1) - - Plastique (1) + + Plastovicka (1) @@ -11781,11 +11877,11 @@ PopularOutcast (1) - - PorfiriMansergh (1) + + PorterEncarnaci (1) @@ -11795,15 +11891,18 @@ Prosper (1) - - Psauthor (1) + + Psychicread531 (1) + Ptoye (1) + + QGBWinonajrdtpj (1) @@ -11938,6 +12037,9 @@ + Rosemary (1) + + Rpott (1) @@ -11946,11 +12048,11 @@ RuleAndLine (1) + + Rvr (1) - - Ryho (1) @@ -11960,11 +12062,11 @@ SallyMorales (1) + + Samanicute (1) - - SamuelPoltpalin (1) @@ -11974,11 +12076,11 @@ Sandeeps (1) + + Sanipache (1) - - Saracans (1) @@ -11988,11 +12090,11 @@ Sbosio (1) + + Schrillesbunteshamburg (1) - - Scito (1) @@ -12002,11 +12104,11 @@ Sctenebro (1) + + SecondLifeGuerilla (1) - - ShannaCockrell (1) @@ -12016,11 +12118,11 @@ SherrieMarroqui (1) + + SherrillGabriel (1) - - SherylMillingto (1) @@ -12030,11 +12132,11 @@ Boldiston, Kyle (1) + + Silvestr (1) - - Simonbr (1) @@ -12044,11 +12146,11 @@ SiobhanLandale (1) + + SkyeCorreia (1) - - Smalalur (1) @@ -12058,11 +12160,11 @@ Son Sonson (1) + + SonyaBunnell (1) - - Sovichet (1) @@ -12072,11 +12174,11 @@ Spreadsheetsorter (1) + + Spyros (1) - - Srijanani (1) @@ -12086,11 +12188,11 @@ Stewart75H (1) + + Stonehubmn (1) - - Subhash (1) @@ -12100,315 +12202,314 @@ SusieVeasley (1) + + Svalo (1) - - SvenHornung (1) + Svend-ev (1) + + Sviola (1) + + Sébastien C. (1) TAQSamueld (1) - - Talueses (1) Tanguy k (1) + + Thanakanok, Tantai (1) TaylorSlemp (1) - - TeganCreswick (1) Tegas (1) + + Testsflirt (1) The Magpie (1) - - ThePokehach (1) Thephilosoft (1) + + TheronAbdullah (1) Thom (1) - - ThudDriver (1) Tifroumi (1) + + Tigerbeard (1) Tilt (1) - - TimothyDempster (1) Tmongkol (1) + + Tomasdd (1) Viehmann, Thomas (1) - - Tpokorra (1) Transcend (1) + + TrevorPfe (1) Trondtr (1) - - Tuliouel (1) Tuping (1) + + Isnard, Timothée (1) Shahid, Umair (1) - - Vincent, Brennan (1) Underdog (1) + + UrmasD (1) UrsulaHorrell (1) - - Ushabtay (1) VIPSylar (1) + + VPUJamikajklq (1) ValenciaS (1) - - Dhall, Varun (1) Veeven (1) + + Vera Cavalcante (1) VerenaGaskins (1) - - VernaSchulze (1) VeroniqueGQAQ (1) + + VickyShick (1) Vincentvikram (1) - - Virus009 (1) WMZGiseleun (1) + + WOBFriedauk (1) WZEMonica (1) - - Wadrian (1) WalterPape (1) + + WandaSingletary (1) Waqas mirza6 (1) - - Wastl (1) Waynemcl (1) + + Webistrator (1) Wes (1) - - Westantenna (1) Wezchlebaty (1) + + Wilhelm (1) William Avery (1) - - Williewortel (1) Klausner, Thomas (1) + + Woulouf (1) XSXKristin (1) - - Baudin, Lucas (1) Xsdcfghjk (1) + + XtinaS (1) Xtrusia (1) - - Yangyiji (1) YaroslavRutledge (1) + + Yazu (1) Yoshiharu Kawai (1) - - Yowbooks (1) Yury Tarasievich (1) + + YvanM (1) Yy y ja jp (1) - - Bölöny, Zsolt (1) ZAXHesterlpu (1) + + ZBMCallumbwire (1) ZakGregory (1) - - Zangune (1) Zizzle (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-5.0.1~rc2/sal/osl/unx/signal.cxx libreoffice-5.0.2~rc2/sal/osl/unx/signal.cxx --- libreoffice-5.0.1~rc2/sal/osl/unx/signal.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sal/osl/unx/signal.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -65,7 +65,7 @@ #define ACT_EXIT 2 #define ACT_SYSTEM 3 #define ACT_HIDE 4 -#define ACT_ABORT ACT_SYSTEM +#define ACT_ABORT 5 #if defined HAVE_VALGRIND_HEADERS #include diff -Nru libreoffice-5.0.1~rc2/sal/osl/w32/file_error.c libreoffice-5.0.2~rc2/sal/osl/w32/file_error.c --- libreoffice-5.0.1~rc2/sal/osl/w32/file_error.c 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sal/osl/w32/file_error.c 2015-09-17 13:33:12.000000000 +0000 @@ -68,6 +68,7 @@ { ERROR_BROKEN_PIPE, osl_File_E_PIPE }, /* 109 */ { ERROR_DISK_FULL, osl_File_E_NOSPC }, /* 112 */ { ERROR_INVALID_TARGET_HANDLE, osl_File_E_BADF }, /* 114 */ + { ERROR_INVALID_NAME, osl_File_E_NOENT }, /* 123 */ { ERROR_INVALID_HANDLE, osl_File_E_INVAL }, /* 124 */ { ERROR_WAIT_NO_CHILDREN, osl_File_E_CHILD }, /* 128 */ { ERROR_CHILD_NOT_COMPLETE, osl_File_E_CHILD }, /* 129 */ @@ -82,6 +83,7 @@ { ERROR_ALREADY_EXISTS, osl_File_E_EXIST }, /* 183 */ { ERROR_FILENAME_EXCED_RANGE, osl_File_E_NOENT }, /* 206 */ { ERROR_NESTING_NOT_ALLOWED, osl_File_E_AGAIN }, /* 215 */ + { ERROR_FILE_CHECKED_OUT, osl_File_E_ACCES }, /* 220 */ { ERROR_DIRECTORY, osl_File_E_NOENT }, /* 267 */ { ERROR_NOT_ENOUGH_QUOTA, osl_File_E_NOMEM }, /* 1816 */ { ERROR_UNEXP_NET_ERR, osl_File_E_NETWORK } /* 59 */ diff -Nru libreoffice-5.0.1~rc2/sc/inc/calcconfig.hxx libreoffice-5.0.2~rc2/sc/inc/calcconfig.hxx --- libreoffice-5.0.1~rc2/sc/inc/calcconfig.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/inc/calcconfig.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -43,6 +43,7 @@ formula::FormulaGrammar::AddressConvention meStringRefAddressSyntax; StringConversion meStringConversion; bool mbEmptyStringAsZero:1; + bool mbHasStringRefSyntax:1; bool mbOpenCLSubsetOnly:1; bool mbOpenCLAutoSelect:1; @@ -59,6 +60,7 @@ void reset(); void MergeDocumentSpecific( const ScCalcConfig& r ); + void SetStringRefSyntax( formula::FormulaGrammar::AddressConvention eConv ); bool operator== (const ScCalcConfig& r) const; bool operator!= (const ScCalcConfig& r) const; diff -Nru libreoffice-5.0.1~rc2/sc/inc/column.hxx libreoffice-5.0.2~rc2/sc/inc/column.hxx --- libreoffice-5.0.1~rc2/sc/inc/column.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/inc/column.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -583,7 +583,7 @@ ScPostIt* GetCellNote( SCROW nRow ); const ScPostIt* GetCellNote( SCROW nRow ) const; const ScPostIt* GetCellNote( sc::ColumnBlockConstPosition& rBlockPos, SCROW nRow ) const; - void DeleteCellNotes( sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2 ); + void DeleteCellNotes( sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2, bool bForgetCaptionOwnership ); bool HasCellNotes() const; void SetCellNote( SCROW nRow, ScPostIt* pNote); bool IsNotesEmptyBlock(SCROW nStartRow, SCROW nEndRow) const; diff -Nru libreoffice-5.0.1~rc2/sc/inc/global.hxx libreoffice-5.0.2~rc2/sc/inc/global.hxx --- libreoffice-5.0.1~rc2/sc/inc/global.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/inc/global.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -197,10 +197,11 @@ const InsertDeleteFlags IDF_NOCAPTIONS = InsertDeleteFlags::fromInt(0x0200); /// Internal use only (undo etc.): do not copy/delete caption objects of cell notes. const InsertDeleteFlags IDF_ADDNOTES = InsertDeleteFlags::fromInt(0x0400); /// Internal use only (copy from clip): do not delete existing cell contents when pasting notes. const InsertDeleteFlags IDF_SPECIAL_BOOLEAN = InsertDeleteFlags::fromInt(0x1000); +const InsertDeleteFlags IDF_FORGETCAPTIONS = InsertDeleteFlags::fromInt(0x2000); /// Internal use only (d&d undo): do not delete caption objects of cell notes. const InsertDeleteFlags IDF_ATTRIB = IDF_HARDATTR | IDF_STYLES; const InsertDeleteFlags IDF_CONTENTS = IDF_VALUE | IDF_DATETIME | IDF_STRING | IDF_NOTE | IDF_FORMULA | IDF_OUTLINE; const InsertDeleteFlags IDF_ALL = IDF_CONTENTS | IDF_ATTRIB | IDF_OBJECTS; -const InsertDeleteFlags IDF_ALL_USED_BITS = IDF_ALL | IDF_EDITATTR | IDF_NOCAPTIONS | IDF_ADDNOTES | IDF_SPECIAL_BOOLEAN; +const InsertDeleteFlags IDF_ALL_USED_BITS = IDF_ALL | IDF_EDITATTR | IDF_NOCAPTIONS | IDF_ADDNOTES | IDF_SPECIAL_BOOLEAN | IDF_FORGETCAPTIONS; inline InsertDeleteFlags operator~ (const InsertDeleteFlags& rhs) { diff -Nru libreoffice-5.0.1~rc2/sc/inc/sharedformula.hxx libreoffice-5.0.2~rc2/sc/inc/sharedformula.hxx --- libreoffice-5.0.1~rc2/sc/inc/sharedformula.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/inc/sharedformula.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -64,8 +64,9 @@ * specified position is not a formula cell. * * @param aPos position of cell to examine. + * @param pCxt context to be used, if any, may be nullptr. */ - static void splitFormulaCellGroup(const CellStoreType::position_type& aPos); + static void splitFormulaCellGroup(const CellStoreType::position_type& aPos, sc::EndListeningContext* pCxt); /** * Split existing shared formula ranges at specified row positions. diff -Nru libreoffice-5.0.1~rc2/sc/inc/unonames.hxx libreoffice-5.0.2~rc2/sc/inc/unonames.hxx --- libreoffice-5.0.1~rc2/sc/inc/unonames.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/inc/unonames.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -511,6 +511,7 @@ #define SC_UNO_INTEROPGRABBAG "InteropGrabBag" #define SC_UNO_RECORDCHANGES "RecordChanges" #define SC_UNO_ISRECORDCHANGESPROTECTED "IsRecordChangesProtected" +#define SC_UNO_SYNTAXSTRINGREF "SyntaxStringRef" // document properties from FormModel diff -Nru libreoffice-5.0.1~rc2/sc/qa/extras/macros-test.cxx libreoffice-5.0.2~rc2/sc/qa/extras/macros-test.cxx --- libreoffice-5.0.1~rc2/sc/qa/extras/macros-test.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/qa/extras/macros-test.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -40,6 +40,7 @@ void testStarBasic(); void testVba(); void testMSP(); + void testPasswordProtectedStarBasic(); #endif CPPUNIT_TEST_SUITE(ScMacrosTest); #if !defined(MACOSX) @@ -48,6 +49,7 @@ CPPUNIT_TEST(testStarBasic); CPPUNIT_TEST(testMSP); CPPUNIT_TEST(testVba); + CPPUNIT_TEST(testPasswordProtectedStarBasic); #endif CPPUNIT_TEST_SUITE_END(); @@ -96,6 +98,37 @@ xDocSh->DoClose(); } +void ScMacrosTest::testPasswordProtectedStarBasic() +{ + const OUString aFileNameBase("testTypePassword.ods"); + OUString aFileName; + createFileURL(aFileNameBase, aFileName); + uno::Reference< com::sun::star::lang::XComponent > xComponent = loadFromDesktop(aFileName, "com.sun.star.sheet.SpreadsheetDocument"); + + CPPUNIT_ASSERT_MESSAGE("Failed to load testTypePassword.ods", xComponent.is()); + + Any aRet; + Sequence< sal_Int16 > aOutParamIndex; + Sequence< Any > aOutParam; + Sequence< uno::Any > aParams; + + SfxObjectShell* pFoundShell = SfxObjectShell::GetShellFromComponent(xComponent); + + CPPUNIT_ASSERT_MESSAGE("Failed to access document shell", pFoundShell); + ScDocShell* xDocSh = static_cast(pFoundShell); + ScDocument& rDoc = xDocSh->GetDocument(); + + SfxObjectShell::CallXScript( + xComponent, + "vnd.sun.Star.script:MyLibrary.Module1.Main?language=Basic&location=document", + aParams, aRet, aOutParamIndex, aOutParam); + + OUString aValue = rDoc.GetString(0,0,0); + CPPUNIT_ASSERT_MESSAGE("script did not change the value of Sheet1.A1", aValue == "success"); + + xDocSh->DoClose(); +} + void ScMacrosTest::testStarBasic() { const OUString aFileNameBase("StarBasic.ods"); Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sc/qa/extras/testdocuments/testTypePassword.ods and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sc/qa/extras/testdocuments/testTypePassword.ods differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sc/qa/unit/data/ods/header-image.ods and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sc/qa/unit/data/ods/header-image.ods differ diff -Nru libreoffice-5.0.1~rc2/sc/qa/unit/subsequent_export-test.cxx libreoffice-5.0.2~rc2/sc/qa/unit/subsequent_export-test.cxx --- libreoffice-5.0.1~rc2/sc/qa/unit/subsequent_export-test.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/qa/unit/subsequent_export-test.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -146,6 +146,7 @@ void testSheetRunParagraphProperty(); void testHiddenShape(); void testMoveCellAnchoredShapes(); + void testHeaderImage(); CPPUNIT_TEST_SUITE(ScExportTest); CPPUNIT_TEST(test); @@ -201,6 +202,7 @@ CPPUNIT_TEST(testSheetRunParagraphProperty); CPPUNIT_TEST(testHiddenShape); CPPUNIT_TEST(testMoveCellAnchoredShapes); + CPPUNIT_TEST(testHeaderImage); CPPUNIT_TEST_SUITE_END(); @@ -2808,6 +2810,20 @@ xDocSh2->DoClose(); } +void ScExportTest::testHeaderImage() +{ + // Graphic as header background was lost on export. + ScDocShellRef xShell = loadDoc("header-image.", ODS); + ScDocShellRef xDocSh = saveAndReload(&(*xShell), ODS); + uno::Reference xStyleFamiliesSupplier(xDocSh->GetModel(), uno::UNO_QUERY); + uno::Reference xStyleFamilies = xStyleFamiliesSupplier->getStyleFamilies(); + uno::Reference xPageStyles(xStyleFamilies->getByName("PageStyles"), uno::UNO_QUERY); + uno::Reference xStyle(xPageStyles->getByName("Default"), uno::UNO_QUERY); + OUString aURL; + xStyle->getPropertyValue("HeaderBackGraphicURL") >>= aURL; + CPPUNIT_ASSERT(aURL.startsWith("vnd.sun.star.GraphicObject:")); +} + CPPUNIT_TEST_SUITE_REGISTRATION(ScExportTest); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-5.0.1~rc2/sc/qa/unit/ucalc_formula.cxx libreoffice-5.0.2~rc2/sc/qa/unit/ucalc_formula.cxx --- libreoffice-5.0.1~rc2/sc/qa/unit/ucalc_formula.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/qa/unit/ucalc_formula.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -4232,9 +4232,10 @@ m_pDoc->CalcAll(); { - // Default is to use the current formula syntax, which is Calc A1. + // Default is to use compatibility mode, accept both Calc A1 and + // Excel A1 syntax const OUString* aChecks[] = { - &aTest, &aRefErr, &aRefErr, &aTest + &aTest, &aTest, &aRefErr, &aTest }; for (size_t i = 0; i < SAL_N_ELEMENTS(aChecks); ++i) @@ -4245,7 +4246,7 @@ } ScCalcConfig aConfig; - aConfig.meStringRefAddressSyntax = formula::FormulaGrammar::CONV_OOO; + aConfig.SetStringRefSyntax( formula::FormulaGrammar::CONV_OOO ); m_pDoc->SetCalcConfig(aConfig); m_pDoc->CalcAll(); { @@ -4261,7 +4262,7 @@ } } - aConfig.meStringRefAddressSyntax = formula::FormulaGrammar::CONV_XL_A1; + aConfig.SetStringRefSyntax( formula::FormulaGrammar::CONV_XL_A1 ); m_pDoc->SetCalcConfig(aConfig); m_pDoc->CalcAll(); { @@ -4277,7 +4278,7 @@ } } - aConfig.meStringRefAddressSyntax = formula::FormulaGrammar::CONV_XL_R1C1; + aConfig.SetStringRefSyntax( formula::FormulaGrammar::CONV_XL_R1C1 ); m_pDoc->SetCalcConfig(aConfig); m_pDoc->CalcAll(); { diff -Nru libreoffice-5.0.1~rc2/sc/sdi/scalc.sdi libreoffice-5.0.2~rc2/sc/sdi/scalc.sdi --- libreoffice-5.0.1~rc2/sc/sdi/scalc.sdi 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/sdi/scalc.sdi 2015-09-17 13:33:12.000000000 +0000 @@ -3280,7 +3280,7 @@ ] SfxVoidItem SearchResultsDialog SID_SEARCH_RESULTS_DIALOG -() +(SfxBoolItem Visible SID_SEARCH_RESULTS_DIALOG) [ /* flags: */ AutoUpdate = FALSE, @@ -3297,9 +3297,9 @@ /* config: */ AccelConfig = TRUE, - MenuConfig = TRUE, + MenuConfig = FALSE, StatusBarConfig = FALSE, - ToolBoxConfig = TRUE, + ToolBoxConfig = FALSE, GroupId = GID_OPTIONS; ] diff -Nru libreoffice-5.0.1~rc2/sc/source/core/data/bcaslot.cxx libreoffice-5.0.2~rc2/sc/source/core/data/bcaslot.cxx --- libreoffice-5.0.1~rc2/sc/source/core/data/bcaslot.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/core/data/bcaslot.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1155,12 +1155,22 @@ for (; it != itEnd; ++it) { ScBroadcastArea* pArea = it->first; - const sc::ColumnSpanSet* pSpans = it->second; assert(pArea); - assert(pSpans); - aHint.setSpans(pSpans); - pArea->GetBroadcaster().Broadcast(aHint); - bBroadcasted = true; + SvtBroadcaster& rBC = pArea->GetBroadcaster(); + if (!rBC.HasListeners()) + { + /* FIXME: find the cause where the last listener is removed and + * this area is still listed here. */ + SAL_WARN("sc.core","ScBroadcastAreaSlotMachine::BulkBroadcastGroupAreas - pArea has no listeners and should had been removed already"); + } + else + { + const sc::ColumnSpanSet* pSpans = it->second; + assert(pSpans); + aHint.setSpans(pSpans); + rBC.Broadcast(aHint); + bBroadcasted = true; + } } maBulkGroupAreas.clear(); diff -Nru libreoffice-5.0.1~rc2/sc/source/core/data/column2.cxx libreoffice-5.0.2~rc2/sc/source/core/data/column2.cxx --- libreoffice-5.0.1~rc2/sc/source/core/data/column2.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/core/data/column2.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -824,7 +824,18 @@ } if (bStdOnly) - if (HasEditCells(nStart,nEnd,nEditPos)) // includes mixed script types + { + bool bHasEditCells = HasEditCells(nStart,nEnd,nEditPos); + // Call to HasEditCells() may change pattern due to + // calculation, => sync always. + // We don't know which row changed first, but as pPattern + // covered nStart to nEnd we can pick nStart. Worst case we + // have to repeat that for every row in range if every row + // changed. + pPattern = aIter.Resync( nStart, nStart, nEnd); + if (bHasEditCells && nEnd < nEditPos) + bHasEditCells = false; // run into that again + if (bHasEditCells) // includes mixed script types { if (nEditPos == nStart) { @@ -840,6 +851,7 @@ nEnd = nEditPos - 1; // standard - part } } + } sc::SingleColumnSpanSet aSpanSet; aSpanSet.scan(*this, nStart, nEnd); @@ -1804,8 +1816,27 @@ maCellNotes.set(nRow, pNote); } -void ScColumn::DeleteCellNotes( sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2 ) +namespace { +class ForgetCellNoteCaptionsHandler +{ + +public: + ForgetCellNoteCaptionsHandler() {} + + void operator() ( size_t /*nRow*/, ScPostIt* p ) + { + p->ForgetCaption(); + } +}; +} + +void ScColumn::DeleteCellNotes( sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2, bool bForgetCaptionOwnership ) { + if (bForgetCaptionOwnership) + { + ForgetCellNoteCaptionsHandler aFunc; + sc::ParseNote(maCellNotes.begin(), maCellNotes, nRow1, nRow2, aFunc); + } rBlockPos.miCellNotePos = maCellNotes.set_empty(rBlockPos.miCellNotePos, nRow1, nRow2); } diff -Nru libreoffice-5.0.1~rc2/sc/source/core/data/column3.cxx libreoffice-5.0.2~rc2/sc/source/core/data/column3.cxx --- libreoffice-5.0.1~rc2/sc/source/core/data/column3.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/core/data/column3.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -327,13 +327,13 @@ const sc::CellStoreType::position_type& aPos, size_t nLength ) { // Split formula grouping at the top and bottom boundaries. - sc::SharedFormulaUtil::splitFormulaCellGroup(aPos); + sc::SharedFormulaUtil::splitFormulaCellGroup(aPos, nullptr); size_t nRow = aPos.first->position + aPos.second; size_t nNextTopRow = nRow + nLength; // start row of next formula group. if (ValidRow(nNextTopRow)) { sc::CellStoreType::position_type aPos2 = maCells.position(aPos.first, nNextTopRow); - sc::SharedFormulaUtil::splitFormulaCellGroup(aPos2); + sc::SharedFormulaUtil::splitFormulaCellGroup(aPos2, nullptr); } if (pDocument->IsClipOrUndo()) @@ -368,11 +368,11 @@ sc::CellStoreType::iterator it = aPos.first; // Split formula grouping at the top and bottom boundaries. - sc::SharedFormulaUtil::splitFormulaCellGroup(aPos); + sc::SharedFormulaUtil::splitFormulaCellGroup(aPos, &rCxt); if (ValidRow(nRow2+1)) { aPos = maCells.position(it, nRow2+1); - sc::SharedFormulaUtil::splitFormulaCellGroup(aPos); + sc::SharedFormulaUtil::splitFormulaCellGroup(aPos, &rCxt); } if (pDocument->IsClipOrUndo()) @@ -684,7 +684,10 @@ } if (nDelFlag & IDF_NOTE) - DeleteCellNotes(aBlockPos, nStartRow, nEndRow); + { + bool bForgetCaptionOwnership = ((nDelFlag & IDF_FORGETCAPTIONS) != IDF_NONE); + DeleteCellNotes(aBlockPos, nStartRow, nEndRow, bForgetCaptionOwnership); + } if ( nDelFlag & IDF_EDITATTR ) { diff -Nru libreoffice-5.0.1~rc2/sc/source/core/data/column4.cxx libreoffice-5.0.2~rc2/sc/source/core/data/column4.cxx --- libreoffice-5.0.1~rc2/sc/source/core/data/column4.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/core/data/column4.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -114,7 +114,7 @@ } if (nDelFlag & IDF_NOTE) - DeleteCellNotes(aBlockPos, nRow1, nRow2); + DeleteCellNotes(aBlockPos, nRow1, nRow2, false); if (nDelFlag & IDF_EDITATTR) RemoveEditAttribs(nRow1, nRow2); diff -Nru libreoffice-5.0.1~rc2/sc/source/core/data/column.cxx libreoffice-5.0.2~rc2/sc/source/core/data/column.cxx --- libreoffice-5.0.1~rc2/sc/source/core/data/column.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/core/data/column.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1908,15 +1908,15 @@ // Split the formula grouping at the top and bottom boundaries. sc::CellStoreType::position_type aPos = maCells.position(nStartRow); - sc::SharedFormulaUtil::splitFormulaCellGroup(aPos); + sc::SharedFormulaUtil::splitFormulaCellGroup(aPos, nullptr); aPos = maCells.position(aPos.first, nEndRow+1); - sc::SharedFormulaUtil::splitFormulaCellGroup(aPos); + sc::SharedFormulaUtil::splitFormulaCellGroup(aPos, nullptr); // Do the same with the destination column. aPos = rCol.maCells.position(nStartRow); - sc::SharedFormulaUtil::splitFormulaCellGroup(aPos); + sc::SharedFormulaUtil::splitFormulaCellGroup(aPos, nullptr); aPos = rCol.maCells.position(aPos.first, nEndRow+1); - sc::SharedFormulaUtil::splitFormulaCellGroup(aPos); + sc::SharedFormulaUtil::splitFormulaCellGroup(aPos, nullptr); // Move the broadcasters to the destination column. maBroadcasters.transfer(nStartRow, nEndRow, rCol.maBroadcasters, nStartRow); diff -Nru libreoffice-5.0.1~rc2/sc/source/core/data/formulacell.cxx libreoffice-5.0.2~rc2/sc/source/core/data/formulacell.cxx --- libreoffice-5.0.1~rc2/sc/source/core/data/formulacell.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/core/data/formulacell.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -20,6 +20,7 @@ #include #include +#include #include "formulacell.hxx" #include "grouptokenconverter.hxx" @@ -54,6 +55,7 @@ #include "types.hxx" #include "scopetools.hxx" #include "refupdatecontext.hxx" +#include #include #include #include @@ -3770,6 +3772,36 @@ return bInvariant ? EqualInvariant : EqualRelativeRef; } +namespace { + +// Split N into optimally equal-sized pieces, each not larger than K. +// Return value P is number of pieces. A returns the number of pieces +// one larger than N/P, 0..P-1. + +int splitup(int N, int K, int& A) +{ + assert(N > 0); + assert(K > 0); + + A = 0; + + if (N <= K) + return 1; + + const int ideal_num_parts = N / K; + if (ideal_num_parts * K == N) + return ideal_num_parts; + + const int num_parts = ideal_num_parts + 1; + const int nominal_part_size = N / num_parts; + + A = N - num_parts * nominal_part_size; + + return num_parts; +} + +} // anonymous namespace + bool ScFormulaCell::InterpretFormulaGroup() { if (!officecfg::Office::Common::Misc::UseOpenCL::get()) @@ -3805,30 +3837,94 @@ if (mxGroup->mbInvariant && false) return InterpretInvariantFormulaGroup(); - ScTokenArray aCode; - ScAddress aTopPos = aPos; - aTopPos.SetRow(mxGroup->mpTopCell->aPos.Row()); - ScGroupTokenConverter aConverter(aCode, *pDocument, *this, mxGroup->mpTopCell->aPos); - std::vector aLoopControl; - if (!aConverter.convert(*pCode, aLoopControl)) - { - SAL_INFO("sc.opencl", "conversion of group " << this << " failed, disabling"); - mxGroup->meCalcState = sc::GroupCalcDisabled; - return false; - } + int nMaxGroupLength = INT_MAX; + +#ifdef WNT + // Heuristic: Certain old low-end OpenCL implementations don't + // work for us with too large group lengths. 1000 was determined + // empirically to be a good compromise. Looking at the preferred + // float vector width seems to be a way to detect these devices. + if (opencl::gpuEnv.mnPreferredVectorWidthFloat == 4) + nMaxGroupLength = 1000; +#endif - // The converted code does not have RPN tokens yet. The interpreter will - // generate them. - mxGroup->meCalcState = sc::GroupCalcRunning; - sc::FormulaGroupInterpreter *pInterpreter = sc::FormulaGroupInterpreter::getStatic(); - if (pInterpreter == NULL || - !pInterpreter->interpret(*pDocument, mxGroup->mpTopCell->aPos, mxGroup, aCode)) + if (std::getenv("SC_MAX_GROUP_LENGTH")) + nMaxGroupLength = std::atoi(std::getenv("SC_MAX_GROUP_LENGTH")); + + int nNumOnePlus; + const int nNumParts = splitup(GetSharedLength(), nMaxGroupLength, nNumOnePlus); + + int nOffset = 0; + int nCurChunkSize; + ScAddress aOrigPos = mxGroup->mpTopCell->aPos; + for (int i = 0; i < nNumParts; i++, nOffset += nCurChunkSize) { - SAL_INFO("sc.opencl", "interpreting group " << mxGroup << " (state " << (int) mxGroup->meCalcState << ") failed, disabling"); - mxGroup->meCalcState = sc::GroupCalcDisabled; - return false; + nCurChunkSize = GetSharedLength()/nNumParts + (i < nNumOnePlus ? 1 : 0); + + ScFormulaCellGroupRef xGroup; + + if (nNumParts == 1) + xGroup = mxGroup; + else + { + // Ugly hack + xGroup = new ScFormulaCellGroup(); + xGroup->mpTopCell = mxGroup->mpTopCell; + xGroup->mpTopCell->aPos = aOrigPos; + xGroup->mpTopCell->aPos.IncRow(nOffset); + xGroup->mbInvariant = mxGroup->mbInvariant; + xGroup->mnLength = nCurChunkSize; + xGroup->mpCode = mxGroup->mpCode; + } + + ScTokenArray aCode; + ScGroupTokenConverter aConverter(aCode, *pDocument, *this, xGroup->mpTopCell->aPos); + std::vector aLoopControl; + if (!aConverter.convert(*pCode, aLoopControl)) + { + SAL_INFO("sc.opencl", "conversion of group " << this << " failed, disabling"); + mxGroup->meCalcState = sc::GroupCalcDisabled; + + // Undo the hack above + if (nNumParts > 1) + { + mxGroup->mpTopCell->aPos = aOrigPos; + xGroup->mpTopCell = NULL; + xGroup->mpCode = NULL; + } + + return false; + } + + // The converted code does not have RPN tokens yet. The interpreter will + // generate them. + xGroup->meCalcState = mxGroup->meCalcState = sc::GroupCalcRunning; + sc::FormulaGroupInterpreter *pInterpreter = sc::FormulaGroupInterpreter::getStatic(); + if (pInterpreter == NULL || + !pInterpreter->interpret(*pDocument, xGroup->mpTopCell->aPos, xGroup, aCode)) + { + SAL_INFO("sc.opencl", "interpreting group " << mxGroup << " (state " << (int) mxGroup->meCalcState << ") failed, disabling"); + mxGroup->meCalcState = sc::GroupCalcDisabled; + + // Undo the hack above + if (nNumParts > 1) + { + mxGroup->mpTopCell->aPos = aOrigPos; + xGroup->mpTopCell = NULL; + xGroup->mpCode = NULL; + } + + return false; + } + if (nNumParts > 1) + { + xGroup->mpTopCell = NULL; + xGroup->mpCode = NULL; + } } + if (nNumParts > 1) + mxGroup->mpTopCell->aPos = aOrigPos; mxGroup->meCalcState = sc::GroupCalcEnabled; return true; } diff -Nru libreoffice-5.0.1~rc2/sc/source/core/data/table3.cxx libreoffice-5.0.2~rc2/sc/source/core/data/table3.cxx --- libreoffice-5.0.1~rc2/sc/source/core/data/table3.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/core/data/table3.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -713,6 +713,7 @@ void fillSortedColumnArray( boost::ptr_vector& rSortedCols, SortedRowFlags& rRowFlags, + std::vector& rCellListeners, ScSortInfoArray* pArray, SCTAB nTab, SCCOL nCol1, SCCOL nCol2, ScProgress* pProgress ) { SCROW nRow1 = pArray->GetStart(); @@ -770,6 +771,16 @@ pNew->GetCode()->AdjustReferenceOnMovedOriginIfOtherSheet(aOldPos, aCellPos); } + if (!rCellListeners.empty()) + { + // Original source cells will be deleted during + // sc::CellStoreType::transfer(), SvtListener is a base + // class, so we need to replace it. + auto it( ::std::find( rCellListeners.begin(), rCellListeners.end(), rCell.maCell.mpFormula)); + if (it != rCellListeners.end()) + *it = pNew; + } + rCellStore.push_back(pNew); } break; @@ -1085,7 +1096,7 @@ // a copy before updating the document. boost::ptr_vector aSortedCols; // storage for copied cells. SortedRowFlags aRowFlags; - fillSortedColumnArray(aSortedCols, aRowFlags, pArray, nTab, nCol1, nCol2, pProgress); + fillSortedColumnArray(aSortedCols, aRowFlags, aCellListeners, pArray, nTab, nCol1, nCol2, pProgress); for (size_t i = 0, n = aSortedCols.size(); i < n; ++i) { @@ -1270,7 +1281,8 @@ // a copy before updating the document. boost::ptr_vector aSortedCols; // storage for copied cells. SortedRowFlags aRowFlags; - fillSortedColumnArray(aSortedCols, aRowFlags, pArray, nTab, nCol1, nCol2, pProgress); + std::vector aListenersDummy; + fillSortedColumnArray(aSortedCols, aRowFlags, aListenersDummy, pArray, nTab, nCol1, nCol2, pProgress); for (size_t i = 0, n = aSortedCols.size(); i < n; ++i) { diff -Nru libreoffice-5.0.1~rc2/sc/source/core/opencl/formulagroupcl.cxx libreoffice-5.0.2~rc2/sc/source/core/opencl/formulagroupcl.cxx --- libreoffice-5.0.1~rc2/sc/source/core/opencl/formulagroupcl.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/core/opencl/formulagroupcl.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -40,6 +40,7 @@ "#define errIllegalFPOperation 503 // #NUM!\n" "#define errNoValue 519 // #VALUE!\n" "#define errDivisionByZero 532 // #DIV/0!\n" + "#define NOTAVAILABLE 0x7fff // #N/A\n" "\n" "double CreateDoubleError(ulong nErr)\n" "{\n" @@ -152,6 +153,19 @@ } #endif +bool AllStringsAreNull(const rtl_uString* const* pStringArray, size_t nLength) +{ + if (pStringArray == nullptr) + return true; + + for (size_t i = 0; i < nLength; i++) + if (pStringArray[i] != nullptr) + return false; + + return true; +} + + } // anonymous namespace /// Map the buffer used by an argument and do necessary argument setting @@ -2615,8 +2629,10 @@ for (size_t j = 0; j < pDVR->GetArrays().size(); ++j) { - SAL_INFO("sc.opencl", "j=" << j << " mpNumericArray=" << pDVR->GetArrays()[j].mpNumericArray << + SAL_INFO("sc.opencl", "i=" << i << " j=" << j << + " mpNumericArray=" << pDVR->GetArrays()[j].mpNumericArray << " mpStringArray=" << pDVR->GetArrays()[j].mpStringArray << + " allStringsAreNull=" << (AllStringsAreNull(pDVR->GetArrays()[j].mpStringArray, pDVR->GetArrayLength())?"YES":"NO") << " takeNumeric=" << (pCodeGen->takeNumeric()?"YES":"NO") << " takeString=" << (pCodeGen->takeString()?"YES":"NO")); @@ -2629,6 +2645,8 @@ pDVR->GetArrays()[j].mpStringArray && pCodeGen->takeString()) { + // Function takes numbers or strings, there are both + SAL_INFO("sc.opencl", "Numbers and strings and that is OK"); mvSubArguments.push_back( DynamicKernelArgumentRef( new DynamicKernelMixedSlidingArgument(mCalcConfig, @@ -2636,16 +2654,22 @@ } else { + // Not sure I can figure out what case this exactly is;) + SAL_INFO("sc.opencl", "The other case"); mvSubArguments.push_back( DynamicKernelArgumentRef(VectorRefFactory(mCalcConfig, ts, ft->Children[i], mpCodeGen, j))); } } else + { + // Ditto here. This is such crack. + SAL_INFO("sc.opencl", "The outer other case (can't figure out what it exactly means)"); mvSubArguments.push_back( DynamicKernelArgumentRef(VectorRefFactory (mCalcConfig, ts, ft->Children[i], mpCodeGen, j))); + } } } else if (pChild->GetType() == formula::svSingleVectorRef) @@ -2653,8 +2677,10 @@ const formula::SingleVectorRefToken* pSVR = static_cast(pChild); - SAL_INFO("sc.opencl", "mpNumericArray=" << pSVR->GetArray().mpNumericArray << + SAL_INFO("sc.opencl", "i=" << i << + " mpNumericArray=" << pSVR->GetArray().mpNumericArray << " mpStringArray=" << pSVR->GetArray().mpStringArray << + " allStringsAreNull=" << (AllStringsAreNull(pSVR->GetArray().mpStringArray, pSVR->GetArrayLength())?"YES":"NO") << " takeNumeric=" << (pCodeGen->takeNumeric()?"YES":"NO") << " takeString=" << (pCodeGen->takeString()?"YES":"NO")); @@ -2664,17 +2690,19 @@ pCodeGen->takeString()) { // Function takes numbers or strings, there are both + SAL_INFO("sc.opencl", "Numbers and strings and that is OK"); mvSubArguments.push_back( DynamicKernelArgumentRef(new DynamicKernelMixedArgument(mCalcConfig, ts, ft->Children[i]))); } else if (pSVR->GetArray().mpNumericArray && pCodeGen->takeNumeric() && - (pSVR->GetArray().mpStringArray == NULL || mCalcConfig.meStringConversion == ScCalcConfig::StringConversion::ZERO)) + (AllStringsAreNull(pSVR->GetArray().mpStringArray, pSVR->GetArrayLength()) || mCalcConfig.meStringConversion == ScCalcConfig::StringConversion::ZERO)) { // Function takes numbers, and either there // are no strings, or there are strings but // they are to be treated as zero + SAL_INFO("sc.opencl", "Maybe strings even if want numbers but should be treated as zero"); mvSubArguments.push_back( DynamicKernelArgumentRef(new VectorRef(mCalcConfig, ts, ft->Children[i]))); @@ -2686,6 +2714,7 @@ { // Function takes numbers, and there are only // strings, but they are to be treated as zero + SAL_INFO("sc.opencl", "Only strings even if want numbers but should be treated as zero"); mvSubArguments.push_back( DynamicKernelArgumentRef(new VectorRef(mCalcConfig, ts, ft->Children[i]))); @@ -2693,28 +2722,32 @@ else if (pSVR->GetArray().mpStringArray && pCodeGen->takeString()) { - // There are strings, and the function takes - // strings. - + // There are strings, and the function takes strings. + SAL_INFO("sc.opencl", "Strings only"); mvSubArguments.push_back( DynamicKernelArgumentRef(new DynamicKernelStringArgument(mCalcConfig, ts, ft->Children[i]))); } - else if (pSVR->GetArray().mpStringArray == NULL && + else if (AllStringsAreNull(pSVR->GetArray().mpStringArray, pSVR->GetArrayLength()) && pSVR->GetArray().mpNumericArray == NULL) { // There are only empty cells. Push as an // array of NANs + SAL_INFO("sc.opencl", "Only empty cells"); mvSubArguments.push_back( DynamicKernelArgumentRef(new VectorRef(mCalcConfig, ts, ft->Children[i]))); } else + { + SAL_INFO("sc.opencl", "Fallback case, rejecting for OpenCL"); throw UnhandledToken(pChild, "Got unhandled case here", __FILE__, __LINE__); + } } else if (pChild->GetType() == formula::svDouble) { + SAL_INFO("sc.opencl", "Constant number (?) case"); mvSubArguments.push_back( DynamicKernelArgumentRef(new DynamicKernelConstantArgument(mCalcConfig, ts, ft->Children[i]))); @@ -2722,12 +2755,14 @@ else if (pChild->GetType() == formula::svString && pCodeGen->takeString()) { + SAL_INFO("sc.opencl", "Constant string (?) case"); mvSubArguments.push_back( DynamicKernelArgumentRef(new ConstStringArgument(mCalcConfig, ts, ft->Children[i]))); } else { + SAL_INFO("sc.opencl", "Fallback case, rejecting for OpenCL"); throw UnhandledToken(pChild, ("unhandled operand " + StackVarEnumToString(pChild->GetType()) + " for ocPush").c_str()); } break; diff -Nru libreoffice-5.0.1~rc2/sc/source/core/opencl/op_spreadsheet.cxx libreoffice-5.0.2~rc2/sc/source/core/opencl/op_spreadsheet.cxx --- libreoffice-5.0.1~rc2/sc/source/core/opencl/op_spreadsheet.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/core/opencl/op_spreadsheet.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -35,25 +35,27 @@ } ss << ")\n {\n"; ss << " int gid0=get_global_id(0);\n"; - ss << " double tmp = NAN;\n"; + ss << " double tmp = CreateDoubleError(NOTAVAILABLE);\n"; ss << " double intermediate = DBL_MAX;\n"; ss << " int singleIndex = gid0;\n"; ss << " int rowNum = -1;\n"; + GenTmpVariables(ss,vSubArguments); int arg=0; CheckSubArgumentIsNan(ss,vSubArguments,arg++); int secondParaWidth = 1; - if(vSubArguments[1]->GetFormulaToken()->GetType() == - formula::svDoubleVectorRef) + + if (vSubArguments[1]->GetFormulaToken()->GetType() == formula::svDoubleVectorRef) { FormulaToken *tmpCur = vSubArguments[1]->GetFormulaToken(); - const formula::DoubleVectorRefToken*pCurDVR= static_cast(tmpCur); + const formula::DoubleVectorRefToken*pCurDVR = static_cast(tmpCur); secondParaWidth = pCurDVR->GetArrays().size(); } - arg+=secondParaWidth; + + arg += secondParaWidth; CheckSubArgumentIsNan(ss,vSubArguments,arg++); - if(vSubArguments.size() == (unsigned int)(3+(secondParaWidth-1))) + + if (vSubArguments.size() == (unsigned int)(3+(secondParaWidth-1))) { ss << " double tmp"; ss << 3+(secondParaWidth-1); @@ -64,53 +66,57 @@ CheckSubArgumentIsNan(ss,vSubArguments,arg++); } - if(vSubArguments[1]->GetFormulaToken()->GetType() == - formula::svDoubleVectorRef) + if (vSubArguments[1]->GetFormulaToken()->GetType() == formula::svDoubleVectorRef) { FormulaToken *tmpCur = vSubArguments[1]->GetFormulaToken(); - const formula::DoubleVectorRefToken*pCurDVR= static_cast(tmpCur); - size_t nCurWindowSize = pCurDVR->GetArrayLength() < - pCurDVR->GetRefRowSize() ? pCurDVR->GetArrayLength(): - pCurDVR->GetRefRowSize() ; + const formula::DoubleVectorRefToken*pCurDVR = static_cast(tmpCur); + size_t nCurWindowSize = pCurDVR->GetArrayLength() < pCurDVR->GetRefRowSize() ? pCurDVR->GetArrayLength() : pCurDVR->GetRefRowSize() ; int unrollSize = 8; ss << " int loop;\n"; - if (!pCurDVR->IsStartFixed() && pCurDVR->IsEndFixed()) { + if (!pCurDVR->IsStartFixed() && pCurDVR->IsEndFixed()) + { ss << " loop = ("<IsStartFixed() && !pCurDVR->IsEndFixed()) { + } + else if (pCurDVR->IsStartFixed() && !pCurDVR->IsEndFixed()) + { ss << " loop = ("<IsStartFixed()&& pCurDVR->IsEndFixed()) + { + ss << "gid0 + j * "<< unrollSize <<";\n"; } - if(!pCurDVR->IsStartFixed() && !pCurDVR->IsEndFixed()) + else { - ss << " int doubleIndex = i+gid0;\n"; - }else + ss << "j * "<< unrollSize <<";\n"; + } + if (!pCurDVR->IsStartFixed() && !pCurDVR->IsEndFixed()) { - ss << " int doubleIndex = i;\n"; + ss << " int doubleIndex = i+gid0;\n"; + } + else + { + ss << " int doubleIndex = i;\n"; } ss << " if(tmp"; ss << 3+(secondParaWidth-1); ss << " == 1)\n"; ss << " {\n"; - for(int j =0;j < unrollSize;j++) + for (int j = 0;j < unrollSize; j++) { CheckSubArgumentIsNan(ss,vSubArguments,1+i); @@ -131,7 +137,7 @@ ss << " }else\n"; ss << " {\n"; - for(int j =0;j < unrollSize;j++) + for (int j = 0; j < unrollSize; j++) { CheckSubArgumentIsNan(ss,vSubArguments,1+i); @@ -149,55 +155,41 @@ ss << " }\n"; ss << " if(rowNum!=-1)\n"; ss << " {\n"; - for(int j=0;j< secondParaWidth; j++) + for (int j = 0; j < secondParaWidth; j++) { - ss << " if(tmp"; ss << 2+(secondParaWidth-1); ss << " == "; ss << j+1; ss << ")\n"; - if( !(vSubArguments[1+j]->IsMixedArgument())) - { - ss << " {\n"; - ss << " tmp = "; - vSubArguments[1+j]->GenDeclRef(ss); - ss << "[rowNum];\n"; - ss << " }\n"; - - } - else - { - ss << " {\n"; - ss << " tmp = isNan("; - vSubArguments[1+j]->GenNumDeclRef(ss); - ss << "[rowNum])?"; - vSubArguments[1+j]->GenNumDeclRef(ss); - ss << "[rowNum]:"; - vSubArguments[1+j]->GenStringDeclRef(ss); - ss << "[rowNum];\n"; - ss << " }\n"; - - } + ss << " tmp = "; + vSubArguments[1+j]->GenDeclRef(ss); + ss << "[rowNum];\n"; } ss << " return tmp;\n"; ss << " }\n"; ss << " for (int i = "; - if (!pCurDVR->IsStartFixed() && pCurDVR->IsEndFixed()) { - ss << "gid0 + loop *"<IsStartFixed() && !pCurDVR->IsEndFixed()) { - ss << "0 + loop *"<IsStartFixed() && pCurDVR->IsEndFixed()) + { + ss << "gid0 + loop *"<IsStartFixed() && !pCurDVR->IsEndFixed()) + { + ss << "0 + loop *"<IsStartFixed() && !pCurDVR->IsEndFixed()) + if (!pCurDVR->IsStartFixed() && !pCurDVR->IsEndFixed()) { ss << " int doubleIndex = i+gid0;\n"; - }else + } + else { ss << " int doubleIndex = i;\n"; } @@ -232,38 +224,21 @@ ss << " if(rowNum!=-1)\n"; ss << " {\n"; - for(int j=0;j< secondParaWidth; j++) + for (int j = 0; j < secondParaWidth; j++) { - ss << " if(tmp"; ss << 2+(secondParaWidth-1); ss << " == "; ss << j+1; ss << ")\n"; - ///Add MixedArguments for string support in Vlookup. - if( !(vSubArguments[1+j]->IsMixedArgument())) - { - ss << " tmp = "; - vSubArguments[1+j]->GenDeclRef(ss); - ss << "[rowNum];\n"; - } - else - { - ss << " tmp = isNan("; - vSubArguments[1+j]->GenNumDeclRef(ss); - ss << "[rowNum])?"; - vSubArguments[1+j]->GenNumDeclRef(ss); - ss << "[rowNum]:"; - vSubArguments[1+j]->GenStringDeclRef(ss); - ss << "[rowNum];\n"; - } - + ss << " tmp = "; + vSubArguments[1+j]->GenDeclRef(ss); + ss << "[rowNum];\n"; } ss << " return tmp;\n"; ss << " }\n"; } - } else { diff -Nru libreoffice-5.0.1~rc2/sc/source/core/opencl/op_spreadsheet.hxx libreoffice-5.0.2~rc2/sc/source/core/opencl/op_spreadsheet.hxx --- libreoffice-5.0.1~rc2/sc/source/core/opencl/op_spreadsheet.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/core/opencl/op_spreadsheet.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -20,7 +20,6 @@ virtual void GenSlidingWindowFunction(std::stringstream &ss, const std::string &sSymName, SubArguments &vSubArguments) SAL_OVERRIDE; virtual std::string BinFuncName() const SAL_OVERRIDE { return "VLookup"; } - virtual bool takeString() const SAL_OVERRIDE { return true; } }; }} diff -Nru libreoffice-5.0.1~rc2/sc/source/core/tool/address.cxx libreoffice-5.0.2~rc2/sc/source/core/tool/address.cxx --- libreoffice-5.0.1~rc2/sc/source/core/tool/address.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/core/tool/address.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1198,7 +1198,14 @@ // Need document name if inherited. if (bExtDocInherited) { - const OUString* pFileName = pRefMgr->getExternalFileName( pExtInfo->mnFileId); + // The FileId was created using the original file name, so + // obtain that. Otherwise lcl_ScRange_External_TabSpan() would + // retrieve a FileId for the real name and bail out if that + // differed from pExtInfo->mnFileId, as is the case when + // loading documents that refer external files relative to the + // current own document but were saved from a different path + // than loaded. + const OUString* pFileName = pRefMgr->getExternalFileName( pExtInfo->mnFileId, true); if (pFileName) aDocName = *pFileName; else @@ -1521,7 +1528,7 @@ nRes2 |= SCA_COL_ABSOLUTE; } } - if (nRes1 && nRes2) + if ((nRes1 & SCA_VALID) && (nRes2 & SCA_VALID)) { // PutInOrder / Justify sal_uInt16 nMask, nBits1, nBits2; diff -Nru libreoffice-5.0.1~rc2/sc/source/core/tool/calcconfig.cxx libreoffice-5.0.2~rc2/sc/source/core/tool/calcconfig.cxx --- libreoffice-5.0.1~rc2/sc/source/core/tool/calcconfig.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/core/tool/calcconfig.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -23,7 +23,8 @@ ScCalcConfig::ScCalcConfig() : meStringRefAddressSyntax(formula::FormulaGrammar::CONV_UNSPECIFIED), meStringConversion(StringConversion::LOCALE), // old LibreOffice behavior - mbEmptyStringAsZero(false) + mbEmptyStringAsZero(false), + mbHasStringRefSyntax(false) { setOpenCLConfigToDefault(); @@ -66,6 +67,7 @@ maOpenCLSubsetOpCodes.insert(ocCount); maOpenCLSubsetOpCodes.insert(ocVar); maOpenCLSubsetOpCodes.insert(ocNormDist); + maOpenCLSubsetOpCodes.insert(ocVLookup); maOpenCLSubsetOpCodes.insert(ocCorrel); maOpenCLSubsetOpCodes.insert(ocCovar); maOpenCLSubsetOpCodes.insert(ocPearson); @@ -85,6 +87,13 @@ mbEmptyStringAsZero = r.mbEmptyStringAsZero; // INDIRECT ref syntax is per document. meStringRefAddressSyntax = r.meStringRefAddressSyntax; + mbHasStringRefSyntax = r.mbHasStringRefSyntax; +} + +void ScCalcConfig::SetStringRefSyntax( formula::FormulaGrammar::AddressConvention eConv ) +{ + meStringRefAddressSyntax = eConv; + mbHasStringRefSyntax = true; } bool ScCalcConfig::operator== (const ScCalcConfig& r) const @@ -92,6 +101,7 @@ return meStringRefAddressSyntax == r.meStringRefAddressSyntax && meStringConversion == r.meStringConversion && mbEmptyStringAsZero == r.mbEmptyStringAsZero && + mbHasStringRefSyntax == r.mbHasStringRefSyntax && mbOpenCLSubsetOnly == r.mbOpenCLSubsetOnly && mbOpenCLAutoSelect == r.mbOpenCLAutoSelect && maOpenCLDevice == r.maOpenCLDevice && @@ -127,6 +137,7 @@ "StringRefAddressSyntax=" << rConfig.meStringRefAddressSyntax << "," "StringConversion=" << StringConversionToString(rConfig.meStringConversion) << "," "EmptyStringAsZero=" << (rConfig.mbEmptyStringAsZero?"Y":"N") << "," + "HasStringRefSyntax=" << (rConfig.mbHasStringRefSyntax?"Y":"N") << "," "OpenCLSubsetOnly=" << (rConfig.mbOpenCLSubsetOnly?"Y":"N") << "," "OpenCLAutoSelect=" << (rConfig.mbOpenCLAutoSelect?"Y":"N") << "," "OpenCLDevice='" << rConfig.maOpenCLDevice << "'," diff -Nru libreoffice-5.0.1~rc2/sc/source/core/tool/interpr1.cxx libreoffice-5.0.2~rc2/sc/source/core/tool/interpr1.cxx --- libreoffice-5.0.1~rc2/sc/source/core/tool/interpr1.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/core/tool/interpr1.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -7032,17 +7032,27 @@ // Use the current address syntax if unspecified. eConv = pDok->GetAddressConvention(); + // either CONV_A1_XL_A1 was explicitly configured, or nothing at all + // was configured + bool bTryXlA1 = (eConv == FormulaGrammar::CONV_A1_XL_A1 || + !maCalcConfig.mbHasStringRefSyntax); + if (nParamCount == 2 && 0.0 == ::rtl::math::approxFloor( GetDouble())) { // Overwrite the config and try Excel R1C1. eConv = FormulaGrammar::CONV_XL_R1C1; + bTryXlA1 = false; } - const ScAddress::Details aDetails( eConv, aPos ); + + const ScAddress::Details aDetails( bTryXlA1 ? FormulaGrammar::CONV_OOO : eConv, aPos ); + const ScAddress::Details aDetailsXlA1( FormulaGrammar::CONV_XL_A1, aPos ); SCTAB nTab = aPos.Tab(); OUString sRefStr = GetString().getString(); ScRefAddress aRefAd, aRefAd2; ScAddress::ExternalInfo aExtInfo; - if (ConvertDoubleRef(pDok, sRefStr, nTab, aRefAd, aRefAd2, aDetails, &aExtInfo)) + if ( ConvertDoubleRef(pDok, sRefStr, nTab, aRefAd, aRefAd2, aDetails, &aExtInfo) || + ( bTryXlA1 && ConvertDoubleRef(pDok, sRefStr, nTab, aRefAd, + aRefAd2, aDetailsXlA1, &aExtInfo) ) ) { if (aExtInfo.mbExternal) { @@ -7054,7 +7064,9 @@ else PushDoubleRef( aRefAd, aRefAd2); } - else if (ConvertSingleRef(pDok, sRefStr, nTab, aRefAd, aDetails, &aExtInfo)) + else if ( ConvertSingleRef(pDok, sRefStr, nTab, aRefAd, aDetails, &aExtInfo) || + ( bTryXlA1 && ConvertSingleRef (pDok, sRefStr, nTab, aRefAd, + aDetailsXlA1, &aExtInfo) ) ) { if (aExtInfo.mbExternal) { diff -Nru libreoffice-5.0.1~rc2/sc/source/core/tool/sharedformula.cxx libreoffice-5.0.2~rc2/sc/source/core/tool/sharedformula.cxx --- libreoffice-5.0.1~rc2/sc/source/core/tool/sharedformula.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/core/tool/sharedformula.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -16,7 +16,7 @@ namespace sc { -void SharedFormulaUtil::splitFormulaCellGroup(const CellStoreType::position_type& aPos) +void SharedFormulaUtil::splitFormulaCellGroup(const CellStoreType::position_type& aPos, sc::EndListeningContext* pCxt) { SCROW nRow = aPos.first->position + aPos.second; @@ -61,7 +61,14 @@ // other listeners, all listeners of this group's top cell are to be reset. if (nLength2) { - rPrevTop.EndListeningTo( rPrevTop.GetDocument(), NULL, ScAddress( ScAddress::UNINITIALIZED)); + // If a context exists it has to be used to not interfere with + // ScColumn::maBroadcasters iterators, which the EndListeningTo() + // without context would do when removing a broadcaster that had its + // last listener removed. + if (pCxt) + rPrevTop.EndListeningTo(*pCxt); + else + rPrevTop.EndListeningTo( rPrevTop.GetDocument(), NULL, ScAddress( ScAddress::UNINITIALIZED)); rPrevTop.SetNeedsListening(true); } #endif @@ -107,7 +114,7 @@ if (aPos.first == rCells.end()) return; - splitFormulaCellGroup(aPos); + splitFormulaCellGroup(aPos, nullptr); std::vector::iterator itEnd = rBounds.end(); for (++it; it != itEnd; ++it) { @@ -116,7 +123,7 @@ if (aPos.first == rCells.end()) return; - splitFormulaCellGroup(aPos); + splitFormulaCellGroup(aPos, nullptr); } } diff -Nru libreoffice-5.0.1~rc2/sc/source/filter/excel/excdoc.cxx libreoffice-5.0.2~rc2/sc/source/filter/excel/excdoc.cxx --- libreoffice-5.0.1~rc2/sc/source/filter/excel/excdoc.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/filter/excel/excdoc.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -881,6 +881,19 @@ if (rCaches.HasCaches()) rCaches.SaveXml(rStrm); + const ScCalcConfig& rCalcConfig = GetDoc().GetCalcConfig(); + + // write if it has been read|imported or explicitly changed + // or if ref syntax isn't what would be native for our file format + // i.e. ExcelA1 in this case + if ( rCalcConfig.mbHasStringRefSyntax || + (rCalcConfig.meStringRefAddressSyntax != formula::FormulaGrammar::CONV_XL_A1) ) + { + XclExtLstRef xExtLst( new XclExtLst( GetRoot() ) ); + xExtLst->AddRecord( XclExpExtRef( new XclExpExtCalcPr( GetRoot(), rCalcConfig.meStringRefAddressSyntax )) ); + xExtLst->SaveXml(rStrm); + } + rWorkbook->endElement( XML_workbook ); rWorkbook.reset(); } diff -Nru libreoffice-5.0.1~rc2/sc/source/filter/excel/xeextlst.cxx libreoffice-5.0.2~rc2/sc/source/filter/excel/xeextlst.cxx --- libreoffice-5.0.1~rc2/sc/source/filter/excel/xeextlst.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/filter/excel/xeextlst.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -361,6 +361,51 @@ rWorksheet->endElementNS( XML_x14, XML_conditionalFormatting ); } +XclExpExtCalcPr::XclExpExtCalcPr( const XclExpRoot& rRoot, formula::FormulaGrammar::AddressConvention eConv ): + XclExpExt( rRoot ), + meConv( eConv ) +{ + maURI = OString("{7626C862-2A13-11E5-B345-FEFF819CDC9F}"); + + switch (meConv) + { + case formula::FormulaGrammar::CONV_OOO: + maSyntax = OString("CalcA1"); + break; + case formula::FormulaGrammar::CONV_XL_A1: + maSyntax = OString("ExcelA1"); + break; + case formula::FormulaGrammar::CONV_XL_R1C1: + maSyntax = OString("ExcelR1C1"); + break; + case formula::FormulaGrammar::CONV_A1_XL_A1: + maSyntax = OString("CalcA1ExcelA1"); + break; + case formula::FormulaGrammar::CONV_UNSPECIFIED: + case formula::FormulaGrammar::CONV_ODF: + case formula::FormulaGrammar::CONV_XL_OOX: + case formula::FormulaGrammar::CONV_LOTUS_A1: + case formula::FormulaGrammar::CONV_LAST: + maSyntax = OString("Unspecified"); + break; + } +} + +void XclExpExtCalcPr::SaveXml( XclExpXmlStream& rStrm ) +{ + sax_fastparser::FSHelperPtr& rWorksheet = rStrm.GetCurrentStream(); + rWorksheet->startElement( XML_ext, + FSNS( XML_xmlns, XML_loext ), "http://schemas.libreoffice.org/", + XML_uri, maURI.getStr(), + FSEND ); + + rWorksheet->singleElementNS( XML_loext, XML_extCalcPr, + XML_stringRefSyntax, maSyntax.getStr(), + FSEND ); + + rWorksheet->endElement( XML_ext ); +} + XclExpExtCondFormat::XclExpExtCondFormat( const XclExpRoot& rRoot ): XclExpExt( rRoot ) { diff -Nru libreoffice-5.0.1~rc2/sc/source/filter/inc/extlstcontext.hxx libreoffice-5.0.2~rc2/sc/source/filter/inc/extlstcontext.hxx --- libreoffice-5.0.1~rc2/sc/source/filter/inc/extlstcontext.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/filter/inc/extlstcontext.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -12,6 +12,7 @@ #include "excelhandlers.hxx" #include "worksheetfragment.hxx" +#include "workbookfragment.hxx" #include @@ -101,6 +102,27 @@ protected: virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) SAL_OVERRIDE; +}; + +class ExtGlobalWorkbookContext : public WorkbookContextBase +{ +public: + explicit ExtGlobalWorkbookContext( WorkbookContextBase& rFragment ); + +protected: + virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) SAL_OVERRIDE; + virtual void onStartElement( const AttributeList& rAttribs ) SAL_OVERRIDE; + +private: +}; + +class ExtLstGlobalWorkbookContext : public WorkbookContextBase +{ +public: + explicit ExtLstGlobalWorkbookContext( WorkbookFragment& rFragment ); + +protected: + virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) SAL_OVERRIDE; }; } //namespace xls diff -Nru libreoffice-5.0.1~rc2/sc/source/filter/inc/xeextlst.hxx libreoffice-5.0.2~rc2/sc/source/filter/inc/xeextlst.hxx --- libreoffice-5.0.1~rc2/sc/source/filter/inc/xeextlst.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/filter/inc/xeextlst.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -14,12 +14,14 @@ #include "xeroot.hxx" #include "colorscale.hxx" +#include "formulaopt.hxx" #include enum XclExpExtType { - XclExpExtDataBarType + XclExpExtDataBarType, + XclExpExtDataFooType }; struct XclExpExtCondFormatData @@ -32,8 +34,6 @@ /** * Base class for ext entries. Extend this class to provide the needed functionality - * - * Right now the only supported subclass is XclExpExtCondFormat */ class XclExpExt : public XclExpRecordBase, public XclExpRoot { @@ -167,6 +167,19 @@ XclExpRecordList< XclExpExtConditionalFormatting > maCF; }; +class XclExpExtCalcPr : public XclExpExt +{ +public: + XclExpExtCalcPr( const XclExpRoot& rRoot, formula::FormulaGrammar::AddressConvention eConv ); + virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE; + + virtual XclExpExtType GetType() SAL_OVERRIDE { return XclExpExtDataFooType; } + +private: + formula::FormulaGrammar::AddressConvention meConv; + OString maSyntax; +}; + class XclExtLst : public XclExpRecordBase, public XclExpRoot { public: diff -Nru libreoffice-5.0.1~rc2/sc/source/filter/oox/extlstcontext.cxx libreoffice-5.0.2~rc2/sc/source/filter/oox/extlstcontext.cxx --- libreoffice-5.0.1~rc2/sc/source/filter/oox/extlstcontext.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/filter/oox/extlstcontext.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -249,6 +249,60 @@ return this; } +ExtGlobalWorkbookContext::ExtGlobalWorkbookContext( WorkbookContextBase& rFragment ): + WorkbookContextBase(rFragment) +{ +} + +ContextHandlerRef ExtGlobalWorkbookContext::onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) +{ + if (nElement == LOEXT_TOKEN(extCalcPr)) + { + ScDocument* pDoc = &getScDocument(); + sal_Int32 nToken = rAttribs.getToken( XML_stringRefSyntax, XML_CalcA1 ); + ScCalcConfig aCalcConfig = pDoc->GetCalcConfig(); + + switch( nToken ) + { + case XML_CalcA1: + aCalcConfig.SetStringRefSyntax( formula::FormulaGrammar::CONV_OOO ); + break; + case XML_ExcelA1: + aCalcConfig.SetStringRefSyntax( formula::FormulaGrammar::CONV_XL_A1 ); + break; + case XML_ExcelR1C1: + aCalcConfig.SetStringRefSyntax( formula::FormulaGrammar::CONV_XL_R1C1 ); + break; + case XML_CalcA1ExcelA1: + aCalcConfig.SetStringRefSyntax( formula::FormulaGrammar::CONV_A1_XL_A1 ); + break; + default: + aCalcConfig.SetStringRefSyntax( formula::FormulaGrammar::CONV_UNSPECIFIED ); + break; + } + pDoc->SetCalcConfig(aCalcConfig); + } + + return this; +} + +void ExtGlobalWorkbookContext::onStartElement( const AttributeList& /*rAttribs*/ ) +{ +} + +ExtLstGlobalWorkbookContext::ExtLstGlobalWorkbookContext( WorkbookFragment& rFragment ): + WorkbookContextBase(rFragment) +{ +} + +ContextHandlerRef ExtLstGlobalWorkbookContext::onCreateContext( sal_Int32 nElement, const AttributeList& ) +{ + if (nElement == XLS_TOKEN( ext )) + return new ExtGlobalWorkbookContext( *this ); + + return this; +} + } //namespace oox } //namespace xls diff -Nru libreoffice-5.0.1~rc2/sc/source/filter/oox/workbookfragment.cxx libreoffice-5.0.2~rc2/sc/source/filter/oox/workbookfragment.cxx --- libreoffice-5.0.1~rc2/sc/source/filter/oox/workbookfragment.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/filter/oox/workbookfragment.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -46,6 +46,7 @@ #include "worksheethelper.hxx" #include "worksheetfragment.hxx" #include "sheetdatacontext.hxx" +#include "extlstcontext.hxx" #include "officecfg/Office/Common.hxx" #include "document.hxx" @@ -110,6 +111,8 @@ case XLS_TOKEN( workbookPr ): getWorkbookSettings().importWorkbookPr( rAttribs ); break; case XLS_TOKEN( calcPr ): getWorkbookSettings().importCalcPr( rAttribs ); break; case XLS_TOKEN( oleSize ): getViewSettings().importOleSize( rAttribs ); break; + + case XLS_TOKEN( extLst ): return new ExtLstGlobalWorkbookContext( *this ); } break; diff -Nru libreoffice-5.0.1~rc2/sc/source/filter/oox/workbookhelper.cxx libreoffice-5.0.2~rc2/sc/source/filter/oox/workbookhelper.cxx --- libreoffice-5.0.1~rc2/sc/source/filter/oox/workbookhelper.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/filter/oox/workbookhelper.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -533,18 +533,6 @@ // private -------------------------------------------------------------------- -namespace { - -formula::FormulaGrammar::AddressConvention getConvention(css::uno::Reference xDocProps) -{ - if (xDocProps->getGenerator().startsWithIgnoreAsciiCase("Microsoft")) - return formula::FormulaGrammar::CONV_XL_A1; - - return formula::FormulaGrammar::CONV_OOO; -} - -} - void WorkbookGlobals::initialize( bool bWorkbookFile ) { maCellStyles = "CellStyles"; @@ -574,9 +562,13 @@ Reference< XDocumentPropertiesSupplier > xPropSupplier( mxDoc, UNO_QUERY); Reference< XDocumentProperties > xDocProps = xPropSupplier->getDocumentProperties(); - ScCalcConfig aCalcConfig = mpDoc->GetCalcConfig(); - aCalcConfig.meStringRefAddressSyntax = getConvention(xDocProps); - mpDoc->SetCalcConfig(aCalcConfig); + + if (xDocProps->getGenerator().startsWithIgnoreAsciiCase("Microsoft")) + { + ScCalcConfig aCalcConfig = mpDoc->GetCalcConfig(); + aCalcConfig.SetStringRefSyntax( formula::FormulaGrammar::CONV_XL_A1 ) ; + mpDoc->SetCalcConfig(aCalcConfig); + } mxDocImport.reset(new ScDocumentImport(*mpDoc)); diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/condformat/condformatdlgentry.cxx libreoffice-5.0.2~rc2/sc/source/ui/condformat/condformatdlgentry.cxx --- libreoffice-5.0.1~rc2/sc/source/ui/condformat/condformatdlgentry.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/condformat/condformatdlgentry.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -313,7 +313,7 @@ boost::scoped_ptr ta(aComp.CompileString(aFormula)); // Error, warn the user - if( ta->GetCodeError() ) + if( ta->GetCodeError() || ( ta->GetLen() == 0 ) ) { pEdit->SetControlBackground(COL_LIGHTRED); maFtVal->SetText(ScGlobal::GetRscString(STR_VALID_DEFERROR)); diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/dbgui/sfiltdlg.cxx libreoffice-5.0.2~rc2/sc/source/ui/dbgui/sfiltdlg.cxx --- libreoffice-5.0.1~rc2/sc/source/ui/dbgui/sfiltdlg.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/dbgui/sfiltdlg.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -87,7 +87,8 @@ // Hack: RefInput-Kontrolle pIdle = new Idle; - pIdle->SetPriority( SchedulerPriority::MEDIUM ); // 50ms warten + // FIXME: this is an abomination + pIdle->SetPriority( SchedulerPriority::LOWEST ); pIdle->SetIdleHdl( LINK( this, ScSpecialFilterDlg, TimeOutHdl ) ); pIdle->Start(); diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/formdlg/formula.cxx libreoffice-5.0.2~rc2/sc/source/ui/formdlg/formula.cxx --- libreoffice-5.0.1~rc2/sc/source/ui/formdlg/formula.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/formdlg/formula.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -248,6 +248,7 @@ { ScModule* pScMod = SC_MOD(); ScFormEditData* pData = pScMod->GetFormEditData(); + m_aHelper.dispose(); if (pData) // close dosen't destroy; { diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/inc/RandomNumberGeneratorDialog.hxx libreoffice-5.0.2~rc2/sc/source/ui/inc/RandomNumberGeneratorDialog.hxx --- libreoffice-5.0.1~rc2/sc/source/ui/inc/RandomNumberGeneratorDialog.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/inc/RandomNumberGeneratorDialog.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -76,6 +76,7 @@ DECL_LINK( GetFocusHandler, Control* ); DECL_LINK( LoseFocusHandler, void* ); + DECL_LINK( InputRangeModified, void* ); DECL_LINK( Parameter1ValueModified, void* ); DECL_LINK( Parameter2ValueModified, void* ); DECL_LINK( DistributionChanged, void* ); diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/inc/SamplingDialog.hxx libreoffice-5.0.2~rc2/sc/source/ui/inc/SamplingDialog.hxx --- libreoffice-5.0.1~rc2/sc/source/ui/inc/SamplingDialog.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/inc/SamplingDialog.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -77,6 +77,7 @@ DECL_LINK( LoseFocusHandler, void* ); DECL_LINK( SamplingSizeValueModified, void* ); DECL_LINK( ToggleSamplingMethod, void* ); + DECL_LINK( RefInputModifyHandler, void* ); }; #endif diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/inc/StatisticsInputOutputDialog.hxx libreoffice-5.0.2~rc2/sc/source/ui/inc/StatisticsInputOutputDialog.hxx --- libreoffice-5.0.1~rc2/sc/source/ui/inc/StatisticsInputOutputDialog.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/inc/StatisticsInputOutputDialog.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -83,6 +83,7 @@ DECL_LINK( OkClicked, PushButton* ); DECL_LINK( GetFocusHandler, Control* ); DECL_LINK( LoseFocusHandler, void* ); + DECL_LINK( RefInputModifyHandler, void* ); }; #endif diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/inc/StatisticsTwoVariableDialog.hxx libreoffice-5.0.2~rc2/sc/source/ui/inc/StatisticsTwoVariableDialog.hxx --- libreoffice-5.0.1~rc2/sc/source/ui/inc/StatisticsTwoVariableDialog.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/inc/StatisticsTwoVariableDialog.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -86,6 +86,7 @@ DECL_LINK( OkClicked, PushButton* ); DECL_LINK( GetFocusHandler, Control* ); DECL_LINK( LoseFocusHandler, void* ); + DECL_LINK( RefInputModifyHandler, void* ); }; #endif diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/optdlg/calcoptionsdlg.cxx libreoffice-5.0.2~rc2/sc/source/ui/optdlg/calcoptionsdlg.cxx --- libreoffice-5.0.1~rc2/sc/source/ui/optdlg/calcoptionsdlg.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/optdlg/calcoptionsdlg.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -46,6 +46,8 @@ return formula::FormulaGrammar::CONV_XL_A1; case 3: return formula::FormulaGrammar::CONV_XL_R1C1; + case 4: + return formula::FormulaGrammar::CONV_A1_XL_A1; case 0: default: ; @@ -54,6 +56,24 @@ return formula::FormulaGrammar::CONV_UNSPECIFIED; } +sal_Int32 toSelectedItem( formula::FormulaGrammar::AddressConvention eConv ) +{ + switch (eConv) + { + case formula::FormulaGrammar::CONV_OOO: + return 1; + case formula::FormulaGrammar::CONV_XL_A1: + return 2; + case formula::FormulaGrammar::CONV_XL_R1C1: + return 3; + case formula::FormulaGrammar::CONV_A1_XL_A1: + return 4; + default: + ; + } + return 0; +} + } ScCalcOptionsDialog::ScCalcOptionsDialog(vcl::Window* pParent, const ScCalcConfig& rConfig) @@ -79,7 +99,7 @@ mpEmptyAsZero->SetClickHdl(LINK(this, ScCalcOptionsDialog, AsZeroModifiedHdl)); get(mpSyntax,"comboSyntaxRef"); - mpSyntax->SelectEntryPos(rConfig.meStringRefAddressSyntax); + mpSyntax->SelectEntryPos( toSelectedItem(rConfig.meStringRefAddressSyntax) ); mpSyntax->SetSelectHdl(LINK(this, ScCalcOptionsDialog, SyntaxModifiedHdl)); get(mpUseOpenCL,"CBUseOpenCL"); @@ -208,7 +228,7 @@ IMPL_LINK(ScCalcOptionsDialog, SyntaxModifiedHdl, ListBox*, pSyntax) { - maConfig.meStringRefAddressSyntax = toAddressConvention(pSyntax->GetSelectEntryPos()); + maConfig.SetStringRefSyntax(toAddressConvention(pSyntax->GetSelectEntryPos())); return 0; } diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/sidebar/CellLineStyleControl.cxx libreoffice-5.0.2~rc2/sc/source/ui/sidebar/CellLineStyleControl.cxx --- libreoffice-5.0.1~rc2/sc/source/ui/sidebar/CellLineStyleControl.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/sidebar/CellLineStyleControl.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -96,14 +96,10 @@ void CellLineStyleControl::GetFocus() { - if(!mbVSfocus) - { + if (!mbVSfocus && maPushButtonMoreOptions) maPushButtonMoreOptions->GrabFocus(); - } - else - { + else if (maCellLineStyleValueSet) maCellLineStyleValueSet->GrabFocus(); - } } void CellLineStyleControl::SetAllNoSel() diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx libreoffice-5.0.2~rc2/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx --- libreoffice-5.0.1~rc2/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -320,7 +320,10 @@ } mpBtnThousand->Check(bThousand); mpBtnNegRed->Check(bNegRed); - mpEdDecimals->SetValue(nPrecision); + if ( mpLbCategory->GetSelectEntryPos() == 0 ) + mpEdDecimals->SetText(""); // tdf#44399 + else + mpEdDecimals->SetValue(nPrecision); mpEdLeadZeroes->SetValue(nLeadZeroes); } default: diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog.cxx libreoffice-5.0.2~rc2/sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog.cxx --- libreoffice-5.0.1~rc2/sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -120,6 +120,7 @@ mpInputRangeEdit->SetLoseFocusHdl ( aLink ); mpInputRangeButton->SetLoseFocusHdl ( aLink ); + mpInputRangeEdit->SetModifyHdl( LINK( this, ScRandomNumberGeneratorDialog, InputRangeModified )); mpParameter1Value->SetModifyHdl( LINK( this, ScRandomNumberGeneratorDialog, Parameter1ValueModified )); mpParameter2Value->SetModifyHdl( LINK( this, ScRandomNumberGeneratorDialog, Parameter2ValueModified )); @@ -170,11 +171,17 @@ OUString aReferenceString(maInputRange.Format(SCR_ABS_3D, pDoc, pDoc->GetAddressConvention())); mpInputRangeEdit->SetRefString( aReferenceString ); + + mpButtonApply->Enable(); + mpButtonOk->Enable(); } } void ScRandomNumberGeneratorDialog::SelectGeneratorAndGenerateNumbers() { + if (!maInputRange.IsValid()) + return; + sal_Int16 aSelectedIndex = mpDistributionCombo-> GetSelectEntryPos(); sal_Int64 aSelectedId = reinterpret_cast(mpDistributionCombo->GetEntryData(aSelectedIndex)); @@ -357,6 +364,28 @@ return 0; } +IMPL_LINK_NOARG(ScRandomNumberGeneratorDialog, InputRangeModified) +{ + ScRangeList aRangeList; + bool bValid = ParseWithNames( aRangeList, mpInputRangeEdit->GetText(), mpDoc); + const ScRange* pRange = (bValid && aRangeList.size() == 1) ? aRangeList[0] : nullptr; + if (pRange) + { + maInputRange = *pRange; + mpButtonApply->Enable(); + mpButtonOk->Enable(); + // Highlight the resulting range. + mpInputRangeEdit->StartUpdateData(); + } + else + { + maInputRange = ScRange( ScAddress::INITIALIZE_INVALID); + mpButtonApply->Disable(); + mpButtonOk->Disable(); + } + return 0; +} + IMPL_LINK_NOARG(ScRandomNumberGeneratorDialog, Parameter1ValueModified) { sal_Int16 aSelectedIndex = mpDistributionCombo-> GetSelectEntryPos(); diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/StatisticsDialogs/SamplingDialog.cxx libreoffice-5.0.2~rc2/sc/source/ui/StatisticsDialogs/SamplingDialog.cxx --- libreoffice-5.0.1~rc2/sc/source/ui/StatisticsDialogs/SamplingDialog.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/StatisticsDialogs/SamplingDialog.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -32,7 +32,9 @@ mpActiveEdit ( NULL ), mViewData ( pViewData ), mDocument ( pViewData->GetDocument() ), + mInputRange ( ScAddress::INITIALIZE_INVALID ), mAddressDetails ( mDocument->GetAddressConvention(), 0, 0 ), + mOutputAddress ( ScAddress::INITIALIZE_INVALID ), mCurrentAddress ( pViewData->GetCurX(), pViewData->GetCurY(), pViewData->GetTabNo() ), mDialogLostFocus( false ) { @@ -99,6 +101,10 @@ mpOutputRangeEdit->SetLoseFocusHdl( aLink ); mpOutputRangeButton->SetLoseFocusHdl( aLink ); + aLink = LINK( this, ScSamplingDialog, RefInputModifyHandler); + mpInputRangeEdit->SetModifyHdl( aLink); + mpOutputRangeEdit->SetModifyHdl( aLink); + mpSampleSize->SetModifyHdl( LINK( this, ScSamplingDialog, SamplingSizeValueModified )); mpPeriodicMethodRadio->SetToggleHdl( LINK( this, ScSamplingDialog, ToggleSamplingMethod ) ); @@ -168,11 +174,12 @@ if (aSelectedSampleSize > 1) mpSampleSize->SetValue(aSelectedSampleSize); SamplingSizeValueModified(NULL); - - // Enable OK, Cancel if output range is set - mpButtonOk->Enable(!mpOutputRangeEdit->GetText().isEmpty()); } } + + // Enable OK if both, input range and output address are set. + if (mInputRange.IsValid() && mOutputAddress.IsValid()) + mpButtonOk->Enable(); } ScRange ScSamplingDialog::PerformPeriodicSampling(ScDocShell* pDocShell) @@ -332,4 +339,66 @@ return 0; } +IMPL_LINK_NOARG(ScSamplingDialog, RefInputModifyHandler) +{ + if ( mpActiveEdit ) + { + if ( mpActiveEdit == mpInputRangeEdit ) + { + ScRangeList aRangeList; + bool bValid = ParseWithNames( aRangeList, mpInputRangeEdit->GetText(), mDocument); + const ScRange* pRange = (bValid && aRangeList.size() == 1) ? aRangeList[0] : nullptr; + if (pRange) + { + mInputRange = *pRange; + // Highlight the resulting range. + mpInputRangeEdit->StartUpdateData(); + } + else + { + mInputRange = ScRange( ScAddress::INITIALIZE_INVALID); + } + } + else if ( mpActiveEdit == mpOutputRangeEdit ) + { + ScRangeList aRangeList; + bool bValid = ParseWithNames( aRangeList, mpOutputRangeEdit->GetText(), mDocument); + const ScRange* pRange = (bValid && aRangeList.size() == 1) ? aRangeList[0] : nullptr; + if (pRange) + { + mOutputAddress = pRange->aStart; + + // Crop output range to top left address for Edit field. + if (pRange->aStart != pRange->aEnd) + { + sal_uInt16 nFormat = ( mOutputAddress.Tab() == mCurrentAddress.Tab() ) ? SCA_ABS : SCA_ABS_3D; + OUString aReferenceString = mOutputAddress.Format(nFormat, mDocument, mDocument->GetAddressConvention()); + mpOutputRangeEdit->SetRefString( aReferenceString ); + } + + // Change sampling size according to output range selection + sal_Int64 aSelectedSampleSize = pRange->aEnd.Row() - pRange->aStart.Row() + 1; + if (aSelectedSampleSize > 1) + mpSampleSize->SetValue(aSelectedSampleSize); + SamplingSizeValueModified(NULL); + + // Highlight the resulting range. + mpOutputRangeEdit->StartUpdateData(); + } + else + { + mOutputAddress = ScAddress( ScAddress::INITIALIZE_INVALID); + } + } + } + + // Enable OK if both, input range and output address are set. + if (mInputRange.IsValid() && mOutputAddress.IsValid()) + mpButtonOk->Enable(); + else + mpButtonOk->Disable(); + + return 0; +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/StatisticsDialogs/StatisticsInputOutputDialog.cxx libreoffice-5.0.2~rc2/sc/source/ui/StatisticsDialogs/StatisticsInputOutputDialog.cxx --- libreoffice-5.0.1~rc2/sc/source/ui/StatisticsDialogs/StatisticsInputOutputDialog.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/StatisticsDialogs/StatisticsInputOutputDialog.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -59,7 +59,9 @@ ScAnyRefDlg ( pSfxBindings, pChildWindow, pParent, rID, rUIXMLDescription ), mViewData ( pViewData ), mDocument ( pViewData->GetDocument() ), + mInputRange ( ScAddress::INITIALIZE_INVALID ), mAddressDetails ( mDocument->GetAddressConvention(), 0, 0 ), + mOutputAddress ( ScAddress::INITIALIZE_INVALID ), mGroupedBy ( BY_COLUMN ), mpActiveEdit ( NULL ), mCurrentAddress ( pViewData->GetCurX(), pViewData->GetCurY(), pViewData->GetTabNo() ), @@ -123,6 +125,10 @@ mpOutputRangeEdit->SetLoseFocusHdl( aLink ); mpOutputRangeButton->SetLoseFocusHdl( aLink ); + aLink = LINK( this, ScStatisticsInputOutputDialog, RefInputModifyHandler); + mpInputRangeEdit->SetModifyHdl( aLink); + mpOutputRangeEdit->SetModifyHdl( aLink); + mpOutputRangeEdit->GrabFocus(); mpGroupByColumnsRadio->SetToggleHdl( LINK( this, ScStatisticsInputOutputDialog, GroupByChanged ) ); @@ -176,11 +182,14 @@ sal_uInt16 nFormat = ( mOutputAddress.Tab() == mCurrentAddress.Tab() ) ? SCA_ABS : SCA_ABS_3D; aReferenceString = mOutputAddress.Format(nFormat, pDocument, pDocument->GetAddressConvention()); mpOutputRangeEdit->SetRefString( aReferenceString ); - - // Enable OK, Cancel if output range is set - mpButtonOk->Enable(!mpOutputRangeEdit->GetText().isEmpty()); } } + + // Enable OK if both, input range and output address are set. + if (mInputRange.IsValid() && mOutputAddress.IsValid()) + mpButtonOk->Enable(); + else + mpButtonOk->Disable(); } IMPL_LINK( ScStatisticsInputOutputDialog, OkClicked, PushButton*, /*pButton*/ ) @@ -220,6 +229,62 @@ return 0; } + +IMPL_LINK_NOARG( ScStatisticsInputOutputDialog, RefInputModifyHandler ) +{ + if ( mpActiveEdit ) + { + if ( mpActiveEdit == mpInputRangeEdit ) + { + ScRangeList aRangeList; + bool bValid = ParseWithNames( aRangeList, mpInputRangeEdit->GetText(), mDocument); + const ScRange* pRange = (bValid && aRangeList.size() == 1) ? aRangeList[0] : nullptr; + if (pRange) + { + mInputRange = *pRange; + // Highlight the resulting range. + mpInputRangeEdit->StartUpdateData(); + } + else + { + mInputRange = ScRange( ScAddress::INITIALIZE_INVALID); + } + } + else if ( mpActiveEdit == mpOutputRangeEdit ) + { + ScRangeList aRangeList; + bool bValid = ParseWithNames( aRangeList, mpOutputRangeEdit->GetText(), mDocument); + const ScRange* pRange = (bValid && aRangeList.size() == 1) ? aRangeList[0] : nullptr; + if (pRange) + { + mOutputAddress = pRange->aStart; + + // Crop output range to top left address for Edit field. + if (pRange->aStart != pRange->aEnd) + { + sal_uInt16 nFormat = ( mOutputAddress.Tab() == mCurrentAddress.Tab() ) ? SCA_ABS : SCA_ABS_3D; + OUString aReferenceString = mOutputAddress.Format(nFormat, mDocument, mDocument->GetAddressConvention()); + mpOutputRangeEdit->SetRefString( aReferenceString ); + } + + // Highlight the resulting range. + mpOutputRangeEdit->StartUpdateData(); + } + else + { + mOutputAddress = ScAddress( ScAddress::INITIALIZE_INVALID); + } + } + } + + // Enable OK if both, input range and output address are set. + if (mInputRange.IsValid() && mOutputAddress.IsValid()) + mpButtonOk->Enable(); + else + mpButtonOk->Disable(); + + return 0; +} void ScStatisticsInputOutputDialog::CalculateInputAndWriteToOutput() { diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/StatisticsDialogs/StatisticsTwoVariableDialog.cxx libreoffice-5.0.2~rc2/sc/source/ui/StatisticsDialogs/StatisticsTwoVariableDialog.cxx --- libreoffice-5.0.1~rc2/sc/source/ui/StatisticsDialogs/StatisticsTwoVariableDialog.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/StatisticsDialogs/StatisticsTwoVariableDialog.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -31,7 +31,10 @@ ScAnyRefDlg ( pSfxBindings, pChildWindow, pParent, rID, rUIXMLDescription ), mViewData ( pViewData ), mDocument ( pViewData->GetDocument() ), + mVariable1Range ( ScAddress::INITIALIZE_INVALID ), + mVariable2Range ( ScAddress::INITIALIZE_INVALID ), mAddressDetails ( mDocument->GetAddressConvention(), 0, 0 ), + mOutputAddress ( ScAddress::INITIALIZE_INVALID ), mGroupedBy ( BY_COLUMN ), mpActiveEdit ( NULL ), mCurrentAddress ( pViewData->GetCurX(), pViewData->GetCurY(), pViewData->GetTabNo() ), @@ -108,6 +111,11 @@ mpOutputRangeEdit->SetLoseFocusHdl( aLink ); mpOutputRangeButton->SetLoseFocusHdl( aLink ); + aLink = LINK( this, ScStatisticsTwoVariableDialog, RefInputModifyHandler); + mpVariable1RangeEdit->SetModifyHdl( aLink); + mpVariable2RangeEdit->SetModifyHdl( aLink); + mpOutputRangeEdit->SetModifyHdl( aLink); + mpOutputRangeEdit->GrabFocus(); mpGroupByColumnsRadio->SetToggleHdl( LINK( this, ScStatisticsTwoVariableDialog, GroupByChanged ) ); @@ -187,11 +195,14 @@ sal_uInt16 nFormat = ( mOutputAddress.Tab() == mCurrentAddress.Tab() ) ? SCA_ABS : SCA_ABS_3D; aReferenceString = mOutputAddress.Format(nFormat, pDocument, pDocument->GetAddressConvention()); mpOutputRangeEdit->SetRefString( aReferenceString ); - - // Enable OK, Cancel if output range is set - mpButtonOk->Enable(!mpOutputRangeEdit->GetText().isEmpty()); } } + + // Enable OK if all ranges are set. + if (mVariable1Range.IsValid() && mVariable2Range.IsValid() && mOutputAddress.IsValid()) + mpButtonOk->Enable(); + else + mpButtonOk->Disable(); } IMPL_LINK( ScStatisticsTwoVariableDialog, OkClicked, PushButton*, /*pButton*/ ) @@ -241,6 +252,78 @@ return 0; } + +IMPL_LINK_NOARG( ScStatisticsTwoVariableDialog, RefInputModifyHandler ) +{ + if ( mpActiveEdit ) + { + if ( mpActiveEdit == mpVariable1RangeEdit ) + { + ScRangeList aRangeList; + bool bValid = ParseWithNames( aRangeList, mpVariable1RangeEdit->GetText(), mDocument); + const ScRange* pRange = (bValid && aRangeList.size() == 1) ? aRangeList[0] : nullptr; + if (pRange) + { + mVariable1Range = *pRange; + // Highlight the resulting range. + mpVariable1RangeEdit->StartUpdateData(); + } + else + { + mVariable1Range = ScRange( ScAddress::INITIALIZE_INVALID); + } + } + else if ( mpActiveEdit == mpVariable2RangeEdit ) + { + ScRangeList aRangeList; + bool bValid = ParseWithNames( aRangeList, mpVariable2RangeEdit->GetText(), mDocument); + const ScRange* pRange = (bValid && aRangeList.size() == 1) ? aRangeList[0] : nullptr; + if (pRange) + { + mVariable2Range = *pRange; + // Highlight the resulting range. + mpVariable2RangeEdit->StartUpdateData(); + } + else + { + mVariable2Range = ScRange( ScAddress::INITIALIZE_INVALID); + } + } + else if ( mpActiveEdit == mpOutputRangeEdit ) + { + ScRangeList aRangeList; + bool bValid = ParseWithNames( aRangeList, mpOutputRangeEdit->GetText(), mDocument); + const ScRange* pRange = (bValid && aRangeList.size() == 1) ? aRangeList[0] : nullptr; + if (pRange) + { + mOutputAddress = pRange->aStart; + + // Crop output range to top left address for Edit field. + if (pRange->aStart != pRange->aEnd) + { + sal_uInt16 nFormat = ( mOutputAddress.Tab() == mCurrentAddress.Tab() ) ? SCA_ABS : SCA_ABS_3D; + OUString aReferenceString = mOutputAddress.Format(nFormat, mDocument, mDocument->GetAddressConvention()); + mpOutputRangeEdit->SetRefString( aReferenceString ); + } + + // Highlight the resulting range. + mpOutputRangeEdit->StartUpdateData(); + } + else + { + mOutputAddress = ScAddress( ScAddress::INITIALIZE_INVALID); + } + } + } + + // Enable OK if all ranges are set. + if (mVariable1Range.IsValid() && mVariable2Range.IsValid() && mOutputAddress.IsValid()) + mpButtonOk->Enable(); + else + mpButtonOk->Disable(); + + return 0; +} void ScStatisticsTwoVariableDialog::CalculateInputAndWriteToOutput() { diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/undo/undoblk.cxx libreoffice-5.0.2~rc2/sc/source/ui/undo/undoblk.cxx --- libreoffice-5.0.1~rc2/sc/source/ui/undo/undoblk.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/undo/undoblk.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1239,7 +1239,14 @@ // do not undo objects and note captions, they are handled via drawing undo InsertDeleteFlags nUndoFlags = (IDF_ALL & ~IDF_OBJECTS) | IDF_NOCAPTIONS; - rDoc.DeleteAreaTab( aRange, nUndoFlags ); + // Additionally discard/forget caption ownership during deletion, as + // Drag&Drop is a special case in that the Undo holds captions of the + // transfered target range, which would get deleted and + // SdrGroupUndo::Undo() would attempt to access invalidated captions and + // crash, tdf#92995 + InsertDeleteFlags nDelFlags = nUndoFlags | IDF_FORGETCAPTIONS; + + rDoc.DeleteAreaTab( aRange, nDelFlags ); pRefUndoDoc->CopyToDocument( aRange, nUndoFlags, false, &rDoc ); if ( rDoc.HasAttrib( aRange, HASATTR_MERGED ) ) rDoc.ExtendMerge( aRange, true ); diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/unoobj/confuno.cxx libreoffice-5.0.2~rc2/sc/source/ui/unoobj/confuno.cxx --- libreoffice-5.0.1~rc2/sc/source/ui/unoobj/confuno.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/unoobj/confuno.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -31,6 +31,7 @@ #include #include +#include #include #include #include @@ -75,6 +76,7 @@ {OUString(SC_UNO_SHAREDOC), 0, cppu::UnoType::get(), 0, 0}, {OUString(SC_UNO_MODIFYPASSWORDINFO), 0, cppu::UnoType>::get(), 0, 0}, {OUString(SC_UNO_EMBED_FONTS), 0, cppu::UnoType::get(), 0, 0}, + {OUString(SC_UNO_SYNTAXSTRINGREF), 0, cppu::UnoType::get(), 0, 0}, { OUString(), 0, css::uno::Type(), 0, 0 } }; return aConfigPropertyMap_Impl; @@ -297,6 +299,29 @@ rDoc.SetIsUsingEmbededFonts(bVal); } } + else if ( aPropertyName == SC_UNO_SYNTAXSTRINGREF ) + { + ScCalcConfig aCalcConfig = rDoc.GetCalcConfig(); + sal_Int16 nUno = 0; + + if( aValue >>= nUno ) + { + switch (nUno) + { + case 0: // CONV_OOO + case 2: // CONV_XL_A1 + case 3: // CONV_XL_R1C1 + case 7: // CONV_A1_XL_A1 + aCalcConfig.SetStringRefSyntax( static_cast( nUno ) ); + break; + default: + aCalcConfig.SetStringRefSyntax( formula::FormulaGrammar::CONV_UNSPECIFIED ); + break; + + } + rDoc.SetCalcConfig( aCalcConfig ); + } + } else { @@ -433,6 +458,39 @@ { aRet <<= rDoc.IsUsingEmbededFonts(); } + else if ( aPropertyName == SC_UNO_SYNTAXSTRINGREF ) + { + ScCalcConfig aCalcConfig = rDoc.GetCalcConfig(); + + // write if it has been read|imported or explicitly changed + // or if ref syntax isn't what would be native for our file format + // i.e. CalcA1 in this case + if ( aCalcConfig.mbHasStringRefSyntax || + (aCalcConfig.meStringRefAddressSyntax != formula::FormulaGrammar::CONV_OOO) ) + { + formula::FormulaGrammar::AddressConvention aConv = aCalcConfig.meStringRefAddressSyntax; + + switch (aConv) + { + case formula::FormulaGrammar::CONV_OOO: + case formula::FormulaGrammar::CONV_XL_A1: + case formula::FormulaGrammar::CONV_XL_R1C1: + case formula::FormulaGrammar::CONV_A1_XL_A1: + aRet <<= static_cast( aConv ); + break; + + case formula::FormulaGrammar::CONV_UNSPECIFIED: + case formula::FormulaGrammar::CONV_ODF: + case formula::FormulaGrammar::CONV_XL_OOX: + case formula::FormulaGrammar::CONV_LOTUS_A1: + case formula::FormulaGrammar::CONV_LAST: + { + aRet <<= sal_Int16(9999); + break; + } + } + } + } else { diff -Nru libreoffice-5.0.1~rc2/sc/source/ui/view/cellsh1.cxx libreoffice-5.0.2~rc2/sc/source/ui/view/cellsh1.cxx --- libreoffice-5.0.1~rc2/sc/source/ui/view/cellsh1.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/source/ui/view/cellsh1.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1017,7 +1017,7 @@ case SID_SEARCH_RESULTS_DIALOG: { const SfxPoolItem* pItem = NULL; - if (pReqArgs->HasItem(SID_SEARCH_RESULTS_DIALOG, &pItem)) + if (pReqArgs && pReqArgs->HasItem(SID_SEARCH_RESULTS_DIALOG, &pItem)) { bool bVisible = static_cast(pItem)->GetValue(); SfxViewFrame* pViewFrm = pTabViewShell->GetViewFrame(); diff -Nru libreoffice-5.0.1~rc2/sc/uiconfig/scalc/ui/formulacalculationoptions.ui libreoffice-5.0.2~rc2/sc/uiconfig/scalc/ui/formulacalculationoptions.ui --- libreoffice-5.0.1~rc2/sc/uiconfig/scalc/ui/formulacalculationoptions.ui 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/uiconfig/scalc/ui/formulacalculationoptions.ui 2015-09-17 13:33:12.000000000 +0000 @@ -86,6 +86,7 @@ Calc A1 Excel A1 Excel R1C1 + Calc A1 | Excel A1 diff -Nru libreoffice-5.0.1~rc2/sc/uiconfig/scalc/ui/sidebarnumberformat.ui libreoffice-5.0.2~rc2/sc/uiconfig/scalc/ui/sidebarnumberformat.ui --- libreoffice-5.0.1~rc2/sc/uiconfig/scalc/ui/sidebarnumberformat.ui 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sc/uiconfig/scalc/ui/sidebarnumberformat.ui 2015-09-17 13:33:12.000000000 +0000 @@ -46,7 +46,7 @@ - + True False False diff -Nru libreoffice-5.0.1~rc2/scp2/source/ooo/common_brand.scp libreoffice-5.0.2~rc2/scp2/source/ooo/common_brand.scp --- libreoffice-5.0.1~rc2/scp2/source/ooo/common_brand.scp 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/scp2/source/ooo/common_brand.scp 2015-09-17 13:33:12.000000000 +0000 @@ -1117,17 +1117,21 @@ Value = "${BRAND_BASE_DIR}/" LIBO_URE_BIN_FOLDER; End +#if defined WNT +#define CONFIGURATION_LAYERS_WINREG " winreg:LOCAL_MACHINE" +#define CONFIGURATION_LAYERS_WINUSERREG " winreg:CURRENT_USER" +#else +#define CONFIGURATION_LAYERS_WINREG +#define CONFIGURATION_LAYERS_WINUSERREG +#endif ProfileItem gid_Brand_Profileitem_Fundamental_Configuration_Layers ProfileID = gid_Brand_Profile_Fundamental_Ini; ModuleID = gid_Module_Root_Brand; Section = "Bootstrap"; Key = "CONFIGURATION_LAYERS"; -#if defined WNT - Value = "xcsxcu:${BRAND_BASE_DIR}/" LIBO_SHARE_FOLDER "/registry winreg: res:${BRAND_BASE_DIR}/" LIBO_SHARE_FOLDER "/registry bundledext:${${BRAND_BASE_DIR}/" LIBO_ETC_FOLDER "/" PROFILENAME(louno) ":BUNDLED_EXTENSIONS_USER}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini sharedext:${${BRAND_BASE_DIR}/" LIBO_ETC_FOLDER "/" PROFILENAME(louno) ":SHARED_EXTENSIONS_USER}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini userext:${${BRAND_BASE_DIR}/" LIBO_ETC_FOLDER "/" PROFILENAME(louno) ":UNO_USER_PACKAGES_CACHE}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini user:${$BRAND_BASE_DIR/" LIBO_ETC_FOLDER "/" PROFILENAME(bootstrap) ":UserInstallation}/user/registrymodifications.xcu"; -#else - Value = "xcsxcu:${BRAND_BASE_DIR}/" LIBO_SHARE_FOLDER "/registry res:${BRAND_BASE_DIR}/" LIBO_SHARE_FOLDER "/registry bundledext:${${BRAND_BASE_DIR}/" LIBO_ETC_FOLDER "/" PROFILENAME(louno) ":BUNDLED_EXTENSIONS_USER}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini sharedext:${${BRAND_BASE_DIR}/" LIBO_ETC_FOLDER "/" PROFILENAME(louno) ":SHARED_EXTENSIONS_USER}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini userext:${${BRAND_BASE_DIR}/" LIBO_ETC_FOLDER "/" PROFILENAME(louno) ":UNO_USER_PACKAGES_CACHE}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini user:${$BRAND_BASE_DIR/" LIBO_ETC_FOLDER "/" PROFILENAME(bootstrap) ":UserInstallation}/user/registrymodifications.xcu"; -#endif + Value = "xcsxcu:${BRAND_BASE_DIR}/" LIBO_SHARE_FOLDER "/registry res:${BRAND_BASE_DIR}/" LIBO_SHARE_FOLDER "/registry" CONFIGURATION_LAYERS_WINREG " bundledext:${${BRAND_BASE_DIR}/" LIBO_ETC_FOLDER "/" PROFILENAME(louno) ":BUNDLED_EXTENSIONS_USER}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini sharedext:${${BRAND_BASE_DIR}/" LIBO_ETC_FOLDER "/" PROFILENAME(louno) ":SHARED_EXTENSIONS_USER}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini userext:${${BRAND_BASE_DIR}/" LIBO_ETC_FOLDER "/" PROFILENAME(louno) ":UNO_USER_PACKAGES_CACHE}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini " CONFIGURATION_LAYERS_WINUSERREG " user:${$BRAND_BASE_DIR/" LIBO_ETC_FOLDER "/" PROFILENAME(bootstrap) ":UserInstallation}/user/registrymodifications.xcu"; End +#undef CONFIGURATION_LAYERS_WINREG #if !defined MACOSX ProfileItem gid_Brand_Profileitem_Redirect_Ure_Bootstrap Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/crash-1.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/crash-1.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/crash-2.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/crash-2.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/crash-3.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/crash-3.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-10.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-10.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-11.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-11.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-12.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-12.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-13.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-13.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-14.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-14.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-15.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-15.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-16.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-16.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-17.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-17.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-18.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-18.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-19.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-19.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-1.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-1.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-20.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-20.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-21.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-21.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-2.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-2.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-3.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-3.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-4.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-4.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-5.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-5.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-6.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-6.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-7.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-7.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-8.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-8.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/ppt/pass/hang-9.ppt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-9.ppt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sd/qa/unit/data/pptx/tdf93830.pptx and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sd/qa/unit/data/pptx/tdf93830.pptx differ diff -Nru libreoffice-5.0.1~rc2/sd/qa/unit/import-tests.cxx libreoffice-5.0.2~rc2/sd/qa/unit/import-tests.cxx --- libreoffice-5.0.1~rc2/sd/qa/unit/import-tests.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sd/qa/unit/import-tests.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -104,6 +104,7 @@ void testBulletSuffix(); void testBnc910045(); void testRowHeight(); + void testTdf93830(); CPPUNIT_TEST_SUITE(SdImportTest); @@ -143,6 +144,7 @@ CPPUNIT_TEST(testBulletSuffix); CPPUNIT_TEST(testBnc910045); CPPUNIT_TEST(testRowHeight); + CPPUNIT_TEST(testTdf93830); CPPUNIT_TEST_SUITE_END(); }; @@ -1200,6 +1202,29 @@ CPPUNIT_ASSERT_EQUAL( sal_Int32(508), nHeight); } +void SdImportTest::testTdf93830() +{ + // Text shape offset was ignored + sd::DrawDocShellRef xDocShRef = loadURL(getURLFromSrc("/sd/qa/unit/data/pptx/tdf93830.pptx"), PPTX); + + uno::Reference< drawing::XDrawPagesSupplier > xDoc( + xDocShRef->GetDoc()->getUnoModel(), uno::UNO_QUERY_THROW ); + + uno::Reference< drawing::XDrawPage > xPage( + xDoc->getDrawPages()->getByIndex(0), uno::UNO_QUERY_THROW ); + + // Get the first text box from group shape + uno::Reference< container::XIndexAccess > xShape( xPage->getByIndex(0), uno::UNO_QUERY ); + uno::Reference< beans::XPropertySet > xPropSet( xShape->getByIndex(2), uno::UNO_QUERY ); + CPPUNIT_ASSERT_MESSAGE( "no textbox shape", xPropSet.is() ); + + sal_Int32 nTextLeftDistance = 0; + xPropSet->getPropertyValue( "TextLeftDistance" ) >>= nTextLeftDistance; + CPPUNIT_ASSERT_EQUAL(sal_Int32(4152), nTextLeftDistance); + + xDocShRef->DoClose(); +} + CPPUNIT_TEST_SUITE_REGISTRATION(SdImportTest); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-5.0.1~rc2/sd/source/filter/ppt/pptin.cxx libreoffice-5.0.2~rc2/sd/source/filter/ppt/pptin.cxx --- libreoffice-5.0.1~rc2/sd/source/filter/ppt/pptin.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sd/source/filter/ppt/pptin.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -279,7 +279,6 @@ if ( nSlideCount && pSection->GetProperty( PID_HEADINGPAIR, aPropItem ) ) { sal_uInt32 nSlideTitleIndex = 0, nSlideTitleCount = 0; - sal_uInt32 i, nTemp; OUString aUString; @@ -290,13 +289,14 @@ { nVecCount >>= 1; sal_uInt32 nEntryCount = 0; - for ( i = 0; i < nVecCount; i++ ) + for (sal_uInt32 i = 0; i < nVecCount; ++i) { if ( !aPropItem.Read( aUString, VT_EMPTY, false ) ) break; aPropItem.ReadUInt32( nType ); if ( ( nType != VT_I4 ) && ( nType != VT_UI4 ) ) break; + sal_uInt32 nTemp(0); aPropItem.ReadUInt32( nTemp ); if ( aUString == "Slide Titles" || aUString == "Folientitel" ) { @@ -311,17 +311,33 @@ aPropItem.ReadUInt32( nType ) .ReadUInt32( nVecCount ); - if ( ( nVecCount >= ( nSlideTitleIndex + nSlideTitleCount ) ) - && ( nType == ( VT_LPSTR | VT_VECTOR ) ) ) + bool bVecOk = ( ( nVecCount >= (nSlideTitleIndex + nSlideTitleCount) ) + && ( nType == ( VT_LPSTR | VT_VECTOR ) ) ); + + if (bVecOk) { - for ( i = 0; i != nSlideTitleIndex; i++ ) + for (sal_uInt32 i = 0; i != nSlideTitleIndex; ++i) { - aPropItem.ReadUInt32( nTemp ); - aPropItem.SeekRel( nTemp ); + sal_uInt32 nTemp(0); + aPropItem.ReadUInt32(nTemp); + if (!aPropItem.good()) + { + bVecOk = false; + break; + } + auto nPos = aPropItem.Tell() + nTemp; + if (nPos != aPropItem.Seek(nPos)) + { + bVecOk = false; + break; + } } - for ( i = 0; i < nSlideTitleCount; i++ ) + } + if (bVecOk) + { + for (sal_uInt32 i = 0; i < nSlideTitleCount; ++i) { - if ( !aPropItem.Read( aUString, nType, false ) ) + if (!aPropItem.Read(aUString, nType, false)) break; OUString aString( aUString ); @@ -520,7 +536,8 @@ break; rStCtrl.SeekRel( 8 ); rStCtrl.ReadUInt32( pPtr->nIndex ); - aHyperE.SeekToEndOfRecord( rStCtrl ); + if (!aHyperE.SeekToEndOfRecord(rStCtrl)) + break; } } } @@ -726,11 +743,17 @@ PptSlidePersistEntry* pE = pPersist; while( ( pE->aSlideAtom.nFlags & 4 ) && pE->aSlideAtom.nMasterId ) { - sal_uInt16 nNextMaster = pMasterPages->FindPage( pE->aSlideAtom.nMasterId ); + auto nOrigMasterId = pE->aSlideAtom.nMasterId; + sal_uInt16 nNextMaster = pMasterPages->FindPage(nOrigMasterId); if ( nNextMaster == PPTSLIDEPERSIST_ENTRY_NOTFOUND ) break; else pE = &(*pList)[ nNextMaster ]; + if (pE->aSlideAtom.nMasterId == nOrigMasterId) + { + SAL_WARN("filter.ms", "loop in atom chain"); + break; + } } SdrObject* pObj = ImportPageBackgroundObject( *pMPage, pE->nBackgroundOffset, true ); // import background if ( pObj ) @@ -742,7 +765,8 @@ DffRecordHeader aPageHd; if ( SeekToAktPage( &aPageHd ) ) { - while( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < aPageHd.GetRecEndFilePos() ) ) + auto nEndRecPos = SanitizeEndPos(rStCtrl, aPageHd.GetRecEndFilePos()); + while( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < nEndRecPos ) ) { DffRecordHeader aHd; ReadDffRecordHeader( rStCtrl, aHd ); @@ -763,7 +787,8 @@ if ( SeekToRec( rStCtrl, DFF_msofbtSpgrContainer, nEscherF002End, &aEscherObjListHd ) ) { sal_uInt32 nObjCount = 0; - while( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < aEscherObjListHd.GetRecEndFilePos() ) ) + auto nListEndRecPos = SanitizeEndPos(rStCtrl, aEscherObjListHd.GetRecEndFilePos()); + while( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < nListEndRecPos ) ) { DffRecordHeader aHd2; ReadDffRecordHeader( rStCtrl, aHd2 ); @@ -772,7 +797,8 @@ if ( nObjCount++ ) // skipping the first object { Rectangle aEmpty; - aHd2.SeekToBegOfRecord( rStCtrl ); + if (!aHd2.SeekToBegOfRecord( rStCtrl )) + break; SdrObject* pImpObj = ImportObj( rStCtrl, (void*)&aProcessData, aEmpty, aEmpty ); if ( pImpObj ) { @@ -781,7 +807,8 @@ } } } - aHd2.SeekToEndOfRecord( rStCtrl ); + if (!aHd2.SeekToEndOfRecord(rStCtrl)) + break; } } } @@ -794,7 +821,8 @@ DffRecordHeader aProgTagHd; if ( SeekToContentOfProgTag( 10, rStCtrl, aPageHd, aProgTagHd ) ) { - while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < aProgTagHd.GetRecEndFilePos() ) ) + auto nTagEndRecPos = SanitizeEndPos(rStCtrl, aProgTagHd.GetRecEndFilePos()); + while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < nTagEndRecPos ) ) { DffRecordHeader aProgTagContentHd; ReadDffRecordHeader( rStCtrl, aProgTagContentHd ); @@ -808,13 +836,19 @@ } break; } - aProgTagContentHd.SeekToEndOfRecord( rStCtrl ); + if (!aProgTagContentHd.SeekToEndOfRecord(rStCtrl)) + break; } } } break; } - aHd.SeekToEndOfRecord( rStCtrl ); + bool bSuccess = aHd.SeekToEndOfRecord(rStCtrl); + if (!bSuccess) + { + SAL_WARN("filter.ms", "Count not seek to end of record"); + break; + } } } rStCtrl.Seek( nFPosMerk ); @@ -896,7 +930,8 @@ bool bNewAnimationsUsed = false; aPageHd.SeekToContent( rStCtrl ); - while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < aPageHd.GetRecEndFilePos() ) ) + auto nEndRecPos = SanitizeEndPos(rStCtrl, aPageHd.GetRecEndFilePos()); + while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < nEndRecPos ) ) { DffRecordHeader aHd; ReadDffRecordHeader( rStCtrl, aHd ); @@ -907,7 +942,8 @@ DffRecordHeader aProgTagHd; if ( SeekToContentOfProgTag( 10, rStCtrl, aPageHd, aProgTagHd ) ) { - while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < aProgTagHd.GetRecEndFilePos() ) ) + auto nHdEndRecPos = SanitizeEndPos(rStCtrl, aProgTagHd.GetRecEndFilePos()); + while ( ( rStCtrl.GetError() == 0 ) && ( rStCtrl.Tell() < nHdEndRecPos ) ) { DffRecordHeader aProgTagContentHd; ReadDffRecordHeader( rStCtrl, aProgTagContentHd ); @@ -927,7 +963,8 @@ case PPT_PST_SlideTime10Atom : // ??? don't know, this atom is always 8 bytes big break; // and is appearing in nearly every l10 progtag } - aProgTagContentHd.SeekToEndOfRecord( rStCtrl ); + if (!aProgTagContentHd.SeekToEndOfRecord(rStCtrl)) + break; } } } @@ -939,7 +976,8 @@ break; } - aHd.SeekToEndOfRecord( rStCtrl ); + if (!aHd.SeekToEndOfRecord(rStCtrl)) + break; } ImportPageEffect( pPage, bNewAnimationsUsed ); } @@ -1480,7 +1518,7 @@ DffRecordHeader aPageRecHd; if ( SeekToAktPage( &aPageRecHd ) ) { - sal_uLong nPageRecEnd = aPageRecHd.GetRecEndFilePos(); + sal_uLong nPageRecEnd = SanitizeEndPos(rStCtrl, aPageRecHd.GetRecEndFilePos()); bool bTryTwice = ( eAktPageKind == PPT_SLIDEPAGE ); bool bSSSlideInfoAtom = false; @@ -1759,7 +1797,8 @@ } } } - aHd.SeekToEndOfRecord( rStCtrl ); + if (!aHd.SeekToEndOfRecord(rStCtrl)) + break; } if ( bTryTwice && !bSSSlideInfoAtom ) { @@ -1773,12 +1812,12 @@ assert( !pPageList->is_null( nMasterNum ) ); const PptSlidePersistEntry& rE = (*pPageList)[ nMasterNum ]; sal_uInt32 nOfs = rE.aPersistAtom.nReserved; - if ( nOfs ) - { - rStCtrl.Seek( nOfs ); - nPageRecEnd = nOfs + 16; - continue; - } + if ( nOfs ) + { + rStCtrl.Seek( nOfs ); + nPageRecEnd = nOfs + 16; + continue; + } } } @@ -1921,7 +1960,10 @@ } } if ( !bDone ) - aSoundRecHd.SeekToEndOfRecord( rStCtrl ); + { + if (!aSoundRecHd.SeekToEndOfRecord(rStCtrl)) + break; + } } } } @@ -1937,7 +1979,8 @@ if ( pHd ) { pHd->SeekToContent( rStCtrl ); - while ( ( rStCtrl.Tell() < pHd->GetRecEndFilePos() ) && aRetVal.isEmpty() ) + auto nEndRecPos = SanitizeEndPos(rStCtrl, pHd->GetRecEndFilePos()); + while ( ( rStCtrl.Tell() < nEndRecPos ) && aRetVal.isEmpty() ) { DffRecordHeader aHdMovie; ReadDffRecordHeader( rStCtrl, aHdMovie ); @@ -1957,7 +2000,8 @@ if ( nRef == nMediaRef ) { aExVideoHd.SeekToContent( rStCtrl ); - while( rStCtrl.Tell() < aExVideoHd.GetRecEndFilePos() ) + auto nHdEndRecPos = SanitizeEndPos(rStCtrl, aExVideoHd.GetRecEndFilePos()); + while (rStCtrl.Tell() < nHdEndRecPos) { DffRecordHeader aHd; ReadDffRecordHeader( rStCtrl, aHd ); @@ -1979,7 +2023,8 @@ } break; } - aHd.SeekToEndOfRecord( rStCtrl ); + if (!aHd.SeekToEndOfRecord(rStCtrl)) + break; } break; } @@ -1988,7 +2033,8 @@ } break; } - aHdMovie.SeekToEndOfRecord( rStCtrl ); + if (!aHdMovie.SeekToEndOfRecord(rStCtrl)) + break; } } return aRetVal; @@ -2532,7 +2578,7 @@ DffRecordHeader& rHdClientData = *maShapeRecords.Current(); while( true ) { - sal_uInt32 nClientDataLen = rHdClientData.GetRecEndFilePos(); + sal_uInt32 nClientDataLen = SanitizeEndPos(rSt, rHdClientData.GetRecEndFilePos()); DffRecordHeader aHd; do { @@ -2643,7 +2689,8 @@ } break; } - aHd.SeekToEndOfRecord( rSt ); + if (!aHd.SeekToEndOfRecord(rSt)) + break; } while( ( rSt.GetError() == 0 ) && ( rSt.Tell() < nClientDataLen ) ); diff -Nru libreoffice-5.0.1~rc2/sd/source/filter/ppt/propread.cxx libreoffice-5.0.2~rc2/sd/source/filter/ppt/propread.cxx --- libreoffice-5.0.1~rc2/sd/source/filter/ppt/propread.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sd/source/filter/ppt/propread.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -73,7 +73,7 @@ bool PropItem::Read( OUString& rString, sal_uInt32 nStringType, bool bAlign ) { - sal_uInt32 i, nItemSize, nType, nItemPos; + sal_uInt32 nType, nItemPos; bool bRetValue = false; nItemPos = Tell(); @@ -86,14 +86,24 @@ else nType = nStringType & VT_TYPEMASK; - nItemSize = 0; // Initialize in case stream fails. - ReadUInt32( nItemSize ); + sal_uInt32 nItemSize(0); // Initialize in case stream fails. + ReadUInt32(nItemSize); switch( nType ) { case VT_LPSTR : { - if ( nItemSize ) + if (nItemSize) + { + auto nMaxSizePossible = remainingSize(); + if (nItemSize > nMaxSizePossible) + { + SAL_WARN("sd.filter", "String of Len " << nItemSize << " claimed, only " << nMaxSizePossible << " possible"); + nItemSize = nMaxSizePossible; + } + } + + if (nItemSize) { try { @@ -104,7 +114,7 @@ if ( nItemSize > 1 ) { sal_Unicode* pWString = reinterpret_cast(pString); - for ( i = 0; i < nItemSize; i++ ) + for (sal_uInt32 i = 0; i < nItemSize; ++i) ReadUInt16( pWString[ i ] ); rString = OUString(pWString, lcl_getMaxSafeStrLen(nItemSize)); } @@ -138,14 +148,24 @@ case VT_LPWSTR : { - if ( nItemSize ) + if (nItemSize) + { + auto nMaxSizePossible = remainingSize() / sizeof(sal_Unicode); + if (nItemSize > nMaxSizePossible) + { + SAL_WARN("sd.filter", "String of Len " << nItemSize << " claimed, only " << nMaxSizePossible << " possible"); + nItemSize = nMaxSizePossible; + } + } + + if (nItemSize) { try { sal_Unicode* pString = new sal_Unicode[ nItemSize ]; - for ( i = 0; i < nItemSize; i++ ) + for (sal_uInt32 i = 0; i < nItemSize; ++i) ReadUInt16( pString[ i ] ); - if ( pString[ i - 1 ] == 0 ) + if ( pString[ nItemSize - 1 ] == 0 ) { if ( (sal_uInt16)nItemSize > 1 ) rString = OUString(pString, lcl_getMaxSafeStrLen(nItemSize)); @@ -306,7 +326,7 @@ void Section::Read( SotStorageStream *pStrm ) { - sal_uInt32 i, nSecOfs, nSecSize, nPropCount, nPropId, nPropOfs, nPropType, nPropSize, nCurrent, nVectorCount, nTemp, nStrmSize; + sal_uInt32 nSecOfs, nPropSize, nStrmSize; nSecOfs = pStrm->Tell(); pStrm->Seek( STREAM_SEEK_TO_END ); @@ -314,16 +334,22 @@ pStrm->Seek( nSecOfs ); mnTextEnc = RTL_TEXTENCODING_MS_1252; + sal_uInt32 nSecSize(0), nPropCount(0); pStrm->ReadUInt32( nSecSize ).ReadUInt32( nPropCount ); - while( nPropCount-- && ( pStrm->GetError() == ERRCODE_NONE ) ) + while (nPropCount--) { - pStrm->ReadUInt32( nPropId ).ReadUInt32( nPropOfs ); - nCurrent = pStrm->Tell(); - pStrm->Seek( nPropOfs + nSecOfs ); + sal_uInt32 nPropId(0), nPropOfs(0); + pStrm->ReadUInt32(nPropId).ReadUInt32(nPropOfs); + if (!pStrm->good()) + break; + auto nCurrent = pStrm->Tell(); + sal_uInt64 nOffset = nPropOfs + nSecOfs; + if (nOffset != pStrm->Seek(nOffset)) + break; if ( nPropId ) // do not read dictionary { - - pStrm->ReadUInt32( nPropType ); + sal_uInt32 nPropType(0), nVectorCount(0); + pStrm->ReadUInt32(nPropType); nPropSize = 4; @@ -338,13 +364,14 @@ bool bVariant = ( nPropType == VT_VARIANT ); - for ( i = 0; nPropSize && ( i < nVectorCount ); i++ ) + for (sal_uInt32 i = 0; nPropSize && ( i < nVectorCount ); ++i) { if ( bVariant ) { pStrm->ReadUInt32( nPropType ); nPropSize += 4; } + sal_uInt32 nTemp(0); switch( nPropType ) { case VT_UI1 : @@ -412,7 +439,11 @@ if ( nPropSize ) { if ( ( nVectorCount - i ) > 1 ) - pStrm->Seek( nPropOfs + nSecOfs + nPropSize ); + { + nOffset = nPropOfs + nSecOfs + nPropSize; + if (nOffset != pStrm->Seek(nOffset)) + break; + } } else break; @@ -429,7 +460,7 @@ if( nPropSize > nSecSize - nSecOfs ) nPropSize = nSecSize - nSecOfs; sal_uInt8* pBuf = new sal_uInt8[ nPropSize ]; - pStrm->Read( pBuf, nPropSize ); + nPropSize = pStrm->Read(pBuf, nPropSize); AddProperty( nPropId, pBuf, nPropSize ); delete[] pBuf; } @@ -438,11 +469,11 @@ PropItem aPropItem; if ( GetProperty( 1, aPropItem ) ) { - sal_uInt16 nCodePage; aPropItem.ReadUInt32( nPropType ); if ( nPropType == VT_I2 ) { - aPropItem.ReadUInt16( nCodePage ); + sal_uInt16 nCodePage(0); + aPropItem.ReadUInt16(nCodePage); if ( nCodePage == 1200 ) { @@ -464,14 +495,25 @@ } else { - sal_uInt32 nDictCount, nSize; - pStrm->ReadUInt32( nDictCount ); - for ( i = 0; i < nDictCount; i++ ) + sal_uInt32 nDictCount(0); + pStrm->ReadUInt32(nDictCount); + auto nMaxRecordsPossible = pStrm->remainingSize() / (sizeof(sal_uInt32)*2); + if (nDictCount > nMaxRecordsPossible) { + SAL_WARN("sd.filter", "Dictionary count of " << nDictCount << " claimed, only " << nMaxRecordsPossible << " possible"); + nDictCount = nMaxRecordsPossible; + } + for (sal_uInt32 i = 0; i < nDictCount; ++i) + { + sal_uInt32 nSize(0); pStrm->ReadUInt32( nSize ).ReadUInt32( nSize ); - pStrm->SeekRel( nSize ); + if (!pStrm->good()) + break; + sal_uInt64 nPos = pStrm->Tell() + nSize; + if (nPos != pStrm->Seek(nPos)) + break; } - nSize = pStrm->Tell(); + sal_uInt32 nSize = pStrm->Tell(); pStrm->Seek( nPropOfs + nSecOfs ); nSize -= pStrm->Tell(); if ( nSize > nStrmSize ) @@ -480,11 +522,11 @@ break; } sal_uInt8* pBuf = new sal_uInt8[ nSize ]; - pStrm->Read( pBuf, nSize ); + nSize = pStrm->Read(pBuf, nSize); AddProperty( 0xffffffff, pBuf, nSize ); delete[] pBuf; } - pStrm->Seek( nCurrent ); + pStrm->Seek(nCurrent); } pStrm->Seek( nSecOfs + nSecSize ); } diff -Nru libreoffice-5.0.1~rc2/sd/source/ui/func/futext.cxx libreoffice-5.0.2~rc2/sd/source/ui/func/futext.cxx --- libreoffice-5.0.1~rc2/sd/source/ui/func/futext.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sd/source/ui/func/futext.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -124,9 +124,9 @@ SID_TEXTDIRECTION_TOP_TO_BOTTOM, // 10908 SID_ATTR_PARA_LEFT_TO_RIGHT, // 10950 SID_ATTR_PARA_RIGHT_TO_LEFT, // 10951 + SID_PARASPACE_INCREASE, // 11145 + SID_PARASPACE_DECREASE, // 11146 FN_NUM_BULLET_ON, // 20138 - SID_PARASPACE_INCREASE, // 27346 - SID_PARASPACE_DECREASE, // 27347 0 }; TYPEINIT1( FuText, FuConstruct ); diff -Nru libreoffice-5.0.1~rc2/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx libreoffice-5.0.2~rc2/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx --- libreoffice-5.0.1~rc2/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -179,7 +179,8 @@ case SID_SLIDE_TRANSITIONS_PANEL: { - // Make the slide transition panel visible in the sidebar. + // First make sure that the sidebar is visible + pShell->GetViewFrame()->ShowChildWindow(SID_SIDEBAR); ::sfx2::sidebar::Sidebar::ShowPanel( OUString("SlideTransitionPanel"), pShell->GetViewFrame()->GetFrame().GetFrameInterface()); diff -Nru libreoffice-5.0.1~rc2/sd/source/ui/table/TableDesignPane.cxx libreoffice-5.0.2~rc2/sd/source/ui/table/TableDesignPane.cxx --- libreoffice-5.0.1~rc2/sd/source/ui/table/TableDesignPane.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sd/source/ui/table/TableDesignPane.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -710,7 +710,7 @@ boost::shared_ptr< CellInfo > xBorderInfo( aMatrix[nBorderCol][nBorderRow] ); if( xBorderInfo.get() ) { - const ::editeng::SvxBorderLine* pBorderLine2 = xBorderInfo->maBorder.GetLine(static_cast(static_cast(nLine)^1^1)); + const ::editeng::SvxBorderLine* pBorderLine2 = xBorderInfo->maBorder.GetLine(static_cast(static_cast(nLine)^1)); if( pBorderLine2 && pBorderLine2->HasPriority(*pBorderLine) ) continue; // other border line wins } diff -Nru libreoffice-5.0.1~rc2/sd/source/ui/table/tablefunction.cxx libreoffice-5.0.2~rc2/sd/source/ui/table/tablefunction.cxx --- libreoffice-5.0.1~rc2/sd/source/ui/table/tablefunction.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sd/source/ui/table/tablefunction.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -207,8 +207,8 @@ } else { - // Make the table design panel visible (expand it) in the - // sidebar. + // First make sure that the sidebar is visible + GetViewFrame()->ShowChildWindow(SID_SIDEBAR); ::sfx2::sidebar::Sidebar::ShowPanel( OUString("ImpressTableDesignPanel"), GetViewFrame()->GetFrame().GetFrameInterface()); diff -Nru libreoffice-5.0.1~rc2/sd/source/ui/view/DocumentRenderer.cxx libreoffice-5.0.2~rc2/sd/source/ui/view/DocumentRenderer.cxx --- libreoffice-5.0.1~rc2/sd/source/ui/view/DocumentRenderer.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sd/source/ui/view/DocumentRenderer.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1495,14 +1495,14 @@ AutoLayout eLayout = AUTOLAYOUT_HANDOUT6; switch (nSlidesPerHandout) { + case 0: eLayout = AUTOLAYOUT_NONE; break; // AUTOLAYOUT_HANDOUT1; break; case 1: eLayout = AUTOLAYOUT_HANDOUT1; break; case 2: eLayout = AUTOLAYOUT_HANDOUT2; break; case 3: eLayout = AUTOLAYOUT_HANDOUT3; break; case 4: eLayout = AUTOLAYOUT_HANDOUT4; break; - case 9: eLayout = AUTOLAYOUT_HANDOUT9; break; default: - case 0: - case 6: break; // use the default + case 6: eLayout = AUTOLAYOUT_HANDOUT6; break; + case 9: eLayout = AUTOLAYOUT_HANDOUT9; break; } if( !mrBase.GetDocument() ) diff -Nru libreoffice-5.0.1~rc2/sd/source/ui/view/DocumentRenderer.src libreoffice-5.0.2~rc2/sd/source/ui/view/DocumentRenderer.src --- libreoffice-5.0.1~rc2/sd/source/ui/view/DocumentRenderer.src 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sd/source/ui/view/DocumentRenderer.src 2015-09-17 13:33:12.000000000 +0000 @@ -56,7 +56,7 @@ { ItemList [ en-US ] = { - < "Default" ; > ; + < "According to layout" ; > ; < "1" ; > ; < "2" ; > ; < "3" ; > ; diff -Nru libreoffice-5.0.1~rc2/sd/source/ui/view/ViewShellImplementation.cxx libreoffice-5.0.2~rc2/sd/source/ui/view/ViewShellImplementation.cxx --- libreoffice-5.0.1~rc2/sd/source/ui/view/ViewShellImplementation.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sd/source/ui/view/ViewShellImplementation.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -119,8 +119,8 @@ if (!pArgs || pArgs->Count() == 1 || pArgs->Count() == 2 ) { - - // Make the layout menu visible in the tool pane. + // First make sure that the sidebar is visible + mrViewShell.GetViewFrame()->ShowChildWindow(SID_SIDEBAR); sfx2::sidebar::Sidebar::ShowPanel( OUString("ImpressLayoutsPanel"), mrViewShell.GetViewFrame()->GetFrame().GetFrameInterface()); diff -Nru libreoffice-5.0.1~rc2/sfx2/source/doc/oleprops.cxx libreoffice-5.0.2~rc2/sfx2/source/doc/oleprops.cxx --- libreoffice-5.0.1~rc2/sfx2/source/doc/oleprops.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sfx2/source/doc/oleprops.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1226,19 +1226,22 @@ // read sections sal_Size nSectPosPos = rStrm.Tell(); - for( sal_Int32 nSectIdx = 0; (nSectIdx < nSectCount) && (rStrm.GetErrorCode() == SVSTREAM_OK) && !rStrm.IsEof(); ++nSectIdx ) + for (sal_Int32 nSectIdx = 0; nSectIdx < nSectCount; ++nSectIdx) { // read section guid/position pair - rStrm.Seek( nSectPosPos ); + rStrm.Seek(nSectPosPos); SvGlobalName aSectGuid; - sal_uInt32 nSectPos; rStrm >> aSectGuid; - rStrm.ReadUInt32( nSectPos ); + sal_uInt32 nSectPos(0); + rStrm.ReadUInt32(nSectPos); + if (!rStrm.good()) + break; nSectPosPos = rStrm.Tell(); // read section - rStrm.Seek( static_cast< sal_Size >( nSectPos ) ); - if( rStrm.GetErrorCode() == SVSTREAM_OK ) - LoadObject( rStrm, AddSection( aSectGuid ) ); + rStrm.Seek(nSectPos); + LoadObject(rStrm, AddSection(aSectGuid)); + if (!rStrm.good()) + break; } } diff -Nru libreoffice-5.0.1~rc2/sfx2/source/sidebar/SidebarController.cxx libreoffice-5.0.2~rc2/sfx2/source/sidebar/SidebarController.cxx --- libreoffice-5.0.1~rc2/sfx2/source/sidebar/SidebarController.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sfx2/source/sidebar/SidebarController.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -455,20 +455,19 @@ void SidebarController::OpenThenSwitchToDeck ( const ::rtl::OUString& rsDeckId) { - // fdo#67627 Clicking a second time on a Deck icon will close the Deck - if (IsDeckVisible(rsDeckId)) + SfxSplitWindow* pSplitWindow = GetSplitWindow(); + if ( pSplitWindow && !pSplitWindow->IsFadeIn() ) + // tdf#83546 Collapsed sidebar should expand first + pSplitWindow->FadeIn(); + else if ( IsDeckVisible( rsDeckId ) ) { - // fdo#88241 Summoning an undocked sidebar a second time should close sidebar - if (!GetSplitWindow()) - { - mpParentWindow->Close(); - return; - } - else - { + if ( pSplitWindow ) + // tdf#67627 Clicking a second time on a Deck icon will close the Deck RequestCloseDeck(); - return; - } + else + // tdf#88241 Summoning an undocked sidebar a second time should close sidebar + mpParentWindow->Close(); + return; } RequestOpenDeck(); SwitchToDeck(rsDeckId); diff -Nru libreoffice-5.0.1~rc2/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx libreoffice-5.0.2~rc2/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx --- libreoffice-5.0.1~rc2/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -228,7 +228,7 @@ void impl_finishTransition(); private: - boost::shared_ptr mpContext; + rtl::Reference mpContext; /** OpenGL handle to the leaving slide's texture */ @@ -368,7 +368,7 @@ sal_Int64 aVal = 0; aDeviceParams[1] >>= aVal; - mpContext = boost::make_shared(); + mpContext = OpenGLContext::Create(); mpContext->requestLegacyContext(); if( !mpContext->init( reinterpret_cast< vcl::Window* >( aVal ) ) ) @@ -1185,6 +1185,7 @@ TimerContext aTimerContext("texture creation"); #endif + mpContext->makeCurrent(); prepareEnvironment(); const OGLFormat* pFormat = NULL; @@ -1230,11 +1231,12 @@ if (isDisposed() || !mbValidOpenGLContext || mpTransition->getSettings().mnRequiredGLVersion > mnGLVersion) return; - CHECK_GL_ERROR(); mpContext->makeCurrent(); + CHECK_GL_ERROR(); glEnable(GL_DEPTH_TEST); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + CHECK_GL_ERROR(); if(mpTransition) { @@ -1277,8 +1279,8 @@ void OGLTransitionerImpl::disposeTextures() { - CHECK_GL_ERROR(); mpContext->makeCurrent(); + CHECK_GL_ERROR(); #if defined( GLX_EXT_texture_from_pixmap ) const GLWindow& rGLWindow(mpContext->getOpenGLWindow()); @@ -1323,7 +1325,9 @@ { impl_finishTransition(); disposeTextures(); - mpContext.reset(); + if( mpContext.is() ) + mpContext->dispose(); + mpContext.clear(); } // we are about to be disposed (someone call dispose() on us) @@ -1350,7 +1354,7 @@ #endif #if defined( UNX ) && !defined( MACOSX ) - if( mbRestoreSync && bool(mpContext) ) { + if( mbRestoreSync && bool(mpContext.is()) ) { // try to reestablish synchronize state char* sal_synchronize = getenv("SAL_SYNCHRONIZE"); XSynchronize( mpContext->getOpenGLWindow().dpy, sal_synchronize && *sal_synchronize == '1' ); diff -Nru libreoffice-5.0.1~rc2/src/fetch.log libreoffice-5.0.2~rc2/src/fetch.log --- libreoffice-5.0.1~rc2/src/fetch.log 2015-08-24 15:25:45.000000000 +0000 +++ libreoffice-5.0.2~rc2/src/fetch.log 2015-09-18 10:47:55.000000000 +0000 @@ -1,328 +1,328 @@ -Mon Aug 24 15:19:38 UTC 2015 +Fri Sep 18 10:40:45 UTC 2015 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 360k 100 360k 0 0 967k 0 --:--:-- --:--:-- --:--:-- 969k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 360k 3 14273 0 0 111k 0 0:00:03 --:--:-- 0:00:03 110k 100 360k 100 360k 0 0 715k 0 --:--:-- --:--:-- --:--:-- 714k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 66 512k 66 339k 0 0 675k 0 --:--:-- --:--:-- --:--:-- 675k 100 512k 100 512k 0 0 920k 0 --:--:-- --:--:-- --:--:-- 919k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 83 512k 83 430k 0 0 769k 0 --:--:-- --:--:-- --:--:-- 769k 100 512k 100 512k 0 0 782k 0 --:--:-- --:--:-- --:--:-- 781k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 70 1838k 70 1297k 0 0 1474k 0 0:00:01 --:--:-- 0:00:01 1474k 100 1838k 100 1838k 0 0 1478k 0 0:00:01 0:00:01 --:--:-- 1479k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 39 1838k 39 731k 0 0 840k 0 0:00:02 --:--:-- 0:00:02 839k 88 1838k 88 1626k 0 0 869k 0 0:00:02 0:00:01 0:00:01 869k 100 1838k 100 1838k 0 0 890k 0 0:00:02 0:00:02 --:--:-- 890k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 721k 100 721k 0 0 1316k 0 --:--:-- --:--:-- --:--:-- 1317k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 90 721k 90 652k 0 0 845k 0 --:--:-- --:--:-- --:--:-- 845k 100 721k 100 721k 0 0 835k 0 --:--:-- --:--:-- --:--:-- 834k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 184k 100 184k 0 0 775k 0 --:--:-- --:--:-- --:--:-- 773k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 184k 100 184k 0 0 591k 0 --:--:-- --:--:-- --:--:-- 592k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 86 956k 86 823k 0 0 1105k 0 --:--:-- --:--:-- --:--:-- 1104k 100 956k 100 956k 0 0 1129k 0 --:--:-- --:--:-- --:--:-- 1129k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 39 956k 39 379k 0 0 709k 0 0:00:01 --:--:-- 0:00:01 708k 100 956k 100 956k 0 0 839k 0 0:00:01 0:00:01 --:--:-- 840k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 853k 100 853k 0 0 1378k 0 --:--:-- --:--:-- --:--:-- 1379k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 14 853k 14 124k 0 0 307k 0 0:00:02 --:--:-- 0:00:02 306k 100 853k 100 853k 0 0 643k 0 0:00:01 0:00:01 --:--:-- 643k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 55.4M 0 53473 0 0 310k 0 0:03:02 --:--:-- 0:03:02 310k 2 55.4M 2 1658k 0 0 1421k 0 0:00:39 0:00:01 0:00:38 1421k 5 55.4M 5 3305k 0 0 1525k 0 0:00:37 0:00:02 0:00:35 1525k 8 55.4M 8 4884k 0 0 1540k 0 0:00:36 0:00:03 0:00:33 1540k 11 55.4M 11 6369k 0 0 1527k 0 0:00:37 0:00:04 0:00:33 1527k 13 55.4M 13 7930k 0 0 1535k 0 0:00:36 0:00:05 0:00:31 1575k 16 55.4M 16 9556k 0 0 1548k 0 0:00:36 0:00:06 0:00:30 1577k 19 55.4M 19 10.9M 0 0 1562k 0 0:00:36 0:00:07 0:00:29 1578k 22 55.4M 22 12.5M 0 0 1569k 0 0:00:36 0:00:08 0:00:28 1587k 25 55.4M 25 14.1M 0 0 1574k 0 0:00:36 0:00:09 0:00:27 1614k 27 55.4M 27 15.3M 0 0 1544k 0 0:00:36 0:00:10 0:00:26 1554k 30 55.4M 30 16.8M 0 0 1548k 0 0:00:36 0:00:11 0:00:25 1549k 31 55.4M 31 17.7M 0 0 1492k 0 0:00:38 0:00:12 0:00:26 1393k 34 55.4M 34 18.8M 0 0 1469k 0 0:00:38 0:00:13 0:00:25 1305k 36 55.4M 36 20.4M 0 0 1481k 0 0:00:38 0:00:14 0:00:24 1309k 39 55.4M 39 22.1M 0 0 1495k 0 0:00:37 0:00:15 0:00:22 1396k 42 55.4M 42 23.8M 0 0 1509k 0 0:00:37 0:00:16 0:00:21 1421k 46 55.4M 46 25.5M 0 0 1522k 0 0:00:37 0:00:17 0:00:20 1594k 49 55.4M 49 27.2M 0 0 1535k 0 0:00:36 0:00:18 0:00:18 1709k 52 55.4M 52 28.9M 0 0 1544k 0 0:00:36 0:00:19 0:00:17 1725k 55 55.4M 55 30.5M 0 0 1552k 0 0:00:36 0:00:20 0:00:16 1725k 58 55.4M 58 32.1M 0 0 1556k 0 0:00:36 0:00:21 0:00:15 1707k 61 55.4M 61 33.8M 0 0 1565k 0 0:00:36 0:00:22 0:00:14 1714k 64 55.4M 64 35.5M 0 0 1571k 0 0:00:36 0:00:23 0:00:13 1700k 67 55.4M 67 37.1M 0 0 1575k 0 0:00:36 0:00:24 0:00:12 1690k 70 55.4M 70 38.8M 0 0 1581k 0 0:00:35 0:00:25 0:00:10 1699k 72 55.4M 72 40.4M 0 0 1581k 0 0:00:35 0:00:26 0:00:09 1687k 75 55.4M 75 42.0M 0 0 1586k 0 0:00:35 0:00:27 0:00:08 1680k 79 55.4M 79 43.8M 0 0 1594k 0 0:00:35 0:00:28 0:00:07 1700k 81 55.4M 81 45.3M 0 0 1593k 0 0:00:35 0:00:29 0:00:06 1681k 83 55.4M 83 46.2M 0 0 1556k 0 0:00:36 0:00:30 0:00:06 1436k 86 55.4M 86 48.2M 0 0 1584k 0 0:00:35 0:00:31 0:00:04 1601k 89 55.4M 89 49.8M 0 0 1585k 0 0:00:35 0:00:32 0:00:03 1578k 92 55.4M 92 51.3M 0 0 1585k 0 0:00:35 0:00:33 0:00:02 1536k 95 55.4M 95 52.8M 0 0 1584k 0 0:00:35 0:00:34 0:00:01 1532k 97 55.4M 97 54.3M 0 0 1582k 0 0:00:35 0:00:35 --:--:-- 1744k 100 55.4M 100 55.4M 0 0 1578k 0 0:00:35 0:00:35 --:--:-- 1537k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 55.4M 1 727k 0 0 720k 0 0:01:18 0:00:01 0:01:17 720k 2 55.4M 2 1644k 0 0 814k 0 0:01:09 0:00:02 0:01:07 814k 4 55.4M 4 2624k 0 0 872k 0 0:01:05 0:00:03 0:01:02 872k 6 55.4M 6 3615k 0 0 897k 0 0:01:03 0:00:04 0:00:59 897k 8 55.4M 8 4568k 0 0 912k 0 0:01:02 0:00:05 0:00:57 914k 9 55.4M 9 5568k 0 0 927k 0 0:01:01 0:00:06 0:00:55 968k 11 55.4M 11 6579k 0 0 939k 0 0:01:00 0:00:07 0:00:53 989k 13 55.4M 13 7625k 0 0 952k 0 0:00:59 0:00:08 0:00:51 1000k 15 55.4M 15 8645k 0 0 959k 0 0:00:59 0:00:09 0:00:50 1009k 17 55.4M 17 9719k 0 0 971k 0 0:00:58 0:00:10 0:00:48 1030k 18 55.4M 18 10.5M 0 0 979k 0 0:00:57 0:00:11 0:00:46 1043k 20 55.4M 20 11.4M 0 0 976k 0 0:00:58 0:00:12 0:00:46 1028k 22 55.4M 22 12.5M 0 0 984k 0 0:00:57 0:00:13 0:00:44 1035k 24 55.4M 24 13.5M 0 0 988k 0 0:00:57 0:00:14 0:00:43 1041k 26 55.4M 26 14.4M 0 0 989k 0 0:00:57 0:00:15 0:00:42 1024k 27 55.4M 27 15.5M 0 0 992k 0 0:00:57 0:00:16 0:00:41 1019k 29 55.4M 29 16.4M 0 0 990k 0 0:00:57 0:00:17 0:00:40 1023k 31 55.4M 31 17.4M 0 0 989k 0 0:00:57 0:00:18 0:00:39 1003k 33 55.4M 33 18.3M 0 0 989k 0 0:00:57 0:00:19 0:00:38 991k 34 55.4M 34 19.3M 0 0 988k 0 0:00:57 0:00:20 0:00:37 985k 36 55.4M 36 20.1M 0 0 983k 0 0:00:57 0:00:21 0:00:36 955k 37 55.4M 37 21.0M 0 0 979k 0 0:00:57 0:00:22 0:00:35 943k 39 55.4M 39 21.8M 0 0 970k 0 0:00:58 0:00:23 0:00:35 903k 40 55.4M 40 22.6M 0 0 964k 0 0:00:58 0:00:24 0:00:34 870k 42 55.4M 42 23.4M 0 0 960k 0 0:00:59 0:00:25 0:00:34 848k 43 55.4M 43 24.0M 0 0 948k 0 0:00:59 0:00:26 0:00:33 803k 44 55.4M 44 24.9M 0 0 945k 0 0:01:00 0:00:27 0:00:33 795k 46 55.4M 46 25.7M 0 0 938k 0 0:01:00 0:00:28 0:00:32 790k 47 55.4M 47 26.4M 0 0 933k 0 0:01:00 0:00:29 0:00:31 784k 49 55.4M 49 27.2M 0 0 928k 0 0:01:01 0:00:30 0:00:31 772k 50 55.4M 50 28.0M 0 0 926k 0 0:01:01 0:00:31 0:00:30 809k 52 55.4M 52 28.8M 0 0 924k 0 0:01:01 0:00:32 0:00:29 808k 53 55.4M 53 29.7M 0 0 923k 0 0:01:01 0:00:33 0:00:28 839k 55 55.4M 55 30.7M 0 0 924k 0 0:01:01 0:00:34 0:00:27 870k 57 55.4M 57 31.6M 0 0 926k 0 0:01:01 0:00:35 0:00:26 909k 58 55.4M 58 32.6M 0 0 929k 0 0:01:01 0:00:36 0:00:25 946k 60 55.4M 60 33.6M 0 0 931k 0 0:01:00 0:00:37 0:00:23 978k 62 55.4M 62 34.6M 0 0 932k 0 0:01:00 0:00:38 0:00:22 991k 64 55.4M 64 35.5M 0 0 933k 0 0:01:00 0:00:39 0:00:21 998k 66 55.4M 66 36.6M 0 0 937k 0 0:01:00 0:00:40 0:00:20 1013k 67 55.4M 67 37.4M 0 0 934k 0 0:01:00 0:00:41 0:00:19 975k 69 55.4M 69 38.4M 0 0 936k 0 0:01:00 0:00:42 0:00:18 970k 70 55.4M 70 39.2M 0 0 935k 0 0:01:00 0:00:43 0:00:17 954k 72 55.4M 72 40.0M 0 0 932k 0 0:01:00 0:00:44 0:00:16 917k 73 55.4M 73 40.9M 0 0 929k 0 0:01:01 0:00:45 0:00:16 868k 74 55.4M 74 41.5M 0 0 925k 0 0:01:01 0:00:46 0:00:15 847k 76 55.4M 76 42.5M 0 0 925k 0 0:01:01 0:00:47 0:00:14 840k 78 55.4M 78 43.3M 0 0 925k 0 0:01:01 0:00:48 0:00:13 844k 80 55.4M 80 44.4M 0 0 927k 0 0:01:01 0:00:49 0:00:12 892k 81 55.4M 81 45.4M 0 0 929k 0 0:01:01 0:00:50 0:00:11 935k 83 55.4M 83 46.3M 0 0 931k 0 0:01:00 0:00:51 0:00:09 988k 85 55.4M 85 47.3M 0 0 931k 0 0:01:00 0:00:52 0:00:08 981k 87 55.4M 87 48.2M 0 0 932k 0 0:01:00 0:00:53 0:00:07 997k 88 55.4M 88 49.1M 0 0 932k 0 0:01:00 0:00:54 0:00:06 978k 90 55.4M 90 50.1M 0 0 933k 0 0:01:00 0:00:55 0:00:05 972k 92 55.4M 92 51.1M 0 0 935k 0 0:01:00 0:00:56 0:00:04 977k 94 55.4M 94 52.1M 0 0 937k 0 0:01:00 0:00:57 0:00:03 995k 95 55.4M 95 53.1M 0 0 938k 0 0:01:00 0:00:58 0:00:02 998k 97 55.4M 97 54.2M 0 0 941k 0 0:01:00 0:00:59 0:00:01 1032k 99 55.4M 99 55.2M 0 0 942k 0 0:01:00 0:01:00 --:--:-- 1039k 100 55.4M 100 55.4M 0 0 942k 0 0:01:00 0:01:00 --:--:-- 1038k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 45 1935k 45 880k 0 0 972k 0 0:00:01 --:--:-- 0:00:01 971k 100 1935k 100 1935k 0 0 1206k 0 0:00:01 0:00:01 --:--:-- 1206k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 26 1935k 26 511k 0 0 830k 0 0:00:02 --:--:-- 0:00:02 830k 79 1935k 79 1529k 0 0 947k 0 0:00:02 0:00:01 0:00:01 947k 100 1935k 100 1935k 0 0 964k 0 0:00:02 0:00:02 --:--:-- 964k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 22.4M 0 125k 0 0 537k 0 0:00:42 --:--:-- 0:00:42 535k 6 22.4M 6 1383k 0 0 1124k 0 0:00:20 0:00:01 0:00:19 1124k 13 22.4M 13 3096k 0 0 1388k 0 0:00:16 0:00:02 0:00:14 1388k 21 22.4M 21 4846k 0 0 1499k 0 0:00:15 0:00:03 0:00:12 1499k 28 22.4M 28 6564k 0 0 1551k 0 0:00:14 0:00:04 0:00:10 1551k 36 22.4M 36 8341k 0 0 1594k 0 0:00:14 0:00:05 0:00:09 1644k 43 22.4M 43 9.8M 0 0 1618k 0 0:00:14 0:00:06 0:00:08 1739k 51 22.4M 51 11.5M 0 0 1634k 0 0:00:14 0:00:07 0:00:07 1743k 58 22.4M 58 13.2M 0 0 1645k 0 0:00:13 0:00:08 0:00:05 1740k 66 22.4M 66 14.8M 0 0 1652k 0 0:00:13 0:00:09 0:00:04 1737k 73 22.4M 73 16.6M 0 0 1662k 0 0:00:13 0:00:10 0:00:03 1733k 81 22.4M 81 18.3M 0 0 1674k 0 0:00:13 0:00:11 0:00:02 1743k 89 22.4M 89 20.0M 0 0 1677k 0 0:00:13 0:00:12 0:00:01 1740k 96 22.4M 96 21.7M 0 0 1680k 0 0:00:13 0:00:13 --:--:-- 1737k 100 22.4M 100 22.4M 0 0 1683k 0 0:00:13 0:00:13 --:--:-- 1746k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 22.4M 1 338k 0 0 590k 0 0:00:38 --:--:-- 0:00:38 589k 5 22.4M 5 1322k 0 0 830k 0 0:00:27 0:00:01 0:00:26 830k 9 22.4M 9 2299k 0 0 893k 0 0:00:25 0:00:02 0:00:23 893k 14 22.4M 14 3331k 0 0 932k 0 0:00:24 0:00:03 0:00:21 932k 18 22.4M 18 4310k 0 0 942k 0 0:00:24 0:00:04 0:00:20 942k 23 22.4M 23 5348k 0 0 959k 0 0:00:23 0:00:05 0:00:18 1001k 27 22.4M 27 6313k 0 0 960k 0 0:00:23 0:00:06 0:00:17 1001k 31 22.4M 31 7307k 0 0 964k 0 0:00:23 0:00:07 0:00:16 1001k 35 22.4M 35 8267k 0 0 964k 0 0:00:23 0:00:08 0:00:15 987k 40 22.4M 40 9253k 0 0 966k 0 0:00:23 0:00:09 0:00:14 988k 44 22.4M 44 10.0M 0 0 968k 0 0:00:23 0:00:10 0:00:13 978k 48 22.4M 48 10.9M 0 0 972k 0 0:00:23 0:00:11 0:00:12 988k 53 22.4M 53 11.9M 0 0 974k 0 0:00:23 0:00:12 0:00:11 988k 57 22.4M 57 12.9M 0 0 975k 0 0:00:23 0:00:13 0:00:10 995k 61 22.4M 61 13.8M 0 0 974k 0 0:00:23 0:00:14 0:00:09 989k 65 22.4M 65 14.8M 0 0 974k 0 0:00:23 0:00:15 0:00:08 986k 70 22.4M 70 15.8M 0 0 976k 0 0:00:23 0:00:16 0:00:07 986k 74 22.4M 74 16.7M 0 0 975k 0 0:00:23 0:00:17 0:00:06 978k 78 22.4M 78 17.7M 0 0 976k 0 0:00:23 0:00:18 0:00:05 979k 82 22.4M 82 18.5M 0 0 972k 0 0:00:23 0:00:19 0:00:04 966k 85 22.4M 85 19.2M 0 0 955k 0 0:00:24 0:00:20 0:00:04 896k 86 22.4M 86 19.5M 0 0 924k 0 0:00:24 0:00:21 0:00:03 752k 88 22.4M 88 19.9M 0 0 900k 0 0:00:25 0:00:22 0:00:03 642k 90 22.4M 90 20.3M 0 0 885k 0 0:00:25 0:00:23 0:00:02 544k 91 22.4M 91 20.6M 0 0 853k 0 0:00:26 0:00:24 0:00:02 405k 93 22.4M 93 21.0M 0 0 838k 0 0:00:27 0:00:25 0:00:02 375k 97 22.4M 97 21.8M 0 0 840k 0 0:00:27 0:00:26 0:00:01 472k 100 22.4M 100 22.4M 0 0 841k 0 0:00:27 0:00:27 --:--:-- 553k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 98 457k 98 452k 0 0 1094k 0 --:--:-- --:--:-- --:--:-- 1094k 100 457k 100 457k 0 0 1102k 0 --:--:-- --:--:-- --:--:-- 1102k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 457k 0 1205 0 0 7521 0 0:01:02 --:--:-- 0:01:02 7484 100 457k 100 457k 0 0 591k 0 --:--:-- --:--:-- --:--:-- 591k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 649k 100 649k 0 0 785k 0 --:--:-- --:--:-- --:--:-- 786k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 29 649k 29 192k 0 0 568k 0 0:00:01 --:--:-- 0:00:01 568k 100 649k 100 649k 0 0 744k 0 --:--:-- --:--:-- --:--:-- 743k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 2188k 0 1203 0 0 10934 0 0:03:25 --:--:-- 0:03:25 10936 31 2188k 31 690k 0 0 632k 0 0:00:03 0:00:01 0:00:02 632k 64 2188k 64 1417k 0 0 672k 0 0:00:03 0:00:02 0:00:01 672k 100 2188k 100 2188k 0 0 728k 0 0:00:03 0:00:03 --:--:-- 728k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 11 2188k 11 245k 0 0 558k 0 0:00:03 --:--:-- 0:00:03 558k 53 2188k 53 1178k 0 0 808k 0 0:00:02 0:00:01 0:00:01 808k 95 2188k 95 2082k 0 0 847k 0 0:00:02 0:00:02 --:--:-- 847k 100 2188k 100 2188k 0 0 862k 0 0:00:02 0:00:02 --:--:-- 862k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 67 720k 67 488k 0 0 432k 0 0:00:01 0:00:01 --:--:-- 432k 100 720k 100 720k 0 0 528k 0 0:00:01 0:00:01 --:--:-- 528k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 74 720k 74 534k 0 0 620k 0 0:00:01 --:--:-- 0:00:01 620k 100 720k 100 720k 0 0 660k 0 0:00:01 0:00:01 --:--:-- 661k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 9.8M 3 330k 0 0 455k 0 0:00:22 --:--:-- 0:00:22 455k 8 9.8M 8 871k 0 0 533k 0 0:00:18 0:00:01 0:00:17 533k 22 9.8M 22 2268k 0 0 861k 0 0:00:11 0:00:02 0:00:09 861k 39 9.8M 39 3970k 0 0 1092k 0 0:00:09 0:00:03 0:00:06 1092k 56 9.8M 56 5709k 0 0 1232k 0 0:00:08 0:00:04 0:00:04 1232k 72 9.8M 72 7322k 0 0 1299k 0 0:00:07 0:00:05 0:00:02 1423k 89 9.8M 89 9044k 0 0 1363k 0 0:00:07 0:00:06 0:00:01 1634k 100 9.8M 100 9.8M 0 0 1400k 0 0:00:07 0:00:07 --:--:-- 1711k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 9.8M 3 348k 0 0 469k 0 0:00:21 --:--:-- 0:00:21 469k 9 9.8M 9 993k 0 0 570k 0 0:00:17 0:00:01 0:00:16 570k 17 9.8M 17 1726k 0 0 629k 0 0:00:16 0:00:02 0:00:14 629k 24 9.8M 24 2502k 0 0 667k 0 0:00:15 0:00:03 0:00:12 667k 32 9.8M 32 3319k 0 0 699k 0 0:00:14 0:00:04 0:00:10 699k 41 9.8M 41 4188k 0 0 729k 0 0:00:13 0:00:05 0:00:08 767k 50 9.8M 50 5121k 0 0 753k 0 0:00:13 0:00:06 0:00:07 817k 58 9.8M 58 5865k 0 0 757k 0 0:00:13 0:00:07 0:00:06 827k 67 9.8M 67 6864k 0 0 785k 0 0:00:12 0:00:08 0:00:04 873k 77 9.8M 77 7822k 0 0 802k 0 0:00:12 0:00:09 0:00:03 901k 87 9.8M 87 8845k 0 0 823k 0 0:00:12 0:00:10 0:00:02 931k 96 9.8M 96 9789k 0 0 831k 0 0:00:12 0:00:11 0:00:01 936k 100 9.8M 100 9.8M 0 0 825k 0 0:00:12 0:00:12 --:--:-- 941k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 43 542k 43 236k 0 0 704k 0 --:--:-- --:--:-- --:--:-- 704k 100 542k 100 542k 0 0 886k 0 --:--:-- --:--:-- --:--:-- 886k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 7 542k 7 40409 0 0 92014 0 0:00:06 --:--:-- 0:00:06 92047 100 542k 100 542k 0 0 478k 0 0:00:01 0:00:01 --:--:-- 478k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 85 931k 85 798k 0 0 1184k 0 --:--:-- --:--:-- --:--:-- 1184k 100 931k 100 931k 0 0 1259k 0 --:--:-- --:--:-- --:--:-- 1258k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 18 931k 18 169k 0 0 586k 0 0:00:01 --:--:-- 0:00:01 585k 97 931k 97 904k 0 0 710k 0 0:00:01 0:00:01 --:--:-- 710k 100 931k 100 931k 0 0 720k 0 0:00:01 0:00:01 --:--:-- 720k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 42487 100 42487 0 0 303k 0 --:--:-- --:--:-- --:--:-- 305k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 42487 100 42487 0 0 251k 0 --:--:-- --:--:-- --:--:-- 251k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 23 3284k 23 762k 0 0 1080k 0 0:00:03 --:--:-- 0:00:03 1080k 68 3284k 68 2235k 0 0 1307k 0 0:00:02 0:00:01 0:00:01 1306k 100 3284k 100 3284k 0 0 1415k 0 0:00:02 0:00:02 --:--:-- 1416k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 19 3284k 19 644k 0 0 834k 0 0:00:03 --:--:-- 0:00:03 834k 46 3284k 46 1519k 0 0 866k 0 0:00:03 0:00:01 0:00:02 865k 77 3284k 77 2535k 0 0 919k 0 0:00:03 0:00:02 0:00:01 919k 100 3284k 100 3284k 0 0 936k 0 0:00:03 0:00:03 --:--:-- 936k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 54 455k 54 249k 0 0 762k 0 --:--:-- --:--:-- --:--:-- 762k 100 455k 100 455k 0 0 1035k 0 --:--:-- --:--:-- --:--:-- 1034k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 18 455k 18 86873 0 0 373k 0 0:00:01 --:--:-- 0:00:01 373k 100 455k 100 455k 0 0 740k 0 --:--:-- --:--:-- --:--:-- 739k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 452k 100 452k 0 0 1150k 0 --:--:-- --:--:-- --:--:-- 1151k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 98 452k 98 443k 0 0 739k 0 --:--:-- --:--:-- --:--:-- 739k 100 452k 100 452k 0 0 744k 0 --:--:-- --:--:-- --:--:-- 744k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 68 450k 68 307k 0 0 745k 0 --:--:-- --:--:-- --:--:-- 744k 100 450k 100 450k 0 0 807k 0 --:--:-- --:--:-- --:--:-- 806k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 450k 100 450k 0 0 670k 0 --:--:-- --:--:-- --:--:-- 671k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 549k 100 549k 0 0 821k 0 --:--:-- --:--:-- --:--:-- 821k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 29 549k 29 159k 0 0 572k 0 --:--:-- --:--:-- --:--:-- 571k 100 549k 100 549k 0 0 766k 0 --:--:-- --:--:-- --:--:-- 765k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 13.1M 0 1202 0 0 8578 0 0:26:49 --:--:-- 0:26:49 8585 6 13.1M 6 878k 0 0 799k 0 0:00:16 0:00:01 0:00:15 798k 15 13.1M 15 2122k 0 0 1009k 0 0:00:13 0:00:02 0:00:11 1009k 27 13.1M 27 3711k 0 0 1197k 0 0:00:11 0:00:03 0:00:08 1197k 40 13.1M 40 5412k 0 0 1320k 0 0:00:10 0:00:04 0:00:06 1320k 53 13.1M 53 7160k 0 0 1404k 0 0:00:09 0:00:05 0:00:04 1443k 65 13.1M 65 8884k 0 0 1456k 0 0:00:09 0:00:06 0:00:03 1601k 78 13.1M 78 10.3M 0 0 1492k 0 0:00:09 0:00:07 0:00:02 1695k 88 13.1M 88 11.6M 0 0 1474k 0 0:00:09 0:00:08 0:00:01 1645k 97 13.1M 97 12.8M 0 0 1448k 0 0:00:09 0:00:09 --:--:-- 1554k 100 13.1M 100 13.1M 0 0 1449k 0 0:00:09 0:00:09 --:--:-- 1505k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 13.1M 2 298k 0 0 545k 0 0:00:24 --:--:-- 0:00:24 545k 8 13.1M 8 1125k 0 0 729k 0 0:00:18 0:00:01 0:00:17 729k 15 13.1M 15 2152k 0 0 846k 0 0:00:15 0:00:02 0:00:13 846k 23 13.1M 23 3166k 0 0 893k 0 0:00:15 0:00:03 0:00:12 893k 31 13.1M 31 4189k 0 0 922k 0 0:00:14 0:00:04 0:00:10 922k 38 13.1M 38 5217k 0 0 941k 0 0:00:14 0:00:05 0:00:09 984k 45 13.1M 45 6187k 0 0 945k 0 0:00:14 0:00:06 0:00:08 1012k 53 13.1M 53 7197k 0 0 951k 0 0:00:14 0:00:07 0:00:07 1004k 60 13.1M 60 8155k 0 0 954k 0 0:00:14 0:00:08 0:00:06 997k 68 13.1M 68 9198k 0 0 963k 0 0:00:13 0:00:09 0:00:04 1000k 75 13.1M 75 9.9M 0 0 966k 0 0:00:13 0:00:10 0:00:03 994k 83 13.1M 83 10.9M 0 0 969k 0 0:00:13 0:00:11 0:00:02 999k 90 13.1M 90 11.8M 0 0 969k 0 0:00:13 0:00:12 0:00:01 996k 97 13.1M 97 12.9M 0 0 975k 0 0:00:13 0:00:13 --:--:-- 1011k 100 13.1M 100 13.1M 0 0 972k 0 0:00:13 0:00:13 --:--:-- 993k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 35 1512k 35 540k 0 0 757k 0 0:00:01 --:--:-- 0:00:01 756k 100 1512k 100 1512k 0 0 1020k 0 0:00:01 0:00:01 --:--:-- 1020k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 30 1512k 30 463k 0 0 746k 0 0:00:02 --:--:-- 0:00:02 746k 99 1512k 99 1509k 0 0 932k 0 0:00:01 0:00:01 --:--:-- 932k 100 1512k 100 1512k 0 0 932k 0 0:00:01 0:00:01 --:--:-- 932k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 12 583k 12 76709 0 0 457k 0 0:00:01 --:--:-- 0:00:01 456k 100 583k 100 583k 0 0 957k 0 --:--:-- --:--:-- --:--:-- 956k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 583k 100 583k 0 0 860k 0 --:--:-- --:--:-- --:--:-- 861k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 29 1457k 29 426k 0 0 830k 0 0:00:01 --:--:-- 0:00:01 829k 100 1457k 100 1457k 0 0 1063k 0 0:00:01 0:00:01 --:--:-- 1063k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 1457k 1 21531 0 0 83185 0 0:00:17 --:--:-- 0:00:17 83131 69 1457k 69 1012k 0 0 804k 0 0:00:01 0:00:01 --:--:-- 804k 100 1457k 100 1457k 0 0 869k 0 0:00:01 0:00:01 --:--:-- 869k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 840k 0 1208 0 0 12309 0 0:01:09 --:--:-- 0:01:09 12326 100 840k 100 840k 0 0 934k 0 --:--:-- --:--:-- --:--:-- 933k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 49 840k 49 418k 0 0 763k 0 0:00:01 --:--:-- 0:00:01 762k 100 840k 100 840k 0 0 870k 0 --:--:-- --:--:-- --:--:-- 870k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 5166k 1 76710 0 0 481k 0 0:00:10 --:--:-- 0:00:10 480k 22 5166k 22 1185k 0 0 1002k 0 0:00:05 0:00:01 0:00:04 1001k 50 5166k 50 2584k 0 0 1201k 0 0:00:04 0:00:02 0:00:02 1201k 83 5166k 83 4299k 0 0 1364k 0 0:00:03 0:00:03 --:--:-- 1363k 100 5166k 100 5166k 0 0 1410k 0 0:00:03 0:00:03 --:--:-- 1410k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 8 5166k 8 459k 0 0 846k 0 0:00:06 --:--:-- 0:00:06 845k 27 5166k 27 1427k 0 0 924k 0 0:00:05 0:00:01 0:00:04 924k 47 5166k 47 2454k 0 0 965k 0 0:00:05 0:00:02 0:00:03 965k 67 5166k 67 3462k 0 0 975k 0 0:00:05 0:00:03 0:00:02 975k 85 5166k 85 4430k 0 0 974k 0 0:00:05 0:00:04 0:00:01 974k 100 5166k 100 5166k 0 0 974k 0 0:00:05 0:00:05 --:--:-- 989k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 6776k 6 413k 0 0 948k 0 0:00:07 --:--:-- 0:00:07 949k 22 6776k 22 1512k 0 0 1053k 0 0:00:06 0:00:01 0:00:05 1052k 36 6776k 36 2448k 0 0 963k 0 0:00:07 0:00:02 0:00:05 963k 59 6776k 59 4014k 0 0 1168k 0 0:00:05 0:00:03 0:00:02 1168k 82 6776k 82 5610k 0 0 1265k 0 0:00:05 0:00:04 0:00:01 1265k 100 6776k 100 6776k 0 0 1325k 0 0:00:05 0:00:05 --:--:-- 1360k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 6776k 0 44763 0 0 229k 0 0:00:29 --:--:-- 0:00:29 228k 13 6776k 13 927k 0 0 777k 0 0:00:08 0:00:01 0:00:07 777k 28 6776k 28 1938k 0 0 883k 0 0:00:07 0:00:02 0:00:05 883k 42 6776k 42 2878k 0 0 901k 0 0:00:07 0:00:03 0:00:04 901k 57 6776k 57 3869k 0 0 921k 0 0:00:07 0:00:04 0:00:03 921k 71 6776k 71 4825k 0 0 928k 0 0:00:07 0:00:05 0:00:02 955k 85 6776k 85 5806k 0 0 937k 0 0:00:07 0:00:06 0:00:01 975k 100 6776k 100 6776k 0 0 944k 0 0:00:07 0:00:07 --:--:-- 971k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 1155k 3 43311 0 0 164k 0 0:00:07 --:--:-- 0:00:07 164k 86 1155k 86 1000k 0 0 785k 0 0:00:01 0:00:01 --:--:-- 785k 100 1155k 100 1155k 0 0 785k 0 0:00:01 0:00:01 --:--:-- 785k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 65 1155k 65 755k 0 0 782k 0 0:00:01 --:--:-- 0:00:01 782k 100 1155k 100 1155k 0 0 858k 0 0:00:01 0:00:01 --:--:-- 859k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 13 3436k 13 474k 0 0 627k 0 0:00:05 --:--:-- 0:00:05 627k 42 3436k 42 1453k 0 0 826k 0 0:00:04 0:00:01 0:00:03 826k 82 3436k 82 2820k 0 0 1030k 0 0:00:03 0:00:02 0:00:01 1030k 100 3436k 100 3436k 0 0 1102k 0 0:00:03 0:00:03 --:--:-- 1103k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 13 3436k 13 476k 0 0 787k 0 0:00:04 --:--:-- 0:00:04 787k 40 3436k 40 1382k 0 0 873k 0 0:00:03 0:00:01 0:00:02 872k 65 3436k 65 2264k 0 0 875k 0 0:00:03 0:00:02 0:00:01 875k 94 3436k 94 3261k 0 0 909k 0 0:00:03 0:00:03 --:--:-- 909k 100 3436k 100 3436k 0 0 910k 0 0:00:03 0:00:03 --:--:-- 910k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 26 962k 26 254k 0 0 450k 0 0:00:02 --:--:-- 0:00:02 449k 100 962k 100 962k 0 0 846k 0 0:00:01 0:00:01 --:--:-- 846k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 61 962k 61 593k 0 0 735k 0 0:00:01 --:--:-- 0:00:01 735k 100 962k 100 962k 0 0 805k 0 0:00:01 0:00:01 --:--:-- 805k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 45 623k 45 284k 0 0 737k 0 --:--:-- --:--:-- --:--:-- 737k 100 623k 100 623k 0 0 999k 0 --:--:-- --:--:-- --:--:-- 999k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 57 623k 57 358k 0 0 631k 0 --:--:-- --:--:-- --:--:-- 631k 100 623k 100 623k 0 0 739k 0 --:--:-- --:--:-- --:--:-- 738k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 24.3M 2 626k 0 0 873k 0 0:00:28 --:--:-- 0:00:28 873k 7 24.3M 7 1949k 0 0 1131k 0 0:00:21 0:00:01 0:00:20 1131k 13 24.3M 13 3341k 0 0 1230k 0 0:00:20 0:00:02 0:00:18 1230k 18 24.3M 18 4708k 0 0 1261k 0 0:00:19 0:00:03 0:00:16 1261k 23 24.3M 23 5956k 0 0 1262k 0 0:00:19 0:00:04 0:00:15 1262k 26 24.3M 26 6716k 0 0 1175k 0 0:00:21 0:00:05 0:00:16 1218k 29 24.3M 29 7388k 0 0 1100k 0 0:00:22 0:00:06 0:00:16 1089k 32 24.3M 32 7991k 0 0 1034k 0 0:00:24 0:00:07 0:00:17 928k 34 24.3M 34 8611k 0 0 986k 0 0:00:25 0:00:08 0:00:17 780k 37 24.3M 37 9274k 0 0 954k 0 0:00:26 0:00:09 0:00:17 663k 39 24.3M 39 9789k 0 0 913k 0 0:00:27 0:00:10 0:00:17 614k 41 24.3M 41 10.1M 0 0 884k 0 0:00:28 0:00:11 0:00:17 595k 43 24.3M 43 10.6M 0 0 855k 0 0:00:29 0:00:12 0:00:17 579k 45 24.3M 45 11.0M 0 0 823k 0 0:00:30 0:00:13 0:00:17 539k 46 24.3M 46 11.4M 0 0 793k 0 0:00:31 0:00:14 0:00:17 480k 48 24.3M 48 11.7M 0 0 767k 0 0:00:32 0:00:15 0:00:17 454k 50 24.3M 50 12.2M 0 0 751k 0 0:00:33 0:00:16 0:00:17 440k 52 24.3M 52 12.8M 0 0 739k 0 0:00:33 0:00:17 0:00:16 444k 55 24.3M 55 13.5M 0 0 740k 0 0:00:33 0:00:18 0:00:15 513k 59 24.3M 59 14.3M 0 0 747k 0 0:00:33 0:00:19 0:00:14 612k 63 24.3M 63 15.4M 0 0 763k 0 0:00:32 0:00:20 0:00:12 749k 68 24.3M 68 16.7M 0 0 790k 0 0:00:31 0:00:21 0:00:10 918k 73 24.3M 73 17.9M 0 0 810k 0 0:00:30 0:00:22 0:00:08 1061k 79 24.3M 79 19.2M 0 0 830k 0 0:00:29 0:00:23 0:00:06 1166k 84 24.3M 84 20.4M 0 0 846k 0 0:00:29 0:00:24 0:00:05 1236k 88 24.3M 88 21.4M 0 0 856k 0 0:00:29 0:00:25 0:00:04 1241k 93 24.3M 93 22.6M 0 0 866k 0 0:00:28 0:00:26 0:00:02 1198k 98 24.3M 98 23.8M 0 0 881k 0 0:00:28 0:00:27 0:00:01 1204k 100 24.3M 100 24.3M 0 0 886k 0 0:00:28 0:00:28 --:--:-- 1188k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 24.3M 2 515k 0 0 773k 0 0:00:32 --:--:-- 0:00:32 773k 5 24.3M 5 1468k 0 0 879k 0 0:00:28 0:00:01 0:00:27 880k 9 24.3M 9 2442k 0 0 916k 0 0:00:27 0:00:02 0:00:25 915k 13 24.3M 13 3469k 0 0 946k 0 0:00:26 0:00:03 0:00:23 946k 17 24.3M 17 4453k 0 0 953k 0 0:00:26 0:00:04 0:00:22 953k 21 24.3M 21 5352k 0 0 944k 0 0:00:26 0:00:05 0:00:21 967k 25 24.3M 25 6278k 0 0 939k 0 0:00:26 0:00:06 0:00:20 959k 28 24.3M 28 7191k 0 0 937k 0 0:00:26 0:00:07 0:00:19 949k 32 24.3M 32 8049k 0 0 927k 0 0:00:26 0:00:08 0:00:18 914k 35 24.3M 35 8856k 0 0 915k 0 0:00:27 0:00:09 0:00:18 880k 38 24.3M 38 9626k 0 0 902k 0 0:00:27 0:00:10 0:00:17 854k 41 24.3M 41 10.0M 0 0 877k 0 0:00:28 0:00:11 0:00:17 793k 44 24.3M 44 10.7M 0 0 870k 0 0:00:28 0:00:12 0:00:16 767k 47 24.3M 47 11.5M 0 0 868k 0 0:00:28 0:00:13 0:00:15 766k 51 24.3M 51 12.5M 0 0 877k 0 0:00:28 0:00:14 0:00:14 802k 55 24.3M 55 13.5M 0 0 885k 0 0:00:28 0:00:15 0:00:13 849k 59 24.3M 59 14.5M 0 0 892k 0 0:00:27 0:00:16 0:00:11 929k 63 24.3M 63 15.3M 0 0 892k 0 0:00:27 0:00:17 0:00:10 947k 67 24.3M 67 16.4M 0 0 901k 0 0:00:27 0:00:18 0:00:09 989k 71 24.3M 71 17.3M 0 0 905k 0 0:00:27 0:00:19 0:00:08 988k 75 24.3M 75 18.2M 0 0 905k 0 0:00:27 0:00:20 0:00:07 968k 79 24.3M 79 19.2M 0 0 910k 0 0:00:27 0:00:21 0:00:06 968k 83 24.3M 83 20.2M 0 0 915k 0 0:00:27 0:00:22 0:00:05 998k 87 24.3M 87 21.1M 0 0 916k 0 0:00:27 0:00:23 0:00:04 976k 91 24.3M 91 22.1M 0 0 921k 0 0:00:27 0:00:24 0:00:03 983k 95 24.3M 95 23.1M 0 0 923k 0 0:00:26 0:00:25 0:00:01 996k 99 24.3M 99 24.1M 0 0 926k 0 0:00:26 0:00:26 --:--:-- 994k 100 24.3M 100 24.3M 0 0 926k 0 0:00:26 0:00:26 --:--:-- 981k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 24 725k 24 175k 0 0 365k 0 0:00:01 --:--:-- 0:00:01 365k 100 725k 100 725k 0 0 591k 0 0:00:01 0:00:01 --:--:-- 591k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 66 725k 66 483k 0 0 683k 0 0:00:01 --:--:-- 0:00:01 682k 100 725k 100 725k 0 0 768k 0 --:--:-- --:--:-- --:--:-- 767k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 20 202k 20 43316 0 0 198k 0 0:00:01 --:--:-- 0:00:01 197k 100 202k 100 202k 0 0 465k 0 --:--:-- --:--:-- --:--:-- 464k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 202k 100 202k 0 0 516k 0 --:--:-- --:--:-- --:--:-- 517k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 417k 100 417k 0 0 596k 0 --:--:-- --:--:-- --:--:-- 596k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 35 417k 35 150k 0 0 431k 0 --:--:-- --:--:-- --:--:-- 431k 100 417k 100 417k 0 0 582k 0 --:--:-- --:--:-- --:--:-- 581k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 5615k 9 515k 0 0 522k 0 0:00:10 --:--:-- 0:00:10 522k 27 5615k 27 1518k 0 0 764k 0 0:00:07 0:00:01 0:00:06 764k 43 5615k 43 2430k 0 0 812k 0 0:00:06 0:00:02 0:00:04 812k 48 5615k 48 2708k 0 0 667k 0 0:00:08 0:00:04 0:00:04 667k 59 5615k 59 3333k 0 0 668k 0 0:00:08 0:00:04 0:00:04 668k 77 5615k 77 4352k 0 0 727k 0 0:00:07 0:00:05 0:00:02 767k 97 5615k 97 5464k 0 0 781k 0 0:00:07 0:00:06 0:00:01 789k 100 5615k 100 5615k 0 0 788k 0 0:00:07 0:00:07 --:--:-- 770k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 5615k 6 379k 0 0 677k 0 0:00:08 --:--:-- 0:00:08 676k 22 5615k 22 1266k 0 0 810k 0 0:00:06 0:00:01 0:00:05 809k 40 5615k 40 2298k 0 0 898k 0 0:00:06 0:00:02 0:00:04 898k 57 5615k 57 3241k 0 0 910k 0 0:00:06 0:00:03 0:00:03 910k 74 5615k 74 4199k 0 0 921k 0 0:00:06 0:00:04 0:00:02 921k 92 5615k 92 5182k 0 0 932k 0 0:00:06 0:00:05 0:00:01 960k 100 5615k 100 5615k 0 0 923k 0 0:00:06 0:00:06 --:--:-- 962k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 78 1152k 78 910k 0 0 1140k 0 0:00:01 --:--:-- 0:00:01 1140k 100 1152k 100 1152k 0 0 1236k 0 --:--:-- --:--:-- --:--:-- 1235k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 23 1152k 23 274k 0 0 641k 0 0:00:01 --:--:-- 0:00:01 640k 100 1152k 100 1152k 0 0 833k 0 0:00:01 0:00:01 --:--:-- 834k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 75 1363k 75 1027k 0 0 1260k 0 0:00:01 --:--:-- 0:00:01 1261k 100 1363k 100 1363k 0 0 1250k 0 0:00:01 0:00:01 --:--:-- 1251k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 64 1363k 64 885k 0 0 868k 0 0:00:01 0:00:01 --:--:-- 868k 100 1363k 100 1363k 0 0 907k 0 0:00:01 0:00:01 --:--:-- 907k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 34 2869k 34 992k 0 0 1472k 0 0:00:01 --:--:-- 0:00:01 1472k 90 2869k 90 2607k 0 0 1557k 0 0:00:01 0:00:01 --:--:-- 1557k 100 2869k 100 2869k 0 0 1569k 0 0:00:01 0:00:01 --:--:-- 1569k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 13 2869k 13 388k 0 0 799k 0 0:00:03 --:--:-- 0:00:03 798k 45 2869k 45 1307k 0 0 877k 0 0:00:03 0:00:01 0:00:02 877k 78 2869k 78 2251k 0 0 904k 0 0:00:03 0:00:02 0:00:01 904k 100 2869k 100 2869k 0 0 917k 0 0:00:03 0:00:03 --:--:-- 917k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 744k 100 744k 0 0 1255k 0 --:--:-- --:--:-- --:--:-- 1257k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 23 744k 23 178k 0 0 558k 0 0:00:01 --:--:-- 0:00:01 557k 100 744k 100 744k 0 0 843k 0 --:--:-- --:--:-- --:--:-- 843k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 49 206k 49 103k 0 0 668k 0 --:--:-- --:--:-- --:--:-- 666k 100 206k 100 206k 0 0 868k 0 --:--:-- --:--:-- --:--:-- 865k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 206k 100 206k 0 0 554k 0 --:--:-- --:--:-- --:--:-- 556k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 32 2860k 32 929k 0 0 1056k 0 0:00:02 --:--:-- 0:00:02 1055k 74 2860k 74 2139k 0 0 1077k 0 0:00:02 0:00:01 0:00:01 1077k 100 2860k 100 2860k 0 0 1121k 0 0:00:02 0:00:02 --:--:-- 1122k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 26 2860k 26 761k 0 0 764k 0 0:00:03 --:--:-- 0:00:03 764k 60 2860k 60 1743k 0 0 857k 0 0:00:03 0:00:02 0:00:01 858k 93 2860k 93 2674k 0 0 894k 0 0:00:03 0:00:02 0:00:01 894k 100 2860k 100 2860k 0 0 905k 0 0:00:03 0:00:03 --:--:-- 905k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 149k 100 149k 0 0 599k 0 --:--:-- --:--:-- --:--:-- 600k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 149k 100 149k 0 0 351k 0 --:--:-- --:--:-- --:--:-- 351k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 976k 100 976k 0 0 1154k 0 --:--:-- --:--:-- --:--:-- 1155k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 16 976k 16 158k 0 0 484k 0 0:00:02 --:--:-- 0:00:02 483k 48 976k 48 477k 0 0 359k 0 0:00:02 0:00:01 0:00:01 359k 83 976k 83 815k 0 0 339k 0 0:00:02 0:00:02 --:--:-- 339k 100 976k 100 976k 0 0 346k 0 0:00:02 0:00:02 --:--:-- 346k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 1357k 0 1203 0 0 10066 0 0:02:18 --:--:-- 0:02:18 10025 93 1357k 93 1273k 0 0 1163k 0 0:00:01 0:00:01 --:--:-- 1163k 100 1357k 100 1357k 0 0 1195k 0 0:00:01 0:00:01 --:--:-- 1195k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 1357k 9 123k 0 0 212k 0 0:00:06 --:--:-- 0:00:06 211k 20 1357k 20 283k 0 0 176k 0 0:00:07 0:00:01 0:00:06 176k 41 1357k 41 557k 0 0 222k 0 0:00:06 0:00:02 0:00:04 222k 72 1357k 72 983k 0 0 283k 0 0:00:04 0:00:03 0:00:01 283k 100 1357k 100 1357k 0 0 324k 0 0:00:04 0:00:04 --:--:-- 324k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 35.7M 2 878k 0 0 959k 0 0:00:38 --:--:-- 0:00:38 959k 6 35.7M 6 2272k 0 0 1189k 0 0:00:30 0:00:01 0:00:29 1189k 9 35.7M 9 3641k 0 0 1251k 0 0:00:29 0:00:02 0:00:27 1250k 13 35.7M 13 4947k 0 0 1265k 0 0:00:28 0:00:03 0:00:25 1264k 17 35.7M 17 6421k 0 0 1307k 0 0:00:27 0:00:04 0:00:23 1307k 21 35.7M 21 7964k 0 0 1347k 0 0:00:27 0:00:05 0:00:22 1418k 26 35.7M 26 9531k 0 0 1379k 0 0:00:26 0:00:06 0:00:20 1451k 30 35.7M 30 10.8M 0 0 1408k 0 0:00:25 0:00:07 0:00:18 1499k 34 35.7M 34 12.4M 0 0 1425k 0 0:00:25 0:00:08 0:00:17 1550k 39 35.7M 39 13.9M 0 0 1440k 0 0:00:25 0:00:09 0:00:16 1571k 43 35.7M 43 15.5M 0 0 1460k 0 0:00:25 0:00:10 0:00:15 1594k 47 35.7M 47 17.0M 0 0 1469k 0 0:00:24 0:00:11 0:00:13 1594k 52 35.7M 52 18.7M 0 0 1486k 0 0:00:24 0:00:12 0:00:12 1610k 56 35.7M 56 20.3M 0 0 1498k 0 0:00:24 0:00:13 0:00:11 1629k 61 35.7M 61 21.9M 0 0 1510k 0 0:00:24 0:00:14 0:00:10 1648k 65 35.7M 65 23.4M 0 0 1505k 0 0:00:24 0:00:15 0:00:09 1604k 70 35.7M 70 25.0M 0 0 1518k 0 0:00:24 0:00:16 0:00:08 1633k 74 35.7M 74 26.7M 0 0 1529k 0 0:00:23 0:00:17 0:00:06 1641k 79 35.7M 79 28.3M 0 0 1536k 0 0:00:23 0:00:18 0:00:05 1642k 83 35.7M 83 29.9M 0 0 1542k 0 0:00:23 0:00:19 0:00:04 1638k 88 35.7M 88 31.6M 0 0 1549k 0 0:00:23 0:00:20 0:00:03 1690k 93 35.7M 93 33.2M 0 0 1556k 0 0:00:23 0:00:21 0:00:02 1684k 96 35.7M 96 34.5M 0 0 1546k 0 0:00:23 0:00:22 0:00:01 1605k 100 35.7M 100 35.7M 0 0 1551k 0 0:00:23 0:00:23 --:--:-- 1610k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 35.7M 0 15721 0 0 54621 0 0:11:26 --:--:-- 0:11:26 54586 2 35.7M 2 918k 0 0 722k 0 0:00:50 0:00:01 0:00:49 722k 5 35.7M 5 1921k 0 0 845k 0 0:00:43 0:00:02 0:00:41 845k 7 35.7M 7 2841k 0 0 868k 0 0:00:42 0:00:03 0:00:39 868k 10 35.7M 10 3819k 0 0 894k 0 0:00:40 0:00:04 0:00:36 894k 13 35.7M 13 4761k 0 0 902k 0 0:00:40 0:00:05 0:00:35 951k 15 35.7M 15 5657k 0 0 901k 0 0:00:40 0:00:06 0:00:34 946k 17 35.7M 17 6587k 0 0 904k 0 0:00:40 0:00:07 0:00:33 931k 20 35.7M 20 7414k 0 0 895k 0 0:00:40 0:00:08 0:00:32 914k 22 35.7M 22 8236k 0 0 884k 0 0:00:41 0:00:09 0:00:32 877k 24 35.7M 24 9118k 0 0 887k 0 0:00:41 0:00:10 0:00:31 871k 27 35.7M 27 9.8M 0 0 889k 0 0:00:41 0:00:11 0:00:30 874k 29 35.7M 29 10.6M 0 0 892k 0 0:00:41 0:00:12 0:00:29 875k 32 35.7M 32 11.6M 0 0 901k 0 0:00:40 0:00:13 0:00:27 909k 35 35.7M 35 12.6M 0 0 908k 0 0:00:40 0:00:14 0:00:26 951k 38 35.7M 38 13.5M 0 0 911k 0 0:00:40 0:00:15 0:00:25 960k 40 35.7M 40 14.4M 0 0 910k 0 0:00:40 0:00:16 0:00:24 960k 43 35.7M 43 15.4M 0 0 914k 0 0:00:40 0:00:17 0:00:23 969k 45 35.7M 45 16.2M 0 0 913k 0 0:00:40 0:00:18 0:00:22 944k 48 35.7M 48 17.1M 0 0 912k 0 0:00:40 0:00:19 0:00:21 924k 50 35.7M 50 17.9M 0 0 907k 0 0:00:40 0:00:20 0:00:20 894k 52 35.7M 52 18.7M 0 0 902k 0 0:00:40 0:00:21 0:00:19 877k 54 35.7M 54 19.5M 0 0 899k 0 0:00:40 0:00:22 0:00:18 847k 57 35.7M 57 20.4M 0 0 899k 0 0:00:40 0:00:23 0:00:17 851k 59 35.7M 59 21.3M 0 0 899k 0 0:00:40 0:00:24 0:00:16 848k 62 35.7M 62 22.2M 0 0 900k 0 0:00:40 0:00:25 0:00:15 874k 64 35.7M 64 23.1M 0 0 902k 0 0:00:40 0:00:26 0:00:14 902k 67 35.7M 67 23.9M 0 0 899k 0 0:00:40 0:00:27 0:00:13 897k 69 35.7M 69 24.8M 0 0 901k 0 0:00:40 0:00:28 0:00:12 907k 72 35.7M 72 25.7M 0 0 900k 0 0:00:40 0:00:29 0:00:11 905k 74 35.7M 74 26.6M 0 0 902k 0 0:00:40 0:00:30 0:00:10 914k 77 35.7M 77 27.5M 0 0 903k 0 0:00:40 0:00:31 0:00:09 908k 79 35.7M 79 28.5M 0 0 904k 0 0:00:40 0:00:32 0:00:08 933k 82 35.7M 82 29.4M 0 0 905k 0 0:00:40 0:00:33 0:00:07 928k 84 35.7M 84 30.3M 0 0 905k 0 0:00:40 0:00:34 0:00:06 933k 87 35.7M 87 31.1M 0 0 905k 0 0:00:40 0:00:35 0:00:05 920k 89 35.7M 89 32.0M 0 0 904k 0 0:00:40 0:00:36 0:00:04 910k 92 35.7M 92 32.9M 0 0 904k 0 0:00:40 0:00:37 0:00:03 900k 94 35.7M 94 33.8M 0 0 905k 0 0:00:40 0:00:38 0:00:02 905k 97 35.7M 97 34.7M 0 0 907k 0 0:00:40 0:00:39 0:00:01 919k 99 35.7M 99 35.6M 0 0 907k 0 0:00:40 0:00:40 --:--:-- 921k 100 35.7M 100 35.7M 0 0 908k 0 0:00:40 0:00:40 --:--:-- 940k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 4475k 0 1203 0 0 11271 0 0:06:46 --:--:-- 0:06:46 11242 12 4475k 12 547k 0 0 495k 0 0:00:09 0:00:01 0:00:08 495k 28 4475k 28 1275k 0 0 603k 0 0:00:07 0:00:02 0:00:05 603k 45 4475k 45 2037k 0 0 648k 0 0:00:06 0:00:03 0:00:03 648k 64 4475k 64 2903k 0 0 697k 0 0:00:06 0:00:04 0:00:02 697k 83 4475k 83 3730k 0 0 718k 0 0:00:06 0:00:05 0:00:01 733k 99 4475k 99 4439k 0 0 727k 0 0:00:06 0:00:06 --:--:-- 778k 100 4475k 100 4475k 0 0 719k 0 0:00:06 0:00:06 --:--:-- 778k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 12 4475k 12 541k 0 0 627k 0 0:00:07 --:--:-- 0:00:07 627k 32 4475k 32 1446k 0 0 776k 0 0:00:05 0:00:01 0:00:04 776k 52 4475k 52 2372k 0 0 828k 0 0:00:05 0:00:02 0:00:03 828k 73 4475k 73 3296k 0 0 853k 0 0:00:05 0:00:03 0:00:02 853k 94 4475k 94 4208k 0 0 865k 0 0:00:05 0:00:04 0:00:01 865k 100 4475k 100 4475k 0 0 873k 0 0:00:05 0:00:05 --:--:-- 923k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 311k 100 311k 0 0 416k 0 --:--:-- --:--:-- --:--:-- 417k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 311k 100 311k 0 0 536k 0 --:--:-- --:--:-- --:--:-- 536k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 254k 100 254k 0 0 434k 0 --:--:-- --:--:-- --:--:-- 434k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 254k 0 1205 0 0 11461 0 0:00:22 --:--:-- 0:00:22 11367 100 254k 100 254k 0 0 582k 0 --:--:-- --:--:-- --:--:-- 581k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 28 1102k 28 310k 0 0 771k 0 0:00:01 --:--:-- 0:00:01 769k 100 1102k 100 1102k 0 0 1149k 0 --:--:-- --:--:-- --:--:-- 1149k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 38 1102k 38 420k 0 0 696k 0 0:00:01 --:--:-- 0:00:01 695k 100 1102k 100 1102k 0 0 799k 0 0:00:01 0:00:01 --:--:-- 800k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 72992 100 72992 0 0 254k 0 --:--:-- --:--:-- --:--:-- 255k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 72992 100 72992 0 0 458k 0 --:--:-- --:--:-- --:--:-- 459k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 636k 0 1205 0 0 8986 0 0:01:12 --:--:-- 0:01:12 8992 100 636k 100 636k 0 0 643k 0 --:--:-- --:--:-- --:--:-- 643k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 636k 100 636k 0 0 651k 0 --:--:-- --:--:-- --:--:-- 651k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 61 1077k 61 666k 0 0 635k 0 0:00:01 0:00:01 --:--:-- 635k 100 1077k 100 1077k 0 0 724k 0 0:00:01 0:00:01 --:--:-- 724k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 65 1077k 65 708k 0 0 705k 0 0:00:01 0:00:01 --:--:-- 705k 100 1077k 100 1077k 0 0 795k 0 0:00:01 0:00:01 --:--:-- 795k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 5051k 1 59283 0 0 112k 0 0:00:44 --:--:-- 0:00:44 112k 15 5051k 15 773k 0 0 507k 0 0:00:09 0:00:01 0:00:08 507k 34 5051k 34 1750k 0 0 696k 0 0:00:07 0:00:02 0:00:05 696k 58 5051k 58 2944k 0 0 838k 0 0:00:06 0:00:03 0:00:03 838k 87 5051k 87 4433k 0 0 982k 0 0:00:05 0:00:04 0:00:01 982k 100 5051k 100 5051k 0 0 1021k 0 0:00:04 0:00:04 --:--:-- 1127k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 5051k 9 457k 0 0 737k 0 0:00:06 --:--:-- 0:00:06 737k 27 5051k 27 1407k 0 0 857k 0 0:00:05 0:00:01 0:00:04 856k 47 5051k 47 2374k 0 0 907k 0 0:00:05 0:00:02 0:00:03 907k 65 5051k 65 3290k 0 0 909k 0 0:00:05 0:00:03 0:00:02 909k 83 5051k 83 4232k 0 0 913k 0 0:00:05 0:00:04 0:00:01 913k 100 5051k 100 5051k 0 0 915k 0 0:00:05 0:00:05 --:--:-- 938k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 5 1613k 5 95583 0 0 172k 0 0:00:09 --:--:-- 0:00:09 171k 46 1613k 46 744k 0 0 497k 0 0:00:03 0:00:01 0:00:02 496k 94 1613k 94 1528k 0 0 612k 0 0:00:02 0:00:02 --:--:-- 612k 100 1613k 100 1613k 0 0 617k 0 0:00:02 0:00:02 --:--:-- 617k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 52 1613k 52 853k 0 0 813k 0 0:00:01 0:00:01 --:--:-- 813k 100 1613k 100 1613k 0 0 859k 0 0:00:01 0:00:01 --:--:-- 859k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 7 3355k 7 257k 0 0 307k 0 0:00:10 --:--:-- 0:00:10 307k 29 3355k 29 992k 0 0 537k 0 0:00:06 0:00:01 0:00:05 536k 55 3355k 55 1851k 0 0 653k 0 0:00:05 0:00:02 0:00:03 653k 88 3355k 88 2967k 0 0 774k 0 0:00:04 0:00:03 0:00:01 774k 100 3355k 100 3355k 0 0 798k 0 0:00:04 0:00:04 --:--:-- 798k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 3355k 1 49119 0 0 373k 0 0:00:08 --:--:-- 0:00:08 371k 27 3355k 27 932k 0 0 826k 0 0:00:04 0:00:01 0:00:03 826k 57 3355k 57 1936k 0 0 909k 0 0:00:03 0:00:02 0:00:01 909k 88 3355k 88 2953k 0 0 943k 0 0:00:03 0:00:03 --:--:-- 943k 100 3355k 100 3355k 0 0 937k 0 0:00:03 0:00:03 --:--:-- 937k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 14 751k 14 111k 0 0 193k 0 0:00:03 --:--:-- 0:00:03 193k 100 751k 100 751k 0 0 512k 0 0:00:01 0:00:01 --:--:-- 512k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 52 751k 52 393k 0 0 757k 0 --:--:-- --:--:-- --:--:-- 756k 100 751k 100 751k 0 0 843k 0 --:--:-- --:--:-- --:--:-- 842k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 31 1878k 31 596k 0 0 553k 0 0:00:03 0:00:01 0:00:02 553k 76 1878k 76 1441k 0 0 694k 0 0:00:02 0:00:02 --:--:-- 694k 100 1878k 100 1878k 0 0 768k 0 0:00:02 0:00:02 --:--:-- 768k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 15 1878k 15 300k 0 0 500k 0 0:00:03 --:--:-- 0:00:03 500k 64 1878k 64 1209k 0 0 756k 0 0:00:02 0:00:01 0:00:01 755k 100 1878k 100 1878k 0 0 802k 0 0:00:02 0:00:02 --:--:-- 803k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 86 149k 86 128k 0 0 220k 0 --:--:-- --:--:-- --:--:-- 220k 100 149k 100 149k 0 0 241k 0 --:--:-- --:--:-- --:--:-- 241k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 45 149k 45 69449 0 0 313k 0 --:--:-- --:--:-- --:--:-- 312k 100 149k 100 149k 0 0 512k 0 --:--:-- --:--:-- --:--:-- 510k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 110k 100 110k 0 0 164k 0 --:--:-- --:--:-- --:--:-- 164k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 110k 100 110k 0 0 524k 0 --:--:-- --:--:-- --:--:-- 526k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 32 1142k 32 374k 0 0 298k 0 0:00:03 0:00:01 0:00:02 298k 79 1142k 79 903k 0 0 409k 0 0:00:02 0:00:02 --:--:-- 408k 100 1142k 100 1142k 0 0 447k 0 0:00:02 0:00:02 --:--:-- 447k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 49 1142k 49 562k 0 0 833k 0 0:00:01 --:--:-- 0:00:01 832k 100 1142k 100 1142k 0 0 865k 0 0:00:01 0:00:01 --:--:-- 865k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 5019k 2 124k 0 0 189k 0 0:00:26 --:--:-- 0:00:26 189k 12 5019k 12 633k 0 0 384k 0 0:00:13 0:00:01 0:00:12 384k 23 5019k 23 1199k 0 0 457k 0 0:00:10 0:00:02 0:00:08 457k 34 5019k 34 1732k 0 0 478k 0 0:00:10 0:00:03 0:00:07 478k 47 5019k 47 2370k 0 0 512k 0 0:00:09 0:00:04 0:00:05 512k 60 5019k 60 3029k 0 0 539k 0 0:00:09 0:00:05 0:00:04 585k 73 5019k 73 3686k 0 0 556k 0 0:00:09 0:00:06 0:00:03 612k 85 5019k 85 4270k 0 0 559k 0 0:00:08 0:00:07 0:00:01 613k 100 5019k 100 5019k 0 0 614k 0 0:00:08 0:00:08 --:--:-- 722k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 5019k 3 191k 0 0 594k 0 0:00:08 --:--:-- 0:00:08 593k 22 5019k 22 1117k 0 0 845k 0 0:00:05 0:00:01 0:00:04 845k 41 5019k 41 2087k 0 0 900k 0 0:00:05 0:00:02 0:00:03 899k 60 5019k 60 3029k 0 0 911k 0 0:00:05 0:00:03 0:00:02 911k 79 5019k 79 3985k 0 0 922k 0 0:00:05 0:00:04 0:00:01 922k 98 5019k 98 4939k 0 0 928k 0 0:00:05 0:00:05 --:--:-- 949k 100 5019k 100 5019k 0 0 932k 0 0:00:05 0:00:05 --:--:-- 961k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 39 847k 39 335k 0 0 877k 0 --:--:-- --:--:-- --:--:-- 876k 100 847k 100 847k 0 0 1143k 0 --:--:-- --:--:-- --:--:-- 1143k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 77 847k 77 660k 0 0 708k 0 0:00:01 --:--:-- 0:00:01 707k 100 847k 100 847k 0 0 702k 0 0:00:01 0:00:01 --:--:-- 702k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 39 1302k 39 520k 0 0 860k 0 0:00:01 --:--:-- 0:00:01 859k 100 1302k 100 1302k 0 0 1025k 0 0:00:01 0:00:01 --:--:-- 1025k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 34 1302k 34 453k 0 0 676k 0 0:00:01 --:--:-- 0:00:01 676k 98 1302k 98 1287k 0 0 772k 0 0:00:01 0:00:01 --:--:-- 772k 100 1302k 100 1302k 0 0 776k 0 0:00:01 0:00:01 --:--:-- 776k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 10 2232k 10 228k 0 0 798k 0 0:00:02 --:--:-- 0:00:02 797k 74 2232k 74 1668k 0 0 1297k 0 0:00:01 0:00:01 --:--:-- 1296k 100 2232k 100 2232k 0 0 1382k 0 0:00:01 0:00:01 --:--:-- 1382k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 32 2232k 32 735k 0 0 776k 0 0:00:02 --:--:-- 0:00:02 776k 78 2232k 78 1745k 0 0 896k 0 0:00:02 0:00:01 0:00:01 896k 100 2232k 100 2232k 0 0 882k 0 0:00:02 0:00:02 --:--:-- 882k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 11 6496k 11 768k 0 0 1224k 0 0:00:05 --:--:-- 0:00:05 1223k 35 6496k 35 2337k 0 0 1434k 0 0:00:04 0:00:01 0:00:03 1433k 59 6496k 59 3863k 0 0 1470k 0 0:00:04 0:00:02 0:00:02 1469k 83 6496k 83 5392k 0 0 1487k 0 0:00:04 0:00:03 0:00:01 1486k 100 6496k 100 6496k 0 0 1520k 0 0:00:04 0:00:04 --:--:-- 1520k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 6496k 3 259k 0 0 672k 0 0:00:09 --:--:-- 0:00:09 671k 17 6496k 17 1145k 0 0 827k 0 0:00:07 0:00:01 0:00:06 827k 31 6496k 31 2020k 0 0 848k 0 0:00:07 0:00:02 0:00:05 848k 46 6496k 46 3017k 0 0 891k 0 0:00:07 0:00:03 0:00:04 891k 61 6496k 61 3991k 0 0 905k 0 0:00:07 0:00:04 0:00:03 905k 75 6496k 75 4890k 0 0 904k 0 0:00:07 0:00:05 0:00:02 922k 88 6496k 88 5760k 0 0 902k 0 0:00:07 0:00:06 0:00:01 923k 100 6496k 100 6496k 0 0 896k 0 0:00:07 0:00:07 --:--:-- 919k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 68 455k 68 311k 0 0 1070k 0 --:--:-- --:--:-- --:--:-- 1071k 100 455k 100 455k 0 0 1290k 0 --:--:-- --:--:-- --:--:-- 1290k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 455k 0 1205 0 0 9139 0 0:00:51 --:--:-- 0:00:51 9128 100 455k 100 455k 0 0 665k 0 --:--:-- --:--:-- --:--:-- 665k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 697k 100 697k 0 0 1221k 0 --:--:-- --:--:-- --:--:-- 1223k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 33 697k 33 230k 0 0 621k 0 0:00:01 --:--:-- 0:00:01 620k 100 697k 100 697k 0 0 757k 0 --:--:-- --:--:-- --:--:-- 757k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 100k 100 100k 0 0 667k 0 --:--:-- --:--:-- --:--:-- 670k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 100k 100 100k 0 0 319k 0 --:--:-- --:--:-- --:--:-- 320k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 1073k 2 22983 0 0 233k 0 0:00:04 --:--:-- 0:00:04 233k 100 1073k 100 1073k 0 0 1353k 0 --:--:-- --:--:-- --:--:-- 1353k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 1073k 1 15723 0 0 168k 0 0:00:06 --:--:-- 0:00:06 166k 74 1073k 74 796k 0 0 735k 0 0:00:01 0:00:01 --:--:-- 735k 100 1073k 100 1073k 0 0 773k 0 0:00:01 0:00:01 --:--:-- 773k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 48 419k 48 203k 0 0 801k 0 --:--:-- --:--:-- --:--:-- 799k 100 419k 100 419k 0 0 995k 0 --:--:-- --:--:-- --:--:-- 993k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 419k 100 419k 0 0 733k 0 --:--:-- --:--:-- --:--:-- 734k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 70 1274k 70 903k 0 0 1136k 0 0:00:01 --:--:-- 0:00:01 1135k 100 1274k 100 1274k 0 0 1191k 0 0:00:01 0:00:01 --:--:-- 1191k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 1274k 0 1203 0 0 9098 0 0:02:23 --:--:-- 0:02:23 9113 60 1274k 60 771k 0 0 719k 0 0:00:01 0:00:01 --:--:-- 719k 100 1274k 100 1274k 0 0 775k 0 0:00:01 0:00:01 --:--:-- 774k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 494k 100 494k 0 0 1009k 0 --:--:-- --:--:-- --:--:-- 1010k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 39 494k 39 196k 0 0 447k 0 0:00:01 --:--:-- 0:00:01 447k 100 494k 100 494k 0 0 646k 0 --:--:-- --:--:-- --:--:-- 646k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 4795k 1 66543 0 0 463k 0 0:00:10 --:--:-- 0:00:10 464k 17 4795k 17 860k 0 0 751k 0 0:00:06 0:00:01 0:00:05 750k 35 4795k 35 1722k 0 0 798k 0 0:00:06 0:00:02 0:00:04 798k 49 4795k 49 2356k 0 0 746k 0 0:00:06 0:00:03 0:00:03 746k 63 4795k 63 3046k 0 0 730k 0 0:00:06 0:00:04 0:00:02 730k 75 4795k 75 3635k 0 0 705k 0 0:00:06 0:00:05 0:00:01 712k 91 4795k 91 4391k 0 0 714k 0 0:00:06 0:00:06 --:--:-- 706k 100 4795k 100 4795k 0 0 739k 0 0:00:06 0:00:06 --:--:-- 710k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 4795k 9 442k 0 0 722k 0 0:00:06 --:--:-- 0:00:06 722k 27 4795k 27 1309k 0 0 812k 0 0:00:05 0:00:01 0:00:04 812k 46 4795k 46 2250k 0 0 861k 0 0:00:05 0:00:02 0:00:03 861k 65 4795k 65 3124k 0 0 865k 0 0:00:05 0:00:03 0:00:02 865k 85 4795k 85 4096k 0 0 885k 0 0:00:05 0:00:04 0:00:01 884k 100 4795k 100 4795k 0 0 899k 0 0:00:05 0:00:05 --:--:-- 922k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 57 863k 57 496k 0 0 821k 0 0:00:01 --:--:-- 0:00:01 821k 100 863k 100 863k 0 0 798k 0 0:00:01 0:00:01 --:--:-- 799k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 15 863k 15 137k 0 0 580k 0 0:00:01 --:--:-- 0:00:01 579k 100 863k 100 863k 0 0 877k 0 --:--:-- --:--:-- --:--:-- 876k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 8119k 2 208k 0 0 436k 0 0:00:18 --:--:-- 0:00:18 436k 13 8119k 13 1091k 0 0 739k 0 0:00:10 0:00:01 0:00:09 739k 31 8119k 31 2546k 0 0 1028k 0 0:00:07 0:00:02 0:00:05 1028k 46 8119k 46 3764k 0 0 1082k 0 0:00:07 0:00:03 0:00:04 1082k 62 8119k 62 5042k 0 0 1126k 0 0:00:07 0:00:04 0:00:03 1126k 80 8119k 80 6563k 0 0 1198k 0 0:00:06 0:00:05 0:00:01 1271k 97 8119k 97 7892k 0 0 1218k 0 0:00:06 0:00:06 --:--:-- 1360k 100 8119k 100 8119k 0 0 1216k 0 0:00:06 0:00:06 --:--:-- 1326k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 8119k 1 125k 0 0 566k 0 0:00:14 --:--:-- 0:00:14 564k 13 8119k 13 1071k 0 0 880k 0 0:00:09 0:00:01 0:00:08 879k 25 8119k 25 2047k 0 0 923k 0 0:00:08 0:00:02 0:00:06 923k 37 8119k 37 3010k 0 0 927k 0 0:00:08 0:00:03 0:00:05 927k 48 8119k 48 3964k 0 0 940k 0 0:00:08 0:00:04 0:00:04 940k 61 8119k 61 4988k 0 0 952k 0 0:00:08 0:00:05 0:00:03 969k 73 8119k 73 5966k 0 0 959k 0 0:00:08 0:00:06 0:00:02 978k 85 8119k 85 6978k 0 0 966k 0 0:00:08 0:00:07 0:00:01 985k 97 8119k 97 7943k 0 0 966k 0 0:00:08 0:00:08 --:--:-- 991k 100 8119k 100 8119k 0 0 962k 0 0:00:08 0:00:08 --:--:-- 984k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 37 425k 37 158k 0 0 218k 0 0:00:01 --:--:-- 0:00:01 218k 100 425k 100 425k 0 0 343k 0 0:00:01 0:00:01 --:--:-- 343k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 425k 100 425k 0 0 752k 0 --:--:-- --:--:-- --:--:-- 752k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 9464k 0 15723 0 0 31579 0 0:05:06 --:--:-- 0:05:06 31572 5 9464k 5 497k 0 0 343k 0 0:00:27 0:00:01 0:00:26 344k 13 9464k 13 1273k 0 0 516k 0 0:00:18 0:00:02 0:00:16 516k 22 9464k 22 2123k 0 0 616k 0 0:00:15 0:00:03 0:00:12 615k 32 9464k 32 3116k 0 0 700k 0 0:00:13 0:00:04 0:00:09 700k 45 9464k 45 4297k 0 0 789k 0 0:00:11 0:00:05 0:00:06 865k 56 9464k 56 5371k 0 0 832k 0 0:00:11 0:00:06 0:00:05 974k 67 9464k 67 6393k 0 0 857k 0 0:00:11 0:00:07 0:00:04 1025k 76 9464k 76 7203k 0 0 851k 0 0:00:11 0:00:08 0:00:03 1014k 84 9464k 84 8031k 0 0 849k 0 0:00:11 0:00:09 0:00:02 980k 93 9464k 93 8815k 0 0 843k 0 0:00:11 0:00:10 0:00:01 903k 100 9464k 100 9464k 0 0 837k 0 0:00:11 0:00:11 --:--:-- 843k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 9464k 0 37503 0 0 304k 0 0:00:31 --:--:-- 0:00:31 302k 8 9464k 8 789k 0 0 705k 0 0:00:13 0:00:01 0:00:12 705k 18 9464k 18 1753k 0 0 827k 0 0:00:11 0:00:02 0:00:09 827k 28 9464k 28 2740k 0 0 873k 0 0:00:10 0:00:03 0:00:07 873k 39 9464k 39 3761k 0 0 913k 0 0:00:10 0:00:04 0:00:06 913k 50 9464k 50 4747k 0 0 927k 0 0:00:10 0:00:05 0:00:05 942k 60 9464k 60 5719k 0 0 934k 0 0:00:10 0:00:06 0:00:04 986k 65 9464k 65 6224k 0 0 874k 0 0:00:10 0:00:07 0:00:03 894k 69 9464k 69 6591k 0 0 803k 0 0:00:11 0:00:08 0:00:03 760k 74 9464k 74 7037k 0 0 771k 0 0:00:12 0:00:09 0:00:03 655k 79 9464k 79 7497k 0 0 740k 0 0:00:12 0:00:10 0:00:02 550k 84 9464k 84 8008k 0 0 720k 0 0:00:13 0:00:11 0:00:02 457k 90 9464k 90 8540k 0 0 704k 0 0:00:13 0:00:12 0:00:01 463k 97 9464k 97 9239k 0 0 704k 0 0:00:13 0:00:13 --:--:-- 538k 100 9464k 100 9464k 0 0 708k 0 0:00:13 0:00:13 --:--:-- 573k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 5 5316k 5 266k 0 0 250k 0 0:00:21 0:00:01 0:00:20 250k 18 5316k 18 966k 0 0 464k 0 0:00:11 0:00:02 0:00:09 463k 35 5316k 35 1891k 0 0 618k 0 0:00:08 0:00:03 0:00:05 618k 54 5316k 54 2912k 0 0 717k 0 0:00:07 0:00:04 0:00:03 717k 77 5316k 77 4113k 0 0 813k 0 0:00:06 0:00:05 0:00:01 840k 100 5316k 100 5316k 0 0 881k 0 0:00:06 0:00:06 --:--:-- 1017k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 11 5316k 11 625k 0 0 868k 0 0:00:06 --:--:-- 0:00:06 868k 30 5316k 30 1616k 0 0 939k 0 0:00:05 0:00:01 0:00:04 939k 49 5316k 49 2613k 0 0 960k 0 0:00:05 0:00:02 0:00:03 960k 67 5316k 67 3608k 0 0 969k 0 0:00:05 0:00:03 0:00:02 969k 83 5316k 83 4422k 0 0 937k 0 0:00:05 0:00:04 0:00:01 936k 100 5316k 100 5316k 0 0 944k 0 0:00:05 0:00:05 --:--:-- 955k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 5138k 0 44763 0 0 43438 0 0:02:01 0:00:01 0:02:00 43459 11 5138k 11 591k 0 0 300k 0 0:00:17 0:00:01 0:00:16 300k 27 5138k 27 1430k 0 0 479k 0 0:00:10 0:00:02 0:00:08 479k 48 5138k 48 2501k 0 0 629k 0 0:00:08 0:00:03 0:00:05 629k 73 5138k 73 3763k 0 0 757k 0 0:00:06 0:00:04 0:00:02 757k 100 5138k 100 5138k 0 0 873k 0 0:00:05 0:00:05 --:--:-- 1050k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 17 5138k 17 917k 0 0 869k 0 0:00:05 0:00:01 0:00:04 869k 37 5138k 37 1906k 0 0 927k 0 0:00:05 0:00:02 0:00:03 927k 55 5138k 55 2852k 0 0 933k 0 0:00:05 0:00:03 0:00:02 933k 74 5138k 74 3835k 0 0 945k 0 0:00:05 0:00:04 0:00:01 945k 93 5138k 93 4796k 0 0 945k 0 0:00:05 0:00:05 --:--:-- 957k 100 5138k 100 5138k 0 0 953k 0 0:00:05 0:00:05 --:--:-- 974k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 72 1626k 72 1185k 0 0 1157k 0 0:00:01 0:00:01 --:--:-- 1157k 100 1626k 100 1626k 0 0 1251k 0 0:00:01 0:00:01 --:--:-- 1250k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 29 1626k 29 487k 0 0 769k 0 0:00:02 --:--:-- 0:00:02 768k 86 1626k 86 1407k 0 0 859k 0 0:00:01 0:00:01 --:--:-- 858k 100 1626k 100 1626k 0 0 873k 0 0:00:01 0:00:01 --:--:-- 872k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 350k 100 350k 0 0 957k 0 --:--:-- --:--:-- --:--:-- 960k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 350k 100 350k 0 0 795k 0 --:--:-- --:--:-- --:--:-- 796k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 8 2526k 8 220k 0 0 847k 0 0:00:02 --:--:-- 0:00:02 846k 62 2526k 62 1585k 0 0 1257k 0 0:00:02 0:00:01 0:00:01 1257k 100 2526k 100 2526k 0 0 1318k 0 0:00:01 0:00:01 --:--:-- 1318k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 2526k 6 162k 0 0 593k 0 0:00:04 --:--:-- 0:00:04 592k 45 2526k 45 1155k 0 0 920k 0 0:00:02 0:00:01 0:00:01 920k 84 2526k 84 2143k 0 0 950k 0 0:00:02 0:00:02 --:--:-- 950k 100 2526k 100 2526k 0 0 959k 0 0:00:02 0:00:02 --:--:-- 959k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 15.3M 1 230k 0 0 772k 0 0:00:20 --:--:-- 0:00:20 772k 9 15.3M 9 1451k 0 0 1123k 0 0:00:14 0:00:01 0:00:13 1122k 17 15.3M 17 2753k 0 0 1201k 0 0:00:13 0:00:02 0:00:11 1201k 26 15.3M 26 4096k 0 0 1239k 0 0:00:12 0:00:03 0:00:09 1239k 34 15.3M 34 5412k 0 0 1260k 0 0:00:12 0:00:04 0:00:08 1260k 43 15.3M 43 6915k 0 0 1306k 0 0:00:12 0:00:05 0:00:07 1337k 52 15.3M 52 8256k 0 0 1312k 0 0:00:11 0:00:06 0:00:05 1361k 61 15.3M 61 9701k 0 0 1330k 0 0:00:11 0:00:07 0:00:04 1389k 67 15.3M 67 10.4M 0 0 1280k 0 0:00:12 0:00:08 0:00:04 1308k 73 15.3M 73 11.3M 0 0 1246k 0 0:00:12 0:00:09 0:00:03 1234k 81 15.3M 81 12.5M 0 0 1251k 0 0:00:12 0:00:10 0:00:02 1194k 91 15.3M 91 13.9M 0 0 1269k 0 0:00:12 0:00:11 0:00:01 1214k 100 15.3M 100 15.3M 0 0 1297k 0 0:00:12 0:00:12 --:--:-- 1248k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 15.3M 2 444k 0 0 737k 0 0:00:21 --:--:-- 0:00:21 736k 8 15.3M 8 1392k 0 0 868k 0 0:00:18 0:00:01 0:00:17 867k 14 15.3M 14 2323k 0 0 892k 0 0:00:17 0:00:02 0:00:15 892k 20 15.3M 20 3299k 0 0 915k 0 0:00:17 0:00:03 0:00:14 915k 26 15.3M 26 4230k 0 0 918k 0 0:00:17 0:00:04 0:00:13 918k 32 15.3M 32 5186k 0 0 925k 0 0:00:17 0:00:05 0:00:12 948k 39 15.3M 39 6149k 0 0 931k 0 0:00:16 0:00:06 0:00:10 951k 44 15.3M 44 7079k 0 0 930k 0 0:00:16 0:00:07 0:00:09 950k 49 15.3M 49 7859k 0 0 913k 0 0:00:17 0:00:08 0:00:09 911k 55 15.3M 55 8798k 0 0 914k 0 0:00:17 0:00:09 0:00:08 909k 61 15.3M 61 9731k 0 0 917k 0 0:00:17 0:00:10 0:00:07 908k 68 15.3M 68 10.4M 0 0 924k 0 0:00:17 0:00:11 0:00:06 915k 74 15.3M 74 11.3M 0 0 923k 0 0:00:17 0:00:12 0:00:05 913k 80 15.3M 80 12.3M 0 0 928k 0 0:00:16 0:00:13 0:00:03 955k 86 15.3M 86 13.2M 0 0 929k 0 0:00:16 0:00:14 0:00:02 958k 91 15.3M 91 14.1M 0 0 926k 0 0:00:16 0:00:15 0:00:01 945k 97 15.3M 97 15.0M 0 0 926k 0 0:00:16 0:00:16 --:--:-- 931k 100 15.3M 100 15.3M 0 0 926k 0 0:00:16 0:00:16 --:--:-- 932k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 16.0M 0 1201 0 0 19347 0 0:14:32 --:--:-- 0:14:32 19370 7 16.0M 7 1284k 0 0 1220k 0 0:00:13 0:00:01 0:00:12 1219k 17 16.0M 17 2898k 0 0 1410k 0 0:00:11 0:00:02 0:00:09 1410k 27 16.0M 27 4598k 0 0 1505k 0 0:00:10 0:00:03 0:00:07 1505k 37 16.0M 37 6180k 0 0 1525k 0 0:00:10 0:00:04 0:00:06 1525k 47 16.0M 47 7809k 0 0 1545k 0 0:00:10 0:00:05 0:00:05 1564k 57 16.0M 57 9440k 0 0 1560k 0 0:00:10 0:00:06 0:00:04 1631k 67 16.0M 67 10.8M 0 0 1573k 0 0:00:10 0:00:07 0:00:03 1639k 76 16.0M 76 12.3M 0 0 1564k 0 0:00:10 0:00:08 0:00:02 1600k 85 16.0M 85 13.7M 0 0 1558k 0 0:00:10 0:00:09 0:00:01 1585k 95 16.0M 95 15.3M 0 0 1568k 0 0:00:10 0:00:10 --:--:-- 1591k 100 16.0M 100 16.0M 0 0 1569k 0 0:00:10 0:00:10 --:--:-- 1582k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 16.0M 2 410k 0 0 767k 0 0:00:21 --:--:-- 0:00:21 766k 7 16.0M 7 1287k 0 0 838k 0 0:00:19 0:00:01 0:00:18 838k 13 16.0M 13 2200k 0 0 867k 0 0:00:19 0:00:02 0:00:17 867k 19 16.0M 19 3150k 0 0 884k 0 0:00:18 0:00:03 0:00:15 884k 24 16.0M 24 4067k 0 0 893k 0 0:00:18 0:00:04 0:00:14 893k 30 16.0M 30 4969k 0 0 897k 0 0:00:18 0:00:05 0:00:13 911k 35 16.0M 35 5931k 0 0 907k 0 0:00:18 0:00:06 0:00:12 928k 40 16.0M 40 6696k 0 0 888k 0 0:00:18 0:00:07 0:00:11 899k 46 16.0M 46 7594k 0 0 889k 0 0:00:18 0:00:08 0:00:10 893k 51 16.0M 51 8442k 0 0 885k 0 0:00:18 0:00:09 0:00:09 877k 56 16.0M 56 9354k 0 0 887k 0 0:00:18 0:00:10 0:00:08 877k 62 16.0M 62 10.0M 0 0 890k 0 0:00:18 0:00:11 0:00:07 867k 67 16.0M 67 10.8M 0 0 888k 0 0:00:18 0:00:12 0:00:06 889k 73 16.0M 73 11.7M 0 0 890k 0 0:00:18 0:00:13 0:00:05 893k 78 16.0M 78 12.6M 0 0 891k 0 0:00:18 0:00:14 0:00:04 902k 84 16.0M 84 13.5M 0 0 891k 0 0:00:18 0:00:15 0:00:03 899k 89 16.0M 89 14.3M 0 0 891k 0 0:00:18 0:00:16 0:00:02 893k 95 16.0M 95 15.3M 0 0 894k 0 0:00:18 0:00:17 0:00:01 910k 100 16.0M 100 16.0M 0 0 896k 0 0:00:18 0:00:18 --:--:-- 913k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 5 1746k 5 95583 0 0 185k 0 0:00:09 --:--:-- 0:00:09 185k 58 1746k 58 1029k 0 0 718k 0 0:00:02 0:00:01 0:00:01 718k 100 1746k 100 1746k 0 0 945k 0 0:00:01 0:00:01 --:--:-- 945k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 46 1746k 46 816k 0 0 748k 0 0:00:02 0:00:01 0:00:01 747k 100 1746k 100 1746k 0 0 875k 0 0:00:01 0:00:01 --:--:-- 875k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 47 1435k 47 678k 0 0 1265k 0 0:00:01 --:--:-- 0:00:01 1264k 100 1435k 100 1435k 0 0 1022k 0 0:00:01 0:00:01 --:--:-- 1023k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 1435k 0 1203 0 0 14769 0 0:01:39 --:--:-- 0:01:39 14670 62 1435k 62 895k 0 0 830k 0 0:00:01 0:00:01 --:--:-- 830k 100 1435k 100 1435k 0 0 855k 0 0:00:01 0:00:01 --:--:-- 854k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 1586k 0 11367 0 0 138k 0 0:00:11 --:--:-- 0:00:11 138k 12 1586k 12 205k 0 0 186k 0 0:00:08 0:00:01 0:00:07 186k 54 1586k 54 868k 0 0 408k 0 0:00:03 0:00:02 0:00:01 408k 100 1586k 100 1586k 0 0 520k 0 0:00:03 0:00:03 --:--:-- 521k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 14 1586k 14 235k 0 0 641k 0 0:00:02 --:--:-- 0:00:02 640k 74 1586k 74 1180k 0 0 857k 0 0:00:01 0:00:01 --:--:-- 857k 100 1586k 100 1586k 0 0 895k 0 0:00:01 0:00:01 --:--:-- 895k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 475k 100 475k 0 0 496k 0 --:--:-- --:--:-- --:--:-- 496k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 94 475k 94 450k 0 0 808k 0 --:--:-- --:--:-- --:--:-- 809k 100 475k 100 475k 0 0 819k 0 --:--:-- --:--:-- --:--:-- 818k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 22 1486k 22 330k 0 0 335k 0 0:00:04 --:--:-- 0:00:04 334k 64 1486k 64 962k 0 0 484k 0 0:00:03 0:00:01 0:00:02 484k 100 1486k 100 1486k 0 0 598k 0 0:00:02 0:00:02 --:--:-- 598k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 56 1486k 56 846k 0 0 889k 0 0:00:01 --:--:-- 0:00:01 888k 100 1486k 100 1486k 0 0 924k 0 0:00:01 0:00:01 --:--:-- 924k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 9796 100 9796 0 0 143k 0 --:--:-- --:--:-- --:--:-- 144k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 9796 100 9796 0 0 121k 0 --:--:-- --:--:-- --:--:-- 122k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 186k 100 186k 0 0 699k 0 --:--:-- --:--:-- --:--:-- 701k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 38 186k 38 72353 0 0 358k 0 --:--:-- --:--:-- --:--:-- 356k 100 186k 100 186k 0 0 567k 0 --:--:-- --:--:-- --:--:-- 567k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 96939 1 1206 0 0 17911 0 0:00:05 --:--:-- 0:00:05 17735 100 96939 100 96939 0 0 473k 0 --:--:-- --:--:-- --:--:-- 473k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 96939 100 96939 0 0 488k 0 --:--:-- --:--:-- --:--:-- 490k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 4 15.7M 4 724k 0 0 884k 0 0:00:18 --:--:-- 0:00:18 884k 12 15.7M 12 2038k 0 0 1121k 0 0:00:14 0:00:01 0:00:13 1121k 21 15.7M 21 3519k 0 0 1249k 0 0:00:12 0:00:02 0:00:10 1248k 31 15.7M 31 5148k 0 0 1347k 0 0:00:11 0:00:03 0:00:08 1347k 41 15.7M 41 6676k 0 0 1385k 0 0:00:11 0:00:04 0:00:07 1385k 51 15.7M 51 8324k 0 0 1430k 0 0:00:11 0:00:05 0:00:06 1520k 61 15.7M 61 9904k 0 0 1452k 0 0:00:11 0:00:06 0:00:05 1573k 70 15.7M 70 11.1M 0 0 1460k 0 0:00:11 0:00:07 0:00:04 1579k 80 15.7M 80 12.7M 0 0 1475k 0 0:00:10 0:00:08 0:00:02 1573k 90 15.7M 90 14.2M 0 0 1490k 0 0:00:10 0:00:09 0:00:01 1591k 99 15.7M 99 15.7M 0 0 1487k 0 0:00:10 0:00:10 --:--:-- 1554k 100 15.7M 100 15.7M 0 0 1486k 0 0:00:10 0:00:10 --:--:-- 1544k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 15.7M 3 487k 0 0 759k 0 0:00:21 --:--:-- 0:00:21 759k 6 15.7M 6 1060k 0 0 641k 0 0:00:25 0:00:01 0:00:24 641k 9 15.7M 9 1552k 0 0 587k 0 0:00:27 0:00:02 0:00:25 587k 13 15.7M 13 2191k 0 0 601k 0 0:00:26 0:00:03 0:00:23 601k 18 15.7M 18 3056k 0 0 658k 0 0:00:24 0:00:04 0:00:20 658k 24 15.7M 24 4008k 0 0 710k 0 0:00:22 0:00:05 0:00:17 704k 30 15.7M 30 4965k 0 0 746k 0 0:00:21 0:00:06 0:00:15 781k 36 15.7M 36 5919k 0 0 773k 0 0:00:20 0:00:07 0:00:13 870k 42 15.7M 42 6910k 0 0 799k 0 0:00:20 0:00:08 0:00:12 943k 48 15.7M 48 7897k 0 0 819k 0 0:00:19 0:00:09 0:00:10 968k 55 15.7M 55 8877k 0 0 832k 0 0:00:19 0:00:10 0:00:09 969k 60 15.7M 60 9823k 0 0 843k 0 0:00:19 0:00:11 0:00:08 972k 67 15.7M 67 10.5M 0 0 856k 0 0:00:18 0:00:12 0:00:06 985k 73 15.7M 73 11.5M 0 0 864k 0 0:00:18 0:00:13 0:00:05 977k 78 15.7M 78 12.4M 0 0 868k 0 0:00:18 0:00:14 0:00:04 963k 84 15.7M 84 13.3M 0 0 872k 0 0:00:18 0:00:15 0:00:03 959k 90 15.7M 90 14.3M 0 0 879k 0 0:00:18 0:00:16 0:00:02 964k 96 15.7M 96 15.1M 0 0 881k 0 0:00:18 0:00:17 0:00:01 944k 100 15.7M 100 15.7M 0 0 884k 0 0:00:18 0:00:18 --:--:-- 942k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 503k 100 503k 0 0 650k 0 --:--:-- --:--:-- --:--:-- 650k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 37 503k 37 189k 0 0 601k 0 --:--:-- --:--:-- --:--:-- 600k 100 503k 100 503k 0 0 769k 0 --:--:-- --:--:-- --:--:-- 768k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 617k 100 617k 0 0 1011k 0 --:--:-- --:--:-- --:--:-- 1010k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 65 617k 65 402k 0 0 642k 0 --:--:-- --:--:-- --:--:-- 641k 100 617k 100 617k 0 0 752k 0 --:--:-- --:--:-- --:--:-- 752k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 15 372k 15 59285 0 0 150k 0 0:00:02 --:--:-- 0:00:02 150k 100 372k 100 372k 0 0 393k 0 --:--:-- --:--:-- --:--:-- 392k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 372k 100 372k 0 0 767k 0 --:--:-- --:--:-- --:--:-- 768k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 551k 0 1205 0 0 2357 0 0:03:59 --:--:-- 0:03:59 2353 28 551k 28 157k 0 0 112k 0 0:00:04 0:00:01 0:00:03 112k 87 551k 87 480k 0 0 200k 0 0:00:02 0:00:02 --:--:-- 200k 100 551k 100 551k 0 0 211k 0 0:00:02 0:00:02 --:--:-- 211k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 24 551k 24 134k 0 0 517k 0 0:00:01 --:--:-- 0:00:01 517k 100 551k 100 551k 0 0 789k 0 --:--:-- --:--:-- --:--:-- 788k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 68 23150 68 15730 0 0 20143 0 0:00:01 --:--:-- 0:00:01 20140 100 23150 100 23150 0 0 29479 0 --:--:-- --:--:-- --:--:-- 29452 + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 23150 100 23150 0 0 179k 0 --:--:-- --:--:-- --:--:-- 180k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 7 557k 7 44765 0 0 45255 0 0:00:12 --:--:-- 0:00:12 45217 40 557k 40 223k 0 0 111k 0 0:00:05 0:00:02 0:00:03 111k 78 557k 78 437k 0 0 147k 0 0:00:03 0:00:02 0:00:01 147k 100 557k 100 557k 0 0 167k 0 0:00:03 0:00:03 --:--:-- 167k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 42 557k 42 236k 0 0 638k 0 --:--:-- --:--:-- --:--:-- 639k 100 557k 100 557k 0 0 765k 0 --:--:-- --:--:-- --:--:-- 765k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 159k 9 15733 0 0 19725 0 0:00:08 --:--:-- 0:00:08 19715 66 159k 66 106k 0 0 68663 0 0:00:02 0:00:01 0:00:01 68642 100 159k 100 159k 0 0 89902 0 0:00:01 0:00:01 --:--:-- 89905 + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 159k 100 159k 0 0 526k 0 --:--:-- --:--:-- --:--:-- 527k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 12288 100 12288 0 0 28778 0 --:--:-- --:--:-- --:--:-- 28845 + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 12288 100 12288 0 0 169k 0 --:--:-- --:--:-- --:--:-- 171k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 5006k 1 88326 0 0 64707 0 0:01:19 0:00:01 0:01:18 64707 5 5006k 5 280k 0 0 125k 0 0:00:39 0:00:02 0:00:37 125k 8 5006k 8 437k 0 0 135k 0 0:00:36 0:00:03 0:00:33 135k 18 5006k 18 922k 0 0 216k 0 0:00:23 0:00:04 0:00:19 216k 31 5006k 31 1565k 0 0 295k 0 0:00:16 0:00:05 0:00:11 307k 33 5006k 33 1691k 0 0 271k 0 0:00:18 0:00:06 0:00:12 330k 39 5006k 39 1959k 0 0 270k 0 0:00:18 0:00:07 0:00:11 335k 42 5006k 42 2150k 0 0 259k 0 0:00:19 0:00:08 0:00:11 339k 46 5006k 46 2316k 0 0 250k 0 0:00:19 0:00:09 0:00:10 280k 48 5006k 48 2410k 0 0 234k 0 0:00:21 0:00:10 0:00:11 170k 51 5006k 51 2554k 0 0 225k 0 0:00:22 0:00:11 0:00:11 169k 52 5006k 52 2635k 0 0 213k 0 0:00:23 0:00:12 0:00:11 131k 54 5006k 54 2722k 0 0 204k 0 0:00:24 0:00:13 0:00:11 113k 56 5006k 56 2814k 0 0 197k 0 0:00:25 0:00:14 0:00:11 99k 58 5006k 58 2917k 0 0 191k 0 0:00:26 0:00:15 0:00:11 102k 60 5006k 60 3029k 0 0 185k 0 0:00:26 0:00:16 0:00:10 97051 62 5006k 62 3146k 0 0 182k 0 0:00:27 0:00:17 0:00:10 104k 65 5006k 65 3272k 0 0 178k 0 0:00:27 0:00:18 0:00:09 109k 68 5006k 68 3405k 0 0 176k 0 0:00:28 0:00:19 0:00:09 118k 71 5006k 71 3594k 0 0 177k 0 0:00:28 0:00:20 0:00:08 135k 75 5006k 75 3792k 0 0 178k 0 0:00:28 0:00:21 0:00:07 155k 83 5006k 83 4171k 0 0 187k 0 0:00:26 0:00:22 0:00:04 205k 100 5006k 100 5006k 0 0 217k 0 0:00:22 0:00:22 --:--:-- 368k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 5006k 0 1206 0 0 6510 0 0:13:07 --:--:-- 0:13:07 6483 19 5006k 19 990k 0 0 844k 0 0:00:05 0:00:01 0:00:04 844k 40 5006k 40 2013k 0 0 926k 0 0:00:05 0:00:02 0:00:03 926k 59 5006k 59 2984k 0 0 940k 0 0:00:05 0:00:03 0:00:02 940k 77 5006k 77 3880k 0 0 929k 0 0:00:05 0:00:04 0:00:01 929k 97 5006k 97 4890k 0 0 945k 0 0:00:05 0:00:05 --:--:-- 979k 100 5006k 100 5006k 0 0 939k 0 0:00:05 0:00:05 --:--:-- 966k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 933k 0 1208 0 0 6381 0 0:02:29 --:--:-- 0:02:29 6357 40 933k 40 381k 0 0 321k 0 0:00:02 0:00:01 0:00:01 321k 100 933k 100 933k 0 0 453k 0 0:00:02 0:00:02 --:--:-- 453k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 72 933k 72 678k 0 0 814k 0 0:00:01 --:--:-- 0:00:01 814k 100 933k 100 933k 0 0 840k 0 0:00:01 0:00:01 --:--:-- 840k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 4122k 0 1206 0 0 5810 0 0:12:06 --:--:-- 0:12:06 5798 10 4122k 10 429k 0 0 379k 0 0:00:10 0:00:01 0:00:09 379k 19 4122k 19 783k 0 0 363k 0 0:00:11 0:00:02 0:00:09 363k 30 4122k 30 1240k 0 0 401k 0 0:00:10 0:00:03 0:00:07 401k 38 4122k 38 1603k 0 0 390k 0 0:00:10 0:00:04 0:00:06 390k 47 4122k 47 1977k 0 0 388k 0 0:00:10 0:00:05 0:00:05 404k 58 4122k 58 2427k 0 0 394k 0 0:00:10 0:00:06 0:00:04 397k 69 4122k 69 2845k 0 0 400k 0 0:00:10 0:00:07 0:00:03 416k 77 4122k 77 3184k 0 0 393k 0 0:00:10 0:00:08 0:00:02 388k 85 4122k 85 3514k 0 0 386k 0 0:00:10 0:00:09 0:00:01 383k 93 4122k 93 3852k 0 0 381k 0 0:00:10 0:00:10 --:--:-- 374k 100 4122k 100 4122k 0 0 373k 0 0:00:11 0:00:11 --:--:-- 346k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 4122k 9 403k 0 0 567k 0 0:00:07 --:--:-- 0:00:07 566k 34 4122k 34 1433k 0 0 837k 0 0:00:04 0:00:01 0:00:03 836k 61 4122k 61 2515k 0 0 927k 0 0:00:04 0:00:02 0:00:02 927k 85 4122k 85 3512k 0 0 946k 0 0:00:04 0:00:03 0:00:01 946k 100 4122k 100 4122k 0 0 959k 0 0:00:04 0:00:04 --:--:-- 959k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 16 525k 16 91229 0 0 42946 0 0:00:12 0:00:02 0:00:10 42951 70 525k 70 372k 0 0 122k 0 0:00:04 0:00:03 0:00:01 122k 100 525k 100 525k 0 0 158k 0 0:00:03 0:00:03 --:--:-- 158k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 57 525k 57 303k 0 0 789k 0 --:--:-- --:--:-- --:--:-- 789k 100 525k 100 525k 0 0 874k 0 --:--:-- --:--:-- --:--:-- 874k diff -Nru libreoffice-5.0.1~rc2/svl/source/numbers/zformat.cxx libreoffice-5.0.2~rc2/svl/source/numbers/zformat.cxx --- libreoffice-5.0.1~rc2/svl/source/numbers/zformat.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svl/source/numbers/zformat.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1969,7 +1969,7 @@ nPrec = ::std::min(nPrec, static_cast(14)); // limit to 14 decimals. rOutString = ::rtl::math::doubleToUString(fNumber, rtl_math_StringFormat_E2, - nPrec, rFormatter.GetNumDecimalSep()[0]); + nPrec, rFormatter.GetNumDecimalSep()[0], true ); } sal_Int32 lcl_GetForcedDenominator(const ImpSvNumberformatInfo &rInfo, sal_uInt16 nAnz) diff -Nru libreoffice-5.0.1~rc2/svtools/source/config/menuoptions.cxx libreoffice-5.0.2~rc2/svtools/source/config/menuoptions.cxx --- libreoffice-5.0.1~rc2/svtools/source/config/menuoptions.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svtools/source/config/menuoptions.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -128,7 +128,7 @@ SetModified(); for ( ::std::list>::const_iterator iter = aList.begin(); iter != aList.end(); ++iter ) iter->Call( this ); - Commit(); + // tdf#93451: don't Commit() here, it's too early } diff -Nru libreoffice-5.0.1~rc2/svtools/source/control/ruler.cxx libreoffice-5.0.2~rc2/svtools/source/control/ruler.cxx --- libreoffice-5.0.1~rc2/svtools/source/control/ruler.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svtools/source/control/ruler.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -2344,6 +2344,12 @@ // update ruler if ( mbFormat ) { + if (!IsReallyVisible()) + { + // set mpData for ImplDocHitTest() + ImplFormat(*this); + } + Invalidate(INVALIDATE_NOERASE); } @@ -2534,7 +2540,7 @@ meExtraType = eNewExtraType; mnExtraStyle = nStyle; if (IsReallyVisible() && IsUpdateMode()) - Invalidate(INVALIDATE_NOERASE); + Invalidate(); } } diff -Nru libreoffice-5.0.1~rc2/svtools/source/graphic/grfcache.cxx libreoffice-5.0.2~rc2/svtools/source/graphic/grfcache.cxx --- libreoffice-5.0.1~rc2/svtools/source/graphic/grfcache.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svtools/source/graphic/grfcache.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -43,7 +43,7 @@ sal_uInt32 mnID1; sal_uInt32 mnID2; sal_uInt32 mnID3; - sal_uInt32 mnID4; + BitmapChecksum mnID4; public: @@ -79,7 +79,7 @@ mnID1 |= rSvgDataPtr->getSvgDataArrayLength(); mnID2 = basegfx::fround(rRange.getWidth()); mnID3 = basegfx::fround(rRange.getHeight()); - mnID4 = rtl_crc32(0, rSvgDataPtr->getSvgDataArray().get(), rSvgDataPtr->getSvgDataArrayLength()); + mnID4 = vcl_get_checksum(0, rSvgDataPtr->getSvgDataArray().get(), rSvgDataPtr->getSvgDataArrayLength()); } else if( rGraphic.IsAnimated() ) { @@ -123,7 +123,7 @@ { OStringBuffer aHexStr; sal_Int32 nShift, nIndex = 0; - aHexStr.setLength(32); + aHexStr.setLength(24 + (2 * BITMAP_CHECKSUM_SIZE)); for( nShift = 28; nShift >= 0; nShift -= 4 ) aHexStr[nIndex++] = aHexData[ ( mnID1 >> (sal_uInt32) nShift ) & 0xf ]; @@ -134,7 +134,7 @@ for( nShift = 28; nShift >= 0; nShift -= 4 ) aHexStr[nIndex++] = aHexData[ ( mnID3 >> (sal_uInt32) nShift ) & 0xf ]; - for( nShift = 28; nShift >= 0; nShift -= 4 ) + for( nShift = BITMAP_CHECKSUM_BITS - 4; nShift >= 0; nShift -= 4 ) aHexStr[nIndex++] = aHexData[ ( mnID4 >> (sal_uInt32) nShift ) & 0xf ]; return aHexStr.makeStringAndClear(); diff -Nru libreoffice-5.0.1~rc2/svx/inc/svdoopengl.hxx libreoffice-5.0.2~rc2/svx/inc/svdoopengl.hxx --- libreoffice-5.0.1~rc2/svx/inc/svdoopengl.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svx/inc/svdoopengl.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -30,7 +30,7 @@ virtual ~SdrOpenGLObj(); virtual sdr::contact::ViewContact* CreateObjectSpecificViewContact() SAL_OVERRIDE; - OpenGLContext* getOpenGLContext() { return mpContext;} + rtl::Reference getOpenGLContext() { return mpContext;} virtual void NbcResize(const Point& rRef, const Fraction& xFact, const Fraction& yFact) SAL_OVERRIDE; @@ -41,7 +41,7 @@ private: - OpenGLContext* mpContext; + rtl::Reference mpContext; boost::scoped_ptr mpRenderer; }; diff -Nru libreoffice-5.0.1~rc2/svx/source/dialog/svxbmpnumvalueset.cxx libreoffice-5.0.2~rc2/svx/source/dialog/svxbmpnumvalueset.cxx --- libreoffice-5.0.1~rc2/svx/source/dialog/svxbmpnumvalueset.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svx/source/dialog/svxbmpnumvalueset.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -141,9 +141,8 @@ 25, 90, }; - const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings(); - const Color aBackColor = rStyleSettings.GetFieldColor(); - const Color aTextColor = rStyleSettings.GetFieldTextColor(); + const Color aBackColor(COL_WHITE); + const Color aTextColor(COL_BLACK); vcl::RenderContext* pDev = rUDEvt.GetRenderContext(); Rectangle aRect = rUDEvt.GetRect(); @@ -187,10 +186,7 @@ pVDev->SetOutputSize( aRectSize ); aOrgRect = aRect; pVDev->SetFillColor( aBackColor ); - - if(aBackColor == aLineColor) - aLineColor.Invert(); - pVDev->SetLineColor(aLineColor); + pVDev->SetLineColor(COL_LIGHTGRAY); // Draw line only once if(nPageType != NUM_PAGETYPE_NUM) { @@ -402,7 +398,6 @@ void SvxNumValueSet::init(sal_uInt16 nType) { - aLineColor = COL_LIGHTGRAY; nPageType = nType; bHTMLMode = false; pVDev = NULL; diff -Nru libreoffice-5.0.1~rc2/svx/source/sdr/contact/viewobjectcontactofopenglobj.cxx libreoffice-5.0.2~rc2/svx/source/sdr/contact/viewobjectcontactofopenglobj.cxx --- libreoffice-5.0.1~rc2/svx/source/sdr/contact/viewobjectcontactofopenglobj.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svx/source/sdr/contact/viewobjectcontactofopenglobj.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -24,8 +24,8 @@ : ViewObjectContactOfSdrObj( rObjectContact, rViewContact ) { #if HAVE_FEATURE_DESKTOP - OpenGLContext* pContext = static_cast(static_cast(rViewContact).GetSdrObject()).getOpenGLContext(); - if (pContext) + rtl::Reference pContext = static_cast(static_cast(rViewContact).GetSdrObject()).getOpenGLContext(); + if (pContext.is()) pContext->init(getWindow()); #endif } diff -Nru libreoffice-5.0.1~rc2/svx/source/sidebar/graphic/GraphicPropertyPanel.cxx libreoffice-5.0.2~rc2/svx/source/sidebar/graphic/GraphicPropertyPanel.cxx --- libreoffice-5.0.1~rc2/svx/source/sidebar/graphic/GraphicPropertyPanel.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svx/source/sidebar/graphic/GraphicPropertyPanel.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -58,6 +58,7 @@ get(mpMtrBrightness, "setbrightness"); get(mpMtrContrast, "setcontrast"); get(mpLBColorMode, "setcolormode"); + mpLBColorMode->set_width_request(mpLBColorMode->get_preferred_size().Width()); get(mpMtrTrans, "settransparency"); get(mpMtrRed, "setred"); get(mpMtrGreen, "setgreen"); diff -Nru libreoffice-5.0.1~rc2/svx/source/sidebar/line/LineWidthControl.cxx libreoffice-5.0.2~rc2/svx/source/sidebar/line/LineWidthControl.cxx --- libreoffice-5.0.1~rc2/svx/source/sidebar/line/LineWidthControl.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svx/source/sidebar/line/LineWidthControl.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -184,9 +184,9 @@ void LineWidthControl::GetFocus() { - if(!mbVSFocus) + if (!mbVSFocus && maMFWidth) maMFWidth->GrabFocus(); - else + else if (maVSWidth) maVSWidth->GrabFocus(); } diff -Nru libreoffice-5.0.1~rc2/svx/source/sidebar/PanelLayout.cxx libreoffice-5.0.2~rc2/svx/source/sidebar/PanelLayout.cxx --- libreoffice-5.0.1~rc2/svx/source/sidebar/PanelLayout.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svx/source/sidebar/PanelLayout.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -11,9 +11,12 @@ #include #include #include +#include #include #include +using namespace sfx2::sidebar; + PanelLayout::PanelLayout(vcl::Window* pParent, const OString& rID, const OUString& rUIXMLDescription, const com::sun::star::uno::Reference &rFrame) : Control(pParent) , m_bInClose(false) @@ -40,7 +43,14 @@ Size PanelLayout::GetOptimalSize() const { if (isLayoutEnabled(this)) - return VclContainer::getLayoutRequisition(*GetWindow(GetWindowType::FirstChild)); + { + Size aSize = VclContainer::getLayoutRequisition(*GetWindow(GetWindowType::FirstChild)); + sal_Int32 nTabBarWidth = Theme::GetInteger(Theme::Int_TabItemWidth) + + Theme::GetInteger(Theme::Int_TabBarLeftPadding) + + Theme::GetInteger(Theme::Int_TabBarRightPadding); + aSize.Width() = std::min(aSize.Width(), (400 - nTabBarWidth) * GetDPIScaleFactor()); + return aSize; + } return Control::GetOptimalSize(); } diff -Nru libreoffice-5.0.1~rc2/svx/source/stbctrls/zoomsliderctrl.cxx libreoffice-5.0.2~rc2/svx/source/stbctrls/zoomsliderctrl.cxx --- libreoffice-5.0.1~rc2/svx/source/stbctrls/zoomsliderctrl.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svx/source/stbctrls/zoomsliderctrl.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -44,7 +44,6 @@ Image maIncreaseButton; Image maDecreaseButton; bool mbValuesSet; - bool mbOmitPaint; bool mbDraggingStarted; SvxZoomSliderControl_Impl() : @@ -58,7 +57,6 @@ maIncreaseButton(), maDecreaseButton(), mbValuesSet( false ), - mbOmitPaint( false ), mbDraggingStarted( false ) {} }; @@ -242,13 +240,12 @@ } } - if (!mxImpl->mbOmitPaint) - forceRepaint(); + forceRepaint(); } void SvxZoomSliderControl::Paint( const UserDrawEvent& rUsrEvt ) { - if ( !mxImpl->mbValuesSet || mxImpl->mbOmitPaint ) + if ( !mxImpl->mbValuesSet ) return; const Rectangle aControlRect = getControlRect(); @@ -408,9 +405,6 @@ { forceRepaint(); - mxImpl->mbOmitPaint = true; // optimization: paint before executing command, - // then omit painting which is triggered by the execute function - // commit state change SvxZoomSliderItem aZoomSliderItem(mxImpl->mnCurrentZoom); @@ -422,8 +416,6 @@ aArgs[0].Value = any; execute(aArgs); - - mxImpl->mbOmitPaint = false; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.0.1~rc2/svx/source/svdraw/svdoedge.cxx libreoffice-5.0.2~rc2/svx/source/svdraw/svdoedge.cxx --- libreoffice-5.0.1~rc2/svx/source/svdraw/svdoedge.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svx/source/svdraw/svdoedge.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -2264,7 +2264,7 @@ ResizeXPoly(*pEdgeTrack,rRefPnt,aXFact,aYFact); // if resize is not from paste, forget user distances - if(!GetModel()->IsPasteResize()) + if (!GetModel() || !GetModel()->IsPasteResize()) { aEdgeInfo.aObj1Line2 = Point(); aEdgeInfo.aObj1Line3 = Point(); diff -Nru libreoffice-5.0.1~rc2/svx/source/svdraw/svdoopengl.cxx libreoffice-5.0.2~rc2/svx/source/svdraw/svdoopengl.cxx --- libreoffice-5.0.1~rc2/svx/source/svdraw/svdoopengl.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svx/source/svdraw/svdoopengl.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -20,13 +20,12 @@ mpContext(NULL) { #if HAVE_FEATURE_DESKTOP - mpContext = new OpenGLContext; + mpContext = OpenGLContext::Create(); #endif } SdrOpenGLObj::~SdrOpenGLObj() { - delete mpContext; } sdr::contact::ViewContact* SdrOpenGLObj::CreateObjectSpecificViewContact() @@ -40,7 +39,7 @@ SdrObject::NbcResize(rRef, xFact, yFact); // now pass the information to the OpenGL context - if (mpContext) + if (mpContext.is()) mpContext->setWinSize(aOutRect.GetSize()); SAL_WARN("svx.opengl", "resized opengl drawinglayer object"); @@ -59,7 +58,7 @@ bool SdrOpenGLObj::isOpenGLInitialized() { - return mpContext && mpContext->isInitialized(); + return mpContext.is() && mpContext->isInitialized(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.0.1~rc2/svx/source/table/tablecontroller.cxx libreoffice-5.0.2~rc2/svx/source/table/tablecontroller.cxx --- libreoffice-5.0.1~rc2/svx/source/table/tablecontroller.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svx/source/table/tablecontroller.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1081,14 +1081,19 @@ { SfxItemSet aSet( xCell->GetItemSet() ); bool bChanges = false; - const SfxItemSet& rStyleAttribs = xCell->GetStyleSheet()->GetItemSet(); - - for ( sal_uInt16 nWhich = SDRATTR_START; nWhich <= SDRATTR_TABLE_LAST; nWhich++ ) + SfxStyleSheet *pStyleSheet = xCell->GetStyleSheet(); + SAL_WARN_IF(!pStyleSheet, "svx", "no stylesheet for table cell?"); + if (pStyleSheet) { - if( (rStyleAttribs.GetItemState( nWhich ) == SfxItemState::SET) && (aSet.GetItemState( nWhich ) == SfxItemState::SET) ) + const SfxItemSet& rStyleAttribs = pStyleSheet->GetItemSet(); + + for ( sal_uInt16 nWhich = SDRATTR_START; nWhich <= SDRATTR_TABLE_LAST; nWhich++ ) { - aSet.ClearItem( nWhich ); - bChanges = true; + if( (rStyleAttribs.GetItemState( nWhich ) == SfxItemState::SET) && (aSet.GetItemState( nWhich ) == SfxItemState::SET) ) + { + aSet.ClearItem( nWhich ); + bChanges = true; + } } } diff -Nru libreoffice-5.0.1~rc2/svx/source/unodraw/unobrushitemhelper.cxx libreoffice-5.0.2~rc2/svx/source/unodraw/unobrushitemhelper.cxx --- libreoffice-5.0.1~rc2/svx/source/unodraw/unobrushitemhelper.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svx/source/unodraw/unobrushitemhelper.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -192,7 +192,7 @@ } //UUUU -SvxBrushItem getSvxBrushItemFromSourceSet(const SfxItemSet& rSourceSet, sal_uInt16 nBackgroundID, bool bSearchInParents) +SvxBrushItem getSvxBrushItemFromSourceSet(const SfxItemSet& rSourceSet, sal_uInt16 nBackgroundID, bool bSearchInParents, bool bXMLImportHack) { const XFillStyleItem* pXFillStyleItem(static_cast< const XFillStyleItem* >(rSourceSet.GetItem(XATTR_FILLSTYLE, bSearchInParents))); @@ -201,8 +201,8 @@ // no fill, still need to rescue the evtl. set RGB color, but use as transparent color (we have drawing::FillStyle_NONE) Color aFillColor(static_cast< const XFillColorItem& >(rSourceSet.Get(XATTR_FILLCOLOR, bSearchInParents)).GetColorValue()); - // when fill style is none, then don't allow anything other than 0 or auto. - if (aFillColor.GetColor() != 0) + // for writerfilter: when fill style is none, then don't allow anything other than 0 or auto. + if (!bXMLImportHack && aFillColor.GetColor() != 0) aFillColor.SetColor(COL_AUTO); aFillColor.SetTransparency(0xff); diff -Nru libreoffice-5.0.1~rc2/svx/uiconfig/ui/sidebarstylespanel.ui libreoffice-5.0.2~rc2/svx/uiconfig/ui/sidebarstylespanel.ui --- libreoffice-5.0.1~rc2/svx/uiconfig/ui/sidebarstylespanel.ui 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/svx/uiconfig/ui/sidebarstylespanel.ui 2015-09-17 13:33:12.000000000 +0000 @@ -54,7 +54,6 @@ True False - 6 True diff -Nru libreoffice-5.0.1~rc2/sw/CppunitTest_sw_odfexport.mk libreoffice-5.0.2~rc2/sw/CppunitTest_sw_odfexport.mk --- libreoffice-5.0.1~rc2/sw/CppunitTest_sw_odfexport.mk 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/CppunitTest_sw_odfexport.mk 2015-09-17 13:33:12.000000000 +0000 @@ -56,6 +56,9 @@ embeddedobj/util/embobj \ filter/source/config/cache/filterconfig1 \ filter/source/storagefilterdetect/storagefd \ + filter/source/odfflatxml/odfflatxml \ + filter/source/xmlfilterdetect/xmlfd \ + filter/source/xmlfilteradaptor/xmlfa \ framework/util/fwk \ i18npool/util/i18npool \ linguistic/source/lng \ diff -Nru libreoffice-5.0.1~rc2/sw/inc/drawdoc.hxx libreoffice-5.0.2~rc2/sw/inc/drawdoc.hxx --- libreoffice-5.0.1~rc2/sw/inc/drawdoc.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/inc/drawdoc.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -35,6 +35,8 @@ const SwDoc& GetDoc() const { return *m_pDoc; } SwDoc& GetDoc() { return *m_pDoc; } + /// Put needed items for XPropertyList entries from the DrawModel. + void PutAreaListItems(SfxItemSet& rSet) const; virtual SdrPage* AllocPage(bool bMasterPage) SAL_OVERRIDE; diff -Nru libreoffice-5.0.1~rc2/sw/inc/editsh.hxx libreoffice-5.0.2~rc2/sw/inc/editsh.hxx --- libreoffice-5.0.1~rc2/sw/inc/editsh.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/inc/editsh.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -388,6 +388,7 @@ void UpdateExpFields(bool bCloseDB = false);///< only every expression fields update void LockExpFields(); void UnlockExpFields(); + bool IsExpFieldsLocked() const; SwFieldUpdateFlags GetFieldUpdateFlags(bool bDocSettings = false) const; void SetFieldUpdateFlags( SwFieldUpdateFlags eFlags ); diff -Nru libreoffice-5.0.1~rc2/sw/inc/IDocumentUndoRedo.hxx libreoffice-5.0.2~rc2/sw/inc/IDocumentUndoRedo.hxx --- libreoffice-5.0.1~rc2/sw/inc/IDocumentUndoRedo.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/inc/IDocumentUndoRedo.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -193,6 +193,10 @@ */ virtual bool IsUndoNodes(SwNodes const& rNodes) const = 0; + /** Get the number of Undo actions. + */ + virtual size_t GetUndoActionCount(const bool bCurrentLevel = true) const = 0; + protected: virtual ~IDocumentUndoRedo() {}; }; Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ooxml/pass/tdf92157-1-minimized.docx and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ooxml/pass/tdf92157-1-minimized.docx differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ooxml/pass/tdf93284.docx and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ooxml/pass/tdf93284.docx differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww5/pass/crash-1.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww5/pass/crash-1.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww5/pass/crash-2.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww5/pass/crash-2.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww5/pass/crash-3.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww5/pass/crash-3.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww5/pass/hang-1.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww5/pass/hang-1.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww5/pass/hang-2.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww5/pass/hang-2.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww6/pass/crash-1.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww6/pass/crash-1.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww6/pass/crash-2.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww6/pass/crash-2.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww6/pass/crash-3.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww6/pass/crash-3.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww6/pass/crash-4.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww6/pass/crash-4.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww6/pass/crash-6.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww6/pass/crash-6.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww6/pass/crash-7.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww6/pass/crash-7.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww6/pass/hang-1.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww6/pass/hang-1.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww8/pass/crash-2.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww8/pass/crash-2.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww8/pass/crash-3.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww8/pass/crash-3.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww8/pass/hang-2.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww8/pass/hang-2.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww8/pass/hang-3.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww8/pass/hang-3.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww8/pass/hang-4.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww8/pass/hang-4.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww8/pass/hang-5.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww8/pass/hang-5.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww8/pass/hang-6.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww8/pass/hang-6.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww8/pass/hang-7.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww8/pass/hang-7.doc differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/core/data/ww8/pass/hang-8.doc and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/core/data/ww8/pass/hang-8.doc differ diff -Nru libreoffice-5.0.1~rc2/sw/qa/core/filters-test.cxx libreoffice-5.0.2~rc2/sw/qa/core/filters-test.cxx --- libreoffice-5.0.1~rc2/sw/qa/core/filters-test.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/qa/core/filters-test.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -151,6 +151,10 @@ getURLFromSrc("/sw/qa/core/data/ww8/"), OUString(FILTER_WW8)); + testDir(OUString("MS WinWord 6.0"), + getURLFromSrc("/sw/qa/core/data/ww6/"), + OUString(sWW6)); + testDir(OUString("MS WinWord 5"), getURLFromSrc("/sw/qa/core/data/ww5/"), OUString(sWW5)); diff -Nru libreoffice-5.0.1~rc2/sw/qa/extras/odfexport/data/tdf92379.fodt libreoffice-5.0.2~rc2/sw/qa/extras/odfexport/data/tdf92379.fodt --- libreoffice-5.0.1~rc2/sw/qa/extras/odfexport/data/tdf92379.fodt 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/qa/extras/odfexport/data/tdf92379.fodt 2015-09-17 13:33:12.000000000 +0000 @@ -0,0 +1,89 @@ + + + + ms 2015-08-24T21:49:45.305718699LibreOfficeDev/4.3.7.2$Linux_X86_64 LibreOffice_project/8a35821d8636a03b8bf4e15b48f59794652c68ba + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-5.0.1~rc2/sw/qa/extras/odfexport/odfexport.cxx libreoffice-5.0.2~rc2/sw/qa/extras/odfexport/odfexport.cxx --- libreoffice-5.0.1~rc2/sw/qa/extras/odfexport/odfexport.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/qa/extras/odfexport/odfexport.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -232,6 +232,86 @@ CPPUNIT_ASSERT_EQUAL(OUString("M"), getProperty(xPropertySet, "Initials")); } +DECLARE_ODFEXPORT_TEST(testTdf92379, "tdf92379.fodt") +{ + // frame style fo:background-color was not imported + uno::Reference xStyles(getStyles("FrameStyles")); + uno::Reference xStyle(xStyles->getByName("encarts"), + uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0xffcc99), getProperty(xStyle, "BackColorRGB")); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xStyle, "BackColorTransparency")); + CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_SOLID, getProperty(xStyle, "FillStyle")); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0xffcc99), getProperty(xStyle, "FillColor")); + CPPUNIT_ASSERT_EQUAL(sal_Int16(0), getProperty(xStyle, "FillTransparence")); + + uno::Reference xFrameStyle2(xStyles->getByName("Untitled1"), + uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0xffffff), getProperty(xFrameStyle2, "BackColorRGB")); + CPPUNIT_ASSERT_EQUAL(true, getProperty(xFrameStyle2, "BackTransparent")); + CPPUNIT_ASSERT_EQUAL(sal_Int32(100), getProperty(xFrameStyle2, "BackColorTransparency")); + CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_NONE, getProperty(xFrameStyle2, "FillStyle")); +// unfortunately this is actually the pool default value, which would be hard to fix - but it isn't a problem because style is NONE +// CPPUNIT_ASSERT_EQUAL(sal_Int32(0xffffff), getProperty(xFrameStyle2, "FillColor")); +// CPPUNIT_ASSERT_EQUAL(sal_Int16(100), getProperty(xFrameStyle2, "FillTransparence")); + + if (xmlDocPtr pXmlDoc = parseExport("styles.xml")) + { + // check that fo:background-color attribute is exported properly + assertXPath(pXmlDoc, "//style:style[@style:family='graphic' and @style:name='encarts']/style:graphic-properties[@fo:background-color='#ffcc99']", 1); + assertXPath(pXmlDoc, "//style:style[@style:family='graphic' and @style:name='Untitled1']/style:graphic-properties[@fo:background-color='transparent']", 1); + } + + // paragraph style fo:background-color was wrongly inherited despite being + // overridden in derived style + uno::Reference xParaStyles(getStyles("ParagraphStyles")); + uno::Reference xStyle1(xParaStyles->getByName( + "Titre Avis expert"), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0x661900), getProperty(xStyle1, "ParaBackColor")); + CPPUNIT_ASSERT_EQUAL(false, getProperty(xStyle1, "ParaBackTransparent")); + CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_SOLID, getProperty(xStyle1, "FillStyle")); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0x661900), getProperty(xStyle1, "FillColor")); + CPPUNIT_ASSERT_EQUAL(sal_Int16(0), getProperty(xStyle1, "FillTransparence")); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0xffffff), getProperty(xStyle1, "CharColor")); + + uno::Reference xStyle2(xParaStyles->getByName( + "Avis expert questions"), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(sal_Int32(COL_TRANSPARENT), getProperty(xStyle2, "ParaBackColor")); + CPPUNIT_ASSERT_EQUAL(true, getProperty(xStyle2, "ParaBackTransparent")); + CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_NONE, getProperty(xStyle2, "FillStyle")); +// unfortunately this is actually the pool default value, which would be hard to fix - but it isn't a problem because style is NONE +// CPPUNIT_ASSERT_EQUAL(sal_Int32(0xffffff), getProperty(xStyle2, "FillColor")); +// CPPUNIT_ASSERT_EQUAL(sal_Int16(100), getProperty(xStyle2, "FillTransparence")); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0x661900), getProperty(xStyle2, "CharColor")); + + uno::Reference xStyle31(xParaStyles->getByName( + "avis expert questions non cadres"), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0x801900), getProperty(xStyle31, "ParaBackColor")); + CPPUNIT_ASSERT_EQUAL(false, getProperty(xStyle31, "ParaBackTransparent")); + CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_SOLID, getProperty(xStyle31, "FillStyle")); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0x801900), getProperty(xStyle31, "FillColor")); + CPPUNIT_ASSERT_EQUAL(sal_Int16(0), getProperty(xStyle31, "FillTransparence")); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0x661900), getProperty(xStyle31, "CharColor")); + + uno::Reference xStyle32(xParaStyles->getByName( + "Avis expert rXponses"), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(sal_Int32(COL_TRANSPARENT), getProperty(xStyle32, "ParaBackColor")); + CPPUNIT_ASSERT_EQUAL(true, getProperty(xStyle32, "ParaBackTransparent")); + CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_NONE, getProperty(xStyle32, "FillStyle")); +// unfortunately this is actually the pool default value, which would be hard to fix - but it isn't a problem because style is NONE +// CPPUNIT_ASSERT_EQUAL(sal_Int32(0xffffff), getProperty(xStyle32, "FillColor")); +// CPPUNIT_ASSERT_EQUAL(sal_Int16(100), getProperty(xStyle32, "FillTransparence")); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0x461900), getProperty(xStyle32, "CharColor")); + + if (xmlDocPtr pXmlDoc = parseExport("styles.xml")) + { + // check that fo:background-color attribute is exported properly + assertXPath(pXmlDoc, "//style:style[@style:family='paragraph' and @style:display-name='Titre Avis expert']/style:paragraph-properties[@fo:background-color='#661900']", 1); + assertXPath(pXmlDoc, "//style:style[@style:family='paragraph' and @style:display-name='Avis expert questions']/style:paragraph-properties[@fo:background-color='transparent']", 1); + assertXPath(pXmlDoc, "//style:style[@style:family='paragraph' and @style:display-name='avis expert questions non cadres']/style:paragraph-properties[@fo:background-color='#801900']", 1); + assertXPath(pXmlDoc, "//style:style[@style:family='paragraph' and @style:display-name='Avis expert rXponses']/style:paragraph-properties[@fo:background-color='transparent']", 1); + } +} + DECLARE_ODFEXPORT_TEST(testFdo79358, "fdo79358.odt") { // the boolean properties of the index were not exported properly Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/extras/ooxmlimport/data/tdf87924.docx and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/extras/ooxmlimport/data/tdf87924.docx differ diff -Nru libreoffice-5.0.1~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx libreoffice-5.0.2~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx --- libreoffice-5.0.1~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -750,7 +750,7 @@ Graphic aGraphic(xGraphic); // If this changes later, feel free to update it, but make sure it's not // the checksum of a white/transparent placeholder rectangle. - CPPUNIT_ASSERT_EQUAL(sal_uLong(2529763117U), aGraphic.GetChecksum()); + CPPUNIT_ASSERT_EQUAL(BitmapChecksum(3652741777587093783), aGraphic.GetChecksum()); #endif } @@ -2759,6 +2759,14 @@ CPPUNIT_ASSERT_EQUAL(text::SizeType::MIN, getProperty(xTableRows->getByIndex(0), "SizeType")); } +DECLARE_OOXMLIMPORT_TEST(testTdf87924, "tdf87924.docx") +{ + uno::Reference xPropertySet(getShape(1), uno::UNO_QUERY); + comphelper::SequenceAsHashMap aGeometry(xPropertySet->getPropertyValue("CustomShapeGeometry")); + // This was -270, the text rotation angle was set when it should not be rotated. + CPPUNIT_ASSERT_EQUAL(static_cast(0), aGeometry["TextPreRotateAngle"].get()); +} + #endif CPPUNIT_PLUGIN_IMPLEMENT(); Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/extras/uiwriter/data/tdf89720.odt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/extras/uiwriter/data/tdf89720.odt differ Binary files /tmp/P7Epfttf8J/libreoffice-5.0.1~rc2/sw/qa/extras/uiwriter/data/tdf89954.odt and /tmp/V2G6f_Dr9m/libreoffice-5.0.2~rc2/sw/qa/extras/uiwriter/data/tdf89954.odt differ diff -Nru libreoffice-5.0.1~rc2/sw/qa/extras/uiwriter/uiwriter.cxx libreoffice-5.0.2~rc2/sw/qa/extras/uiwriter/uiwriter.cxx --- libreoffice-5.0.1~rc2/sw/qa/extras/uiwriter/uiwriter.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/qa/extras/uiwriter/uiwriter.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -33,6 +33,9 @@ #include #include #include +#include +#include +#include #include #include @@ -51,6 +54,7 @@ #include "com/sun/star/util/SearchAlgorithms.hpp" #include "com/sun/star/i18n/TransliterationModulesExtra.hpp" #include +#include static const char* DATA_DIRECTORY = "/sw/qa/extras/uiwriter/data/"; @@ -96,6 +100,8 @@ void testTdf86639(); void testTdf90883TableBoxGetCoordinates(); void testDde(); + void testTdf89954(); + void testTdf89720(); CPPUNIT_TEST_SUITE(SwUiWriterTest); CPPUNIT_TEST(testReplaceForward); @@ -134,6 +140,8 @@ CPPUNIT_TEST(testTdf86639); CPPUNIT_TEST(testTdf90883TableBoxGetCoordinates); CPPUNIT_TEST(testDde); + CPPUNIT_TEST(testTdf89954); + CPPUNIT_TEST(testTdf89720); CPPUNIT_TEST_SUITE_END(); @@ -1022,6 +1030,41 @@ CPPUNIT_ASSERT(xField->getString().endsWith("asdf")); } +void SwUiWriterTest::testTdf89954() +{ + SwDoc* pDoc = createDoc("tdf89954.odt"); + SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + pWrtShell->EndPara(); + SwXTextDocument* pXTextDocument = dynamic_cast(mxComponent.get()); + pXTextDocument->postKeyEvent(LOK_KEYEVENT_KEYINPUT, 't', 0); + pXTextDocument->postKeyEvent(LOK_KEYEVENT_KEYINPUT, 'e', 0); + pXTextDocument->postKeyEvent(LOK_KEYEVENT_KEYINPUT, 's', 0); + pXTextDocument->postKeyEvent(LOK_KEYEVENT_KEYINPUT, 't', 0); + pXTextDocument->postKeyEvent(LOK_KEYEVENT_KEYINPUT, '.', 0); + + SwNodeIndex aNodeIndex(pDoc->GetNodes().GetEndOfContent(), -1); + // Placeholder character for the comment anchor was ^A (CH_TXTATR_BREAKWORD), not (CH_TXTATR_INWORD). + // As a result, autocorrect did not turn the 't' input into 'T'. + OUString aExpected("Tes\xef\xbf\xb9t. Test.", 14, RTL_TEXTENCODING_UTF8); + CPPUNIT_ASSERT_EQUAL(aExpected, aNodeIndex.GetNode().GetTextNode()->GetText()); +} + +void SwUiWriterTest::testTdf89720() +{ +#ifndef MACOSX + SwDoc* pDoc = createDoc("tdf89720.odt"); + SwView* pView = pDoc->GetDocShell()->GetView(); + SwPostItMgr* pPostItMgr = pView->GetPostItMgr(); + for (SwSidebarItem* pItem : *pPostItMgr) + { + if (pItem->pPostIt->IsFollow()) + // This was non-0: reply comments had a text range overlay, + // resulting in unexpected dark color. + CPPUNIT_ASSERT(!pItem->pPostIt->TextRange()); + } +#endif +} + CPPUNIT_TEST_SUITE_REGISTRATION(SwUiWriterTest); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-5.0.1~rc2/sw/source/core/doc/DocumentContentOperationsManager.cxx libreoffice-5.0.2~rc2/sw/source/core/doc/DocumentContentOperationsManager.cxx --- libreoffice-5.0.1~rc2/sw/source/core/doc/DocumentContentOperationsManager.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/core/doc/DocumentContentOperationsManager.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -3201,7 +3201,7 @@ const SwNodeRange& rRg, const sal_Int32 nEndContentIndex, const SwNodeIndex& rStartIdx, - bool bCopyFlyAtFly, + const bool bCopyFlyAtFly, const bool bMergedFirstNode ) const { // First collect all Flys, sort them according to their ordering number, @@ -3223,22 +3223,25 @@ bool bAtContent = (pAnchor->GetAnchorId() == FLY_AT_PARA); if ( !pAPos ) continue; + sal_uLong nSkipAfter = pAPos->nNode.GetIndex(); + sal_uLong nStart = rRg.aStart.GetIndex(); switch ( pAnchor->GetAnchorId() ) { case FLY_AT_FLY: - if( bCopyFlyAtFly && rRg.aStart > pAPos->nNode.GetIndex() + 1 ) - continue; + if(bCopyFlyAtFly) + ++nSkipAfter; + else if(m_rDoc.getIDocumentRedlineAccess().IsRedlineMove()) + ++nStart; break; case FLY_AT_CHAR: case FLY_AT_PARA: - bCopyFlyAtFly = false; + if(m_rDoc.getIDocumentRedlineAccess().IsRedlineMove()) + ++nStart; break; default: continue; } - if ( !bCopyFlyAtFly && ( m_rDoc.getIDocumentRedlineAccess().IsRedlineMove() - ? rRg.aStart >= pAPos->nNode - : rRg.aStart > pAPos->nNode )) + if ( nStart > nSkipAfter ) continue; if ( pAPos->nNode > rRg.aEnd ) continue; diff -Nru libreoffice-5.0.1~rc2/sw/source/core/doc/DocumentLayoutManager.cxx libreoffice-5.0.2~rc2/sw/source/core/doc/DocumentLayoutManager.cxx --- libreoffice-5.0.1~rc2/sw/source/core/doc/DocumentLayoutManager.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/core/doc/DocumentLayoutManager.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -496,7 +496,14 @@ // If the draw format has a TextBox, then copy its fly format as well. if (SwFrameFormat* pSourceTextBox = SwTextBoxHelper::findTextBox(&rSource)) { - SwFrameFormat* pDestTextBox = CopyLayoutFormat(*pSourceTextBox, rNewAnchor, bSetTextFlyAtt, bMakeFrms); + SwFormatAnchor boxAnchor(rNewAnchor); + if (FLY_AS_CHAR == boxAnchor.GetAnchorId()) + { + // AS_CHAR *must not* be set on textbox fly-frame + boxAnchor.SetType(FLY_AT_CHAR); + } + SwFrameFormat* pDestTextBox = CopyLayoutFormat(*pSourceTextBox, + boxAnchor, bSetTextFlyAtt, bMakeFrms); SwAttrSet aSet(pDest->GetAttrSet()); SwFormatContent aContent(pDestTextBox->GetContent().GetContentIdx()->GetNode().GetStartNode()); aSet.Put(aContent); diff -Nru libreoffice-5.0.1~rc2/sw/source/core/draw/drawdoc.cxx libreoffice-5.0.2~rc2/sw/source/core/draw/drawdoc.cxx --- libreoffice-5.0.1~rc2/sw/source/core/draw/drawdoc.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/core/draw/drawdoc.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -151,4 +151,12 @@ return xModel; } +void SwDrawModel::PutAreaListItems(SfxItemSet& rSet) const +{ + rSet.Put(SvxColorListItem(GetColorList(), SID_COLOR_TABLE)); + rSet.Put(SvxGradientListItem(GetGradientList(), SID_GRADIENT_LIST)); + rSet.Put(SvxHatchListItem(GetHatchList(), SID_HATCH_LIST)); + rSet.Put(SvxBitmapListItem(GetBitmapList(), SID_BITMAP_LIST)); +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-5.0.1~rc2/sw/source/core/edit/edfld.cxx libreoffice-5.0.2~rc2/sw/source/core/edit/edfld.cxx --- libreoffice-5.0.1~rc2/sw/source/core/edit/edfld.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/core/edit/edfld.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -403,6 +403,11 @@ GetDoc()->getIDocumentFieldsAccess().UnlockExpFields(); } +bool SwEditShell::IsExpFieldsLocked() const +{ + return GetDoc()->getIDocumentFieldsAccess().IsExpFieldsLocked(); +} + void SwEditShell::SetFieldUpdateFlags( SwFieldUpdateFlags eFlags ) { getIDocumentSettingAccess()->setFieldUpdateFlags( eFlags ); diff -Nru libreoffice-5.0.1~rc2/sw/source/core/inc/UndoManager.hxx libreoffice-5.0.2~rc2/sw/source/core/inc/UndoManager.hxx --- libreoffice-5.0.1~rc2/sw/source/core/inc/UndoManager.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/core/inc/UndoManager.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -71,6 +71,7 @@ virtual void AppendUndo(SwUndo *const pUndo) SAL_OVERRIDE; virtual void ClearRedo() SAL_OVERRIDE; virtual bool IsUndoNodes(SwNodes const& rNodes) const SAL_OVERRIDE; + virtual size_t GetUndoActionCount(const bool bCurrentLevel = true) const SAL_OVERRIDE; // ::svl::IUndoManager virtual void AddUndoAction(SfxUndoAction *pAction, diff -Nru libreoffice-5.0.1~rc2/sw/source/core/layout/paintfrm.cxx libreoffice-5.0.2~rc2/sw/source/core/layout/paintfrm.cxx --- libreoffice-5.0.1~rc2/sw/source/core/layout/paintfrm.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/core/layout/paintfrm.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -477,13 +477,13 @@ { double const fMergeGap(properties.nSPixelSzW + properties.nSHalfPixelSzW); // NOT static! // A is above/before B - if( mergeA.second <= mergeB.second && + if( mergeA.second <= mergeB.first && mergeA.second + fMergeGap >= mergeB.first ) { return 1; } // B is above/before A - else if( mergeB.second <= mergeA.second && + else if( mergeB.second <= mergeA.first && mergeB.second + fMergeGap >= mergeA.first ) { return 2; diff -Nru libreoffice-5.0.1~rc2/sw/source/core/text/itrpaint.cxx libreoffice-5.0.2~rc2/sw/source/core/text/itrpaint.cxx --- libreoffice-5.0.1~rc2/sw/source/core/text/itrpaint.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/core/text/itrpaint.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -236,7 +236,7 @@ // we calculate Y value for the whole line SwTextGridItem const*const pGrid(GetGridItem(GetTextFrm()->FindPageFrm())); const bool bAdjustBaseLine = - GetLineInfo().HasSpecialAlign( GetTextFrm()->IsVertical() ) || + ( !GetTextFrm()->IsVertical() || GetLineInfo().HasSpecialAlign( true ) ) && (! GetTextFrm()->IsInFly()) && ( 0 != pGrid ); const SwTwips nLineBaseLine = GetInfo().GetPos().Y() + nTmpAscent; if ( ! bAdjustBaseLine ) diff -Nru libreoffice-5.0.1~rc2/sw/source/core/txtnode/fntcache.cxx libreoffice-5.0.2~rc2/sw/source/core/txtnode/fntcache.cxx --- libreoffice-5.0.1~rc2/sw/source/core/txtnode/fntcache.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/core/txtnode/fntcache.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -47,6 +47,7 @@ #include #include #include +#include #include #include #include @@ -2521,6 +2522,7 @@ { // check if current background has a user defined setting const Color* pCol = GetFont() ? GetFont()->GetBackColor() : NULL; + Color aColor; if( ! pCol || COL_TRANSPARENT == pCol->GetColor() ) { const SvxBrushItem* pItem; @@ -2537,6 +2539,14 @@ /// is a background brush and its color is *not* "no fill"/"auto fill". if( GetFrm()->GetBackgroundBrush( aFillAttributes, pItem, pCol, aOrigBackRect, false ) ) { + if (aFillAttributes.get() && aFillAttributes->isUsed()) + { + // First see if fill atttributes provide a color. + aColor = Color(aFillAttributes->getAverageColor(aGlobalRetoucheColor.getBColor())); + pCol = &aColor; + } + + // If not, then fall back to the old brush item. if ( !pCol ) { pCol = &pItem->GetColor(); diff -Nru libreoffice-5.0.1~rc2/sw/source/core/txtnode/thints.cxx libreoffice-5.0.2~rc2/sw/source/core/txtnode/thints.cxx --- libreoffice-5.0.1~rc2/sw/source/core/txtnode/thints.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/core/txtnode/thints.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -3446,6 +3446,7 @@ { case RES_TXTATR_REFMARK: case RES_TXTATR_TOXMARK: + case RES_TXTATR_ANNOTATION: cRet = CH_TXTATR_INWORD; break; @@ -3454,7 +3455,6 @@ case RES_TXTATR_FTN: case RES_TXTATR_META: case RES_TXTATR_METAFIELD: - case RES_TXTATR_ANNOTATION: { cRet = CH_TXTATR_BREAKWORD; } diff -Nru libreoffice-5.0.1~rc2/sw/source/core/undo/docundo.cxx libreoffice-5.0.2~rc2/sw/source/core/undo/docundo.cxx --- libreoffice-5.0.1~rc2/sw/source/core/undo/docundo.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/core/undo/docundo.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -79,6 +79,11 @@ return & rNodes == m_xUndoNodes.get(); } +size_t UndoManager::GetUndoActionCount(const bool bCurrentLevel) const +{ + return SdrUndoManager::GetUndoActionCount(bCurrentLevel); +} + void UndoManager::DoUndo(bool const bDoUndo) { if(!isTextEditActive()) diff -Nru libreoffice-5.0.1~rc2/sw/source/core/unocore/swunohelper.cxx libreoffice-5.0.2~rc2/sw/source/core/unocore/swunohelper.cxx --- libreoffice-5.0.1~rc2/sw/source/core/unocore/swunohelper.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/core/unocore/swunohelper.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -286,7 +286,18 @@ switch (eFill) { case drawing::FillStyle_NONE: - return false; // ignoring some extremely limited XFillColorItem eval + // claim that BackColor and BackTransparent are available so that + // fo:background="transparent" attribute is exported to override + // the parent style in case it is != NONE + switch (nMID) + { + case MID_BACK_COLOR: + case MID_BACK_COLOR_R_G_B: + case MID_GRAPHIC_TRANSPARENT: // this is *BackTransparent + return true; + default: + return false; + } break; case drawing::FillStyle_SOLID: case drawing::FillStyle_GRADIENT: // gradient and hatch don't exist in @@ -294,6 +305,7 @@ switch (nMID) { case MID_BACK_COLOR: + case MID_GRAPHIC_TRANSPARENT: // this is *BackTransparent // Gradient/Hatch always have emulated color return (drawing::FillStyle_SOLID != eFill) || SfxItemState::SET == rSet.GetItemState(XATTR_FILLCOLOR) diff -Nru libreoffice-5.0.1~rc2/sw/source/core/unocore/unoftn.cxx libreoffice-5.0.2~rc2/sw/source/core/unocore/unoftn.cxx --- libreoffice-5.0.1~rc2/sw/source/core/unocore/unoftn.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/core/unocore/unoftn.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -262,7 +262,12 @@ SwXFootnote::setLabel(const OUString& aLabel) throw (uno::RuntimeException, std::exception) { SolarMutexGuard aGuard; - + OUString newLabel(aLabel); + //new line must not occur as footnote label + if(newLabel.indexOf('\n') >=0 ) + { + newLabel = newLabel.replace('\n', ' '); + } SwFormatFootnote const*const pFormat = m_pImpl->GetFootnoteFormat(); if(pFormat) { @@ -271,11 +276,11 @@ SwTextNode& rTextNode = (SwTextNode&)pTextFootnote->GetTextNode(); SwPaM aPam(rTextNode, pTextFootnote->GetStart()); - GetDoc()->SetCurFootnote(aPam, aLabel, pFormat->GetNumber(), pFormat->IsEndNote()); + GetDoc()->SetCurFootnote(aPam, newLabel, pFormat->GetNumber(), pFormat->IsEndNote()); } else if (m_pImpl->m_bIsDescriptor) { - m_pImpl->m_sLabel = aLabel; + m_pImpl->m_sLabel = newLabel; } else { diff -Nru libreoffice-5.0.1~rc2/sw/source/core/unocore/unostyle.cxx libreoffice-5.0.2~rc2/sw/source/core/unocore/unostyle.cxx --- libreoffice-5.0.1~rc2/sw/source/core/unocore/unostyle.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/core/unocore/unostyle.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1761,12 +1761,16 @@ { //UUUU SfxItemSet& rStyleSet = rBase.GetItemSet(); - const SvxBrushItem aOriginalBrushItem(getSvxBrushItemFromSourceSet(rStyleSet, RES_BACKGROUND)); + const SvxBrushItem aOriginalBrushItem(getSvxBrushItemFromSourceSet(rStyleSet, RES_BACKGROUND, true, pDoc->IsInXMLImport())); SvxBrushItem aChangedBrushItem(aOriginalBrushItem); aChangedBrushItem.PutValue(aValue, nMemberId); - if(!(aChangedBrushItem == aOriginalBrushItem)) + if (!(aChangedBrushItem == aOriginalBrushItem) || + // 0xff is already the default - but if BackTransparent is set + // to true, it must be applied in the item set on ODF import + // to potentially override parent style, which is unknown yet + (MID_GRAPHIC_TRANSPARENT == nMemberId && aValue.has() && aValue.get())) { setSvxBrushItemAsFillAttributesToTargetSet(aChangedBrushItem, rStyleSet); } @@ -4296,7 +4300,7 @@ case RES_BACKGROUND: { //UUUU - const SvxBrushItem aOriginalBrushItem(getSvxBrushItemFromSourceSet(aSet, RES_BACKGROUND)); + const SvxBrushItem aOriginalBrushItem(getSvxBrushItemFromSourceSet(aSet, RES_BACKGROUND, true, pDocShell->GetDoc()->IsInXMLImport())); SvxBrushItem aChangedBrushItem(aOriginalBrushItem); aChangedBrushItem.PutValue(aValue, nMemberId); diff -Nru libreoffice-5.0.1~rc2/sw/source/core/view/viewsh.cxx libreoffice-5.0.2~rc2/sw/source/core/view/viewsh.cxx --- libreoffice-5.0.1~rc2/sw/source/core/view/viewsh.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/core/view/viewsh.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -419,7 +419,10 @@ if ( bPaintsFromSystem ) PaintDesktop(*GetOut(), aRect); - pCurrentLayout->GetCurrShell()->InvalidateWindows(aRect.SVRect()); + if (!isTiledRendering()) + pCurrentLayout->Paint( *mpOut, aRect ); + else + pCurrentLayout->GetCurrShell()->InvalidateWindows(aRect.SVRect()); // #i75172# end DrawingLayer paint DLPostPaint2(true); @@ -1695,8 +1698,8 @@ rtl::Reference xOldManager = pOldPaintWindow->GetOverlayManager(); if (xOldManager.is()) { - SdrPaintWindow* pNewPaintWindow = m_pShell->Imp()->GetDrawView()->FindPaintWindow(*m_pRef); - xOldManager->completeRedraw(pNewPaintWindow->GetRedrawRegion(), m_pRef); + if (SdrPaintWindow* pNewPaintWindow = m_pShell->Imp()->GetDrawView()->FindPaintWindow(*m_pRef)) + xOldManager->completeRedraw(pNewPaintWindow->GetRedrawRegion(), m_pRef); } m_pShell->Imp()->GetDrawView()->DeleteWindowFromPaintView(m_pRef); diff -Nru libreoffice-5.0.1~rc2/sw/source/filter/basflt/fltshell.cxx libreoffice-5.0.2~rc2/sw/source/filter/basflt/fltshell.cxx --- libreoffice-5.0.1~rc2/sw/source/filter/basflt/fltshell.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/filter/basflt/fltshell.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -120,8 +120,11 @@ // The only position of 0x0D will not be able to make region in the old logic // because it is beyond the length of para...need special consideration here. - SwContentNode *const pContentNode( - SwNodeIndex(rMkPos.m_nNode, +1).GetNode().GetContentNode()); + sal_uLong nMk = rMkPos.m_nNode.GetIndex() + 1; + const SwNodes& rMkNodes = rMkPos.m_nNode.GetNodes(); + if (nMk >= rMkNodes.Count()) + return false; + SwContentNode *const pContentNode(rMkNodes[nMk]->GetContentNode()); if (rMkPos == rPtPos && ((0 != rPtPos.m_nContent) || (pContentNode && (0 != pContentNode->Len()))) && ( RES_TXTATR_FIELD != nWhich @@ -138,7 +141,11 @@ rRegion.SetMark(); if (rMkPos.m_nNode != rPtPos.m_nNode) { - rRegion.GetPoint()->nNode = rPtPos.m_nNode.GetIndex() + 1; + sal_uLong n = rPtPos.m_nNode.GetIndex() + 1; + SwNodes& rNodes = rRegion.GetPoint()->nNode.GetNodes(); + if (n >= rNodes.Count()) + return false; + rRegion.GetPoint()->nNode = n; pCNd = GetContentNode(pDoc, rRegion.GetPoint()->nNode, false); } rRegion.GetPoint()->nContent.Assign(pCNd, rPtPos.m_nContent); @@ -412,25 +419,33 @@ return pRet; } -static void MakePoint(const SwFltStackEntry& rEntry, SwDoc* pDoc, +static bool MakePoint(const SwFltStackEntry& rEntry, SwDoc* pDoc, SwPaM& rRegion) { // the anchor is the Pam's Point. It's modified when inserting // text, etc.; therefore it is kept on the stack. Only the // attribute's format needs to be set. rRegion.DeleteMark(); - rRegion.GetPoint()->nNode = rEntry.m_aMkPos.m_nNode.GetIndex() + 1; + + sal_uLong nMk = rEntry.m_aMkPos.m_nNode.GetIndex() + 1; + const SwNodes& rMkNodes = rEntry.m_aMkPos.m_nNode.GetNodes(); + if (nMk >= rMkNodes.Count()) + return false; + + rRegion.GetPoint()->nNode = nMk; SwContentNode* pCNd = GetContentNode(pDoc, rRegion.GetPoint()->nNode, true); rRegion.GetPoint()->nContent.Assign(pCNd, rEntry.m_aMkPos.m_nContent); + return true; } // MakeBookRegionOrPoint() behaves like MakeRegionOrPoint, except that // it adheres to certain restrictions on bookmarks in tables (cannot // span more than one cell) -static void MakeBookRegionOrPoint(const SwFltStackEntry& rEntry, SwDoc* pDoc, +static bool MakeBookRegionOrPoint(const SwFltStackEntry& rEntry, SwDoc* pDoc, SwPaM& rRegion, bool bCheck ) { - if (rEntry.MakeRegion(pDoc, rRegion, bCheck )){ + if (rEntry.MakeRegion(pDoc, rRegion, bCheck )) + { // sal_Bool b1 = rNds[rRegion.GetPoint()->nNode]->FindTableNode() != 0; if (rRegion.GetPoint()->nNode.GetNode().FindTableBoxStartNode() != rRegion.GetMark()->nNode.GetNode().FindTableBoxStartNode()) @@ -438,9 +453,9 @@ rRegion.Exchange(); // invalid range rRegion.DeleteMark(); // -> both to mark } - }else{ - MakePoint(rEntry, pDoc, rRegion); + return true; } + return MakePoint(rEntry, pDoc, rRegion); } // IterateNumrulePiece() looks for the first range valid for Numrules @@ -589,8 +604,10 @@ break; case RES_FLTR_ANNOTATIONMARK: { - MakeBookRegionOrPoint(rEntry, pDoc, aRegion, true); - pDoc->getIDocumentMarkAccess()->makeAnnotationMark(aRegion, OUString()); + if (MakeBookRegionOrPoint(rEntry, pDoc, aRegion, true)) + pDoc->getIDocumentMarkAccess()->makeAnnotationMark(aRegion, OUString()); + else + SAL_WARN("sw", "failed to make book region or point"); } break; case RES_FLTR_TOX: diff -Nru libreoffice-5.0.1~rc2/sw/source/filter/ww8/wrtww8gr.cxx libreoffice-5.0.2~rc2/sw/source/filter/ww8/wrtww8gr.cxx --- libreoffice-5.0.1~rc2/sw/source/filter/ww8/wrtww8gr.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/filter/ww8/wrtww8gr.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -570,14 +570,16 @@ (pSI->GetWidth() != 0); } - for( SvxBoxItemLine i : o3tl::enumrange() ) + static const SvxBoxItemLine aLnArr[4] = { SvxBoxItemLine::TOP, SvxBoxItemLine::LEFT, + SvxBoxItemLine::BOTTOM, SvxBoxItemLine::RIGHT }; + for( sal_uInt8 i = 0; i < 4; ++i ) { - const ::editeng::SvxBorderLine* pLn = pBox->GetLine( i ); + const ::editeng::SvxBorderLine* pLn = pBox->GetLine( aLnArr[i] ); WW8_BRC aBrc; if (pLn) { WW8_BRCVer9 aBrc90 = rWrt.TranslateBorderLine( *pLn, - pBox->GetDistance( i ), bShadow ); + pBox->GetDistance( aLnArr[i] ), bShadow ); sal_uInt8 ico = msfilter::util::TransColToIco(msfilter::util::BGRToRGB( aBrc90.cv())); aBrc = WW8_BRC(aBrc90.dptLineWidth(), aBrc90.brcType(), ico, @@ -588,7 +590,7 @@ // border will really be in word and adjust accordingly short nSpacing; short nThick = aBrc.DetermineBorderProperties(&nSpacing); - switch (i) + switch (aLnArr[i]) { case SvxBoxItemLine::TOP: case SvxBoxItemLine::BOTTOM: @@ -758,13 +760,15 @@ sal_uInt8* pArr = aArr + 0x2E; //Do borders first - for( SvxBoxItemLine i : o3tl::enumrange() ) + static const SvxBoxItemLine aLnArr[4] = { SvxBoxItemLine::TOP, SvxBoxItemLine::LEFT, + SvxBoxItemLine::BOTTOM, SvxBoxItemLine::RIGHT }; + for( sal_uInt8 i = 0; i < 4; ++i ) { WW8_BRC aBrc; short nSpacing; short nThick = aBrc.DetermineBorderProperties(&nSpacing); - switch (i) + switch (aLnArr[i]) { case SvxBoxItemLine::TOP: case SvxBoxItemLine::BOTTOM: diff -Nru libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8atr.cxx libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8atr.cxx --- libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8atr.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8atr.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -4466,13 +4466,17 @@ void WW8Export::Out_SwFormatTableBox( ww::bytes& rO, const SvxBoxItem * pBox ) { // moeglich und vielleicht besser waere 0xffff + static const SvxBoxItemLine aBorders[] = + { + SvxBoxItemLine::TOP, SvxBoxItemLine::LEFT, SvxBoxItemLine::BOTTOM, SvxBoxItemLine::RIGHT + }; static const SvxBorderLine aBorderLine; - for( SvxBoxItemLine i : o3tl::enumrange() ) + for( int i = 0; i < 4; ++i ) { const SvxBorderLine* pLn; if (pBox != NULL) - pLn = pBox->GetLine( i ); + pLn = pBox->GetLine( aBorders[i] ); else pLn = & aBorderLine; diff -Nru libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8glsy.cxx libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8glsy.cxx --- libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8glsy.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8glsy.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -210,8 +210,6 @@ if (xDocSh->DoInitNew(0)) { SwDoc *pD = static_cast((&xDocSh))->GetDoc(); - SwWW8ImplReader* pRdr = new SwWW8ImplReader(pGlossary->nVersion, - xStg, &rStrm, *pD, rBlocks.GetBaseURL(), true, false); SwNodeIndex aIdx( *pD->GetNodes().GetEndOfContent().StartOfSectionNode(), 1); @@ -223,11 +221,11 @@ SwPaM aPamo( aIdx ); aPamo.GetPoint()->nContent.Assign(aIdx.GetNode().GetContentNode(), 0); - pRdr->LoadDoc(aPamo,this); - + std::unique_ptr xRdr(new SwWW8ImplReader( + pGlossary->nVersion, xStg, &rStrm, *pD, rBlocks.GetBaseURL(), + true, false, *aPamo.GetPoint())); + xRdr->LoadDoc(this); bRet = MakeEntries(pD, rBlocks, bSaveRelFile, aStrings, aData); - - delete pRdr; } xDocSh->DoClose(); rBlocks.EndPutMuchBlockEntries(); diff -Nru libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8graf.cxx libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8graf.cxx --- libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8graf.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8graf.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -443,23 +443,23 @@ return pObj; } -ESelection SwWW8ImplReader::GetESelection( long nCpStart, long nCpEnd ) +ESelection GetESelection(EditEngine &rDrawEditEngine, long nCpStart, long nCpEnd) { - sal_Int32 nPCnt = m_pDrawEditEngine->GetParagraphCount(); + sal_Int32 nPCnt = rDrawEditEngine.GetParagraphCount(); sal_Int32 nSP = 0; sal_Int32 nEP = 0; while( (nSP < nPCnt) - && (nCpStart >= m_pDrawEditEngine->GetTextLen( nSP ) + 1) ) + && (nCpStart >= rDrawEditEngine.GetTextLen( nSP ) + 1) ) { - nCpStart -= m_pDrawEditEngine->GetTextLen( nSP ) + 1; + nCpStart -= rDrawEditEngine.GetTextLen( nSP ) + 1; nSP++; } // Beim Ende erst 1 Zeichen spaeter auf naechste Zeile umschalten, // da sonst Zeilenattribute immer eine Zeile zu weit reichen. while( (nEP < nPCnt) - && (nCpEnd > m_pDrawEditEngine->GetTextLen( nEP ) + 1) ) + && (nCpEnd > rDrawEditEngine.GetTextLen( nEP ) + 1) ) { - nCpEnd -= m_pDrawEditEngine->GetTextLen( nEP ) + 1; + nCpEnd -= rDrawEditEngine.GetTextLen( nEP ) + 1; nEP++; } return ESelection( nSP, nCpStart, nEP, nCpEnd ); @@ -641,7 +641,7 @@ comphelper::string::padToLength(sTemp, nTextStart - nStartReplace, cReplaceSymbol); m_pDrawEditEngine->QuickInsertText(sTemp.makeStringAndClear(), - GetESelection(nStartReplace - nStartCp, + GetESelection(*m_pDrawEditEngine, nStartReplace - nStartCp, nTextStart - nStartCp ) ); } } @@ -718,7 +718,7 @@ if( pS->Count() ) { m_pDrawEditEngine->QuickSetAttribs( *pS, - GetESelection( nTextStart - nStartCp, nEnd - nStartCp ) ); + GetESelection(*m_pDrawEditEngine, nTextStart - nStartCp, nEnd - nStartCp ) ); delete pS; pS = new SfxItemSet(m_pDrawEditEngine->GetEmptyItemSet()); } @@ -736,7 +736,7 @@ myIter aEnd = aChunks.end(); for (myIter aIter = aChunks.begin(); aIter != aEnd; ++aIter) { - ESelection aSel(GetESelection(aIter->GetStartPos()-nStartCp, + ESelection aSel(GetESelection(*m_pDrawEditEngine, aIter->GetStartPos()-nStartCp, aIter->GetEndPos()-nStartCp)); OUString aString(m_pDrawEditEngine->GetText(aSel)); const sal_Int32 nOrigLen = aString.getLength(); @@ -865,9 +865,10 @@ // TxbxText() holt aus WW-File den Text und gibt diesen und den Anfangs- und // den um -2 (bzw. -1 bei Ver8) korrigierten End-Cp zurueck -bool SwWW8ImplReader::GetRangeAsDrawingString(OUString& rString, long nStartCp, long nEndCp, ManTypes eType) +sal_Int32 SwWW8ImplReader::GetRangeAsDrawingString(OUString& rString, long nStartCp, long nEndCp, ManTypes eType) { - WW8_CP nOffset = m_pWwFib->GetBaseCp(eType); + WW8_CP nOffset = 0; + m_pWwFib->GetBaseCp(eType, &nOffset); //TODO: check return value OSL_ENSURE(nStartCp <= nEndCp, "+Wo ist der Grafik-Text (7) ?"); if (nStartCp == nEndCp) @@ -884,23 +885,73 @@ rString = rString.copy(0, nLen-1); rString = rString.replace( 0xb, 0xa ); - return true; + return nLen; } } - return false; + return 0; +} + +//EditEngine::InsertText will replace dos lines resulting in a shorter +//string than is passed in, so inserting attributes based on the original +//string len can fail. So here replace the dos line ends similar to +//how EditEngine does it, but preserve the length and replace the extra +//chars with placeholders, record the position of the placeholders and +//remove those extra chars after attributes have been inserted +std::vector replaceDosLineEndsButPreserveLength(OUString &rIn) +{ + OUStringBuffer aNewData(rIn); + std::vector aDosLineEndDummies; + sal_Int32 i = 0; + sal_Int32 nStrLen = rIn.getLength(); + while (i < nStrLen) + { + // \r or \n causes linebreak + if (rIn[i] == '\r' || rIn[i] == '\n') + { + // skip char if \r\n or \n\r + if ( (i+1) < nStrLen && ((rIn[i+1] == '\r') || (rIn[i+1] == '\n')) && + (rIn[i] != rIn[i+1]) ) + { + ++i; + aDosLineEndDummies.push_back(i); + aNewData[i] = 0; + } + } + ++i; + } + rIn = aNewData.makeStringAndClear(); + return aDosLineEndDummies; +} + +void removePositions(EditEngine &rDrawEditEngine, const std::vector& rDosLineEndDummies) +{ + for (auto aIter = rDosLineEndDummies.rbegin(); aIter != rDosLineEndDummies.rend(); ++aIter) + { + sal_Int32 nCharPos(*aIter); + rDrawEditEngine.QuickDelete(GetESelection(rDrawEditEngine, nCharPos, nCharPos+1)); + } } OutlinerParaObject* SwWW8ImplReader::ImportAsOutliner(OUString &rString, WW8_CP nStartCp, WW8_CP nEndCp, ManTypes eType) { OutlinerParaObject* pRet = 0; - if (GetRangeAsDrawingString( rString, nStartCp, nEndCp, eType )) + sal_Int32 nLen = GetRangeAsDrawingString(rString, nStartCp, nEndCp, eType); + if (nLen > 0) { if (!m_pDrawEditEngine) m_pDrawEditEngine = new EditEngine(0); - m_pDrawEditEngine->SetText(rString); - InsertAttrsAsDrawingAttrs(nStartCp, nEndCp, eType); + //replace dos line endings with editeng ones, replace any extra chars with + //placeholders to keep the inserted string len in sync with the attribute cps + //and record in aDosLineEnds the superfluous positions + OUString sEEString(rString); + std::vector aDosLineEnds(replaceDosLineEndsButPreserveLength(sEEString)); + m_pDrawEditEngine->SetText(sEEString); + InsertAttrsAsDrawingAttrs(nStartCp, nStartCp+nLen, eType); + //remove any superfluous placeholders of replaceDosLineEndsButPreserveLength + //after attributes have been inserted + removePositions(*m_pDrawEditEngine, aDosLineEnds); // Annotations typically begin with a (useless) 0x5 if ((eType == MAN_AND) && m_pDrawEditEngine->GetTextLen()) @@ -950,8 +1001,8 @@ OUString aString; WW8_CP nStartCp, nEndCp; bool bContainsGraphics = false; - bool bTextWasRead = GetTxbxTextSttEndCp( nStartCp, nEndCp, nTxBxS, - nSequence ) && GetRangeAsDrawingString( aString, nStartCp, nEndCp, eType ); + bool bTextWasRead = GetTxbxTextSttEndCp(nStartCp, nEndCp, nTxBxS, nSequence) && + GetRangeAsDrawingString(aString, nStartCp, nEndCp, eType) > 0; if (!m_pDrawEditEngine) m_pDrawEditEngine = new EditEngine(0); @@ -2389,7 +2440,8 @@ ::SetProgressState(m_nProgress, m_pDocShell); // Update - m_nDrawCpO = m_pWwFib->GetBaseCp(m_pPlcxMan->GetManType() == MAN_HDFT ? MAN_TXBX_HDFT : MAN_TXBX); + m_nDrawCpO = 0; + m_bDrawCpOValid = m_pWwFib->GetBaseCp(m_pPlcxMan->GetManType() == MAN_HDFT ? MAN_TXBX_HDFT : MAN_TXBX, &m_nDrawCpO); GrafikCtor(); diff -Nru libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8par2.cxx libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8par2.cxx --- libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8par2.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8par2.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -413,6 +413,8 @@ WW8PLCFxDesc aRes; aRes.pMemPos = 0; aRes.nEndPos = rStartCp; + bool bReadRes(false); + WW8PLCFxDesc aPrevRes; while (pPap->HasFkp() && rStartCp != WW8_CP_MAX) { @@ -445,6 +447,13 @@ } pPap->GetSprms(&aRes); pPap->SetDirty(false); + if (bReadRes && aRes.nEndPos == aPrevRes.nEndPos && aRes.nStartPos == aPrevRes.nStartPos) + { + SAL_WARN("sw.ww8", "SearchRowEnd, loop in paragraph property chain"); + break; + } + bReadRes = true; + aPrevRes = aRes; //Update our aRes to get the new starting point of the next properties rStartCp = aRes.nEndPos; } @@ -4276,6 +4285,14 @@ std::vector< std::vector > aConvertedChpx; while (nByteCount < cbChpx) { + if (stcp == aCHPXOffsets.size()) + { + //more data than style slots, skip remainder + rSt.SeekRel(cbChpx-nByteCount); + nByteCount += cbChpx-nByteCount; + break; + } + sal_uInt8 cb(0); rSt.ReadUChar( cb ); nByteCount++; @@ -4298,12 +4315,7 @@ else aConvertedChpx.push_back( std::vector() ); - stcp++; - if (stcp == nStyles) - { - rSt.SeekRel(cbChpx-nByteCount); - nByteCount += cbChpx-nByteCount; - } + ++stcp; } std::vector aPAPXOffsets(stcp); @@ -4320,6 +4332,13 @@ stcp=0; while (nByteCount < cbPapx) { + if (stcp == aPAPXOffsets.size()) + { + rSt.SeekRel(cbPapx-nByteCount); + nByteCount += cbPapx-nByteCount; + break; + } + sal_uInt8 cb(0); rSt.ReadUChar( cb ); nByteCount++; @@ -4341,13 +4360,7 @@ nByteCount += nRemainder; } - stcp++; - - if (stcp == nStyles) - { - rSt.SeekRel(cbPapx-nByteCount); - nByteCount += cbPapx-nByteCount; - } + ++stcp; } sal_uInt16 iMac(0); @@ -4378,6 +4391,9 @@ if (eSti == ww::stiNil) continue; + if (stcp >= aPAPXOffsets.size()) + continue; + rSI.bValid = true; if (ww::StandardStiIsCharStyle(eSti) && !aPAPXOffsets[stcp].mnSize) diff -Nru libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8par4.cxx libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8par4.cxx --- libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8par4.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8par4.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -337,8 +337,11 @@ SdrObject* SwWW8ImplReader::ImportOleBase( Graphic& rGraph, const Graphic* pGrf, const SfxItemSet* pFlySet, const Rectangle& aVisArea ) { - SdrObject* pRet = 0; - OSL_ENSURE( m_pStg, "ohne storage geht hier fast gar nichts!" ); + if (!m_pStg) + { + SAL_WARN("sw.ww8", "no storage for ole objects"); + return nullptr; + } ::SetProgressState( m_nProgress, m_rDoc.GetDocShell() ); // Update @@ -390,6 +393,8 @@ } } + SdrObject* pRet = 0; + if (!(m_bIsHeader || m_bIsFooter)) { //Can't put them in headers/footers :-( diff -Nru libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8par.cxx libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8par.cxx --- libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8par.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8par.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -678,16 +678,22 @@ SEEK_FROM_CURRENT_AND_RESTART ) && maShapeRecords.Current()->nRecLen ) { - sal_uInt32 nBytesLeft = maShapeRecords.Current()->nRecLen; - sal_uInt32 nUDData; - sal_uInt16 nPID; + sal_uInt32 nBytesLeft = maShapeRecords.Current()->nRecLen; + auto nAvailableBytes = rSt.remainingSize(); + if (nBytesLeft > nAvailableBytes) + { + SAL_WARN("sw.ww8", "Document claimed to have shape record of " << nBytesLeft << " bytes, but only " << nAvailableBytes << " available"); + nBytesLeft = nAvailableBytes; + } while( 5 < nBytesLeft ) { - rSt.ReadUInt16( nPID ); - if ( rSt.GetError() != 0 ) + sal_uInt16 nPID(0); + rSt.ReadUInt16(nPID); + sal_uInt32 nUDData(0); + rSt.ReadUInt32(nUDData); + if (!rSt.good()) break; - rSt.ReadUInt32( nUDData ); - switch( nPID ) + switch (nPID) { case 0x038F: pImpRec->nXAlign = nUDData; break; case 0x0390: @@ -715,8 +721,6 @@ pImpRec->isHorizontalRule = true; break; } - if ( rSt.GetError() != 0 ) - break; nBytesLeft -= 6; } } @@ -2139,7 +2143,7 @@ } void SwWW8ImplReader::Read_HdFtFootnoteText( const SwNodeIndex* pSttIdx, - long nStartCp, long nLen, ManTypes nType ) + WW8_CP nStartCp, WW8_CP nLen, ManTypes nType ) { // Saves Flags (amongst other things) and resets them WW8ReaderSave aSave( this ); @@ -2226,7 +2230,7 @@ return 0; } -void SwWW8ImplReader::Read_HdFtTextAsHackedFrame(long nStart, long nLen, +void SwWW8ImplReader::Read_HdFtTextAsHackedFrame(WW8_CP nStart, WW8_CP nLen, SwFrameFormat &rHdFtFormat, sal_uInt16 nPageWidth) { const SwNodeIndex* pSttIdx = rHdFtFormat.GetContent().GetContentIdx(); @@ -2270,7 +2274,7 @@ MoveOutsideFly(pFrame, aTmpPos); } -void SwWW8ImplReader::Read_HdFtText(long nStart, long nLen, SwFrameFormat* pHdFtFormat) +void SwWW8ImplReader::Read_HdFtText(WW8_CP nStart, WW8_CP nLen, SwFrameFormat* pHdFtFormat) { const SwNodeIndex* pSttIdx = pHdFtFormat->GetContent().GetContentIdx(); if (!pSttIdx) @@ -2286,7 +2290,7 @@ bool SwWW8ImplReader::isValid_HdFt_CP(WW8_CP nHeaderCP) const { // Each CP of Plcfhdd MUST be less than FibRgLw97.ccpHdd - return (nHeaderCP < m_pWwFib->ccpHdr); + return (nHeaderCP < m_pWwFib->ccpHdr && nHeaderCP >= 0); } bool SwWW8ImplReader::HasOwnHeaderFooter(sal_uInt8 nWhichItems, sal_uInt8 grpfIhdt, @@ -2304,7 +2308,7 @@ { bool bOk = true; if( m_bVer67 ) - bOk = ( m_pHdFt->GetTextPos(grpfIhdt, nI, start, nLen ) && nLen >= 2 ); + bOk = ( m_pHdFt->GetTextPos(grpfIhdt, nI, start, nLen ) && start >= 0 && nLen >= 2 ); else { m_pHdFt->GetTextPosExact( static_cast< short >(nNumber + (nSect+1)*6), start, nLen); @@ -3729,7 +3733,7 @@ } } -long SwWW8ImplReader::ReadTextAttr(WW8_CP& rTextPos, bool& rbStartLine) +long SwWW8ImplReader::ReadTextAttr(WW8_CP& rTextPos, long nTextEnd, bool& rbStartLine) { long nSkipChars = 0; WW8PLCFManResult aRes; @@ -3784,8 +3788,9 @@ (aRes.nSprmId == eFLD) || (aRes.nSprmId == eAND) ) { + WW8_CP nMaxLegalSkip = nTextEnd - rTextPos; // Skip Field/Footnote-/End-Note here - rTextPos += nSkipChars; + rTextPos += std::min(nSkipChars, nMaxLegalSkip); nSkipPos = rTextPos-1; } } @@ -3794,7 +3799,9 @@ } } - m_pStrm->Seek(m_pSBase->WW8Cp2Fc( m_pPlcxMan->GetCpOfs() + rTextPos, &m_bIsUnicode)); + sal_Int32 nRequestedPos = m_pSBase->WW8Cp2Fc(m_pPlcxMan->GetCpOfs() + rTextPos, &m_bIsUnicode); + bool bValidPos = checkSeek(*m_pStrm, nRequestedPos); + SAL_WARN_IF(!bValidPos, "sw.ww8", "Document claimed to have text at an invalid position, skip attributes for region"); // Find next Attr position (and Skip attributes of field contents if needed) if (nSkipChars && !m_bIgnoreText) @@ -3808,7 +3815,7 @@ { if( bDoPlcxManPlusPLus ) m_pPlcxMan->advance(); - nNext = m_pPlcxMan->Where(); + nNext = bValidPos ? m_pPlcxMan->Where() : nTextEnd; if (m_pPostProcessAttrsInfo && m_pPostProcessAttrsInfo->mnCpStart == nNext) @@ -3818,7 +3825,7 @@ if( (0 <= nNext) && (nSkipPos >= nNext) ) { - nNext = ReadTextAttr( rTextPos, rbStartLine ); + nNext = ReadTextAttr(rTextPos, nTextEnd, rbStartLine); bDoPlcxManPlusPLus = false; m_bIgnoreText = true; } @@ -3869,7 +3876,7 @@ m_aEndParaPos.clear(); } -void SwWW8ImplReader::ReadAttrs(WW8_CP& rNext, WW8_CP& rTextPos, bool& rbStartLine) +void SwWW8ImplReader::ReadAttrs(WW8_CP& rTextPos, WW8_CP& rNext, long nTextEnd, bool& rbStartLine) { // Dow we have attributes? if( rTextPos >= rNext ) @@ -3877,7 +3884,9 @@ do { m_aCurrAttrCP = rTextPos; - rNext = ReadTextAttr( rTextPos, rbStartLine ); + rNext = ReadTextAttr(rTextPos, nTextEnd, rbStartLine); + if (rTextPos == rNext && rTextPos >= nTextEnd) + break; } while( rTextPos >= rNext ); @@ -3919,7 +3928,7 @@ EndSpecial(); } -bool SwWW8ImplReader::ReadText(long nStartCp, long nTextLen, ManTypes nType) +bool SwWW8ImplReader::ReadText(WW8_CP nStartCp, WW8_CP nTextLen, ManTypes nType) { bool bJoined=false; @@ -3945,18 +3954,25 @@ m_pStrm->Seek( m_pSBase->WW8Cp2Fc( nStartCp + nCpOfs, &m_bIsUnicode ) ); WW8_CP l = nStartCp; - while ( l nMaxPossible) { - ReadAttrs( nNext, l, bStartLine );// Takes SectionBreaks into account, too + SAL_WARN_IF(nTextLen > nMaxPossible, "sw.ww8", "TextLen too long"); + nTextLen = nMaxPossible; + } + WW8_CP nTextEnd = nStartCp+nTextLen; + while (l < nTextEnd) + { + ReadAttrs( l, nNext, nTextEnd, bStartLine );// Takes SectionBreaks into account, too OSL_ENSURE(m_pPaM->GetNode().GetTextNode(), "Missing txtnode"); if (m_pPostProcessAttrsInfo != NULL) PostProcessAttrs(); - if( l>= nStartCp + nTextLen ) + if (l >= nTextEnd) break; - bStartLine = ReadChars(l, nNext, nStartCp+nTextLen, nCpOfs); + bStartLine = ReadChars(l, nNext, nTextEnd, nCpOfs); // If the previous paragraph was a dropcap then do not // create a new txtnode and join the two paragraphs together @@ -4113,7 +4129,7 @@ } SwWW8ImplReader::SwWW8ImplReader(sal_uInt8 nVersionPara, SotStorage* pStorage, - SvStream* pSt, SwDoc& rD, const OUString& rBaseURL, bool bNewDoc, bool bSkipImages) + SvStream* pSt, SwDoc& rD, const OUString& rBaseURL, bool bNewDoc, bool bSkipImages, SwPosition &rPos) : m_pDocShell(rD.GetDocShell()) , m_pStg(pStorage) , m_pStrm(pSt) @@ -4171,6 +4187,7 @@ , m_nIniFlags1(0) , m_nFieldFlags(0) , m_bRegardHindiDigits( false ) + , m_bDrawCpOValid( false ) , m_nDrawCpO(0) , m_nPicLocFc(0) , m_nObjLocFc(0) @@ -4248,6 +4265,8 @@ { m_pStrm->SetEndian( SvStreamEndian::LITTLE ); m_aApos.push_back(false); + + mpCrsr.reset(m_rDoc.CreateUnoCrsr(rPos)); } void SwWW8ImplReader::DeleteStk(SwFltControlStack* pStck) @@ -4641,15 +4660,14 @@ { uno::Reference < io::XStream > xStream = xRoot->openStreamElement( OUString(SL::aMSMacroCmds), embed::ElementModes::READWRITE ); - SvStream* pStream = ::utl::UcbStreamHelper::CreateStream( xStream ); + std::unique_ptr xOutStream(::utl::UcbStreamHelper::CreateStream(xStream)); - sal_uInt8 *pBuffer = new sal_uInt8[m_pWwFib->lcbCmds]; - m_pWwFib->lcbCmds = m_pTableStream->Read(pBuffer, m_pWwFib->lcbCmds); - pStream->Write(pBuffer, m_pWwFib->lcbCmds); - delete[] pBuffer; - delete pStream; + sal_uInt32 lcbCmds = std::min(m_pWwFib->lcbCmds, m_pTableStream->remainingSize()); + std::unique_ptr xBuffer(new sal_uInt8[lcbCmds]); + m_pWwFib->lcbCmds = m_pTableStream->Read(xBuffer.get(), lcbCmds); + xOutStream->Write(xBuffer.get(), m_pWwFib->lcbCmds); } - catch ( const uno::Exception& ) + catch (...) { } } @@ -4867,7 +4885,7 @@ return bRes; } -sal_uLong SwWW8ImplReader::CoreLoad(WW8Glossary *pGloss, const SwPosition &rPos) +sal_uLong SwWW8ImplReader::CoreLoad(WW8Glossary *pGloss) { sal_uLong nErrRet = 0; @@ -4903,7 +4921,7 @@ pDocShell->SetReadOnlyUI(true); } - m_pPaM = m_rDoc.CreateUnoCrsr(rPos); + m_pPaM = mpCrsr.get(); m_pCtrlStck = new SwWW8FltControlStack( &m_rDoc, m_nFieldFlags, *this ); @@ -5347,7 +5365,8 @@ SAL_WARN_IF(m_pTableEndPaM, "sw.ww8", "document ended without table ending"); m_pTableEndPaM.reset(); //ensure this is deleted before pPaM - delete m_pPaM, m_pPaM = 0; + mpCrsr.reset(); + m_pPaM = nullptr; m_pLastAnchorPos.reset();//ensure this is deleted before UpdatePageDescs UpdatePageDescs(m_rDoc, nPageDescOffset); @@ -5576,7 +5595,7 @@ } } -sal_uLong SwWW8ImplReader::LoadThroughDecryption(SwPaM& rPaM ,WW8Glossary *pGloss) +sal_uLong SwWW8ImplReader::LoadThroughDecryption(WW8Glossary *pGloss) { sal_uLong nErrRet = 0; if (pGloss) @@ -5746,7 +5765,7 @@ } if (!nErrRet) - nErrRet = CoreLoad(pGloss, *rPaM.GetPoint()); + nErrRet = CoreLoad(pGloss); delete pTempMain; delete pTempTable; @@ -5943,7 +5962,7 @@ return pRet; } -sal_uLong SwWW8ImplReader::LoadDoc( SwPaM& rPaM,WW8Glossary *pGloss) +sal_uLong SwWW8ImplReader::LoadDoc(WW8Glossary *pGloss) { sal_uLong nErrRet = 0; @@ -6018,7 +6037,7 @@ } if (!nErrRet) - nErrRet = LoadThroughDecryption(rPaM ,pGloss); + nErrRet = LoadThroughDecryption(pGloss); m_rDoc.PropagateOutlineRule(); @@ -6051,7 +6070,7 @@ return nRet; } -sal_uLong WW8Reader::Read(SwDoc &rDoc, const OUString& rBaseURL, SwPaM &rPam, const OUString & /* FileName */) +sal_uLong WW8Reader::Read(SwDoc &rDoc, const OUString& rBaseURL, SwPaM &rPaM, const OUString & /* FileName */) { sal_uInt16 nOldBuffSize = 32768; bool bNew = !bInsertMode; // New Doc (no inserting) @@ -6094,16 +6113,20 @@ if( !nRet ) { + SwWW8ImplReader* pRdr = new SwWW8ImplReader(nVersion, pStg, pIn, rDoc, + rBaseURL, bNew, bSkipImages, *rPaM.GetPoint()); if (bNew) { // Remove Frame and offsets from Frame Template Reader::ResetFrameFormats( rDoc ); + + rPaM.GetBound().nContent.Assign(0, 0); + rPaM.GetBound(false).nContent.Assign(0, 0); + } - SwWW8ImplReader* pRdr = new SwWW8ImplReader(nVersion, pStg, pIn, rDoc, - rBaseURL, bNew, bSkipImages); try { - nRet = pRdr->LoadDoc( rPam ); + nRet = pRdr->LoadDoc(); } catch( const std::exception& ) { @@ -6171,7 +6194,7 @@ // Note: Ask MM for initialization of and . // Note: Ask MM about assertions in method . WW8_CP nStartCp, nEndCp; - if ( rReader.GetTxbxTextSttEndCp(nStartCp, nEndCp, + if ( rReader.m_bDrawCpOValid && rReader.GetTxbxTextSttEndCp(nStartCp, nEndCp, static_cast((nOLEId >> 16) & 0xFFFF), static_cast(nOLEId & 0xFFFF)) ) { diff -Nru libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8par.hxx libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8par.hxx --- libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8par.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8par.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -1094,6 +1094,7 @@ // allgemeines SwDoc& m_rDoc; + std::shared_ptr mpCrsr; SwPaM* m_pPaM; SwWW8FltControlStack* m_pCtrlStck; // Stack fuer die Attribute @@ -1267,7 +1268,8 @@ sal_uInt32 m_nFieldTagBad[3]; // dito fuers Taggen von nicht importierbaren F. bool m_bRegardHindiDigits; // import digits in CTL scripts as Hindi numbers - WW8_CP m_nDrawCpO; // Anfang der Txbx-SubDocs + bool m_bDrawCpOValid; + WW8_CP m_nDrawCpO; // start of Txbx-SubDocs sal_uLong m_nPicLocFc; // Picture Location in File (FC) sal_uLong m_nObjLocFc; // Object Location in File (FC) @@ -1384,8 +1386,8 @@ void Read_HdFt(int nSect, const SwPageDesc *pPrev, const wwSection &rSection); - void Read_HdFtText(long nStartCp, long nLen, SwFrameFormat* pHdFtFormat); - void Read_HdFtTextAsHackedFrame(long nStart, long nLen, + void Read_HdFtText(WW8_CP nStartCp, WW8_CP nLen, SwFrameFormat* pHdFtFormat); + void Read_HdFtTextAsHackedFrame(WW8_CP nStart, WW8_CP nLen, SwFrameFormat &rHdFtFormat, sal_uInt16 nPageWidth); bool isValid_HdFt_CP(WW8_CP nHeaderCP) const; @@ -1420,16 +1422,16 @@ void ProcessAktCollChange(WW8PLCFManResult& rRes, bool* pStartAttr, bool bCallProcessSpecial); - long ReadTextAttr(WW8_CP& rTextPos, bool& rbStartLine); - void ReadAttrs(WW8_CP& rNext, WW8_CP& rTextPos, bool& rbStartLine); + long ReadTextAttr(WW8_CP& rTextPos, long nTextEnd, bool& rbStartLine); + void ReadAttrs(WW8_CP& rTextPos, WW8_CP& rNext, long nTextEnd, bool& rbStartLine); void CloseAttrEnds(); - bool ReadText(long nStartCp, long nTextLen, ManTypes nType); + bool ReadText(WW8_CP nStartCp, WW8_CP nTextLen, ManTypes nType); void ReadRevMarkAuthorStrTabl( SvStream& rStrm, sal_Int32 nTablePos, sal_Int32 nTableSiz, SwDoc& rDoc ); - void Read_HdFtFootnoteText( const SwNodeIndex* pSttIdx, long nStartCp, - long nLen, ManTypes nType ); + void Read_HdFtFootnoteText(const SwNodeIndex* pSttIdx, WW8_CP nStartCp, + WW8_CP nLen, ManTypes nType); void ImportTox( int nFieldId, const OUString& aStr ); @@ -1535,9 +1537,9 @@ //This converts MS Asian Typography information into OOo's void ImportDopTypography(const WW8DopTypography &rTypo); - sal_uLong LoadThroughDecryption(SwPaM& rPaM ,WW8Glossary *pGloss); + sal_uLong LoadThroughDecryption(WW8Glossary *pGloss); sal_uLong SetSubStreams(tools::SvRef &rTableStream, tools::SvRef &rDataStream); - sal_uLong CoreLoad(WW8Glossary *pGloss, const SwPosition &rPos); + sal_uLong CoreLoad(WW8Glossary *pGloss); void ReadDocVars(); @@ -1579,13 +1581,12 @@ SdrObject *ReadElipse(WW8_DPHEAD* pHd, SfxAllItemSet &rSet); SdrObject *ReadArc(WW8_DPHEAD* pHd, SfxAllItemSet &rSet); SdrObject *ReadPolyLine(WW8_DPHEAD* pHd, SfxAllItemSet &rSet); - ESelection GetESelection( long nCpStart, long nCpEnd ); void InsertTxbxStyAttrs( SfxItemSet& rS, sal_uInt16 nColl ); void InsertAttrsAsDrawingAttrs(long nStartCp, long nEndCp, ManTypes eType, bool bONLYnPicLocFc=false); bool GetTxbxTextSttEndCp(WW8_CP& rStartCp, WW8_CP& rEndCp, sal_uInt16 nTxBxS, sal_uInt16 nSequence); - bool GetRangeAsDrawingString(OUString& rString, long StartCp, long nEndCp, ManTypes eType); + sal_Int32 GetRangeAsDrawingString(OUString& rString, long StartCp, long nEndCp, ManTypes eType); OutlinerParaObject* ImportAsOutliner(OUString &rString, WW8_CP nStartCp, WW8_CP nEndCp, ManTypes eType); SwFrameFormat* InsertTxbxText(SdrTextObj* pTextObj, Size* pObjSiz, sal_uInt16 nTxBxS, sal_uInt16 nSequence, long nPosCp, SwFrameFormat* pFlyFormat, @@ -1884,11 +1885,11 @@ static ColorData GetCol(sal_uInt8 nIco); SwWW8ImplReader( sal_uInt8 nVersionPara, SotStorage* pStorage, SvStream* pSt, - SwDoc& rD, const OUString& rBaseURL, bool bNewDoc, bool bSkipImages ); + SwDoc& rD, const OUString& rBaseURL, bool bNewDoc, bool bSkipImages, SwPosition &rPos ); const OUString& GetBaseURL() const { return m_sBaseURL; } - // Laden eines kompletten DocFiles - sal_uLong LoadDoc( SwPaM&,WW8Glossary *pGloss=0); + // load a complete doc file + sal_uLong LoadDoc(WW8Glossary *pGloss=0); rtl_TextEncoding GetCurrentCharSet(); rtl_TextEncoding GetCurrentCJKCharSet(); rtl_TextEncoding GetCharSetFromLanguage(); diff -Nru libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8scan.cxx libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8scan.cxx --- libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8scan.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8scan.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -20,10 +20,12 @@ #include "ww8scan.hxx" #include "ww8par.hxx" +#include +#include +#include #include #include -#include #include #include #include @@ -941,8 +943,8 @@ WW8PLCFx_PCDAttrs::WW8PLCFx_PCDAttrs(ww::WordVersion eVersion, WW8PLCFx_PCD* pPLCFx_PCD, const WW8ScannerBase* pBase) : WW8PLCFx(eVersion, true), pPcdI(pPLCFx_PCD->GetPLCFIter()), - pPcd(pPLCFx_PCD), pGrpprls(pBase->pPieceGrpprls), - nGrpprls(pBase->nPieceGrpprls) + pPcd(pPLCFx_PCD), pGrpprls(pBase->aPieceGrpprls.data()), + nGrpprls(pBase->aPieceGrpprls.size()) { } @@ -1527,43 +1529,14 @@ return NULL; WW8_FC nClxPos = pWwF->fcClx; - sal_Int32 nClxLen = pWwF->lcbClx; - sal_Int32 nLeft = nClxLen; - sal_Int16 nGrpprl = 0; if (!checkSeek(*pStr, nClxPos)) return NULL; - while( true ) // Zaehle Zahl der Grpprls - { - sal_uInt8 clxt(2); - pStr->ReadUChar( clxt ); - nLeft--; - if( 2 == clxt ) // PLCFfpcd ? - break; // PLCFfpcd gefunden - if( 1 == clxt ) // clxtGrpprl ? - { - if (nGrpprl == SHRT_MAX) - return NULL; - nGrpprl++; - } - sal_uInt16 nLen(0); - pStr->ReadUInt16( nLen ); - nLeft -= 2 + nLen; - if( nLeft < 0 ) - return NULL; // gone wrong - pStr->SeekRel( nLen ); // ueberlies grpprl - } - - if (!checkSeek(*pStr, nClxPos)) - return NULL; + sal_Int32 nClxLen = pWwF->lcbClx; + sal_Int32 nLeft = nClxLen; - nLeft = nClxLen; - pPieceGrpprls = new sal_uInt8*[nGrpprl + 1]; - memset( pPieceGrpprls, 0, ( nGrpprl + 1 ) * sizeof(sal_uInt8 *) ); - nPieceGrpprls = nGrpprl; - sal_Int16 nAktGrpprl = 0; // read Grpprls - while( true ) + while (true) { sal_uInt8 clxt(2); pStr->ReadUChar( clxt ); @@ -1577,6 +1550,8 @@ return NULL; // gone wrong if( 1 == clxt ) // clxtGrpprl ? { + if (aPieceGrpprls.size() == SHRT_MAX) + return NULL; if (nLen > pStr->remainingSize()) return NULL; sal_uInt8* p = new sal_uInt8[nLen+2]; // allocate @@ -1586,12 +1561,13 @@ delete[] p; return NULL; } - pPieceGrpprls[nAktGrpprl++] = p; // trage in Array ein + aPieceGrpprls.push_back(p); // add to array } else - pStr->SeekRel( nLen ); // ueberlies nicht-Grpprl + pStr->SeekRel( nLen ); // non-Grpprl left } - // lies Piece Table PLCF ein + + // read Piece Table PLCF sal_Int32 nPLCFfLen(0); if (pWwF->GetFIBVersion() <= ww::eWW2) { @@ -1607,20 +1583,15 @@ void WW8ScannerBase::DeletePieceTable() { - if( pPieceGrpprls ) - { - for( sal_uInt8** p = pPieceGrpprls; *p; p++ ) - delete[] (*p); - delete[] pPieceGrpprls; - pPieceGrpprls = 0; - } + for (auto pGrppl : aPieceGrpprls) + delete[] pGrppl; } WW8ScannerBase::WW8ScannerBase( SvStream* pSt, SvStream* pTableSt, SvStream* pDataSt, WW8Fib* pWwFib ) : pWw8Fib(pWwFib), pMainFdoa(0), pHdFtFdoa(0), pMainTxbx(0), pMainTxbxBkd(0), pHdFtTxbx(0), pHdFtTxbxBkd(0), pMagicTables(0), - pSubdocs(0), pExtendedAtrds(0), pPieceGrpprls(0) + pSubdocs(0), pExtendedAtrds(0) { pPiecePLCF = OpenPieceTable( pTableSt, pWw8Fib ); // Complex if( pPiecePLCF ) @@ -2138,7 +2109,8 @@ void WW8PLCF::ReadPLCF(SvStream& rSt, WW8_FC nFilePos, sal_uInt32 nPLCF) { sal_Size nOldPos = rSt.Tell(); - bool bValid = checkSeek(rSt, nFilePos) && (rSt.remainingSize() >= nPLCF); + bool bValid = nPLCF != 0 && checkSeek(rSt, nFilePos) + && (rSt.remainingSize() >= nPLCF); if (bValid) { @@ -2156,6 +2128,8 @@ #endif // OSL_BIGENDIAN // Pointer to content array pPLCF_Contents = reinterpret_cast(&pPLCF_PosArray[nIMax + 1]); + + TruncToSortedRange(); } OSL_ENSURE(bValid, "Document has corrupt PLCF, ignoring it"); @@ -2175,6 +2149,21 @@ pPLCF_Contents = reinterpret_cast(&pPLCF_PosArray[nIMax + 1]); } +void WW8PLCF::TruncToSortedRange() +{ + //Docs state that: ... all Plcs ... are sorted in ascending order. + //So ensure that here for broken documents. + for (auto nI = 0; nI < nIMax; ++nI) + { + if (pPLCF_PosArray[nI] > pPLCF_PosArray[nI+1]) + { + SAL_WARN("sw.ww8", "Document has unsorted PLCF, truncated to sorted portion"); + nIMax = nI; + break; + } + } +} + void WW8PLCF::GeneratePLCF(SvStream& rSt, sal_Int32 nPN, sal_Int32 ncpN) { OSL_ENSURE( nIMax < ncpN, "Pcl.Fkp: Why is PLCF too big?" ); @@ -3829,12 +3818,15 @@ void WW8PLCFx_FLD::advance() { + SAL_WARN_IF(!pPLCF, "sw.ww8", "Call without PLCFspecial field"); + if( !pPLCF ) + return; pPLCF->advance(); } bool WW8PLCFx_FLD::GetPara(long nIdx, WW8FieldDesc& rF) { - OSL_ENSURE( pPLCF, "Call without PLCFspecial field" ); + SAL_WARN_IF(!pPLCF, "sw.ww8", "Call without PLCFspecial field"); if( !pPLCF ) return false; @@ -4172,10 +4164,10 @@ { bool bFound = false; sal_uInt16 i = 0; - if( pBook[0] && pBook[1] ) + if (pBook[0] && pBook[1]) { WW8_CP nStartAkt, nEndAkt; - do + while (i < aBookNames.size()) { void* p; sal_uInt16 nEndIdx; @@ -4198,7 +4190,6 @@ } ++i; } - while (i < pBook[0]->GetIMax()); } return bFound ? aBookNames[i] : OUString(); } @@ -4230,17 +4221,18 @@ return false; bool bFound = false; - sal_uInt16 i = 0; - do + + size_t i = 0; + while (i < aBookNames.size()) { if (rName.equalsIgnoreAsciiCase(aBookNames[i])) { rName = aBookNames[i]; bFound = true; + break; } ++i; } - while (!bFound && i < pBook[0]->GetIMax()); return bFound; } @@ -4391,6 +4383,19 @@ // dadurch kein AErger zu erwarten ist. void WW8PLCFMan::AdjustEnds( WW8PLCFxDesc& rDesc ) { + // might be necessary to do this for pChp and/or pSep as well, + // but its definitely the case for paragraphs that EndPos > StartPos + // for a well formed paragraph as those always have a paragraph + // in them + if (&rDesc == pPap && rDesc.bRealLineEnd) + { + if (rDesc.nStartPos == rDesc.nEndPos && rDesc.nEndPos != WW8_CP_MAX) + { + SAL_WARN("sw.ww8", "WW8PLCFxDesc End same as Start, abandoning to avoid looping"); + rDesc.nEndPos = WW8_CP_MAX; + } + } + //Store old end position for supercool new property finder that uses //cp instead of fc's as nature intended rDesc.nOrigEndPos = rDesc.nEndPos; @@ -4605,7 +4610,9 @@ break; } - nCpO = pWwFib->GetBaseCp(nType); + WW8_CP cp = 0; + pWwFib->GetBaseCp(nType, &cp); //TODO: check return value + nCpO = cp; if( nStartCp || nCpO ) SeekPos( nStartCp ); // PLCFe auf Text-StartPos einstellen @@ -5232,59 +5239,78 @@ { if (eVer <= ww::eWW2) { - sal_uInt16 nShort; - rSt.ReadUInt16( nShort ); + sal_uInt16 nShort(0); + rSt.ReadUInt16(nShort); return nShort; } else { - sal_uInt32 nLong; - rSt.ReadUInt32( nLong ); + sal_uInt32 nLong(0); + rSt.ReadUInt32(nLong); return nLong; } } } -WW8_CP WW8Fib::GetBaseCp(ManTypes nType) const +bool WW8Fib::GetBaseCp(ManTypes nType, WW8_CP * cp) const { + assert(cp != nullptr); WW8_CP nOffset = 0; switch( nType ) { default: - case MAN_MAINTEXT: - break; - case MAN_FTN: - nOffset = ccpText; - break; - case MAN_HDFT: - nOffset = ccpText + ccpFootnote; - break; + case MAN_TXBX_HDFT: + nOffset = ccpTxbx; + // fall through + case MAN_TXBX: + if (ccpEdn > std::numeric_limits::max() - nOffset) { + return false; + } + nOffset += ccpEdn; + // fall through + case MAN_EDN: + if (ccpAtn > std::numeric_limits::max() - nOffset) { + return false; + } + nOffset += ccpAtn; + // fall through + case MAN_AND: + if (ccpMcr > std::numeric_limits::max() - nOffset) { + return false; + } + nOffset += ccpMcr; /* + // fall through + A subdocument of this kind (MAN_MACRO) probably exists in some defunct version of MSWord, but now ccpMcr is always 0. If some example that uses this comes to light, this is the likely calculation required case MAN_MACRO: - nOffset = ccpText + ccpFootnote + ccpHdr; - break; - */ - case MAN_AND: - nOffset = ccpText + ccpFootnote + ccpHdr + ccpMcr; - break; - case MAN_EDN: - nOffset = ccpText + ccpFootnote + ccpHdr + ccpMcr + ccpAtn; - break; - case MAN_TXBX: - nOffset = ccpText + ccpFootnote + ccpHdr + ccpMcr + ccpAtn + ccpEdn; - break; - case MAN_TXBX_HDFT: - nOffset = ccpText + ccpFootnote + ccpHdr + ccpMcr + ccpAtn + ccpEdn + - ccpTxbx; + if (ccpHdr > std::numeric_limits::max() - nOffset) { + return false; + } + nOffset += ccpHdr; + // fall through + case MAN_HDFT: + if (ccpFootnote > std::numeric_limits::max() - nOffset) { + return false; + } + nOffset += ccpFootnote; + // fall through + case MAN_FTN: + if (ccpText > std::numeric_limits::max() - nOffset) { + return false; + } + nOffset += ccpText; + // fall through + case MAN_MAINTEXT: break; } - return nOffset; + *cp = nOffset; + return true; } ww::WordVersion WW8Fib::GetFIBVersion() const @@ -6346,10 +6372,15 @@ return pStd; } -struct WW8_FFN_Ver6 : public WW8_FFN_BASE +namespace { +const sal_uInt16 maxStrSize = 65; +} + +struct WW8_FFN_Ver6 { - // ab Ver6 - sal_Char szFfn[65]; // 0x6 bzw. 0x40 ab Ver8 zero terminated string that + WW8_FFN_BASE base; + // from Ver6 + sal_Char szFfn[maxStrSize]; // 0x6 bzw. 0x40 ab Ver8 zero terminated string that // records name of font. // Maximal size of szFfn is 65 characters. // Vorsicht: Dieses Array kann auch kleiner sein!!! @@ -6428,6 +6459,50 @@ } return nMax; } + + template bool readU8( + sal_uInt8 const * p, std::size_t offset, sal_uInt8 const * pEnd, + T * value) + { + assert(p <= pEnd); + assert(value != nullptr); + if (offset >= static_cast(pEnd - p)) { + return false; + } + *value = p[offset]; + return true; + } + + bool readS16( + sal_uInt8 const * p, std::size_t offset, sal_uInt8 const * pEnd, + short * value) + { + assert(p <= pEnd); + assert(value != nullptr); + if (offset > static_cast(pEnd - p) + || static_cast(pEnd - p) - offset < 2) + { + return false; + } + *value = unsigned(p[offset]) + (unsigned(p[offset + 1]) << 8); + return true; + } + + sal_Int32 getStringLength( + sal_uInt8 const * p, std::size_t offset, sal_uInt8 const * pEnd) + { + assert(p <= pEnd); + assert(pEnd - p <= SAL_MAX_INT32); + if (offset >= static_cast(pEnd - p)) { + return -1; + } + void const * p2 = std::memchr( + p + offset, 0, static_cast(pEnd - p) - offset); + if (p2 == nullptr) { + return -1; + } + return static_cast(p2) - (p + offset); + } } WW8Fonts::WW8Fonts( SvStream& rSt, WW8Fib& rFib ) @@ -6465,6 +6540,7 @@ // read all font information nFFn = rSt.Read(pA, nFFn); + sal_uInt8 * const pEnd = pA + nFFn; const sal_uInt16 nCalcMax = calcMaxFonts(pA, nFFn); if (eVersion < ww::eWW8) @@ -6484,17 +6560,26 @@ if( eVersion <= ww::eWW2 ) { - WW8_FFN_BASE* pVer2 = reinterpret_cast(pA); - for(sal_uInt16 i=0; icbFfnM1 = pVer2->cbFfnM1; + sal_uInt8 const * pVer2 = pA; + sal_uInt16 i = 0; + for(; icbFfnM1)) + { + break; + } p->prg = 0; p->fTrueType = 0; p->ff = 0; - p->wWeight = ( *(reinterpret_cast(pVer2) + 1) ); - p->chs = ( *(reinterpret_cast(pVer2) + 2) ); + if (!(readU8(pVer2, 1, pEnd, &p->wWeight) + && readU8(pVer2, 2, pEnd, &p->chs))) + { + break; + } /* #i8726# 7- seems to encode the name in the same encoding as the font, e.g load the doc in 97 and save to see the unicode @@ -6504,27 +6589,49 @@ if ((eEnc == RTL_TEXTENCODING_SYMBOL) || (eEnc == RTL_TEXTENCODING_DONTKNOW)) eEnc = RTL_TEXTENCODING_MS_1252; - p->sFontname = OUString ( (reinterpret_cast(pVer2) + 1 + 2), strlen((reinterpret_cast(pVer2) + 1 + 2)), eEnc); - pVer2 = reinterpret_cast( reinterpret_cast(pVer2) + pVer2->cbFfnM1 + 1 ); + sal_Int32 n = getStringLength(pVer2, 1 + 2, pEnd); + if (n == -1) { + break; + } + p->sFontname = OUString( + reinterpret_cast(pVer2 + 1 + 2), n, eEnc); + pVer2 = pVer2 + p->cbFfnM1 + 1; } + nMax = i; } else if( eVersion < ww::eWW8 ) { - WW8_FFN_Ver6* pVer6 = reinterpret_cast(pA); - sal_uInt8 c2; - for(sal_uInt16 i=0; icbFfnM1 = pVer6->cbFfnM1; - c2 = *(reinterpret_cast(pVer6) + 1); + sal_uInt8 const * pVer6 = pA; + sal_uInt16 i = 0; + for(; icbFfnM1)) + { + break; + } + sal_uInt8 c2; + if (!readU8(pVer6, 1, pEnd, &c2)) { + break; + } p->prg = c2 & 0x02; p->fTrueType = (c2 & 0x04) >> 2; // ein Reserve-Bit ueberspringen p->ff = (c2 & 0x70) >> 4; - p->wWeight = SVBT16ToShort( *reinterpret_cast(&pVer6->wWeight) ); - p->chs = pVer6->chs; - p->ibszAlt = pVer6->ibszAlt; + if (!(readS16( + pVer6, offsetof(WW8_FFN_BASE, wWeight), pEnd, + &p->wWeight) + && readU8( + pVer6, offsetof(WW8_FFN_BASE, chs), pEnd, &p->chs) + && readU8( + pVer6, offsetof(WW8_FFN_BASE, ibszAlt), pEnd, + &p->ibszAlt))) + { + break; + } /* #i8726# 7- seems to encode the name in the same encoding as the font, e.g load the doc in 97 and save to see the unicode @@ -6533,12 +6640,27 @@ rtl_TextEncoding eEnc = WW8Fib::GetFIBCharset(p->chs, rFib.lid); if ((eEnc == RTL_TEXTENCODING_SYMBOL) || (eEnc == RTL_TEXTENCODING_DONTKNOW)) eEnc = RTL_TEXTENCODING_MS_1252; - p->sFontname = OUString(pVer6->szFfn, rtl_str_getLength(pVer6->szFfn), eEnc); - const sal_uInt16 maxStrSize = sizeof (pVer6->szFfn) / sizeof (pVer6->szFfn[0]); + sal_Int32 n = getStringLength( + pVer6, offsetof(WW8_FFN_Ver6, szFfn), pEnd); + if (n == -1) { + break; + } + p->sFontname = OUString( + reinterpret_cast( + pVer6 + offsetof(WW8_FFN_Ver6, szFfn)), + n, eEnc); if (p->ibszAlt && p->ibszAlt < maxStrSize) //don't start after end of string { - const sal_Char *pAlt = pVer6->szFfn+p->ibszAlt; - p->sFontname += ";" + OUString(pAlt, rtl_str_getLength(pAlt), eEnc); + n = getStringLength( + pVer6, offsetof(WW8_FFN_Ver6, szFfn) + p->ibszAlt, + pEnd); + if (n == -1) { + break; + } + p->sFontname += ";" + OUString( + reinterpret_cast( + pVer6 + offsetof(WW8_FFN_Ver6, szFfn) + p->ibszAlt), + n, eEnc); } else { @@ -6551,8 +6673,9 @@ p->sFontname += ";Symbol"; } } - pVer6 = reinterpret_cast( reinterpret_cast(pVer6) + pVer6->cbFfnM1 + 1 ); + pVer6 = pVer6 + p->cbFfnM1 + 1; } + nMax = i; } else { @@ -6736,9 +6859,8 @@ sal_uInt8* pData = pDataPtr; sal_uInt32 nRead = nMaxDopSize < nSize ? nMaxDopSize : nSize; - rSt.Seek( nPos ); - if (2 > nSize || nRead != rSt.Read(pData, nRead)) - nDopError = ERR_SWG_READ_ERROR; // Error melden + if (nSize < 2 || !checkSeek(rSt, nPos) || nRead != rSt.Read(pData, nRead)) + nDopError = ERR_SWG_READ_ERROR; // report error else { if (nMaxDopSize > nRead) @@ -7585,7 +7707,8 @@ bool checkSeek(SvStream &rSt, sal_uInt32 nOffset) { - return (rSt.Seek(nOffset) == static_cast(nOffset)); + const sal_uInt64 nMaxSeek(rSt.Tell() + rSt.remainingSize()); + return (nOffset <= nMaxSeek && rSt.Seek(nOffset) == nOffset); } bool checkRead(SvStream &rSt, void *pDest, sal_uInt32 nLength) diff -Nru libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8scan.hxx libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8scan.hxx --- libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8scan.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8scan.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -291,6 +291,7 @@ void MakeFailedPLCF(); + void TruncToSortedRange(); public: WW8PLCF(SvStream& rSt, WW8_FC nFilePos, sal_Int32 nPLCF, int nStruct, WW8_CP nStartPos = -1); @@ -412,7 +413,7 @@ private: WW8PLCFpcd_Iter* pPcdI; WW8PLCFx_PCD* pPcd; - sal_uInt8** const pGrpprls; // Attribute an Piece-Table + sal_uInt8* const* pGrpprls; // attribute of Piece-table SVBT32 aShortSprm; // mini storage: can contain ONE sprm with // 1 byte param sal_uInt16 nGrpprls; // Attribut Anzahl davon @@ -1015,8 +1016,7 @@ WW8PLCFpcd_Iter* pPieceIter; // fuer FastSave ( Iterator dazu ) WW8PLCFx_PCD* pPLCFx_PCD; // dito WW8PLCFx_PCDAttrs* pPLCFx_PCDAttrs; - sal_uInt8** pPieceGrpprls; // Attribute an Piece-Table - sal_uInt16 nPieceGrpprls; // Anzahl davon + std::vector aPieceGrpprls; // attributes of Piece-Table WW8PLCFpcd* OpenPieceTable( SvStream* pStr, const WW8Fib* pWwF ); void DeletePieceTable(); @@ -1270,7 +1270,7 @@ sal_Int32 lcbPlcfbkl; // 0x114 sal_Int32 WW8_FC fcCmds; // 0x118 FC - sal_Int32 lcbCmds; // 0x11c + sal_uInt32 lcbCmds; // 0x11c WW8_FC fcPlcfmcr; // 0x120 FC sal_Int32 lcbPlcfmcr; // 0x124 @@ -1456,7 +1456,7 @@ bool Write(SvStream& rStrm); static rtl_TextEncoding GetFIBCharset(sal_uInt16 chs, sal_uInt16 nLidLocale); ww::WordVersion GetFIBVersion() const; - WW8_CP GetBaseCp(ManTypes nType) const; + bool GetBaseCp(ManTypes nType, WW8_CP * cp) const; sal_Unicode getNumDecimalSep() const { return nNumDecimalSep;} }; diff -Nru libreoffice-5.0.1~rc2/sw/source/filter/ww8/WW8Sttbf.cxx libreoffice-5.0.2~rc2/sw/source/filter/ww8/WW8Sttbf.cxx --- libreoffice-5.0.1~rc2/sw/source/filter/ww8/WW8Sttbf.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/filter/ww8/WW8Sttbf.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -32,6 +32,8 @@ { if (checkSeek(rSt, nPos)) { + sal_Size nRemainingSize = rSt.remainingSize(); + nSize = std::min(nRemainingSize, nSize); mp_data.reset(new sal_uInt8[nSize]); mn_size = rSt.Read(mp_data.get(), nSize); } diff -Nru libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8toolbar.cxx libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8toolbar.cxx --- libreoffice-5.0.1~rc2/sw/source/filter/ww8/ww8toolbar.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/filter/ww8/ww8toolbar.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -166,7 +166,7 @@ { rCustomizations[ *it ].bIsDroppedMenuTB = true; } - return true; + return rS.good(); } SwTBC* SwCTBWrapper::GetTBCAtOffset( sal_uInt32 nStreamOffset ) @@ -284,7 +284,7 @@ if ( !customizationDataCTB->Read( rS ) ) return false; } - return true; + return rS.good(); } #if OSL_DEBUG_LEVEL > 1 @@ -454,7 +454,7 @@ nOffSet = rS.Tell(); rS.ReadUChar( doprfatendFlags ).ReadUChar( ibts ).ReadInt32( cidNext ).ReadInt32( cid ).ReadInt32( fc ) ; rS.ReadUInt16( CiTBDE ).ReadUInt16( cbTBC ); - return true; + return rS.good(); } #if OSL_DEBUG_LEVEL > 1 @@ -524,7 +524,7 @@ rTBC.push_back( aTBC ); } } - return true; + return rS.good(); } #if OSL_DEBUG_LEVEL > 1 @@ -637,7 +637,7 @@ if ( !tbcd->Read( rS ) ) return false; } - return true; + return rS.good(); } #if OSL_DEBUG_LEVEL > 1 @@ -777,7 +777,7 @@ SAL_INFO("sw.ww8","Xst::Read() stream pos 0x" << std::hex << rS.Tell() ); nOffSet = rS.Tell(); sString = read_uInt16_PascalString(rS); - return true; + return rS.good(); } #if OSL_DEBUG_LEVEL > 1 @@ -913,7 +913,7 @@ nId = 0x40; rS.ReadUChar( nId ); } - return true; + return rS.good(); // Peek at } @@ -945,7 +945,7 @@ nOffSet = rS.Tell(); if ( mbReadId ) rS.ReadUChar( ch ); - return true; + return rS.good(); } PlfMcd::PlfMcd(bool bReadId) @@ -969,7 +969,7 @@ return false; } } - return true; + return rS.good(); } #if OSL_DEBUG_LEVEL > 1 @@ -1004,7 +1004,15 @@ nOffSet = rS.Tell(); Tcg255SubStruct::Read( rS ); rS.ReadInt32( iMac ); - if ( iMac ) + if (iMac < 0) + return false; + auto nMaxPossibleRecords = rS.remainingSize() / (sizeof(sal_uInt16)*2); + if (static_cast(iMac) > nMaxPossibleRecords) + { + SAL_WARN("sw.ww8", iMac << " records claimed, but max possible is " << nMaxPossibleRecords); + iMac = nMaxPossibleRecords; + } + if (iMac) { rgacd = new Acd[ iMac ]; for ( sal_Int32 index = 0; index < iMac; ++index ) @@ -1013,7 +1021,7 @@ return false; } } - return true; + return rS.good(); } #if OSL_DEBUG_LEVEL > 1 @@ -1057,7 +1065,7 @@ return false; } } - return true; + return rS.good(); } #if OSL_DEBUG_LEVEL > 1 @@ -1125,7 +1133,7 @@ rS.ReadUInt16( dataItems[ index ].extraData ); } } - return true; + return rS.good(); } #if OSL_DEBUG_LEVEL > 1 @@ -1175,7 +1183,7 @@ return false; } } - return true; + return rS.good(); } #if OSL_DEBUG_LEVEL > 1 @@ -1229,7 +1237,7 @@ rS.ReadUInt16( chTerm ); if ( chTerm != 0 ) // should be an assert return false; - return true; + return rS.good(); } #if OSL_DEBUG_LEVEL > 1 @@ -1262,7 +1270,7 @@ SAL_INFO("sw.ww8","Kme::Read() stream pos 0x" << std::hex << rS.Tell() ); nOffSet = rS.Tell(); rS.ReadInt16( reserved1 ).ReadInt16( reserved2 ).ReadUInt16( kcm1 ).ReadUInt16( kcm2 ).ReadUInt16( kt ).ReadUInt32( param ); - return true; + return rS.good(); } #if OSL_DEBUG_LEVEL > 1 @@ -1290,7 +1298,7 @@ SAL_INFO("sw.ww8","Acd::Read() stream pos 0x" << std::hex << rS.Tell() ); nOffSet = rS.Tell(); rS.ReadInt16( ibst ).ReadUInt16( fciBasedOnABC ); - return true; + return rS.good(); } #if OSL_DEBUG_LEVEL > 1 @@ -1353,7 +1361,7 @@ nOffSet = rS.Tell(); rS.ReadSChar( reserved1 ).ReadUChar( reserved2 ).ReadUInt16( ibst ).ReadUInt16( ibstName ).ReadUInt16( reserved3 ); rS.ReadUInt32( reserved4 ).ReadUInt32( reserved5 ).ReadUInt32( reserved6 ).ReadUInt32( reserved7 ); - return true; + return rS.good(); } #if OSL_DEBUG_LEVEL > 1 diff -Nru libreoffice-5.0.1~rc2/sw/source/filter/xml/xmlimp.cxx libreoffice-5.0.2~rc2/sw/source/filter/xml/xmlimp.cxx --- libreoffice-5.0.1~rc2/sw/source/filter/xml/xmlimp.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/filter/xml/xmlimp.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -652,6 +652,13 @@ if( !pDoc ) return; + if (SvXMLImportFlags::ALL == getImportFlags()) + { + // for flat ODF - this is done in SwReader::Read() for package ODF + pDoc->SetInReading(true); + pDoc->SetInXMLImport(true); + } + if( (getImportFlags() & SvXMLImportFlags::CONTENT) && !IsStylesOnlyMode() ) { pSttNdIdx = new SwNodeIndex( pDoc->GetNodes() ); @@ -876,6 +883,11 @@ pDoc->PrtOLENotify( false ); else if ( pDoc->IsOLEPrtNotifyPending() ) pDoc->PrtOLENotify( true ); + + assert(pDoc->IsInReading()); + assert(pDoc->IsInXMLImport()); + pDoc->SetInReading(false); + pDoc->SetInXMLImport(false); } SwDrawModel* pDrawModel = pDoc->getIDocumentDrawModelAccess().GetDrawModel(); diff -Nru libreoffice-5.0.1~rc2/sw/source/ui/chrdlg/numpara.cxx libreoffice-5.0.2~rc2/sw/source/ui/chrdlg/numpara.cxx --- libreoffice-5.0.1~rc2/sw/source/ui/chrdlg/numpara.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/ui/chrdlg/numpara.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -335,7 +335,7 @@ IMPL_LINK_NOARG(SwParagraphNumTabPage, EditNumStyleHdl_Impl) { OUString aTemplName(m_pNumberStyleLB->GetSelectEntry()); - ExecuteEditNumStyle_Impl( SID_STYLE_EDIT, aTemplName, OUString(),SFX_STYLE_FAMILY_PARA, 0 ); + ExecuteEditNumStyle_Impl( SID_STYLE_EDIT, aTemplName, OUString(),SFX_STYLE_FAMILY_PSEUDO, 0 ); return 0; } diff -Nru libreoffice-5.0.1~rc2/sw/source/ui/vba/vbatablehelper.cxx libreoffice-5.0.2~rc2/sw/source/ui/vba/vbatablehelper.cxx --- libreoffice-5.0.1~rc2/sw/source/ui/vba/vbatablehelper.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/ui/vba/vbatablehelper.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -61,7 +61,6 @@ sal_Int32 SwVbaTableHelper::getTabColumnsMaxCount( ) throw (uno::RuntimeException) { sal_Int32 nRet = 0; - //sal_Int32 nRowCount = mxTextTable->getRows()->getCount(); sal_Int32 nRowCount = pTable->GetTabLines().size(); for( sal_Int32 index = 0; index < nRowCount; index++ ) { @@ -141,15 +140,15 @@ { SwTableLines& rLines = pTable->GetTabLines(); sal_Int32 nRowCount = rLines.size(); - if( nRowCount < nRow ) + if (nRow < 0 || nRow >= nRowCount) throw uno::RuntimeException(); - SwTableBox* pStart = NULL; SwTableLine* pLine = rLines[ nRow ]; - if( (sal_Int32)pLine->GetTabBoxes().size() < nCol ) + sal_Int32 nColCount = pLine->GetTabBoxes().size(); + if (nCol < 0 || nCol >= nColCount) throw uno::RuntimeException(); - pStart = pLine->GetTabBoxes()[ nCol ]; + SwTableBox* pStart = pLine->GetTabBoxes()[ nCol ]; if( !pStart ) throw uno::RuntimeException(); diff -Nru libreoffice-5.0.1~rc2/sw/source/uibase/dbui/dbmgr.cxx libreoffice-5.0.2~rc2/sw/source/uibase/dbui/dbmgr.cxx --- libreoffice-5.0.1~rc2/sw/source/uibase/dbui/dbmgr.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/uibase/dbui/dbmgr.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -1136,12 +1136,17 @@ // #i69458# lock fields to prevent access to the result set while calculating layout rWorkShell.LockExpFields(); rWorkShell.CalcLayout(); - rWorkShell.UnlockExpFields(); } SwWrtShell& rWorkShell = pWorkView->GetWrtShell(); SfxGetpApp()->NotifyEvent(SfxEventHint(SW_EVENT_FIELD_MERGE, SwDocShell::GetEventName(STR_SW_EVENT_FIELD_MERGE), xWorkDocSh)); + // tdf#92324: Allow ExpFields update only by explicit instruction to avoid + // database cursor movement on any other fields update, for example during + // print preview and other operations + if ( rWorkShell.IsExpFieldsLocked() ) + rWorkShell.UnlockExpFields(); rWorkShell.SwViewShell::UpdateFields(); + rWorkShell.LockExpFields(); SfxGetpApp()->NotifyEvent(SfxEventHint(SW_EVENT_FIELD_MERGE_FINISHED, SwDocShell::GetEventName(STR_SW_EVENT_FIELD_MERGE_FINISHED), xWorkDocSh)); // launch MailMergeEvent if required @@ -1377,6 +1382,12 @@ } while( !bCancel && (bSynchronizedDoc && (nStartRow != nEndRow)? ExistsNextRecord() : ToNextMergeRecord())); + if ( xWorkDocSh.Is() && pWorkView->GetWrtShell().IsExpFieldsLocked() ) + { + // Unlock ducment fields after merge complete + pWorkView->GetWrtShell().UnlockExpFields(); + } + if( !bCreateSingleFile ) { if( rMergeDescriptor.nMergeType == DBMGR_MERGE_PRINTER ) diff -Nru libreoffice-5.0.1~rc2/sw/source/uibase/docvw/edtwin.cxx libreoffice-5.0.2~rc2/sw/source/uibase/docvw/edtwin.cxx --- libreoffice-5.0.1~rc2/sw/source/uibase/docvw/edtwin.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/uibase/docvw/edtwin.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -77,6 +77,7 @@ #include #include #include +#include #include #include #include @@ -4706,15 +4707,15 @@ { if( rSh.IsSelection() && !rSh.HasReadonlySel() ) { - if(nId == RES_CHRATR_BACKGROUND) + m_pApplyTempl->nUndo = + std::min(m_pApplyTempl->nUndo, rSh.GetDoc()->GetIDocumentUndoRedo().GetUndoActionCount()); + if (nId == RES_CHRATR_BACKGROUND) rSh.SetAttrItem( SvxBrushItem( SwEditWin::m_aWaterCanTextBackColor, nId ) ); else rSh.SetAttrItem( SvxColorItem( SwEditWin::m_aWaterCanTextColor, nId ) ); rSh.UnSetVisCrsr(); rSh.EnterStdMode(); rSh.SetVisCrsr(aDocPt); - - m_pApplyTempl->bUndo = true; bCallBase = false; m_aTemplateIdle.Stop(); } @@ -4735,7 +4736,8 @@ & eSelection ) && !rSh.HasReadonlySel() ) { rSh.SetTextFormatColl( m_pApplyTempl->aColl.pTextColl ); - m_pApplyTempl->bUndo = true; + m_pApplyTempl->nUndo = + std::min(m_pApplyTempl->nUndo, rSh.GetDoc()->GetIDocumentUndoRedo().GetUndoActionCount()); bCallBase = false; if ( m_pApplyTempl->aColl.pTextColl ) aStyleName = m_pApplyTempl->aColl.pTextColl->GetName(); @@ -4749,7 +4751,8 @@ rSh.UnSetVisCrsr(); rSh.EnterStdMode(); rSh.SetVisCrsr(aDocPt); - m_pApplyTempl->bUndo = true; + m_pApplyTempl->nUndo = + std::min(m_pApplyTempl->nUndo, rSh.GetDoc()->GetIDocumentUndoRedo().GetUndoActionCount()); bCallBase = false; if ( m_pApplyTempl->aColl.pCharFormat ) aStyleName = m_pApplyTempl->aColl.pCharFormat->GetName(); @@ -4761,7 +4764,8 @@ if(PTR_CAST(SwFlyFrameFormat, pFormat)) { rSh.SetFrameFormat( m_pApplyTempl->aColl.pFrameFormat, false, &aDocPt ); - m_pApplyTempl->bUndo = true; + m_pApplyTempl->nUndo = + std::min(m_pApplyTempl->nUndo, rSh.GetDoc()->GetIDocumentUndoRedo().GetUndoActionCount()); bCallBase = false; if( m_pApplyTempl->aColl.pFrameFormat ) aStyleName = m_pApplyTempl->aColl.pFrameFormat->GetName(); @@ -4773,6 +4777,8 @@ rSh.ChgCurPageDesc( *m_pApplyTempl->aColl.pPageDesc ); if ( m_pApplyTempl->aColl.pPageDesc ) aStyleName = m_pApplyTempl->aColl.pPageDesc->GetName(); + m_pApplyTempl->nUndo = + std::min(m_pApplyTempl->nUndo, rSh.GetDoc()->GetIDocumentUndoRedo().GetUndoActionCount()); bCallBase = false; break; case SFX_STYLE_FAMILY_PSEUDO: @@ -4782,7 +4788,8 @@ false, m_pApplyTempl->aColl.pNumRule->GetDefaultListId() ); bCallBase = false; - m_pApplyTempl->bUndo = true; + m_pApplyTempl->nUndo = + std::min(m_pApplyTempl->nUndo, rSh.GetDoc()->GetIDocumentUndoRedo().GetUndoActionCount()); if( m_pApplyTempl->aColl.pNumRule ) aStyleName = m_pApplyTempl->aColl.pNumRule->GetName(); } @@ -4848,14 +4855,16 @@ if(rTempl.m_pFormatClipboard) { m_pApplyTempl = new SwApplyTemplate( rTempl ); - SetPointer( PointerStyle::Fill );//@todo #i20119# maybe better a new brush pointer here in future - rSh.NoEdit( false ); - bIdle = rSh.GetViewOptions()->IsIdle(); - rSh.GetViewOptions()->SetIdle( false ); + m_pApplyTempl->nUndo = rSh.GetDoc()->GetIDocumentUndoRedo().GetUndoActionCount(); + SetPointer( PointerStyle::Fill );//@todo #i20119# maybe better a new brush pointer here in future + rSh.NoEdit( false ); + bIdle = rSh.GetViewOptions()->IsIdle(); + rSh.GetViewOptions()->SetIdle( false ); } else if(rTempl.nColor) { m_pApplyTempl = new SwApplyTemplate( rTempl ); + m_pApplyTempl->nUndo = rSh.GetDoc()->GetIDocumentUndoRedo().GetUndoActionCount(); SetPointer( PointerStyle::Fill ); rSh.NoEdit( false ); bIdle = rSh.GetViewOptions()->IsIdle(); @@ -4864,6 +4873,7 @@ else if( rTempl.eType ) { m_pApplyTempl = new SwApplyTemplate( rTempl ); + m_pApplyTempl->nUndo = rSh.GetDoc()->GetIDocumentUndoRedo().GetUndoActionCount(); SetPointer( PointerStyle::Fill ); rSh.NoEdit( false ); bIdle = rSh.GetViewOptions()->IsIdle(); @@ -5189,8 +5199,11 @@ else if ( !m_rView.ExecSpellPopup( aDocPos ) ) SfxDispatcher::ExecutePopup( 0, this, &aPixPos); } - else if (m_pApplyTempl->bUndo) + else if (m_pApplyTempl->nUndo < rSh.GetDoc()->GetIDocumentUndoRedo().GetUndoActionCount()) + { + // Undo until we reach the point when we entered this context. rSh.Do(SwWrtShell::UNDO); + } bCallBase = false; } } diff -Nru libreoffice-5.0.1~rc2/sw/source/uibase/docvw/SidebarWin.cxx libreoffice-5.0.2~rc2/sw/source/uibase/docvw/SidebarWin.cxx --- libreoffice-5.0.1~rc2/sw/source/uibase/docvw/SidebarWin.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/uibase/docvw/SidebarWin.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -703,8 +703,9 @@ mpTextRangeOverlay->HideSolidBorder(); } } - else + else if (!IsFollow()) { + // This window is not a reply, then draw its range overlay. mpTextRangeOverlay = sw::overlay::OverlayRanges::CreateOverlayRange( DocView(), diff -Nru libreoffice-5.0.1~rc2/sw/source/uibase/inc/view.hxx libreoffice-5.0.2~rc2/sw/source/uibase/inc/view.hxx --- libreoffice-5.0.1~rc2/sw/source/uibase/inc/view.hxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/uibase/inc/view.hxx 2015-09-17 13:33:12.000000000 +0000 @@ -132,13 +132,13 @@ int eType; sal_uInt16 nColor; SwFormatClipboard* m_pFormatClipboard; - bool bUndo; + size_t nUndo; //< The initial undo stack depth. SwApplyTemplate() : eType(0), nColor(0), m_pFormatClipboard(0), - bUndo(false) + nUndo(0) { aColl.pTextColl = 0; } diff -Nru libreoffice-5.0.1~rc2/sw/source/uibase/shells/frmsh.cxx libreoffice-5.0.2~rc2/sw/source/uibase/shells/frmsh.cxx --- libreoffice-5.0.1~rc2/sw/source/uibase/shells/frmsh.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/uibase/shells/frmsh.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -415,11 +415,7 @@ //UUUU create needed items for XPropertyList entries from the DrawModel so that // the Area TabPage can access them const SwDrawModel* pDrawModel = rSh.GetView().GetDocShell()->GetDoc()->getIDocumentDrawModelAccess().GetDrawModel(); - - aSet.Put(SvxColorListItem(pDrawModel->GetColorList(), SID_COLOR_TABLE)); - aSet.Put(SvxGradientListItem(pDrawModel->GetGradientList(), SID_GRADIENT_LIST)); - aSet.Put(SvxHatchListItem(pDrawModel->GetHatchList(), SID_HATCH_LIST)); - aSet.Put(SvxBitmapListItem(pDrawModel->GetBitmapList(), SID_BITMAP_LIST)); + pDrawModel->PutAreaListItems(aSet); const SwViewOption* pVOpt = rSh.GetViewOptions(); if(nSel & nsSelectionType::SEL_OLE) diff -Nru libreoffice-5.0.1~rc2/sw/source/uibase/shells/textsh.cxx libreoffice-5.0.2~rc2/sw/source/uibase/shells/textsh.cxx --- libreoffice-5.0.1~rc2/sw/source/uibase/shells/textsh.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/source/uibase/shells/textsh.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -114,6 +114,8 @@ #include #include #include +#include +#include #include SFX_IMPL_INTERFACE(SwTextShell, SwBaseShell) @@ -579,11 +581,16 @@ SID_ATTR_PAGE_SIZE, SID_ATTR_PAGE_SIZE, FN_SET_FRM_NAME, FN_SET_FRM_NAME, SID_HTML_MODE, SID_HTML_MODE, + SID_COLOR_TABLE, SID_BITMAP_LIST, 0 }; SfxItemSet aSet(GetPool(), aFrmAttrRange ); aSet.Put(SfxUInt16Item(SID_HTML_MODE, ::GetHtmlMode(GetView().GetDocShell()))); + + // For the Area tab page. + GetShell().GetDoc()->getIDocumentDrawModelAccess().GetDrawModel()->PutAreaListItems(aSet); + const SwRect &rPg = GetShell().GetAnyCurRect(RECT_PAGE); SwFormatFrmSize aFrmSize(ATT_VAR_SIZE, rPg.Width(), rPg.Height()); aFrmSize.SetWhich(GetPool().GetWhich(SID_ATTR_PAGE_SIZE)); diff -Nru libreoffice-5.0.1~rc2/sw/uiconfig/swriter/menubar/menubar.xml libreoffice-5.0.2~rc2/sw/uiconfig/swriter/menubar/menubar.xml --- libreoffice-5.0.1~rc2/sw/uiconfig/swriter/menubar/menubar.xml 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/sw/uiconfig/swriter/menubar/menubar.xml 2015-09-17 13:33:12.000000000 +0000 @@ -423,7 +423,10 @@ + + + diff -Nru libreoffice-5.0.1~rc2/tools/source/generic/color.cxx libreoffice-5.0.2~rc2/tools/source/generic/color.cxx --- libreoffice-5.0.1~rc2/tools/source/generic/color.cxx 2015-08-22 06:35:29.000000000 +0000 +++ libreoffice-5.0.2~rc2/tools/source/generic/color.cxx 2015-09-17 13:33:12.000000000 +0000 @@ -255,7 +255,7 @@ return rIStm; } -SvStream& Color::Write( SvStream& rOStm, bool bNewFormat ) +SvStream& Color::Write( SvStream& rOStm, bool bNewFormat ) const { if ( bNewFormat ) rOStm.WriteUInt32( mnColor ); diff -Nru libreoffice-5.0.1~rc2/translations/source/af/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/af/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/af/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/af/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 22:04+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 10:19+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: af\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435269879.000000\n" +"X-POOTLE-MTIME: 1439547559.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8000,7 +8000,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8009,7 +8009,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8018,7 +8018,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8027,7 +8027,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8036,7 +8036,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8045,7 +8045,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8054,7 +8054,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8063,7 +8063,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8072,7 +8072,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8081,7 +8081,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8090,7 +8090,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8099,7 +8099,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" "PO-Revision-Date: 2015-08-14 10:42+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" @@ -1019,13 +1019,14 @@ msgstr "V~oorwaardelike formatering..." #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ConditionalFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Condition" -msgstr "" +msgstr "V~oorwaardelike formatering..." #: CalcCommands.xcu msgctxt "" @@ -1055,13 +1056,14 @@ msgstr "" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:DataBarFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Data Bar" -msgstr "" +msgstr "V~oorwaardelike formatering..." #: CalcCommands.xcu msgctxt "" @@ -1073,13 +1075,14 @@ msgstr "" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:IconSetFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Icon Set" -msgstr "" +msgstr "V~oorwaardelike formatering..." #: CalcCommands.xcu msgctxt "" @@ -3330,12 +3333,13 @@ msgstr "Skrap handmatige ~breuk" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Vulling" #: CalcCommands.xcu @@ -15215,7 +15219,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "" #: GenericCommands.xcu @@ -20973,13 +20977,14 @@ msgstr "Funksies" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.ManageChangesDeck\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "~Skep name..." #: Sidebar.xcu msgctxt "" @@ -21223,13 +21228,14 @@ msgstr "Na~vigator" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SwManageChangesPanel\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "~Skep name..." #: Sidebar.xcu #, fuzzy @@ -21803,13 +21809,14 @@ msgstr "~Teken veranderinge aan" #: WriterCommands.xcu +#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:ShowTrackedChanges\n" "Label\n" "value.text" msgid "~Show Changes" -msgstr "" +msgstr "~Toon wysigings..." #: WriterCommands.xcu msgctxt "" @@ -27204,49 +27211,3 @@ "value.text" msgid "Fontwork Shape" msgstr "Fontwerk-vorm" - -#: CalcCommands.xcu -msgctxt "" -"CalcCommands.xcu\n" -"..CalcCommands.UserInterface.Popups..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: DrawImpressCommands.xcu -msgctxt "" -"DrawImpressCommands.xcu\n" -"..DrawImpressCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: MathCommands.xcu -#, fuzzy -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ToolBox\n" -"Label\n" -"value.text" -msgid "Elements" -msgstr "Element" - -#: MathCommands.xcu -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ElementsDockingWindow\n" -"Label\n" -"value.text" -msgid "Elements Dock" -msgstr "" - -#: WriterCommands.xcu -msgctxt "" -"WriterCommands.xcu\n" -"..WriterCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/af/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/af/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/af/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/af/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-05-11 19:51+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 10:53+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: af\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431373902.000000\n" +"X-POOTLE-MTIME: 1439549625.000000\n" #: condformatdlg.src #, fuzzy @@ -4965,7 +4965,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5039,6 +5039,16 @@ msgstr "" #: globstr.src +#, fuzzy +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Omvang" + +#: globstr.src msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/af/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/af/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/af/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/af/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-11 19:53+0000\n" -"Last-Translator: Dwayne Bailey (admin) \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 11:09+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: af\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431374014.000000\n" +"X-POOTLE-MTIME: 1439550595.000000\n" #: DocumentRenderer.src #, fuzzy @@ -102,10 +102,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Verstek" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/dbaccess/source/ui/browser.po libreoffice-5.0.2~rc2/translations/source/am/dbaccess/source/ui/browser.po --- libreoffice-5.0.1~rc2/translations/source/am/dbaccess/source/ui/browser.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/dbaccess/source/ui/browser.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-12-07 19:23+0000\n" -"Last-Translator: Samson \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-06 23:49+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1417980208.000000\n" +"X-POOTLE-MTIME: 1441583377.000000\n" #: sbabrw.src msgctxt "" @@ -192,7 +192,7 @@ "ID_BROWSER_COLATTRSET\n" "menuitem.text" msgid "Column ~Format..." -msgstr "የአምድ አቀራረብ..." +msgstr "የ አምድ ~አቀራረብ..." #: sbagrid.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/dbaccess/source/ui/uno.po libreoffice-5.0.2~rc2/translations/source/am/dbaccess/source/ui/uno.po --- libreoffice-5.0.1~rc2/translations/source/am/dbaccess/source/ui/uno.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/dbaccess/source/ui/uno.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2012-11-18 14:48+0000\n" -"Last-Translator: Andras \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-08-22 19:38+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1353250129.0\n" +"X-POOTLE-MTIME: 1440272336.000000\n" #: copytablewizard.src msgctxt "" @@ -102,7 +102,7 @@ "STR_CTW_ERROR_INVALID_INTERACTIONHANDLER\n" "string.text" msgid "The given interaction handler is invalid." -msgstr "የተሰጠው interaction handler ዋጋ የለውም" +msgstr "የተሰጠው ተፅእኖ ያዢ ዋጋ የለውም" #: dbinteraction.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/am/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/am/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-14 10:24+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-31 22:22+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,16 +14,17 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439547898.000000\n" +"X-POOTLE-MTIME: 1441059739.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CENT_SIGN\n" "LngText.text" msgid "cent" -msgstr "" +msgstr "ድንኳን" #. £ (U+000A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -63,12 +64,13 @@ #. ¬ (U+000AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "NOT_SIGN\n" "LngText.text" msgid "not" -msgstr "" +msgstr "ማስታወሻ" #. ® (U+000AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -104,7 +106,7 @@ "MIDDLE_DOT\n" "LngText.text" msgid "middle dot" -msgstr "" +msgstr "የ መሀል ነጥብ" #. × (U+000D7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1031,7 +1033,7 @@ "SMALL_ELEMENT_OF\n" "LngText.text" msgid "small in" -msgstr "" +msgstr "ትንሽ በ" #. ∋ (U+0220B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1053,12 +1055,13 @@ #. ∍ (U+0220D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "SMALL_CONTAINS_AS_MEMBER\n" "LngText.text" msgid "small ni" -msgstr "" +msgstr "ትንሽ በ" #. ∎ (U+0220E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1157,7 +1160,7 @@ "INFINITY\n" "LngText.text" msgid "infinity" -msgstr "" +msgstr "ኢንፊኒቲ" #. ∠ (U+02220), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1166,7 +1169,7 @@ "ANGLE\n" "LngText.text" msgid "angle" -msgstr "" +msgstr "አንግል" #. ∡ (U+02221), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1175,7 +1178,7 @@ "MEASURED_ANGLE\n" "LngText.text" msgid "angle2" -msgstr "" +msgstr "አንግል2" #. ∣ (U+02223), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1184,7 +1187,7 @@ "DIVIDES\n" "LngText.text" msgid "divides" -msgstr "" +msgstr "ማካፈያ" #. ∤ (U+02224), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1193,7 +1196,7 @@ "DOES_NOT_DIVIDE\n" "LngText.text" msgid "not divides" -msgstr "" +msgstr "አይካፈልም" #. ∥ (U+02225), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1454,7 +1457,7 @@ "TIMER_CLOCK\n" "LngText.text" msgid "timer clock" -msgstr "" +msgstr "መቀስቀሻ ሰአት" #. ⏳ (U+023F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1485,21 +1488,23 @@ #. ▪ (U+025AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_SMALL_SQUARE\n" "LngText.text" msgid "small square2" -msgstr "" +msgstr "ትንሽ ኮከብ2" #. ▫ (U+025AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_SMALL_SQUARE\n" "LngText.text" msgid "small square" -msgstr "" +msgstr "ትንሽ ኮከብ" #. ▬ (U+025AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1602,12 +1607,13 @@ #. ◻ (U+025FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_MEDIUM_SQUARE\n" "LngText.text" msgid "medium square" -msgstr "" +msgstr "መካከለኛ ኮከብ" #. ◼ (U+025FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1670,7 +1676,7 @@ "SNOWMAN\n" "LngText.text" msgid "snowman" -msgstr "የበረዶ ሰው" +msgstr "የ በረዶ ሰው" #. ☄ (U+02604), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1751,7 +1757,7 @@ "BALLOT_BOX\n" "LngText.text" msgid "checkbox" -msgstr "" +msgstr "ምልክት ማድረጊያ ሳጥን" #. ☑ (U+02611), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1760,7 +1766,7 @@ "BALLOT_BOX_WITH_CHECK\n" "LngText.text" msgid "checkbox2" -msgstr "" +msgstr "ምልክት ማድረጊያ ሳጥን2" #. ☒ (U+02612), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1769,7 +1775,7 @@ "BALLOT_BOX_WITH_X\n" "LngText.text" msgid "checkbox3" -msgstr "" +msgstr "ምልክት ማድረጊያ ሳጥን3" #. ☓ (U+02613), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1877,7 +1883,7 @@ "RADIOACTIVE_SIGN\n" "LngText.text" msgid "radioactive" -msgstr "" +msgstr "ራዲዮ አክቲቭ" #. ☣ (U+02623), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2003,7 +2009,7 @@ "WHITE_FROWNING_FACE\n" "LngText.text" msgid "frown" -msgstr "" +msgstr "አኩራፊ" #. ☺ (U+0263A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2012,7 +2018,7 @@ "WHITE_SMILING_FACE\n" "LngText.text" msgid "smiling" -msgstr "" +msgstr "ሳቂታ" #. ☻ (U+0263B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2021,7 +2027,7 @@ "BLACK_SMILING_FACE\n" "LngText.text" msgid "smiling2" -msgstr "" +msgstr "ሳቂታ2" #. ☼ (U+0263C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2489,7 +2495,7 @@ "MUSIC_SHARP_SIGN\n" "LngText.text" msgid "sharp" -msgstr "" +msgstr "ስል" #. ♲ (U+02672), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2543,7 +2549,7 @@ "DIE_FACE-1\n" "LngText.text" msgid "dice1" -msgstr "" +msgstr "ዳይስ1" #. ⚁ (U+02681), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2552,7 +2558,7 @@ "DIE_FACE-2\n" "LngText.text" msgid "dice2" -msgstr "" +msgstr "ዳይስ2" #. ⚂ (U+02682), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2561,7 +2567,7 @@ "DIE_FACE-3\n" "LngText.text" msgid "dice3" -msgstr "" +msgstr "ዳይስ3" #. ⚃ (U+02683), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2570,7 +2576,7 @@ "DIE_FACE-4\n" "LngText.text" msgid "dice4" -msgstr "" +msgstr "ዳይስ4" #. ⚄ (U+02684), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2579,7 +2585,7 @@ "DIE_FACE-5\n" "LngText.text" msgid "dice5" -msgstr "" +msgstr "ዳይስ5" #. ⚅ (U+02685), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2588,7 +2594,7 @@ "DIE_FACE-6\n" "LngText.text" msgid "dice6" -msgstr "" +msgstr "ዳይስ6" #. ⚐ (U+02690), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2597,7 +2603,7 @@ "WHITE_FLAG\n" "LngText.text" msgid "flag" -msgstr "" +msgstr "ባንዲራ" #. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2606,7 +2612,7 @@ "BLACK_FLAG\n" "LngText.text" msgid "flag2" -msgstr "" +msgstr "ባንዲራ2" #. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2615,7 +2621,7 @@ "HAMMER_AND_PICK\n" "LngText.text" msgid "hammer and pick" -msgstr "" +msgstr "መዶሻ እና መምረጫ" #. ⚓ (U+02693), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2624,7 +2630,7 @@ "ANCHOR\n" "LngText.text" msgid "anchor" -msgstr "" +msgstr "መልህቅ" #. ⚔ (U+02694), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2633,7 +2639,7 @@ "CROSSED_SWORDS\n" "LngText.text" msgid "swords" -msgstr "" +msgstr "ጎራዴ" #. ⚕ (U+02695), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2642,7 +2648,7 @@ "STAFF_OF_AESCULAPIUS\n" "LngText.text" msgid "medical" -msgstr "" +msgstr "ህክምና" #. ⚖ (U+02696), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2669,7 +2675,7 @@ "FLOWER\n" "LngText.text" msgid "flower" -msgstr "" +msgstr "አበባ" #. ⚙ (U+02699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2714,7 +2720,7 @@ "WARNING_SIGN\n" "LngText.text" msgid "warning" -msgstr "" +msgstr "ማስጠንቀቂያ" #. ⚡ (U+026A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2732,7 +2738,7 @@ "MEDIUM_WHITE_CIRCLE\n" "LngText.text" msgid "white circle" -msgstr "" +msgstr "ነጭ ክብ" #. ⚫ (U+026AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2741,7 +2747,7 @@ "MEDIUM_BLACK_CIRCLE\n" "LngText.text" msgid "black circle" -msgstr "" +msgstr "ጥቁር ክብ" #. ⚭ (U+026AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2750,7 +2756,7 @@ "MARRIAGE_SYMBOL\n" "LngText.text" msgid "marriage" -msgstr "" +msgstr "ትዳር" #. ⚮ (U+026AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2759,7 +2765,7 @@ "DIVORCE_SYMBOL\n" "LngText.text" msgid "divorce" -msgstr "" +msgstr "ፍቺ" #. ⚰ (U+026B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2786,7 +2792,7 @@ "SOCCER_BALL\n" "LngText.text" msgid "soccer" -msgstr "" +msgstr "ኳስ ጨዋታ" #. ⚾ (U+026BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2795,7 +2801,7 @@ "BASEBALL\n" "LngText.text" msgid "baseball" -msgstr "" +msgstr "ቤዝቦል" #. ⛄ (U+026C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2804,7 +2810,7 @@ "SNOWMAN_WITHOUT_SNOW\n" "LngText.text" msgid "snowman2" -msgstr "" +msgstr "የ በረዶ ሰው2" #. ⛅ (U+026C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2813,7 +2819,7 @@ "SUN_BEHIND_CLOUD\n" "LngText.text" msgid "cloud2" -msgstr "" +msgstr "ደመና2" #. ⛆ (U+026C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2822,7 +2828,7 @@ "RAIN\n" "LngText.text" msgid "rain2" -msgstr "" +msgstr "ዝናብ2" #. ⛈ (U+026C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2831,7 +2837,7 @@ "THUNDER_CLOUD_AND_RAIN\n" "LngText.text" msgid "cloud3" -msgstr "" +msgstr "ደመና3" #. ⛎ (U+026CE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2858,7 +2864,7 @@ "CAR_SLIDING\n" "LngText.text" msgid "sliding car" -msgstr "" +msgstr "ተንሸራታች መኪና" #. ⛑ (U+026D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2867,7 +2873,7 @@ "HELMET_WITH_WHITE_CROSS\n" "LngText.text" msgid "helmet" -msgstr "" +msgstr "ሄልሜት" #. ⛓ (U+026D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2876,7 +2882,7 @@ "CHAINS\n" "LngText.text" msgid "chains" -msgstr "" +msgstr "ሰንሰለት" #. ⛔ (U+026D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2885,7 +2891,7 @@ "NO_ENTRY\n" "LngText.text" msgid "no entry" -msgstr "" +msgstr "ማስገቢያ የለም" #. ⛟ (U+026DF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2894,7 +2900,7 @@ "BLACK_TRUCK\n" "LngText.text" msgid "truck" -msgstr "" +msgstr "የ ጭነት መኪና" #. ⛤ (U+026E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2912,7 +2918,7 @@ "BLACK_CROSS_ON_SHIELD\n" "LngText.text" msgid "shield" -msgstr "" +msgstr "ጋሻ" #. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2921,7 +2927,7 @@ "CHURCH\n" "LngText.text" msgid "church" -msgstr "" +msgstr "ቤተ ክርስቲያን" #. ⛰ (U+026F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2930,7 +2936,7 @@ "MOUNTAIN\n" "LngText.text" msgid "mountain" -msgstr "" +msgstr "ተራራ" #. ⛱ (U+026F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2939,16 +2945,17 @@ "UMBRELLA_ON_GROUND\n" "LngText.text" msgid "umbrella3" -msgstr "" +msgstr "ጃንጥላ3" #. ⛲ (U+026F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "FOUNTAIN\n" "LngText.text" msgid "fountain" -msgstr "" +msgstr "ተራራ" #. ⛳ (U+026F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2957,7 +2964,7 @@ "FLAG_IN_HOLE\n" "LngText.text" msgid "golf" -msgstr "" +msgstr "ጎልፍ" #. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2984,7 +2991,7 @@ "TENT\n" "LngText.text" msgid "tent" -msgstr "" +msgstr "ድንኳን" #. ⛷ (U+026F7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3011,7 +3018,7 @@ "PERSON_WITH_BALL\n" "LngText.text" msgid "ball" -msgstr "" +msgstr "ኳስ" #. ⛽ (U+026FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3029,7 +3036,7 @@ "UPPER_BLADE_SCISSORS\n" "LngText.text" msgid "scissors3" -msgstr "" +msgstr "መቀሶች3" #. ✂ (U+02702), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3038,7 +3045,7 @@ "BLACK_SCISSORS\n" "LngText.text" msgid "scissors" -msgstr "" +msgstr "መቀሶች" #. ✃ (U+02703), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3047,7 +3054,7 @@ "LOWER_BLADE_SCISSORS\n" "LngText.text" msgid "scissors4" -msgstr "" +msgstr "መቀሶች4" #. ✄ (U+02704), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3056,7 +3063,7 @@ "WHITE_SCISSORS\n" "LngText.text" msgid "scissors2" -msgstr "" +msgstr "መቀሶች2" #. ✅ (U+02705), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3065,7 +3072,7 @@ "WHITE_HEAVY_CHECK_MARK\n" "LngText.text" msgid "check mark3" -msgstr "" +msgstr "ምልክት ማድረጊያ3" #. ✆ (U+02706), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3074,7 +3081,7 @@ "TELEPHONE_LOCATION\n" "LngText.text" msgid "telephone" -msgstr "" +msgstr "ስልክ" #. ✈ (U+02708), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3083,7 +3090,7 @@ "AIRPLANE\n" "LngText.text" msgid "airplane" -msgstr "" +msgstr "አውሮፕላን" #. ✉ (U+02709), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3092,7 +3099,7 @@ "ENVELOPE\n" "LngText.text" msgid "envelope" -msgstr "" +msgstr "ፖስታ" #. ✊ (U+0270A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3110,7 +3117,7 @@ "RAISED_HAND\n" "LngText.text" msgid "hand" -msgstr "" +msgstr "እጅ" #. ✌ (U+0270C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3119,7 +3126,7 @@ "VICTORY_HAND\n" "LngText.text" msgid "victory" -msgstr "" +msgstr "ድል" #. ✍ (U+0270D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3128,7 +3135,7 @@ "WRITING_HAND\n" "LngText.text" msgid "writing" -msgstr "" +msgstr "መጻፊያ" #. ✎ (U+0270E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3137,7 +3144,7 @@ "LOWER_RIGHT_PENCIL\n" "LngText.text" msgid "pencil" -msgstr "" +msgstr "እርሳስ" #. ✏ (U+0270F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3146,7 +3153,7 @@ "PENCIL\n" "LngText.text" msgid "pencil2" -msgstr "" +msgstr "እርሳስ2" #. ✐ (U+02710), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3155,7 +3162,7 @@ "UPPER_RIGHT_PENCIL\n" "LngText.text" msgid "pencil3" -msgstr "" +msgstr "እርሳስ3" #. ✑ (U+02711), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3182,7 +3189,7 @@ "CHECK_MARK\n" "LngText.text" msgid "check mark" -msgstr "" +msgstr "ምልክት ማድረጊያ" #. ✔ (U+02714), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3191,7 +3198,7 @@ "HEAVY_CHECK_MARK\n" "LngText.text" msgid "check mark2" -msgstr "" +msgstr "ምልክት ማድረጊያ2" #. ✖ (U+02716), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3200,7 +3207,7 @@ "HEAVY_MULTIPLICATION_X\n" "LngText.text" msgid "times2" -msgstr "" +msgstr "ሰአት2" #. ✙ (U+02719), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3245,7 +3252,7 @@ "STAR_OF_DAVID\n" "LngText.text" msgid "star of David" -msgstr "" +msgstr "የ ዳዊት ኮከብ" #. ✨ (U+02728), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3281,7 +3288,7 @@ "CROSS_MARK\n" "LngText.text" msgid "x2" -msgstr "" +msgstr "x2" #. ❎ (U+0274E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3290,11 +3297,10 @@ "NEGATIVE_SQUARED_CROSS_MARK\n" "LngText.text" msgid "x3" -msgstr "" +msgstr "x3" #. ❓ (U+02753), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_QUESTION_MARK_ORNAMENT\n" @@ -3309,11 +3315,10 @@ "WHITE_QUESTION_MARK_ORNAMENT\n" "LngText.text" msgid "?2" -msgstr "" +msgstr "?2" #. ❕ (U+02755), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_EXCLAMATION_MARK_ORNAMENT\n" @@ -3328,7 +3333,7 @@ "HEAVY_EXCLAMATION_MARK_SYMBOL\n" "LngText.text" msgid "!2" -msgstr "" +msgstr "!2" #. ❤ (U+02764), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3337,7 +3342,7 @@ "HEAVY_BLACK_HEART\n" "LngText.text" msgid "heart" -msgstr "" +msgstr "ልብ" #. ➰ (U+027B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3418,7 +3423,7 @@ "BLACK_LARGE_CIRCLE\n" "LngText.text" msgid "large circle2" -msgstr "" +msgstr "ትልቅ ክብ2" #. ⬭ (U+02B2D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3436,7 +3441,7 @@ "WHITE_MEDIUM_STAR\n" "LngText.text" msgid "medium star" -msgstr "" +msgstr "መካከለኛ ኮከብ" #. ⭑ (U+02B51), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3445,7 +3450,7 @@ "BLACK_SMALL_STAR\n" "LngText.text" msgid "small star2" -msgstr "" +msgstr "ትንሽ ኮከብ2" #. ⭒ (U+02B52), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3454,7 +3459,7 @@ "WHITE_SMALL_STAR\n" "LngText.text" msgid "small star" -msgstr "" +msgstr "ትንሽ ኮከብ" #. ff (U+0FB00), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3463,7 +3468,7 @@ "LATIN_SMALL_LIGATURE_FF\n" "LngText.text" msgid "ff" -msgstr "" +msgstr "ff" #. fi (U+0FB01), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3472,7 +3477,7 @@ "LATIN_SMALL_LIGATURE_FI\n" "LngText.text" msgid "fi" -msgstr "" +msgstr "fi" #. fl (U+0FB02), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3481,7 +3486,7 @@ "LATIN_SMALL_LIGATURE_FL\n" "LngText.text" msgid "fl" -msgstr "" +msgstr "fl" #. ffi (U+0FB03), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3490,7 +3495,7 @@ "LATIN_SMALL_LIGATURE_FFI\n" "LngText.text" msgid "ffi" -msgstr "" +msgstr "ffi" #. ffl (U+0FB04), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3499,7 +3504,7 @@ "LATIN_SMALL_LIGATURE_FFL\n" "LngText.text" msgid "ffl" -msgstr "" +msgstr "ffl" #. 𝄞 (U+1D11E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3544,7 +3549,7 @@ "HALF_REST\n" "LngText.text" msgid "half rest" -msgstr "" +msgstr "ግማሽ ማሳረፊያ" #. 𝄽 (U+1D13D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3553,7 +3558,7 @@ "QUARTER_REST\n" "LngText.text" msgid "quarter rest" -msgstr "" +msgstr "ሩብ ማሳረፊያ" #. 𝄾 (U+1D13E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3562,7 +3567,7 @@ "EIGHTH_REST\n" "LngText.text" msgid "eighth rest" -msgstr "" +msgstr "አንድ ስምንተኛ ማሳረፊያ" #. 𝅝 (U+1D15D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3692,21 +3697,23 @@ #. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOSED_UMBRELLA\n" "LngText.text" msgid "umbrella2" -msgstr "" +msgstr "ጃንጥላ" #. 🌃 (U+1F303), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "NIGHT_WITH_STARS\n" "LngText.text" msgid "night" -msgstr "" +msgstr "በ ቀኝ" #. 🌄 (U+1F304), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3917,21 +3924,23 @@ #. 🌛 (U+1F31B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "FIRST_QUARTER_MOON_WITH_FACE\n" "LngText.text" msgid "moon" -msgstr "" +msgstr "ጨረቃ" #. 🌜 (U+1F31C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "LAST_QUARTER_MOON_WITH_FACE\n" "LngText.text" msgid "moon2" -msgstr "" +msgstr "ጨረቃ2" #. 🌝 (U+1F31D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3953,21 +3962,23 @@ #. 🌟 (U+1F31F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "GLOWING_STAR\n" "LngText.text" msgid "star3" -msgstr "" +msgstr "ኮከብ" #. 🌠 (U+1F320), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "SHOOTING_STAR\n" "LngText.text" msgid "star4" -msgstr "" +msgstr "ኮከብ" #. 🌰 (U+1F330), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4259,12 +4270,13 @@ #. 🍑 (U+1F351), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "PEACH\n" "LngText.text" msgid "peach" -msgstr "" +msgstr "ሰላም" #. 🍒 (U+1F352), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4385,12 +4397,13 @@ #. 🍟 (U+1F35F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "FRENCH_FRIES\n" "LngText.text" msgid "fries" -msgstr "" +msgstr "ኤሪየስ" #. 🍠 (U+1F360), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4763,12 +4776,13 @@ #. 🎌 (U+1F38C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CROSSED_FLAGS\n" "LngText.text" msgid "flags" -msgstr "" +msgstr "ባንዲራ" #. 🎍 (U+1F38D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4790,12 +4804,13 @@ #. 🎏 (U+1F38F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CARP_STREAMER\n" "LngText.text" msgid "flags2" -msgstr "" +msgstr "ባንዲራ2" #. 🎐 (U+1F390), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4997,12 +5012,13 @@ #. 🎲 (U+1F3B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "GAME_DIE\n" "LngText.text" msgid "dice" -msgstr "" +msgstr "ዳይስ1" #. 🎳 (U+1F3B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5123,21 +5139,23 @@ #. 🏀 (U+1F3C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BASKETBALL_AND_HOOP\n" "LngText.text" msgid "basketball" -msgstr "" +msgstr "ቤዝቦል" #. 🏁 (U+1F3C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CHEQUERED_FLAG\n" "LngText.text" msgid "flag3" -msgstr "" +msgstr "ባንዲራ" #. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5303,12 +5321,13 @@ #. 🏪 (U+1F3EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CONVENIENCE_STORE\n" "LngText.text" msgid "store" -msgstr "" +msgstr "ማእበል" #. 🏫 (U+1F3EB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5888,12 +5907,13 @@ #. 🐺 (U+1F43A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "WOLF_FACE\n" "LngText.text" msgid "wolf" -msgstr "" +msgstr "ጎልፍ" #. 🐻 (U+1F43B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5951,12 +5971,13 @@ #. 👃 (U+1F443), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "NOSE\n" "LngText.text" msgid "nose" -msgstr "" +msgstr "ማስታወሻ" #. 👄 (U+1F444), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5987,12 +6008,13 @@ #. 👇 (U+1F447), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_DOWN_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "down2" -msgstr "" +msgstr "ከ ታች" #. 👈 (U+1F448), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6005,12 +6027,13 @@ #. 👉 (U+1F449), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_RIGHT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "right2" -msgstr "" +msgstr "በ ቀኝ" #. 👊 (U+1F44A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6077,12 +6100,13 @@ #. 👑 (U+1F451), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CROWN\n" "LngText.text" msgid "crown" -msgstr "" +msgstr "አኩራፊ" #. 👒 (U+1F452), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6509,12 +6533,13 @@ #. 💁 (U+1F481), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "INFORMATION_DESK_PERSON\n" "LngText.text" msgid "information2" -msgstr "" +msgstr "መረጃ" #. 💂 (U+1F482), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6527,12 +6552,13 @@ #. 💃 (U+1F483), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "DANCER\n" "LngText.text" msgid "dancer" -msgstr "" +msgstr "ካንሰር" #. 💄 (U+1F484), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6932,12 +6958,13 @@ #. 💴 (U+1F4B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BANKNOTE_WITH_YEN_SIGN\n" "LngText.text" msgid "yen2" -msgstr "" +msgstr "ዬን" #. 💵 (U+1F4B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6950,21 +6977,23 @@ #. 💶 (U+1F4B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BANKNOTE_WITH_EURO_SIGN\n" "LngText.text" msgid "euro2" -msgstr "" +msgstr "ኢዩሮ" #. 💷 (U+1F4B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BANKNOTE_WITH_POUND_SIGN\n" "LngText.text" msgid "pound2" -msgstr "" +msgstr "ፓውንድ" #. 💸 (U+1F4B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7112,12 +7141,13 @@ #. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CHART_WITH_UPWARDS_TREND\n" "LngText.text" msgid "char" -msgstr "" +msgstr "chart" #. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7373,21 +7403,23 @@ #. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "INCOMING_ENVELOPE\n" "LngText.text" msgid "envelope2" -msgstr "" +msgstr "ፖስታ" #. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n" "LngText.text" msgid "envelope3" -msgstr "" +msgstr "ፖስታ" #. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7589,12 +7621,13 @@ #. 🔉 (U+1F509), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "SPEAKER_WITH_ONE_SOUND_WAVE\n" "LngText.text" msgid "sound" -msgstr "" +msgstr "ፓውንድ" #. 🔊 (U+1F50A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7688,12 +7721,13 @@ #. 🔔 (U+1F514), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BELL\n" "LngText.text" msgid "bell" -msgstr "" +msgstr "ኳስ" #. 🔕 (U+1F515), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7989,7 +8023,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -7998,7 +8032,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8007,7 +8041,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8016,7 +8050,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8025,7 +8059,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8034,7 +8068,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8043,7 +8077,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8052,7 +8086,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8061,7 +8095,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8070,7 +8104,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8079,7 +8113,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8088,7 +8122,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji @@ -8858,12 +8892,13 @@ #. 🚄 (U+1F684), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "HIGH-SPEED_TRAIN\n" "LngText.text" msgid "train2" -msgstr "" +msgstr "ዝናብ2" #. 🚅 (U+1F685), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8876,12 +8911,13 @@ #. 🚆 (U+1F686), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "TRAIN\n" "LngText.text" msgid "train" -msgstr "" +msgstr "ዝናብ" #. 🚇 (U+1F687), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9056,12 +9092,13 @@ #. 🚚 (U+1F69A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "DELIVERY_TRUCK\n" "LngText.text" msgid "truck2" -msgstr "" +msgstr "የ ጭነት መኪና" #. 🚛 (U+1F69B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-5.0.1~rc2/translations/source/am/filter/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/am/filter/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/am/filter/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/filter/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-14 10:27+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-05 22:13+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439548053.000000\n" +"X-POOTLE-MTIME: 1441491225.000000\n" #: impswfdialog.ui msgctxt "" @@ -657,7 +657,7 @@ "label\n" "string.text" msgid "PDF document will not be encrypted due to PDF/A export." -msgstr "" +msgstr "የ PDF ሰነድ አይመሰጠርም ምክንያቱም በ PDF/A መላኪያ ምክንያት" #: pdfsecuritypage.ui msgctxt "" @@ -702,7 +702,7 @@ "label\n" "string.text" msgid "PDF document will not be restricted due to PDF/A export." -msgstr "" +msgstr "የ PDF ሰነድ አይወሰንም ምክንያቱም በ PDF/A መላኪያ ምክንያት" #: pdfsecuritypage.ui msgctxt "" @@ -828,7 +828,7 @@ "label\n" "string.text" msgid "Enable text access for acce_ssibility tools" -msgstr "" +msgstr "ጽሁፍ መድረሻ ለ መሳሪያዎች መድ_ረሻ ማስቻያ" #: pdfsecuritypage.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/am/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/am/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-21 01:12+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/auxiliary.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/auxiliary.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/auxiliary.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/auxiliary.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-13 10:07+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-01 01:20+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439460475.000000\n" +"X-POOTLE-MTIME: 1441070438.000000\n" #: sbasic.tree msgctxt "" @@ -190,7 +190,7 @@ "0813\n" "node.text" msgid "Formulas and Calculations" -msgstr "" +msgstr "ማስሊያ እና ስሌቶች" #: scalc.tree msgctxt "" @@ -326,7 +326,7 @@ "1006\n" "node.text" msgid "Configuring %PRODUCTNAME" -msgstr "" +msgstr "ማዋቀሪያ %PRODUCTNAME" #: shared.tree msgctxt "" @@ -334,7 +334,7 @@ "1007\n" "node.text" msgid "Working with the User Interface" -msgstr "" +msgstr "በ ተጠቃሚ ግንኙነት መስሪያ" #: shared.tree msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/sbasic/guide.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/sbasic/guide.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/sbasic/guide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/sbasic/guide.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-06-25 01:17+0000\n" +"PO-Revision-Date: 2015-09-02 14:16+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435195074.000000\n" +"X-POOTLE-MTIME: 1441203385.000000\n" #: access2base.xhp msgctxt "" @@ -391,7 +391,7 @@ "4\n" "help.text" msgid "Global Function for Loading Dialogs" -msgstr "" +msgstr "አለም አቀፍ ተግባር ንግግሮችን ለ መጫን" #: sample_code.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/sbasic/shared.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/sbasic/shared.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/sbasic/shared.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-13 10:17+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-13 22:19+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439461034.000000\n" +"X-POOTLE-MTIME: 1442182750.000000\n" #: 00000002.xhp msgctxt "" @@ -111,7 +111,7 @@ "bm_id3145801\n" "help.text" msgid "twips; definition" -msgstr " የ ኢንች1/20ኛ; መግለጫ" +msgstr " የ ኢንች አንድ ሀያኛ; መግለጫ" #: 00000002.xhp msgctxt "" @@ -1610,7 +1610,6 @@ msgstr "" #: 01010210.xhp -#, fuzzy msgctxt "" "01010210.xhp\n" "hd_id3154927\n" @@ -3008,7 +3007,6 @@ msgstr "" #: 01030100.xhp -#, fuzzy msgctxt "" "01030100.xhp\n" "hd_id3147291\n" @@ -3267,7 +3265,6 @@ msgstr "" #: 01030200.xhp -#, fuzzy msgctxt "" "01030200.xhp\n" "par_id3153198\n" @@ -3732,14 +3729,13 @@ msgstr "መጻህፍት ቤት ማጥፊያ" #: 01030400.xhp -#, fuzzy msgctxt "" "01030400.xhp\n" "par_id3150086\n" "18\n" "help.text" msgid "Choose Tools - Macros - Organize Macros - %PRODUCTNAME Basic and click Organizer or click the Select Module icon in the Basic IDE to open the Macro Organizer dialog." -msgstr "ይምረጡ መሳሪያዎች - Macros - Macros ማደራጃ - %PRODUCTNAME መሰረታዊ እና ይጫኑ አደራጅ ወይንም ይጫኑ የ ክፍል መምረጫ ምልክት መሰረታዊ IDE ለመክፈት የ Macro አደራጅ ንግግር" +msgstr "ይምረጡ መሳሪያዎች - Macros - Macros ማደራጃ - %PRODUCTNAME Basic እና ይጫኑ አደራጅ ወይንም ይጫኑ የ ክፍል መምረጫ ምልክት በ Basic IDE ለመክፈት የ Macro አደራጅ ንግግር" #: 01030400.xhp msgctxt "" @@ -3859,14 +3855,13 @@ msgstr "" #: 01030400.xhp -#, fuzzy msgctxt "" "01030400.xhp\n" "par_id3159230\n" "66\n" "help.text" msgid "Choose Tools - Macros - Organize Macros - %PRODUCTNAME Basic and click Organizer or click the Select Module icon in the Basic IDE to open the Macro Organizer dialog." -msgstr "ይምረጡ መሳሪያዎች - Macros - Macros ማደራጃ - %PRODUCTNAME መሰረታዊ እና ይጫኑ አደራጅ ወይንም ይጫኑ የ ክፍል መምረጫ ምልክት መሰረታዊ IDE ለመክፈት የ Macro አደራጅ ንግግር" +msgstr "ይምረጡ መሳሪያዎች - Macros - Macros ማደራጃ - %PRODUCTNAME Basic እና ይጫኑ አደራጅ ወይንም ይጫኑ የ ክፍል መምረጫ ምልክት በ Basic IDE ለመክፈት የ Macro አደራጅ ንግግር" #: 01030400.xhp msgctxt "" @@ -3977,14 +3972,13 @@ msgstr "" #: 01030400.xhp -#, fuzzy msgctxt "" "01030400.xhp\n" "par_id3149319\n" "38\n" "help.text" msgid "Choose Tools - Macros - Organize Macros - %PRODUCTNAME Basic and click Organizer or click the Select Module icon in the Basic IDE to open the Macro Organizer dialog." -msgstr "ይምረጡ መሳሪያዎች - Macros - Macros ማደራጃ - %PRODUCTNAME መሰረታዊ እና ይጫኑ አደራጅ ወይንም ይጫኑ የ ክፍል መምረጫ ምልክት መሰረታዊ IDE ለመክፈት የ Macro አደራጅ ንግግር" +msgstr "ይምረጡ መሳሪያዎች - Macros - Macros ማደራጃ - %PRODUCTNAME Basic እና ይጫኑ አደራጅ ወይንም ይጫኑ የ ክፍል መምረጫ ምልክት በ Basic IDE ለመክፈት የ Macro አደራጅ ንግግር" #: 01030400.xhp msgctxt "" @@ -4360,7 +4354,7 @@ "54\n" "help.text" msgid "...if a message was received." -msgstr "...መልእክቱን ከተቀበሉ" +msgstr "...መልእክቱን ከ ተቀበሉ" #: 01040000.xhp msgctxt "" @@ -6131,14 +6125,13 @@ msgstr "ከፍተኛ የሂደት ዋጋ" #: 01170101.xhp -#, fuzzy msgctxt "" "01170101.xhp\n" "par_id3145167\n" "253\n" "help.text" msgid "Specify the maximum value of a progress bar control." -msgstr "ለ አሁኑ መቆጣጠሪያ ከፍተኛ ዋጋ መወሰኛ" +msgstr "ለ አሁኑ ሂደት መደርደሪያ መቆጣጠሪያ ከፍተኛ ዋጋ መወሰኛ" #: 01170101.xhp msgctxt "" @@ -6150,14 +6143,13 @@ msgstr "አነስተኛ የሂደት ዋጋ" #: 01170101.xhp -#, fuzzy msgctxt "" "01170101.xhp\n" "par_id3154506\n" "248\n" "help.text" msgid "Specify the minimum value of a progress bar control." -msgstr "ለ አሁኑ መቆጣጠሪያ ዝቅተኛ ዋጋ መወሰኛ" +msgstr "ለ አሁኑ ሂደት መደርደሪያ መቆጣጠሪያ አነስተኛ ዋጋ መወሰኛ" #: 01170101.xhp msgctxt "" @@ -6319,14 +6311,13 @@ msgstr "ከፍተኛ የ መሸብለያ ዋጋ" #: 01170101.xhp -#, fuzzy msgctxt "" "01170101.xhp\n" "par_id3148877\n" "251\n" "help.text" msgid "Specify the maximum value of a scrollbar control." -msgstr "ለ አሁኑ መቆጣጠሪያ ከፍተኛ ዋጋ መወሰኛ" +msgstr "ለ መሸብለያ መደርደሪያ ከፍተኛ ዋጋ መወሰኛ" #: 01170101.xhp msgctxt "" @@ -6337,13 +6328,12 @@ msgstr "ዝቅተኛ የ መሸብለያ ዋጋ" #: 01170101.xhp -#, fuzzy msgctxt "" "01170101.xhp\n" "par_idN111E8\n" "help.text" msgid "Specify the minimum value of a scrollbar control." -msgstr "ለ አሁኑ መቆጣጠሪያ ዝቅተኛ ዋጋ መወሰኛ" +msgstr "ለ መሸብለያ መደርደሪያ ዝቅተኛ ዋጋ መወሰኛ" #: 01170101.xhp msgctxt "" @@ -6621,14 +6611,13 @@ msgstr "ከፍተኛው ሰአት" #: 01170101.xhp -#, fuzzy msgctxt "" "01170101.xhp\n" "par_id3155401\n" "128\n" "help.text" msgid "Specify the maximum time value for a time control." -msgstr "ለ አሁኑ መቆጣጠሪያ ከፍተኛ ዋጋ መወሰኛ" +msgstr "ለ ሰአት መቆጣጠሪያ ከፍተኛ የ ሰአት ዋጋ መወሰኛ" #: 01170101.xhp msgctxt "" @@ -6640,14 +6629,13 @@ msgstr "ሰአት ደቂቃ" #: 01170101.xhp -#, fuzzy msgctxt "" "01170101.xhp\n" "par_id3156262\n" "136\n" "help.text" msgid "Specify the minimum time value for a time control." -msgstr "ለ አሁኑ መቆጣጠሪያ ዝቅተኛ ዋጋ መወሰኛ" +msgstr "ለ ሰአት መቆጣጠሪያ ዝቅተኛ የ ሰአት ዋጋ መወሰኛ" #: 01170101.xhp msgctxt "" @@ -6776,14 +6764,13 @@ msgstr "ስፋት" #: 01170101.xhp -#, fuzzy msgctxt "" "01170101.xhp\n" "par_id3157963\n" "143\n" "help.text" msgid "Specify the width of the current control or dialog." -msgstr "ለ አሁኑ መቆጣጠሪያ ዋጋ መወሰኛ" +msgstr "ለ አሁኑ መቆጣጠሪያ ወይንም ንግግር ስፋት ዋጋ መወሰኛ" #: 01170103.xhp msgctxt "" @@ -7098,7 +7085,6 @@ msgstr "" #: 03010000.xhp -#, fuzzy msgctxt "" "03010000.xhp\n" "hd_id3156280\n" @@ -7151,13 +7137,12 @@ msgstr "" #: 03010101.xhp -#, fuzzy msgctxt "" "03010101.xhp\n" "bm_id1807916\n" "help.text" msgid "MsgBox statement" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "የ መልእክት ሳጥን ንግግር" #: 03010101.xhp msgctxt "" @@ -7178,14 +7163,13 @@ msgstr "መልእክቱን የያዘውን የንግግር ሳጥን ማሳያ" #: 03010101.xhp -#, fuzzy msgctxt "" "03010101.xhp\n" "hd_id3153897\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03010101.xhp msgctxt "" @@ -7386,22 +7370,20 @@ msgstr "" #: 03010102.xhp -#, fuzzy msgctxt "" "03010102.xhp\n" "tit\n" "help.text" msgid "MsgBox Function [Runtime]" -msgstr "Green Function [Runtime]" +msgstr "የ መልእክት ሳጥን ተግባር [Runtime]" #: 03010102.xhp -#, fuzzy msgctxt "" "03010102.xhp\n" "bm_id3153379\n" "help.text" msgid "MsgBox function" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "የ መልእክት ሳጥን ተግባር" #: 03010102.xhp msgctxt "" @@ -7422,14 +7404,13 @@ msgstr "" #: 03010102.xhp -#, fuzzy msgctxt "" "03010102.xhp\n" "hd_id3156281\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03010102.xhp msgctxt "" @@ -7736,13 +7717,12 @@ msgstr "" #: 03010103.xhp -#, fuzzy msgctxt "" "03010103.xhp\n" "bm_id3147230\n" "help.text" msgid "Print statement" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "የ ማተሚያ ንግግር " #: 03010103.xhp msgctxt "" @@ -7763,14 +7743,13 @@ msgstr "" #: 03010103.xhp -#, fuzzy msgctxt "" "03010103.xhp\n" "hd_id3145785\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03010103.xhp msgctxt "" @@ -7897,13 +7876,12 @@ msgstr "" #: 03010201.xhp -#, fuzzy msgctxt "" "03010201.xhp\n" "tit\n" "help.text" msgid "InputBox Function [Runtime]" -msgstr "Green Function [Runtime]" +msgstr "የ ማስገቢያ ሳጥን ተግባር [Runtime]" #: 03010201.xhp msgctxt "" @@ -7941,14 +7919,13 @@ msgstr "" #: 03010201.xhp -#, fuzzy msgctxt "" "03010201.xhp\n" "hd_id3152347\n" "4\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03010201.xhp msgctxt "" @@ -8094,13 +8071,12 @@ msgstr "" #: 03010301.xhp -#, fuzzy msgctxt "" "03010301.xhp\n" "tit\n" "help.text" msgid "Blue Function [Runtime]" -msgstr "Green Function [Runtime]" +msgstr "Blue Function [Runtime]" #: 03010301.xhp #, fuzzy @@ -8130,14 +8106,13 @@ msgstr "" #: 03010301.xhp -#, fuzzy msgctxt "" "03010301.xhp\n" "hd_id3149670\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03010301.xhp msgctxt "" @@ -8238,13 +8213,12 @@ msgstr "Green Function [Runtime]" #: 03010302.xhp -#, fuzzy msgctxt "" "03010302.xhp\n" "bm_id3148947\n" "help.text" msgid "Green function" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "የ አረንጓዴ ተግባር" #: 03010302.xhp msgctxt "" @@ -8265,14 +8239,13 @@ msgstr "" #: 03010302.xhp -#, fuzzy msgctxt "" "03010302.xhp\n" "hd_id3154140\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03010302.xhp msgctxt "" @@ -8405,14 +8378,13 @@ msgstr "" #: 03010303.xhp -#, fuzzy msgctxt "" "03010303.xhp\n" "hd_id3148799\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03010303.xhp msgctxt "" @@ -8536,14 +8508,13 @@ msgstr "" #: 03010304.xhp -#, fuzzy msgctxt "" "03010304.xhp\n" "hd_id3154140\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03010304.xhp msgctxt "" @@ -8799,14 +8770,13 @@ msgstr "" #: 03010305.xhp -#, fuzzy msgctxt "" "03010305.xhp\n" "hd_id3147229\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03010305.xhp msgctxt "" @@ -8981,13 +8951,12 @@ msgstr "" #: 03020101.xhp -#, fuzzy msgctxt "" "03020101.xhp\n" "bm_id3157896\n" "help.text" msgid "Close statement" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "ንግግር መዝጊያ" #: 03020101.xhp msgctxt "" @@ -9008,14 +8977,13 @@ msgstr "" #: 03020101.xhp -#, fuzzy msgctxt "" "03020101.xhp\n" "hd_id3156344\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020101.xhp msgctxt "" @@ -9072,22 +9040,20 @@ msgstr "" #: 03020102.xhp -#, fuzzy msgctxt "" "03020102.xhp\n" "tit\n" "help.text" msgid "FreeFile Function[Runtime]" -msgstr "Green Function [Runtime]" +msgstr "የ ነፃ ፋይል ተግባር[Runtime]" #: 03020102.xhp -#, fuzzy msgctxt "" "03020102.xhp\n" "bm_id3150400\n" "help.text" msgid "FreeFile function" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "የ ነፃ ፋይል ተግባር" #: 03020102.xhp msgctxt "" @@ -9108,14 +9074,13 @@ msgstr "" #: 03020102.xhp -#, fuzzy msgctxt "" "03020102.xhp\n" "hd_id3150769\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020102.xhp msgctxt "" @@ -9216,14 +9181,13 @@ msgstr "" #: 03020103.xhp -#, fuzzy msgctxt "" "03020103.xhp\n" "hd_id3147230\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020103.xhp msgctxt "" @@ -9369,14 +9333,13 @@ msgstr "" #: 03020104.xhp -#, fuzzy msgctxt "" "03020104.xhp\n" "hd_id3154124\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020104.xhp msgctxt "" @@ -9467,14 +9430,13 @@ msgstr "" #: 03020201.xhp -#, fuzzy msgctxt "" "03020201.xhp\n" "hd_id3150358\n" "4\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020201.xhp msgctxt "" @@ -9620,13 +9582,12 @@ msgstr "" #: 03020202.xhp -#, fuzzy msgctxt "" "03020202.xhp\n" "bm_id3154908\n" "help.text" msgid "Input statement" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "የ ማስገቢያ ንግግር" #: 03020202.xhp msgctxt "" @@ -9647,14 +9608,13 @@ msgstr "" #: 03020202.xhp -#, fuzzy msgctxt "" "03020202.xhp\n" "hd_id3125863\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020202.xhp msgctxt "" @@ -9789,14 +9749,13 @@ msgstr "" #: 03020203.xhp -#, fuzzy msgctxt "" "03020203.xhp\n" "hd_id3150447\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020203.xhp msgctxt "" @@ -9915,14 +9874,13 @@ msgstr "" #: 03020204.xhp -#, fuzzy msgctxt "" "03020204.xhp\n" "hd_id3125863\n" "4\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020204.xhp msgctxt "" @@ -10104,14 +10062,13 @@ msgstr "" #: 03020205.xhp -#, fuzzy msgctxt "" "03020205.xhp\n" "hd_id3150449\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020205.xhp msgctxt "" @@ -10208,7 +10165,7 @@ "tit\n" "help.text" msgid "Eof Function [Runtime]" -msgstr "Green Function [Runtime]" +msgstr "Eof Function [Runtime]" #: 03020301.xhp #, fuzzy @@ -10217,7 +10174,7 @@ "bm_id3154598\n" "help.text" msgid "Eof function" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "Eof function" #: 03020301.xhp #, fuzzy @@ -10239,14 +10196,13 @@ msgstr "" #: 03020301.xhp -#, fuzzy msgctxt "" "03020301.xhp\n" "hd_id3149119\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020301.xhp msgctxt "" @@ -10336,7 +10292,7 @@ "tit\n" "help.text" msgid "Loc Function [Runtime]" -msgstr "Green Function [Runtime]" +msgstr "Loc Function [Runtime]" #: 03020302.xhp #, fuzzy @@ -10345,7 +10301,7 @@ "bm_id3148663\n" "help.text" msgid "Loc function" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "Loc function" #: 03020302.xhp msgctxt "" @@ -10366,14 +10322,13 @@ msgstr "" #: 03020302.xhp -#, fuzzy msgctxt "" "03020302.xhp\n" "hd_id3156422\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020302.xhp msgctxt "" @@ -10445,7 +10400,7 @@ "tit\n" "help.text" msgid "Lof Function [Runtime]" -msgstr "Green Function [Runtime]" +msgstr "Lof Function [Runtime]" #: 03020303.xhp #, fuzzy @@ -10454,7 +10409,7 @@ "bm_id3156024\n" "help.text" msgid "Lof function" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "Lof function" #: 03020303.xhp msgctxt "" @@ -10475,14 +10430,13 @@ msgstr "" #: 03020303.xhp -#, fuzzy msgctxt "" "03020303.xhp\n" "hd_id3153380\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020303.xhp msgctxt "" @@ -10617,7 +10571,7 @@ "tit\n" "help.text" msgid "Seek Function [Runtime]" -msgstr "Green Function [Runtime]" +msgstr "Seek Function [Runtime]" #: 03020304.xhp #, fuzzy @@ -10674,14 +10628,13 @@ msgstr "ይህን ይመልከቱ: መክፈቻ, መፈለጊያ." #: 03020304.xhp -#, fuzzy msgctxt "" "03020304.xhp\n" "hd_id3152460\n" "6\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020304.xhp msgctxt "" @@ -10789,14 +10742,13 @@ msgstr "ይህን ይመልከቱ: መክፈቻ, መፈለጊያ." #: 03020305.xhp -#, fuzzy msgctxt "" "03020305.xhp\n" "hd_id3145785\n" "6\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020305.xhp msgctxt "" @@ -10904,14 +10856,13 @@ msgstr "" #: 03020401.xhp -#, fuzzy msgctxt "" "03020401.xhp\n" "hd_id3154347\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020401.xhp msgctxt "" @@ -10994,14 +10945,13 @@ msgstr "" #: 03020402.xhp -#, fuzzy msgctxt "" "03020402.xhp\n" "hd_id3154138\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020402.xhp msgctxt "" @@ -11064,7 +11014,7 @@ "tit\n" "help.text" msgid "CurDir Function [Runtime]" -msgstr "Green Function [Runtime]" +msgstr "CurDir Function [Runtime]" #: 03020403.xhp #, fuzzy @@ -11073,7 +11023,7 @@ "bm_id3153126\n" "help.text" msgid "CurDir function" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "CurDir function" #: 03020403.xhp msgctxt "" @@ -11094,14 +11044,13 @@ msgstr "" #: 03020403.xhp -#, fuzzy msgctxt "" "03020403.xhp\n" "hd_id3149457\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020403.xhp msgctxt "" @@ -11182,7 +11131,7 @@ "tit\n" "help.text" msgid "Dir Function [Runtime]" -msgstr "Green Function [Runtime]" +msgstr "Dir Function [Runtime]" #: 03020404.xhp #, fuzzy @@ -11191,7 +11140,7 @@ "bm_id3154347\n" "help.text" msgid "Dir function" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "Dir function" #: 03020404.xhp msgctxt "" @@ -11212,14 +11161,13 @@ msgstr "" #: 03020404.xhp -#, fuzzy msgctxt "" "03020404.xhp\n" "hd_id3154365\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020404.xhp msgctxt "" @@ -11372,7 +11320,7 @@ "tit\n" "help.text" msgid "FileAttr-Function [Runtime]" -msgstr "Green Function [Runtime]" +msgstr "FileAttr-Function [Runtime]" #: 03020405.xhp #, fuzzy @@ -11381,7 +11329,7 @@ "bm_id3153380\n" "help.text" msgid "FileAttr function" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "FileAttr function" #: 03020405.xhp msgctxt "" @@ -11420,14 +11368,13 @@ msgstr "ይህን ይመልከቱ: መክፈቻ" #: 03020405.xhp -#, fuzzy msgctxt "" "03020405.xhp\n" "hd_id3151116\n" "5\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020405.xhp msgctxt "" @@ -11606,7 +11553,7 @@ "bm_id3154840\n" "help.text" msgid "FileCopy statement" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "FileCopy statement" #: 03020406.xhp msgctxt "" @@ -11627,14 +11574,13 @@ msgstr "ፋይል ኮፒ ማድረጊያ" #: 03020406.xhp -#, fuzzy msgctxt "" "03020406.xhp\n" "hd_id3147443\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020406.xhp msgctxt "" @@ -11697,7 +11643,7 @@ "tit\n" "help.text" msgid "FileDateTime Function [Runtime]" -msgstr "Green Function [Runtime]" +msgstr "FileDateTime Function [Runtime]" #: 03020407.xhp #, fuzzy @@ -11706,7 +11652,7 @@ "bm_id3153361\n" "help.text" msgid "FileDateTime function" -msgstr "የ ማስገቢያ ሳጥን ተግባር" +msgstr "FileDateTime function" #: 03020407.xhp msgctxt "" @@ -11727,14 +11673,13 @@ msgstr "" #: 03020407.xhp -#, fuzzy msgctxt "" "03020407.xhp\n" "hd_id3154685\n" "3\n" "help.text" msgid "Syntax:" -msgstr "አገባብ" +msgstr "አገባብ:" #: 03020407.xhp msgctxt "" @@ -11788,7 +11733,7 @@ "tit\n" "help.text" msgid "FileLen-Function [Runtime]" -msgstr "Green Function [Runtime]" +msgstr "FileLen-Function [Runtime]" #: 03020408.xhp #, fuzzy @@ -35881,7 +35826,7 @@ "bm_id3153539\n" "help.text" msgid "TwipsPerPixelX function" -msgstr " የ ኢንች 1/20ኛ; PixelX function" +msgstr " የ ኢንች አንድ ሀያኛ; በ ፒክስልX ተግባር" #: 03131300.xhp msgctxt "" @@ -35971,7 +35916,7 @@ "bm_id3150040\n" "help.text" msgid "TwipsPerPixelY function" -msgstr " የ ኢንች 1/20ኛ; PixelX function" +msgstr " የ ኢንች አንድ ሀያኛ; ፒክስልY ተግባር" #: 03131400.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/scalc/00.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/scalc/00.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/scalc/00.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/scalc/00.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-19 00:26+0000\n" +"PO-Revision-Date: 2015-08-27 16:45+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439944012.000000\n" +"X-POOTLE-MTIME: 1440693948.000000\n" #: 00000004.xhp msgctxt "" @@ -1721,7 +1721,7 @@ "53\n" "help.text" msgid "Choose Data - Pivot Table - Create, in the Select Source dialog choose the option Data source registered in $[officename]." -msgstr "ይምረጡ ዳታ -የ pivot ሰንጠረዥ - መፍጠሪያ , በ ንግግር ምንጭ መምረጫ ውስጥ ይምረጡ ምርጫ ይየ ተመዘገበ ይየ ዳታ ምንጭ $[officename]." +msgstr "ይምረጡ ዳታ - የ pivot ሰንጠረዥ - መፍጠሪያ , በ ንግግር ምንጭ መምረጫ ውስጥ ይምረጡ ምርጫ የ ተመዘገበ የ ዳታ ምንጭ $[officename]." #: 00000412.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/scalc/01.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/scalc/01.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/scalc/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/scalc/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-18 23:05+0000\n" +"PO-Revision-Date: 2015-09-05 22:26+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439939101.000000\n" +"X-POOTLE-MTIME: 1441492000.000000\n" #: 01120000.xhp msgctxt "" @@ -70,7 +70,7 @@ "par_id460829\n" "help.text" msgid "To exit the print preview, click the Close Preview button." -msgstr "ከ ሕትመት ቅድመ እይታ ለመውጣት: ይጫኑ የ ቅድመ እይታ መዝጊያ ቁልፍ" +msgstr "ከ ሕትመት ቅድመ እይታ ለመውጣት: ይጫኑ የ ቅድመ እይታ መዝጊያ ቁልፍ " #: 01120000.xhp msgctxt "" @@ -175,7 +175,7 @@ "10\n" "help.text" msgid "Specifies the current data range denoted by the position of the cell cursor." -msgstr "" +msgstr "የ አሁኑን ዳታ መጠን ይገልጻል በ ክፍሉ ውስጥ መጠቆሚያው ባለበት ቦታ ያመለክታል " #: 02110000.xhp msgctxt "" @@ -210,7 +210,7 @@ "16\n" "help.text" msgid "Moves to the cell at the beginning of the current data range, which you can highlight using the Data Range button." -msgstr "" +msgstr "በ አሁኑ ዳታ መጠን ውስጥ በ ክፍሉ መጀመሪያ ጋር ይንቀሳቀሳል: እርስዎ ማድመቅ ይችላሉ በ መጠቀም የ ዳታ መጠን ቁልፍን" #: 02110000.xhp msgctxt "" @@ -245,7 +245,7 @@ "19\n" "help.text" msgid "Moves to the cell at the end of the current data range, which you can highlight using the Data Range button." -msgstr "" +msgstr "በ አሁኑ ዳታ መጠን ውስጥ በ ክፍሉ መጨረሻ ጋር ይንቀሳቀሳል: እርስዎ ማድመቅ ይችላሉ በ መጠቀም የ ዳታ መጠን ቁልፍን" #: 02110000.xhp msgctxt "" @@ -1276,7 +1276,7 @@ "2\n" "help.text" msgid "Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type." -msgstr "" +msgstr "ራሱ በራሱ ተከታታይ በ ምርጫ በዚህ ንግግር ውስጥ ያመነጫል: አቅጣጫ: ጭማሪ: የ ሰአት መለኪያ እና የ ተከታታይ አይነቶች ይወስናል " #: 02140600.xhp msgctxt "" @@ -1285,7 +1285,7 @@ "41\n" "help.text" msgid "Before filling a series, first select the cell range." -msgstr "" +msgstr "ተከታታይ ከ መሙላት በፊት መጀመሪያ የ ክፍል መጠን ይምረጡ" #: 02140600.xhp msgctxt "" @@ -1312,7 +1312,7 @@ "5\n" "help.text" msgid "Determines the direction of series creation." -msgstr "" +msgstr "የ ተከታታይ አቅጣጫ መፍጠሪያ መወሰኛ" #: 02140600.xhp msgctxt "" @@ -1420,7 +1420,7 @@ "17\n" "help.text" msgid "Creates a linear number series using the defined increment and end value." -msgstr "" +msgstr "የ ተወሰነ ጭማሪ እና የ መጨረሻ ቀን በመጠቀም ተከታታይ ቀጥተኝ ቁጥር መፍጠሪያ" #: 02140600.xhp msgctxt "" @@ -1438,7 +1438,7 @@ "19\n" "help.text" msgid "Creates a growth series using the defined increment and end value." -msgstr "" +msgstr "የ ተወሰነ ጭማሪ እና የ መጨረሻ ቀን በመጠቀም ተከታታይ እድገት መፍጠሪያ" #: 02140600.xhp msgctxt "" @@ -1456,7 +1456,7 @@ "21\n" "help.text" msgid "Creates a date series using the defined increment and end date." -msgstr "" +msgstr "የ ተወሰነ ጭማሪ እና የ መጨረሻ ቀን በመጠቀም ተከታታይ ቀን መፍጠሪያ" #: 02140600.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/scalc/02.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/scalc/02.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/scalc/02.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/scalc/02.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-18 23:21+0000\n" +"PO-Revision-Date: 2015-08-27 16:48+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439940110.000000\n" +"X-POOTLE-MTIME: 1440694088.000000\n" #: 02130000.xhp msgctxt "" @@ -316,7 +316,7 @@ "bm_id3156326\n" "help.text" msgid "formula bar; sheet area namessheet area namesshowing; cell referencescell references; showing" -msgstr "የ formula መደርደሪያ; የ ወረቀት ቦታ ስሞች የ ወረቀት ቦታ ስሞች ማሳያ; የ ክፍል ማመሳከሪያዎችየ ክፍል ማመሳከሪያዎች; ማሳያ" +msgstr "የ formula መደርደሪያ; የ ወረቀት ቦታ ስሞችየ ወረቀት ቦታ ስሞች ማሳያ;የ ክፍል ማመሳከሪያዎችየ ክፍል ማመሳከሪያዎች; ማሳያ" #: 06010000.xhp msgctxt "" @@ -549,7 +549,7 @@ "2\n" "help.text" msgid "Clears the contents of the Input line, or cancels the changes that you made to an existing formula." -msgstr "ይዞታዎችን ማጽጃ የ ማስገቢያ መስመር ወይንም መሰረዣ የ ቀየሩትን ለውጦች በ ነበረው formula ላይ" +msgstr "ይዞታዎችን ማጽጃ የ ማስገቢያ መስመር ወይንም መሰረዣ የ ቀየሩትን ለውጦች በ ነበረው formula ላይ " #: 06060000.xhp msgctxt "" @@ -600,7 +600,7 @@ "2\n" "help.text" msgid "Accepts the contents of the Input line, and then inserts the contents into the current cell." -msgstr "ይዞታዎቹን ተቀብያለሁ የ ማስገቢያ መስመር እና ከዛ ይዞታዎቹን ወደ አሁኑ ክፍል ማስገቢያ" +msgstr "ይዞታዎቹን ተቀብያለሁ የ ማስገቢያ መስመር እና ከዛ ይዞታዎቹን ወደ አሁኑ ክፍል ማስገቢያ " #: 06070000.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/scalc/04.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/scalc/04.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/scalc/04.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/scalc/04.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 10:40+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-08-31 23:30+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439462409.000000\n" +"X-POOTLE-MTIME: 1441063851.000000\n" #: 01020000.xhp msgctxt "" @@ -22,7 +22,7 @@ "tit\n" "help.text" msgid "Shortcut Keys for Spreadsheets" -msgstr "ለሰንጠረዥ አቋራጭ ቁልፎች" +msgstr "ለ ሰንጠረዥ አቋራጭ ቁልፎች" #: 01020000.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3145801\n" "help.text" msgid "spreadsheets; shortcut keys inshortcut keys; spreadsheetssheet ranges; filling" -msgstr "ሰንጠረዦች; አቋራጭ ቁልፎች በአቋራጭ ቁልፎች; ሰንጠረዦችየወረቀት መጠኖች; መሙያ" +msgstr "ሰንጠረዦች; አቋራጭ ቁልፎች በአቋራጭ ቁልፎች; ሰንጠረዦችየ ወረቀት መጠኖች; መሙያ" #: 01020000.xhp msgctxt "" @@ -1151,7 +1151,7 @@ "56\n" "help.text" msgid "Formatting Cells Using Shortcut Keys" -msgstr "የክፍሎች አቀራረብ አቋራጭ ቁልፎችን በመጠቀም" +msgstr "የ ክፍሎች አቀራረብ አቋራጭ ቁልፎችን በመጠቀም" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/scalc/guide.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/scalc/guide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/scalc/guide.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-19 03:00+0000\n" +"PO-Revision-Date: 2015-08-27 16:51+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439953248.000000\n" +"X-POOTLE-MTIME: 1440694289.000000\n" #: address_auto.xhp msgctxt "" @@ -91,7 +91,7 @@ "tit\n" "help.text" msgid "Deactivating Automatic Changes" -msgstr "" +msgstr "ራሱ በራሱ መቀየሪያ ማቦዘኛ" #: auto_off.xhp msgctxt "" @@ -153,7 +153,7 @@ "6\n" "help.text" msgid "To turn the AutoInput on and off, set or remove the check mark in front of Tools - Cell Contents - AutoInput." -msgstr "" +msgstr "በ ራሱ ማስገቢያ ለ ማብራት ወይንም ለ ማጥፋት: ማሰናጃ ወይንም ማስወገጃ ከ ፊት ለፊት ያለውን ምልክት ማድረጊያ መሳሪያዎች - ክፍል ይዞታዎች - በ ራሱ ማስገቢያ." #: auto_off.xhp msgctxt "" @@ -189,7 +189,7 @@ "7\n" "help.text" msgid "Quotation Marks Replaced by Custom Quotes" -msgstr "" +msgstr "ትምሕርተ ጥቅስ ተቀይሯል በ Custom ጥቅስ ምልክቶች" #: auto_off.xhp msgctxt "" @@ -843,7 +843,7 @@ "par_id466322\n" "help.text" msgid "Cells in a block of 2x2 or more" -msgstr "" +msgstr "ጠቅላላ ክፍሎች 2x2 ወይንም ተጨማሪ" #: borders.xhp msgctxt "" @@ -7827,7 +7827,7 @@ "par_id2783898\n" "help.text" msgid "Option+Command Alt+Ctrl keys" -msgstr "ምርጫ+ትእዛዝAlt+Ctrl+ ቁልፎች" +msgstr "ምርጫ+ትእዛዝAlt+Ctrl ቁልፎች" #: move_dragdrop.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/scalc.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/scalc.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/scalc.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/scalc.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-18 16:04+0000\n" +"PO-Revision-Date: 2015-09-01 17:10+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439913876.000000\n" +"X-POOTLE-MTIME: 1441127417.000000\n" #: main0000.xhp msgctxt "" @@ -1340,7 +1340,7 @@ "par_id460939\n" "help.text" msgid "This slide defines a page scale for the printed spreadsheet. Scaling factor can be set on Sheet tab of Page Style dialog, too." -msgstr "" +msgstr "ይህ ተንሸራታች የሚገልጸው የ ገጽ መጠን ለሚታተመው ሰንጠረዥ ነው: መመጠኛ factor ማሰናዳት ይችላሉ በ ወረቀት tab ከ ገጽ ዘዴዎች ንግግር ውስጥ በተጨማሪ" #: main0210.xhp msgctxt "" @@ -1492,7 +1492,7 @@ "2\n" "help.text" msgid "$[officename] Calc is a spreadsheet application that you can use to calculate, analyze, and manage your data. You can also import and modify Microsoft Excel spreadsheets." -msgstr "" +msgstr "$[officename] ሰንጠረዥ የ ሰንጠረዥ መተግበሪያ የ እርስዎን ዳታ ለ ማስላት: ለ መመርመር እና ለማስተዳደር ያስችሎታል: እርስዎ ማምጣት እና ማሻሻል ይችላሉ የ Microsoft Excel ሰንጠረዥንም" #: main0503.xhp msgctxt "" @@ -1564,7 +1564,7 @@ "25\n" "help.text" msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer." -msgstr "" +msgstr "$[officename] ሰንጠርዥ መጎተት-እና-መጣል ያስችሎታል ከ ዳታቤዝ ውስጥ: ወይንም ሰንጠረዥን እንደ ዳታ ምንጭ የ ደብዳቤዎች ፎርም መፍጠር ያስችሎታል በ $[officename] መጻፊያ ውስጥ" #: main0503.xhp msgctxt "" @@ -1600,7 +1600,7 @@ "17\n" "help.text" msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes." -msgstr "" +msgstr "$[officename] ሰንጠረዥ ማቅረብ ያስችሎታል የ ሰንጠረዥ ዳታ በ dynamic charts የ ዳታ ምንጩ በሚቀየር ጊዜ ራሱ በራሱ ይሻሻላል" #: main0503.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/schart/04.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/schart/04.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/schart/04.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/schart/04.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-13 10:52+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-08-31 23:31+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439463160.000000\n" +"X-POOTLE-MTIME: 1441063889.000000\n" #: 01020000.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3150767\n" "help.text" msgid "shortcut keys; chartscharts; shortcuts" -msgstr "sአቋራጭ ቁልፎች; chartscharts; አቋራጮች" +msgstr "አቋራጭ ቁልፎች; chartscharts; አቋራጮች" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/schart.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/schart.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/schart.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/schart.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-18 15:55+0000\n" +"PO-Revision-Date: 2015-09-01 14:59+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439913311.000000\n" +"X-POOTLE-MTIME: 1441119577.000000\n" #: main0000.xhp msgctxt "" @@ -73,7 +73,7 @@ "par_id7787102\n" "help.text" msgid "Spreadsheet values from Calc cell ranges" -msgstr "" +msgstr "የ ሰንጠረዥ ዋጋዎች በ ሰንጠረዥ ክፍል መጠን" #: main0000.xhp msgctxt "" @@ -81,7 +81,7 @@ "par_id7929929\n" "help.text" msgid "Cell values from a Writer table" -msgstr "" +msgstr "የ ክፍል ዋጋ በ መጻፊያ ሰንጠረዥ" #: main0000.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/sdraw/04.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/sdraw/04.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/sdraw/04.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/sdraw/04.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2013-06-29 21:21+0000\n" -"Last-Translator: Samson \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-08-31 23:33+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1372540884.0\n" +"X-POOTLE-MTIME: 1441064028.000000\n" #: 01020000.xhp msgctxt "" @@ -22,7 +22,7 @@ "tit\n" "help.text" msgid "Shortcut Keys for Drawings" -msgstr "ለመሳያዎች አቋራጭ ቁልፍ" +msgstr "ለ መሳያዎች አቋራጭ ቁልፍ" #: 01020000.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3156441\n" "help.text" msgid "shortcut keys;in drawings drawings; shortcut keys" -msgstr "ለመሳያዎች አቋራጭ ቁልፍ ለመሳያዎች አቋራጭ ቁልፍ " +msgstr "ለ መሳያዎች አቋራጭ ቁልፍ ለ መሳያዎች አቋራጭ ቁልፍ " #: 01020000.xhp msgctxt "" @@ -39,7 +39,7 @@ "1\n" "help.text" msgid "Shortcut Keys for Drawings" -msgstr "ለመሳያዎች አቋራጭ ቁልፍ" +msgstr "ለ መሳያዎች አቋራጭ ቁልፍ" #: 01020000.xhp msgctxt "" @@ -48,7 +48,7 @@ "2\n" "help.text" msgid "The following is a list of shortcut keys specific to Drawing documents." -msgstr "የሚቀጥሉት ዝርዝር አቋራጮች በተለይ ለመሳያ ሰነዶች ነው" +msgstr "የሚቀጥሉት ዝርዝር አቋራጮች በተለይ ለ መሳያ ሰነዶች ነው" #: 01020000.xhp msgctxt "" @@ -299,7 +299,7 @@ "41\n" "help.text" msgid "Shortcut Keys for Drawings" -msgstr "ለመሳያዎች አቋራጭ ቁልፍ" +msgstr "ለ መሳያዎች አቋራጭ ቁልፍ" #: 01020000.xhp msgctxt "" @@ -542,7 +542,7 @@ "68\n" "help.text" msgid "Shortcut Keys Specific to Drawings" -msgstr "አቋራጭ ቁልፎች የተወሰኑ ለመሳያ" +msgstr "አቋራጭ ቁልፎች የተወሰኑ ለ መሳያ" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/sdraw/guide.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/sdraw/guide.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/sdraw/guide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/sdraw/guide.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-06-24 15:47+0000\n" +"PO-Revision-Date: 2015-08-24 14:01+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435160867.000000\n" +"X-POOTLE-MTIME: 1440424879.000000\n" #: align_arrange.xhp msgctxt "" @@ -374,7 +374,7 @@ "18\n" "help.text" msgid "You can also create a color using a color spectrum. Click the Edit button to open the Color dialog. Click a color. Use the Hue, Saturation, and Brightness boxes to adjust your color selection." -msgstr "" +msgstr "እርስዎ ቀለም መፍጠር ይችላሉ ይህን የ ቀለም spectrum በመጠቀም ይጫኑ ማረሚያ ቁልፍ ለ መክፈት የ ቀለም ንግግርን: ይጫኑ ቀለም: እና ይጠቀሙ Hue, Saturation, እና Brightness ሳጥኖች የ እርስዎን ምርጫ ቀለም ለ ማስተካከል" #: color_define.xhp msgctxt "" @@ -392,7 +392,7 @@ "26\n" "help.text" msgid "If you want to replace the color in the standard color table that your custom color is based on, click Modify." -msgstr "" +msgstr "እርስዎ ቀለም መቀየር ከፈለጉ በ መደበኛ የ ቀለም ሰንጠረዥ በ እርስዎ custom ቀለም መሰረት ያደረገ ይጫኑ ማሻሻያ." #: color_define.xhp msgctxt "" @@ -401,7 +401,7 @@ "20\n" "help.text" msgid "If you want to add your custom color to the standard color table, enter a name in the Name text box and click Add." -msgstr "" +msgstr "የ እርስዎን custom ቀለም መጨመር ከፈለጉ ወደ መደበኛ የ ቀለም ሰንጠረዥ ስም ያስገቡ በ ስም ጽሁፍ ሳጥን ውስጥ እና ይጫኑመጨመሪያ." #: color_define.xhp msgctxt "" @@ -533,7 +533,7 @@ "63\n" "help.text" msgid "You can construct shapes by applying the Shapes - Merge, Subtract and Intersect commands to two or more drawing objects." -msgstr "" +msgstr "እርስዎ መገንባት ይችላሉ ቅርጾችን በመጠቀም ከ ቅርጾች - ማዋሀጃ: መቀነሻ እና በ ማገናኛ ትእዛዞች ከ ሁለት ወይንም ከዚያ በላይ የ መሳያ እቃዎች" #: combine_etc.xhp msgctxt "" @@ -1478,7 +1478,7 @@ "3\n" "help.text" msgid "Locate the image you want to insert. Select the Link check box to insert only a link to the image. If you want to see the image before you insert it, select Preview." -msgstr "" +msgstr "ማስገባት የሚፈልጉትን ምስል ፈልገው ያግኙ እና ከዛ ይምረጡ አገናኝ ለ ምስሉ አገናኝ ብቻ ለማስገባት በ ሳጥኑ ውስጥ ምልክት ያድርጉ: ምስሉን ከ ማስገባትዎ በፊት ማየት ከ ፈለጉ ይምረጡ ቅድመ እይታ." #: graphic_insert.xhp msgctxt "" @@ -1854,7 +1854,7 @@ "bm_id3155628\n" "help.text" msgid "accessibility; %PRODUCTNAME Drawdraw objects; text entry modetext entry mode for draw objects" -msgstr "" +msgstr "መድረሻ; %PRODUCTNAME መሳያመሳያ እቃዎች; በ ጽሁፍ ማስገቢያ ዘዴበ ጽሁፍ ማስገቢያ ዘዴ ለ መሳያ እቃዎች" #: keyboard.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/sdraw.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/sdraw.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/sdraw.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/sdraw.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2014-01-03 15:02+0000\n" -"Last-Translator: Samson \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-09-01 01:28+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Pootle 2.5.0\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1388761353.0\n" +"X-POOTLE-MTIME: 1441070934.000000\n" #: main0000.xhp msgctxt "" @@ -818,7 +818,7 @@ "par_idN1061B\n" "help.text" msgid "Draws a text box where you click or drag in the current document. Click anywhere in the document, and then type or paste your text." -msgstr "" +msgstr "እርስዎ በ አሁኑ ሰነድ ውስጥ በ መጫን ወይንም በ መጎተት የ ጽሁፍ ሳጥን መሳያ: ይጫኑ በ ሰነዱ ውስጥ በማንኛውም ቦታ እና ከዛ ይጻፉ ወይንም የሚፈልጉትን ጽሁፍ ይለጥፉ" #: main0210.xhp msgctxt "" @@ -1040,7 +1040,7 @@ "11\n" "help.text" msgid "Vector Graphics" -msgstr "" +msgstr "የ Vector ንድፎች" #: main0503.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/shared/00.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared/00.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/shared/00.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared/00.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-07-28 16:40+0000\n" +"PO-Revision-Date: 2015-09-10 22:34+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438101642.000000\n" +"X-POOTLE-MTIME: 1441924466.000000\n" #: 00000001.xhp msgctxt "" @@ -162,7 +162,7 @@ "44\n" "help.text" msgid "To activate the context menu of an object, first click the object with the left mouse button to select it, and then, while holding down the Ctrl key or the Command and Option keys, click the mouse button again click the right mouse button. Some context menus can be called even if the object has not been selected. Context menus are found just about everywhere in $[officename]." -msgstr "የ እቃውን አገባብ ዝርዝር ለማስጀመር በመጀመሪያ እቃውን ይጫኑ በ ግራ የ አይጥ ቁልፍ ለመምረጥ እና ከዛ የ Ctrl ቁልፍ ተጭነው ይዘው ወይንም የ ትእዛዝ እና የ ምርጫ ቁልፍ ይጫኑ እንደ ገና የ አይጥ ቁልፍ ይጫኑ በ ቀኝ የ አይጥ ቁልፍ አንዳንድ የ አገባብ ዝርዝር መጥራት ይቻላል እቃው ባይመረጥም እንኳን፡ የ አገባብ ዝርዝር በ ሁሉም ቦታ ይገኛሉ በ $[officename]." +msgstr "የ እቃውን አገባብ ዝርዝር ለማስጀመር በመጀመሪያ እቃውን ይጫኑ በ ግራ የ አይጥ ቁልፍ ለመምረጥ እና ከዛ የ Ctrl ቁልፍ ተጭነው ይዘው ወይንም የ ትእዛዝ እና የ ምርጫ ቁልፍ ይጫኑ እንደ ገና የ አይጥ ቁልፍ ይጫኑ በ ቀኝ የ አይጥ ቁልፍ አንዳንድ የ አገባብ ዝርዝር መጥራት ይቻላል እቃው ባይመረጥም እንኳን: የ አገባብ ዝርዝር በ ሁሉም ቦታ ይገኛሉ በ $[officename]." #: 00000001.xhp msgctxt "" @@ -1150,7 +1150,7 @@ "par_idN106A2\n" "help.text" msgid "You define the default measurement unit for Writer text documents in the dialog that you get by choosing %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General. For Calc, Draw, and Impress, you open a document of that type and then open the appropriate General page as for Writer." -msgstr "መግለጽ ይችላሉ ነባር የ መለኪያ ክፍል ለ መጻፊያ ጽሁፍ ሰነዶች በ ንግግር ውስጥ በመምረጥ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - ባጠቃላይ ለ ሰንጠረዥ ለ መሳያ እና ለ ማስደነቂያ፡ የዚያን አይነት ሰነድ ይክፈቱ እና ይክፈቱ ተገቢውን ባጠቃላይ ገጽ እንደ መጻፊያ" +msgstr "መግለጽ ይችላሉ ነባር የ መለኪያ ክፍል ለ መጻፊያ ጽሁፍ ሰነዶች በ ንግግር ውስጥ በመምረጥ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - ባጠቃላይ ለ ሰንጠረዥ ለ መሳያ እና ለ ማስደነቂያ: የዚያን አይነት ሰነድ ይክፈቱ እና ይክፈቱ ተገቢውን ባጠቃላይ ገጽ እንደ መጻፊያ" #: 00000003.xhp msgctxt "" @@ -6422,7 +6422,7 @@ "99\n" "help.text" msgid "$[officename] Draw or $[officename] Impress menu File - Export, select \"HTML Document\" file type, this dialog opens automatically" -msgstr "$[officename] መሳያ ወይንም $[officename] ማስደነቂያ ዝርዝር ውስጥ ፋይል - መላኪያ ይምረጡ \"HTML Document\" ፋይል አይነት፡ ይህ ንግግር ራሱ በራሱ ይከፈታል" +msgstr "$[officename] መሳያ ወይንም $[officename] ማስደነቂያ ዝርዝር ውስጥ ፋይል - መላኪያ ይምረጡ \"HTML Document\" ፋይል አይነት: ይህ ንግግር ራሱ በራሱ ይከፈታል" #: 00000401.xhp msgctxt "" @@ -6431,7 +6431,7 @@ "137\n" "help.text" msgid "$[officename] Draw/$[officename] Impress menu File - Export, select HTML file type, page 1 of the wizard" -msgstr "$[officename] መሳያ/$[officename] ማስደነቂያ ዝርዝር ውስጥ ፋይል - መልኪያ ይምረጡ የ HTML ፋይል አይነት ገጽ 1 ከ አዋቂው ውስጥ" +msgstr "$[officename] መሳያ/$[officename] ማስደነቂያ ዝርዝር ውስጥ ፋይል - መላኪያ ይምረጡ የ HTML ፋይል አይነት ገጽ 1 ከ አዋቂው ውስጥ" #: 00000401.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/shared/01.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared/01.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/shared/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-20 21:16+0000\n" +"PO-Revision-Date: 2015-09-10 22:34+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440105401.000000\n" +"X-POOTLE-MTIME: 1441924484.000000\n" #: 01010000.xhp msgctxt "" @@ -708,7 +708,7 @@ "10\n" "help.text" msgid "Allows you to preview the template or document, as well as view the document properties. To preview the template or document, click the Preview icon at the top of the Preview box on the right side of the dialog. To view the properties of the document, click the Document Properties icon at the top of the Preview box." -msgstr "" +msgstr "ቴምፕሌት እና ሰነዶችን በ ቅድመ እይታ ማየት ያስችሎታል እንዲሁም የ ሰነድ ባህሪዎችን ቴምፕሌት ወይንም ሰነዶችን በ ቅድመ እይታ ለማየት ይጫኑ የ ቅድመ እይታ ምልክት ከ ላይ በ ቅድመ እይታ ሳጥን ውስጥ ከ ንግግሩ በ ቀኝ በኩ: የ ሰነድ ባህሪዎችን ለ መመልከት ይጫኑ የ ሰነድ ባህሪዎችን ምልክት ከ ላይ በ ቅድመ እይታ ሳጥን ውስጥ" #: 01010100.xhp msgctxt "" @@ -857,7 +857,7 @@ "2\n" "help.text" msgid "Allows you to create labels. Labels are created in a text document. You can print labels using a pre-defined or a custom paper format. " -msgstr "" +msgstr "ምልክቶች መፍጠር ያስችሎታል: ምልክቶች መፍጠር የሚቻለው በ ጽሁፍ ሰነድ ነው: ምልክቶችን ማተም ይችላሉ በ ቅድሚያ-በ ተወሰኑ ወይንም custom ወረቀት አቀራረብ " #: 01010200.xhp msgctxt "" @@ -936,7 +936,7 @@ "4\n" "help.text" msgid "Enter or insert the text that you want to appear on the label(s)." -msgstr "ማስገቢያ ወይንም እንዲታይ የሚፈልጉትን ጽሁፍ በ ምልክት (ቶች) ላይ ማስገቢያ" +msgstr "ማስገቢያ ወይንም እንዲታይ የሚፈልጉትን ጽሁፍ በ ምልክት(ቶች) ላይ ማስገቢያ" #: 01010201.xhp msgctxt "" @@ -1152,7 +1152,7 @@ "28\n" "help.text" msgid "The paper type and the dimensions of the label are displayed at the bottom of the Format area." -msgstr "" +msgstr "የ ወረቀቱ አይነት እና አቅጣጫዎች የሚታዩት ከ ምልክቱ በ ታች በኩል ነው በ አቀራረብ ቦታ ውስጥ" #: 01010202.xhp msgctxt "" @@ -2745,7 +2745,7 @@ "bm_id3154545\n" "help.text" msgid "documents; closingclosing;documents" -msgstr "ሰነዶች; መዝጊያclosingመዝጊያ;ሰነዶች" +msgstr "ሰነዶች; መዝጊያመዝጊያ;ሰነዶች" #: 01050000.xhp msgctxt "" @@ -4556,7 +4556,7 @@ "par_id10\n" "help.text" msgid "Specifies whether the form control fields of the text document are printed." -msgstr "" +msgstr "የ ፎርም መቆጣጠሪያ ሜዳዎች በ ጽሁፍ ሰነድ ውስጥ ይታተሙ እንደሆን መወሰኛ" #: 01130000.xhp msgctxt "" @@ -4564,7 +4564,7 @@ "par_id12\n" "help.text" msgid "Specifies whether to always print text in black." -msgstr "" +msgstr "ሁልጊዜ ጽሁፍ በ ጥቁር እንደሚታተም መወሰኛ" #: 01130000.xhp msgctxt "" @@ -4580,7 +4580,7 @@ "par_id16\n" "help.text" msgid "Specify where to print comments (if any)." -msgstr "" +msgstr "አስተያየት የት እንደሚታተም መወሰኛ (አስተያየት ካለ)." #: 01130000.xhp msgctxt "" @@ -4588,7 +4588,7 @@ "par_id18\n" "help.text" msgid "Specify where to print comments (if any)." -msgstr "" +msgstr "አስተያየት የት እንደሚታተም መወሰኛ (አስተያየት ካለ)." #: 01130000.xhp msgctxt "" @@ -4612,7 +4612,7 @@ "par_id24\n" "help.text" msgid "Applies a thin border to the formula area in the printout." -msgstr "" +msgstr "ቀጭን የ መስመር ድንበር በ formula ቦታ መክበቢያ በሚታተመው ወረቀት ላይ መፈጸሚያ" #: 01130000.xhp msgctxt "" @@ -4620,7 +4620,7 @@ "par_id26\n" "help.text" msgid "Prints the formula without adjusting the current font size." -msgstr "" +msgstr "የ አሁኑን የ ፊደል መጠን ምንም ሳይስተካከል formula ማተሚያ" #: 01130000.xhp msgctxt "" @@ -4628,7 +4628,7 @@ "par_id28\n" "help.text" msgid "Adjusts the formula to the page format used in the printout." -msgstr "" +msgstr "formula ማስተካከያ በ ገጹ አቀራረብ ልክ በሚታተመው ወረቀት ላይ መፈጸሚያ" #: 01130000.xhp msgctxt "" @@ -4636,7 +4636,7 @@ "par_id30\n" "help.text" msgid "Reduces or enlarges the size of the printed formula by a specified factor." -msgstr "" +msgstr "መቀነሻ ወይንም ማሳደጊያ በሚታተመው formula የተወሰነ መጠን መፈጸሚያ " #: 01130000.xhp msgctxt "" @@ -4644,7 +4644,7 @@ "par_id32\n" "help.text" msgid "Reduces or enlarges the size of the printed formula by a specified factor." -msgstr "" +msgstr "መቀነሻ ወይንም ማሳደጊያ በሚታተመው formula የተወሰነ መጠን መፈጸሚያ " #: 01130000.xhp msgctxt "" @@ -4721,7 +4721,7 @@ "par_id40\n" "help.text" msgid "Check to print pages in reverse order." -msgstr "" +msgstr "ገጾችን በ ግልባጭ ደንብ ለማተም ምልክት ያድርጉ" #: 01130000.xhp msgctxt "" @@ -4739,7 +4739,7 @@ "36\n" "help.text" msgid "Preserves the page order of the original document." -msgstr "" +msgstr "የ ገጾችን ደንብ በ ዋናው ሰነድ መሰረት መጠበቂያ" #: 01130000.xhp msgctxt "" @@ -4748,7 +4748,7 @@ "16\n" "help.text" msgid "Opens the printer properties dialog. The printer properties vary according to the printer that you select." -msgstr "" +msgstr "የ ማተሚያ ባህሪዎች ንግግር መክፈቻ: የ ማተሚያ ባህሪዎች እርስዎ እንደመረጡት የ ማተሚያ አይነቶች ይለያያል " #: 01130000.xhp msgctxt "" @@ -4773,7 +4773,7 @@ "par_id44\n" "help.text" msgid "Specify which pages to include in the output." -msgstr "" +msgstr "በሚታተም ጊዜ የትኞቹ ገጾች እንደሚካተቱ መወሰኛ" #: 01130000.xhp msgctxt "" @@ -4805,7 +4805,7 @@ "par_id50\n" "help.text" msgid "Check to draw a border around each page." -msgstr "" +msgstr "በ እያንዳንዱ ገጽ ዙሪያ ድንበር እንዲሳል ምልክት ያድርጉ" #: 01130000.xhp msgctxt "" @@ -4829,7 +4829,7 @@ "par_id56\n" "help.text" msgid "Select margin between the printed pages and paper edge." -msgstr "" +msgstr "በሚታተመው ገጽ እና በ ወረቀቱ ጠርዝ መካከል የሚኖረውን የ መስመር ስፋት ይምረጡ" #: 01130000.xhp msgctxt "" @@ -4837,7 +4837,7 @@ "par_id58\n" "help.text" msgid "Select margin between individual pages on each sheet of paper." -msgstr "" +msgstr "ለ እያንዳንዱ በሚታተመው ገጽ እና በ ወረቀቱ ጠርዝ መካከል የሚኖረውን የ መስመር ስፋት ይምረጡ" #: 01130000.xhp msgctxt "" @@ -4901,7 +4901,7 @@ "par_id74\n" "help.text" msgid "Specifies whether to print the page name of a document." -msgstr "" +msgstr "የ ሰነዱ ገጽ ስም ይታተም እንደሆን መወሰኛ" #: 01130000.xhp msgctxt "" @@ -4909,7 +4909,7 @@ "par_id76\n" "help.text" msgid "Specifies whether to print the current date and time." -msgstr "" +msgstr "የ ዛሬ ቀን እና ሰአት ይታተም እንደሆን መወሰኛ" #: 01130000.xhp msgctxt "" @@ -4917,7 +4917,7 @@ "par_id78\n" "help.text" msgid "Specifies whether to print the pages that are currently hidden." -msgstr "" +msgstr "የ ተደበቁ ገጾች ይታተሙ እንደሆን መወሰኛ." #: 01130000.xhp msgctxt "" @@ -4925,7 +4925,7 @@ "par_id80\n" "help.text" msgid "Specifies to print in original colors." -msgstr "" +msgstr "በ ዋናው ቀለም ይታተም እንደሆን መወሰኛ" #: 01130000.xhp msgctxt "" @@ -4933,7 +4933,7 @@ "par_id82\n" "help.text" msgid "Specifies to print colors as grayscale." -msgstr "" +msgstr "ቀለሞች በ ጥቁር እና ነጭ ይታተሙ እንደሆን መወሰኛ" #: 01130000.xhp msgctxt "" @@ -4941,7 +4941,7 @@ "par_id84\n" "help.text" msgid "Specifies to print colors as black and white." -msgstr "" +msgstr "ቀለሞች በ ጥቁር እና ነጭ ይታተሙ እንደሆን መወሰኛ" #: 01130000.xhp msgctxt "" @@ -5115,7 +5115,7 @@ "5\n" "help.text" msgid "Lists the information that applies to the selected printer. " -msgstr "" +msgstr "ዝርዝር መረጃ ለተመረጠው ማተሚያ መፈጸሚያ ማሳያ " #: 01140000.xhp msgctxt "" @@ -5142,7 +5142,7 @@ "7\n" "help.text" msgid "Lists the installed printers on your operating system. To change the default printer, select a printer name from the list." -msgstr "" +msgstr "በ እርስዎ የ መስሪያ ስርአት ላይ የተገጠመውን ዝርዝር ማተሚያ ማሳያ: ነባር ማተሚያውን ለ መቀየር ማተሚያውን ከ ዝርዝሩ ውስጥ ይምረጡ" #: 01140000.xhp msgctxt "" @@ -5160,7 +5160,7 @@ "9\n" "help.text" msgid "Describes the current status of the selected printer. " -msgstr "" +msgstr "አሁን የተመረጠውን ማተሚያ ሁኔታ መግለጫ " #: 01140000.xhp msgctxt "" @@ -5232,7 +5232,7 @@ "17\n" "help.text" msgid "Changes the printer settings of your operating system for the current document." -msgstr "" +msgstr "የ እርስዎ መስሪያ ስርአት የ አሁኑን ሰነድ ለማተም የ ማተሚያ ማሰናጃው ይቀየራል" #: 01140000.xhp msgctxt "" @@ -5267,7 +5267,7 @@ "2\n" "help.text" msgid "Sends a copy of the current document to different applications." -msgstr "" +msgstr "የ አሁኑን ሰነድ ለ ተለያዩ መተግበሪያዎች ኮፒ መላኪያ" #: 01160000.xhp msgctxt "" @@ -5284,7 +5284,7 @@ "par_id4546342\n" "help.text" msgid "Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used." -msgstr "" +msgstr "አዲስ መስኮት መክፈቻ በ እርስዎ ነባር የ ኢ-ሜይል ፕሮግራም ከ አሁኑ ሰነድ ጋር እንደ ማያያዣ: የ OpenDocument ፋይል አቀራረብ ይጠቀማል" #: 01160000.xhp msgctxt "" @@ -5292,7 +5292,7 @@ "par_id6845301\n" "help.text" msgid "Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft file format is used." -msgstr "" +msgstr "አዲስ መስኮት መክፈቻ በ እርስዎ ነባር የ ኢ-ሜይል ፕሮግራም ከ አሁኑ ሰነድ ጋር እንደ ማያያዣ: የ Microsoft ፋይል አቀራረብ ይጠቀማል" #: 01160000.xhp msgctxt "" @@ -5308,7 +5308,7 @@ "par_id5917844\n" "help.text" msgid "Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used." -msgstr "" +msgstr "አዲስ መስኮት መክፈቻ በ እርስዎ ነባር የ ኢ-ሜይል ፕሮግራም ከ አሁኑ ሰነድ ጋር እንደ ማያያዣ: የ OpenDocument ፋይል አቀራረብ ይጠቀማል" #: 01160000.xhp msgctxt "" @@ -5324,7 +5324,7 @@ "par_id5759453\n" "help.text" msgid "Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft Excel file format is used." -msgstr "" +msgstr "አዲስ መስኮት መክፈቻ በ እርስዎ ነባር የ ኢ-ሜይል ፕሮግራም ከ አሁኑ ሰነድ ጋር እንደ ማያያዣ: የ Microsoft Excel ፋይል አቀራረብ ይጠቀማል" #: 01160000.xhp msgctxt "" @@ -5340,7 +5340,7 @@ "par_id7829218\n" "help.text" msgid "Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used." -msgstr "" +msgstr "አዲስ መስኮት መክፈቻ በ እርስዎ ነባር የ ኢ-ሜይል ፕሮግራም ከ አሁኑ ሰነድ ጋር እንደ ማያያዣ: የ OpenDocument ፋይል አቀራረብ ይጠቀማል" #: 01160000.xhp msgctxt "" @@ -5356,7 +5356,7 @@ "par_id8319650\n" "help.text" msgid "Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft PowerPoint file format is used." -msgstr "" +msgstr "አዲስ መስኮት መክፈቻ በ እርስዎ ነባር የ ኢ-ሜይል ፕሮግራም ከ አሁኑ ሰነድ ጋር እንደ ማያያዣ: የ Microsoft PowerPoint ፋይል አቀራረብ ይጠቀማል" #: 01160000.xhp msgctxt "" @@ -5372,7 +5372,7 @@ "par_id9085055\n" "help.text" msgid "Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used." -msgstr "" +msgstr "አዲስ መስኮት መክፈቻ በ እርስዎ ነባር የ ኢ-ሜይል ፕሮግራም ከ አሁኑ ሰነድ ጋር እንደ ማያያዣ: የ OpenDocument ፋይል አቀራረብ ይጠቀማል" #: 01160000.xhp msgctxt "" @@ -5388,7 +5388,7 @@ "par_id5421918\n" "help.text" msgid "Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft Word file format is used." -msgstr "" +msgstr "አዲስ መስኮት መክፈቻ በ እርስዎ ነባር የ ኢ-ሜይል ፕሮግራም ከ አሁኑ ሰነድ ጋር እንደ ማያያዣ: የ Microsoft Word ፋይል አቀራረብ ይጠቀማል" #: 01160000.xhp msgctxt "" @@ -5441,7 +5441,7 @@ "2\n" "help.text" msgid "Opens a new window in your default e-mail program with the current document as an attachment. The current file format is used. If the document is new and unsaved, the format specified in %PRODUCTNAME - PreferencesTools - Options - Load/Save - General is used." -msgstr "" +msgstr "አዲስ መስኮት መክፈቻ በ እርስዎ ነባር የ ኢ-ሜይል ፕሮግራም ከ አሁኑ ሰነድ ጋር እንደ ማያያዣ ሰነዱ አዲስ ከሆነ እና ቀደም ብሎ ያልተቀመጠ ከሆነ: አቀራረቡ ይወሰናል በ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - መጫኛ/ማስቀመጫ - ባጠቃላይን ይጠቀማል" #: 01160200.xhp msgctxt "" @@ -5449,7 +5449,7 @@ "par_id0807200809553672\n" "help.text" msgid "If the document is in HTML format, any embedded or linked images will not be sent with the e-mail." -msgstr "" +msgstr "ሰነዱ በ HTML አቀራረብ ከሆነ: ማንኛውም የተጣበቀ ወይም የተገናኘ ምስል በ ኢ-ሜይል አይላክም" #: 01160300.xhp msgctxt "" @@ -5616,7 +5616,7 @@ "3\n" "help.text" msgid "If you are saving a new file or a copy of a read-only file, the Save As dialog appears." -msgstr "" +msgstr "እርስዎ አዲስ ፋይል ወይንም ኮፒ ለ ንባብ-ብቻ ፋይል ካስቀመጡ የ ማስቀመጫ እንደ ንግግር ይታያል" #: 01190000.xhp msgctxt "" @@ -5793,7 +5793,7 @@ "17\n" "help.text" msgid "Displays the entire comment for the selected version." -msgstr "" +msgstr "ለ ተመረጠው እትም ጠቅላላ አስተያየቱን ያሳያል" #: 01190000.xhp msgctxt "" @@ -5829,7 +5829,7 @@ "23\n" "help.text" msgid "Compare the changes that were made in each version. If you want, you can Manage Changes." -msgstr "" +msgstr "በ እያንዳንዱ እትም ውስጥ የተደረገውን ለውጥ ያወዳድሩ እርስዎ ከፈለጉ ይችላሉ ለውጦቹን ማስተዳደር." #: 01990000.xhp msgctxt "" @@ -5855,7 +5855,7 @@ "5\n" "help.text" msgid "Lists the most recently opened files. To open a file in the list, click its name." -msgstr "" +msgstr "በቅርብ ጊዜ የተከፈቱ ፋይሎች ዝርዝር: ፋይል ለ መክፈት ከ ዝርዝር ውስጥ ስሙ ላይ ይጫኑ" #: 01990000.xhp msgctxt "" @@ -5906,7 +5906,7 @@ "par_idN10630\n" "help.text" msgid "To change the number of commands that you can undo, choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Memory, and enter a new value in the number of steps box." -msgstr "" +msgstr "መተው የሚፈልጉትን የ ትእዛዞች ቁጥር ለ መቀየር ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - $[officename] - ማስታወሻ, እና አዲስ ቁጥር ያስገቡ በ ሳጥኑ ውስጥ" #: 02010000.xhp msgctxt "" @@ -5969,7 +5969,7 @@ "10\n" "help.text" msgid "The Undo list is cleared when you apply a new layout to a slide." -msgstr "" +msgstr "የ መተው ዝርዝር ይጸዳል እርስዎ ለ ተንሸራታች አዲስ እቅድ በሚፈጽሙ ጊዜ" #: 02020000.xhp msgctxt "" @@ -6003,7 +6003,7 @@ "2\n" "help.text" msgid "Reverses the action of the last Undo command. To select the Undo step that you want to reverse, click the arrow next to the Redo icon on the Standard bar." -msgstr "" +msgstr "መጨረሻ የ ሰሩትን መገልበጫ መተው ትእዛዝ: ለ መምረጥ የ መተው ደረጃን እርስዎ መገልበጥ የሚፈልጉትን: ይጫኑ ቀስቱ ላይ የ እንደገና መስሪያ ምልክት አጠገብ ያለውን በ መደበኛ እቃ መደርደሪያ ላይ" #: 02030000.xhp msgctxt "" @@ -6071,7 +6071,7 @@ "2\n" "help.text" msgid "Removes and copies the selection to the clipboard." -msgstr "" +msgstr "ማስወገጃ እና ኮፒ ማድረጊያ የተመረጠውን ወደ ቁራጭ ሰሌዳ" #: 02050000.xhp msgctxt "" @@ -6273,7 +6273,7 @@ "40\n" "help.text" msgid "Select a format for the clipboard contents that you want to paste. " -msgstr "" +msgstr "መለጠፍ ለሚፈልጉት የ ቁራጭ ሰሌዳ ይዞታዎች አቀራረብ ይምረጡ " #: 02070000.xhp msgctxt "" @@ -8697,7 +8697,7 @@ "65\n" "help.text" msgid "Finds the Relief attribute." -msgstr "መፈለጊያ የ ክፍተት ባህሪ." +msgstr "መፈለጊያ የ ክፍተት ባህሪ" #: 02100200.xhp msgctxt "" @@ -8715,7 +8715,7 @@ "67\n" "help.text" msgid "Finds the Rotation attribute." -msgstr "" +msgstr "መፈለጊያ የ ማዞሪያ ባህሪ" #: 02100200.xhp msgctxt "" @@ -8733,7 +8733,7 @@ "29\n" "help.text" msgid "Finds the Shadowed attribute." -msgstr "" +msgstr "መፈለጊያ የ ጥላ ባህሪ" #: 02100200.xhp msgctxt "" @@ -8787,7 +8787,7 @@ "21\n" "help.text" msgid "Finds the Font size/Font height attribute." -msgstr "" +msgstr "መፈለጊያ የ የ ፊደል መጠን/የ ፊደል እርዝመት ባህሪ" #: 02100200.xhp msgctxt "" @@ -8805,7 +8805,7 @@ "33\n" "help.text" msgid "Finds the Bold or the Bold and Italic attribute." -msgstr "" +msgstr "መፈለጊያ የ ማድመቂያ ወይንም የ ማድመቂያ እና ማዝመሚያ ባህሪ" #: 02100200.xhp msgctxt "" @@ -8823,7 +8823,7 @@ "27\n" "help.text" msgid "Finds the Italic or the Bold and Italic attribute." -msgstr "" +msgstr "መፈለጊያ የ ማዝመሚያ ወይንም የ ማድመቂያ እና ማዝመሚያ ባህሪ" #: 02100200.xhp msgctxt "" @@ -8841,7 +8841,7 @@ "43\n" "help.text" msgid "Finds the Orphan Control attribute." -msgstr "" +msgstr "መፈለጊያ የ ብቸኛ መቆጣጠሪያ ባህሪ" #: 02100200.xhp msgctxt "" @@ -8859,7 +8859,7 @@ "55\n" "help.text" msgid "Finds the Break With Page Style attribute." -msgstr "" +msgstr "መፈለጊያ የ መጨረሻ በ ገጽ ዘዴ ባህሪ" #: 02100200.xhp msgctxt "" @@ -8877,7 +8877,7 @@ "49\n" "help.text" msgid "Finds the Hyphenation attribute." -msgstr "" +msgstr "መፈለጊያ የ ጭረት ባህሪ" #: 02100200.xhp msgctxt "" @@ -8895,7 +8895,7 @@ "69\n" "help.text" msgid "Finds the Scale attribute." -msgstr "" +msgstr "መፈለጊያ የ መጠን ባህሪ" #: 02100200.xhp msgctxt "" @@ -8913,7 +8913,7 @@ "25\n" "help.text" msgid "Finds the Language attribute (for spelling)." -msgstr "" +msgstr "መፈለጊያ የ ቋንቋ ባህሪ (ለ ፊደል ማረሚያ)" #: 02100200.xhp msgctxt "" @@ -8922,7 +8922,7 @@ "46\n" "help.text" msgid "Tab Stops" -msgstr "" +msgstr "ማስረጊያ ማስቆሚያ" #: 02100200.xhp msgctxt "" @@ -8967,7 +8967,7 @@ "71\n" "help.text" msgid "Finds the Vertical text alignment attribute." -msgstr "" +msgstr "መፈለጊያ በ ቁመት ማሰለፊያ ባህሪ" #: 02100200.xhp msgctxt "" @@ -9021,7 +9021,7 @@ "37\n" "help.text" msgid "Finds the Line spacing (single line, 1.5 lines, double, proportional, at least, lead) attribute." -msgstr "" +msgstr "መፈለጊያ የ መስመር ክፍተት (ነጠላ መስመር 1.5 መስመሮች ድርብ ተመጣጣኝ ቢያንስ ቀዳሚ) ባህሪ" #: 02100300.xhp msgctxt "" @@ -9266,7 +9266,7 @@ "29\n" "help.text" msgid "Updates the contents of the selection." -msgstr "" +msgstr "የተመረጠውን ይዞታ ማሻሻያ" #: 02110000.xhp msgctxt "" @@ -9593,7 +9593,7 @@ "bm_id3156156\n" "help.text" msgid "opening;documents with links links; updating specific links updating; links, on opening links; opening files with" -msgstr "" +msgstr "መክፈቻ;ሰነዶች በ አገናኞች አገናኞች; ማሻሻያ የተወሰነ አገናኞች ማሻሻያ; አገናኞች, መክፈቻ በ አገናኞች; መክፈቻ ፋይሎች በ" #: 02180000.xhp msgctxt "" @@ -9762,7 +9762,7 @@ "18\n" "help.text" msgid "Only updates the link when you click the Update button." -msgstr "" +msgstr "አገናኝ ማሻሻያ በሚጫኑ ጊዜ ብቻ የ ማሻሻያ ቁልፍ" #: 02180000.xhp msgctxt "" @@ -9798,7 +9798,7 @@ "22\n" "help.text" msgid "Change the source file for the selected link." -msgstr "" +msgstr "የ ተመረጠውን አገናኝ ፋይል ምንጭ መቀየሪያ" #: 02180000.xhp msgctxt "" @@ -9827,13 +9827,12 @@ msgstr "አገናኞቹን ማሻሻያ" #: 02180100.xhp -#, fuzzy msgctxt "" "02180100.xhp\n" "bm_id3149877\n" "help.text" msgid "links; modifyingchanging; links" -msgstr "እቃዎች; ማረሚያማረሚያ; እቃዎች" +msgstr "አገናኞች; መቀየሪያመቀየሪያ; አገናኞች" #: 02180100.xhp msgctxt "" @@ -9851,7 +9850,7 @@ "2\n" "help.text" msgid "Change the properties for the selected DDE link." -msgstr "" +msgstr "የተመረጠውን ባህሪዎች መቀየሪያ የ DDE link." #: 02180100.xhp msgctxt "" @@ -9869,7 +9868,7 @@ "4\n" "help.text" msgid "Lets you set the properties for the selected link." -msgstr "" +msgstr "የ ተመረጠውን አገናኝ ባህሪዎች ማሰናጃ" #: 02180100.xhp msgctxt "" @@ -9939,7 +9938,7 @@ "bm_id3146946\n" "help.text" msgid "plug-ins; activating and deactivatingactivating;plug-insdeactivating; plug-ins" -msgstr "" +msgstr "ተሰ-ኪዎች; ማስነሻ እና ማቦዘኛማስነሻ;ተሰ-ኪዎችማቦዘኛ; ተሰ-ኪዎች" #: 02190000.xhp msgctxt "" @@ -9983,7 +9982,7 @@ "2\n" "help.text" msgid "Lets you edit a selected object in your file that you inserted with the Insert - Object command." -msgstr "" +msgstr "በ እርስዎ ፋይል ውስጥ በ መምረጥ ያስገቡትን እቃ ማረም ያስችሎታል በ ማስገቢያ - እቃ ትእዛዝ" #: 02200000.xhp msgctxt "" @@ -9999,7 +9998,7 @@ "par_id1717886\n" "help.text" msgid "Resizes the object to the original size." -msgstr "" +msgstr "እቃውን ወደ ዋናው መጠን እንደገና መመጠኛ" #: 02200100.xhp msgctxt "" @@ -10033,7 +10032,7 @@ "2\n" "help.text" msgid "Lets you edit a selected object in your file that you inserted with the Insert – Object command." -msgstr "" +msgstr "በ እርስዎ ፋይል ውስጥ በ መምረጥ ያስገቡትን እቃ ማረም ያስችሎታል በ ማስገቢያ - እቃ ትእዛዝ" #: 02200200.xhp msgctxt "" @@ -10201,7 +10200,7 @@ "13\n" "help.text" msgid "Add or remove a scrollbar from the selected floating frame." -msgstr "" +msgstr "የ ተመረጠውን ተንሳፋፊ ክፈፍ መሸብለያ መጨመሪያ ወይንም ማስወገጃ" #: 02210101.xhp msgctxt "" @@ -10219,7 +10218,7 @@ "15\n" "help.text" msgid "Displays the scrollbar for the floating frame." -msgstr "" +msgstr "የ ተመረጠውን ተንሳፋፊ ክፈፍ መሸብለያ ማሳያ" #: 02210101.xhp msgctxt "" @@ -10237,7 +10236,7 @@ "17\n" "help.text" msgid "Hides the scrollbar for the floating frame." -msgstr "" +msgstr "የ ተመረጠውን ተንሳፋፊ ክፈፍ መሸብለያ መደበቂያ" #: 02210101.xhp msgctxt "" @@ -10273,7 +10272,7 @@ "21\n" "help.text" msgid "Displays or hides the border of the floating frame." -msgstr "" +msgstr "የ ተመረጠውን ተንሳፋፊ ክፈፍ ድንበር ማሳያ ወይንም መደበቂያ" #: 02210101.xhp msgctxt "" @@ -10291,7 +10290,7 @@ "23\n" "help.text" msgid "Displays the border of the floating frame." -msgstr "" +msgstr "የ ተመረጠውን ተንሳፋፊ ክፈፍ ድንበር ማሳያ " #: 02210101.xhp msgctxt "" @@ -10309,7 +10308,7 @@ "25\n" "help.text" msgid "Hides the border of the floating frame." -msgstr "" +msgstr "የ ተመረጠውን ተንሳፋፊ ክፈፍ ድንበር መደበቂያ " #: 02210101.xhp msgctxt "" @@ -10381,7 +10380,7 @@ "35\n" "help.text" msgid "Applies the default spacing." -msgstr "" +msgstr "ነባር ክፍተት መፈጸሚያ" #: 02220000.xhp msgctxt "" @@ -10434,7 +10433,7 @@ "7\n" "help.text" msgid "Applies the changes that you made to the image map." -msgstr "" +msgstr "እርስዎ በ ምስል ካርታ ላይ የፈጸሙትን ለውጦች መፈጸሚያ" #: 02220000.xhp msgctxt "" @@ -10469,7 +10468,7 @@ "10\n" "help.text" msgid "Loads an existing image map in the MAP-CERN, MAP-NCSA or SIP StarView ImageMap file format." -msgstr "" +msgstr "የነበረውን የ ምስል ካርታ መጫኛ በ MAP-CERN, MAP-NCSA ወይንም SIP StarView ImageMap ፋይል አቀራረብ" #: 02220000.xhp msgctxt "" @@ -10504,7 +10503,7 @@ "13\n" "help.text" msgid "Saves the image map in the MAP-CERN, MAP-NCSA or SIP StarView ImageMap file format." -msgstr "" +msgstr "የ ምስል ካርታ ማስቀመጫ በ MAP-CERN, MAP-NCSA ወይንም SIP StarView ImageMap ፋይል አቀራረብ" #: 02220000.xhp msgctxt "" @@ -11004,7 +11003,7 @@ "35\n" "help.text" msgid "List of frame types" -msgstr "" +msgstr "የ ክፈፍ አይነቶች ዝርዝር" #: 02220000.xhp msgctxt "" @@ -11226,14 +11225,13 @@ msgstr "ለውጦች ማስተዳደሪያ" #: 02230000.xhp -#, fuzzy msgctxt "" "02230000.xhp\n" "hd_id3145072\n" "3\n" "help.text" msgid "Comment on Change" -msgstr "አስተያየት" +msgstr "ለ ለውጡ አስተያየት" #: 02230000.xhp msgctxt "" @@ -11376,7 +11374,7 @@ "16\n" "help.text" msgid "Insert from clipboard" -msgstr "" +msgstr "ከ ቁራጭ ሰሌዳ ማስገቢያ" #: 02230100.xhp msgctxt "" @@ -11385,7 +11383,7 @@ "20\n" "help.text" msgid "Change cell contents by insertions and deletions" -msgstr "" +msgstr "የ ክፍል ይዞታዎች መቀየሪያ በ ማስገባት ወይንም በ ማጥፊት" #: 02230100.xhp msgctxt "" @@ -11438,7 +11436,7 @@ "tit\n" "help.text" msgid "Protect Changes" -msgstr "" +msgstr "ለውጦችን መከልከያ" #: 02230150.xhp msgctxt "" @@ -11529,14 +11527,13 @@ msgstr "የ ተመዘገቡ ለውጦችን ማሳያ ወይንም መደበቂያ" #: 02230200.xhp -#, fuzzy msgctxt "" "02230200.xhp\n" "hd_id3147336\n" "10\n" "help.text" msgid "Show accepted changes" -msgstr "ማመሳከሪያ ማሰናጃ " +msgstr "የተቀበሉትን ለውጦችን ማሳያ" #: 02230200.xhp msgctxt "" @@ -11548,14 +11545,13 @@ msgstr "የተቀበሉትን ለውጦችን ማሳያ ወይንም መደበቂያ" #: 02230200.xhp -#, fuzzy msgctxt "" "02230200.xhp\n" "hd_id3149956\n" "12\n" "help.text" msgid "Show rejected changes " -msgstr "ማመሳከሪያ ማሰናጃ " +msgstr "ያልተቀበሉትን ለውጦችን ማሳያ " #: 02230200.xhp msgctxt "" @@ -11598,7 +11594,7 @@ "2\n" "help.text" msgid "Enter a comment for the recorded change." -msgstr "" +msgstr "ለ ተመዘገበው ለውጥ አስተያየት ያስገቡ" #: 02230300.xhp msgctxt "" @@ -11624,7 +11620,7 @@ "tit\n" "help.text" msgid "Manage changes" -msgstr "" +msgstr "የ ለውጦች አስተዳደሪ" #: 02230400.xhp msgctxt "" @@ -11633,7 +11629,7 @@ "1\n" "help.text" msgid "Manage changes" -msgstr "" +msgstr "የ ለውጦች አስተዳደሪ" #: 02230400.xhp msgctxt "" @@ -11668,7 +11664,7 @@ "2\n" "help.text" msgid "Accept or reject individual changes." -msgstr "" +msgstr "እያንዳንዱን ለውጦች ተቀብያለሁ ወይንም አልቀበልም" #: 02230401.xhp msgctxt "" @@ -11731,7 +11727,7 @@ "34\n" "help.text" msgid "black" -msgstr "" +msgstr "ጥቁር" #: 02230401.xhp msgctxt "" @@ -11848,7 +11844,7 @@ "9\n" "help.text" msgid "Lists the changes that were made in the document." -msgstr "" +msgstr "በ ሰነዱ ላይ የተቀየሩ ዝርዝሮች" #: 02230401.xhp msgctxt "" @@ -11866,7 +11862,7 @@ "11\n" "help.text" msgid "Lists the cells with contents that were changed. " -msgstr "" +msgstr "በ ሰነዱ ላይ የ ክፍሎች ይዞታዎች የተቀየሩ ዝርዝሮች " #: 02230401.xhp msgctxt "" @@ -11884,7 +11880,7 @@ "13\n" "help.text" msgid "Lists the user who made the change." -msgstr "" +msgstr "ለውጦችን የፈጸሙ ተጠቃሚዎች ዝርዝሮች" #: 02230401.xhp msgctxt "" @@ -11902,7 +11898,7 @@ "15\n" "help.text" msgid "Lists the date and time that the change was made." -msgstr "" +msgstr "ለውጦቹ የፈጸሙበትን ቀን እና ሰአት ዝርዝር " #: 02230401.xhp msgctxt "" @@ -11920,7 +11916,7 @@ "17\n" "help.text" msgid "Lists the comments that are attached to the change." -msgstr "" +msgstr "ከ ለውጡ ጋር የተያያዙ አስተያየቶች ዝርዝር " #: 02230401.xhp msgctxt "" @@ -12019,7 +12015,7 @@ "42\n" "help.text" msgid "If you made changes by choosing Format - AutoCorrect - Apply and Edit Changes, the Undo button appears in the dialog. Reverse the last Accept or Reject command." -msgstr "" +msgstr "እርስዎ ለውጥ ከፈጸሙ በ መምረጥ አቀራረብ - በራሱ አራሚ - ለውጦችን መፈጸሚያ እና ማረሚያ, የ መተው ቁልፍ ይታያል በ ንግግር ውስጥ እንደ ነበር መመለሻ መጨረሻ የተቀበሉትን ወይም ትእዛዙን አልቀበልም" #: 02230401.xhp msgctxt "" @@ -12028,7 +12024,7 @@ "43\n" "help.text" msgid "There are additional commands in the context menu of the list:" -msgstr "" +msgstr "ተጨማሪ ትእዛዞች አሉ ለ አገባብ ዝርዝር በ ዝርዝር ውስጥ:" #: 02230401.xhp msgctxt "" @@ -12046,7 +12042,7 @@ "45\n" "help.text" msgid "Edit the comment for the selected change." -msgstr "" +msgstr "ለ ተመረጠው ለውጥ አስተያየት ማረሚያ" #: 02230401.xhp msgctxt "" @@ -12064,7 +12060,7 @@ "47\n" "help.text" msgid "Sorts the list according to the column headings." -msgstr "" +msgstr "ዝርዝሩን እንደ አምድ ራስጌዎች መለያ" #: 02230401.xhp msgctxt "" @@ -12082,7 +12078,7 @@ "49\n" "help.text" msgid "Sorts the list according to the type of change." -msgstr "" +msgstr "ዝርዝሩን እንደ ለውጦቹ አይነት መለያ" #: 02230401.xhp msgctxt "" @@ -12100,7 +12096,7 @@ "51\n" "help.text" msgid "Sorts the list according to the Author." -msgstr "" +msgstr "ዝርዝሩን እንደ ደራሲው መለያ" #: 02230401.xhp msgctxt "" @@ -12118,7 +12114,7 @@ "53\n" "help.text" msgid "Sorts the list according to the date and time." -msgstr "" +msgstr "ዝርዝሩን እንደ ቀን እና ሰአት መለያ" #: 02230401.xhp msgctxt "" @@ -12224,7 +12220,7 @@ "18\n" "help.text" msgid "Enters the current date and time into the corresponding boxes." -msgstr "" +msgstr "የ ዛሬን ቀን እና ሰአት ወደ ተስማሚው ሳጥኖች ውስጥ ማስገቢያ" #: 02230402.xhp msgctxt "" @@ -12297,14 +12293,13 @@ msgstr "" #: 02230402.xhp -#, fuzzy msgctxt "" "02230402.xhp\n" "hd_id3159149\n" "20\n" "help.text" msgid "Shrink/Max " -msgstr "አገናኝ " +msgstr "ማሳነሻ/ከፍተኛ " #: 02230402.xhp msgctxt "" @@ -12435,7 +12430,7 @@ "tit\n" "help.text" msgid "Bibliography Database" -msgstr "" +msgstr "Bibliography ዳታቤዝ" #: 02250000.xhp msgctxt "" @@ -12444,7 +12439,7 @@ "1\n" "help.text" msgid "Bibliography Database" -msgstr "" +msgstr "Bibliography ዳታቤዝ" #: 02250000.xhp msgctxt "" @@ -12498,7 +12493,7 @@ "24\n" "help.text" msgid "Go to the first record in the table." -msgstr "" +msgstr "በ ሰንጠረዡ ውስጥ ወደ መጀመሪያው መዝገብ መሄጃ" #: 02250000.xhp msgctxt "" @@ -12510,14 +12505,13 @@ msgstr "በ ሰንጠረዡ ውስጥ ቀደም ወዳለው መዝገብ መሄጃ" #: 02250000.xhp -#, fuzzy msgctxt "" "02250000.xhp\n" "par_id3146795\n" "26\n" "help.text" msgid "Go to the next record in the table." -msgstr "Iወደ አሁኑ ሰንጠረዥ አዲስ መዝገብ ማስገቢያ" +msgstr "በ ሰንጠረዡ ውስጥ ወደሚቀጥለው መዝገብ መሄጃ" #: 02250000.xhp msgctxt "" @@ -12526,7 +12520,7 @@ "27\n" "help.text" msgid "Go to the last record in the table." -msgstr "" +msgstr "በ ሰንጠረዡ ውስጥ ወደ መጨረሻው መዝገብ መሄጃ" #: 02250000.xhp msgctxt "" @@ -12589,7 +12583,7 @@ "9\n" "help.text" msgid "Finding and Filtering Records" -msgstr "" +msgstr "መዝገቦችን መፈለጊያ እና ማጣሪያ" #: 02250000.xhp msgctxt "" @@ -12607,7 +12601,7 @@ "28\n" "help.text" msgid "Entering Search key" -msgstr "" +msgstr "መፈለጊያ ቁልፍ ማስገቢያ" #: 02250000.xhp msgctxt "" @@ -12776,7 +12770,7 @@ "bm_id3154682\n" "help.text" msgid "zooming;page views views; scaling screen; scaling pages; scaling" -msgstr "" +msgstr "ማሳያ;ገጽ መመልከቻ መመልከቻ; መመጠኛ screen; መመጠኛ ገጾች; መመጠኛ" #: 03010000.xhp msgctxt "" @@ -13041,7 +13035,7 @@ "bm_id3159079\n" "help.text" msgid "IME;showing/hidinginput method window" -msgstr "" +msgstr "IME;ማሳያ/መደበቂያየ ማስገቢያ ዘዴ መስኮት" #: 03040000.xhp msgctxt "" @@ -13059,7 +13053,7 @@ "2\n" "help.text" msgid "Shows or hides the Input Method Engine (IME) status window." -msgstr "" +msgstr "ማሳያ ወይንም መደበቂያ የ ማስገቢያ ዘዴ (IME) ሁኔታ መስኮት" #: 03040000.xhp msgctxt "" @@ -13136,7 +13130,7 @@ "2\n" "help.text" msgid "Shows or hides the Status Bar at the bottom edge of the window." -msgstr "" +msgstr "ማሳያ ወይንም መደበቂያ የ ሁኔታዎች መደርደሪያ በ መስኮቱ ከ ታች በኩል" #: 03110000.xhp msgctxt "" @@ -13152,7 +13146,7 @@ "bm_id3160463\n" "help.text" msgid "full screen viewscreen; full screen viewscomplete screen viewviews;full screen" -msgstr "" +msgstr "በ ሙሉ መመልከቻ ዘዴመመልከቻ; በ ሙሉ መመልከቻ ዘዴ በ ሙሉ መመልከቻ ዘዴመመልከቻ;በ ሙሉ መመልከቻ ዘዴ" #: 03110000.xhp msgctxt "" @@ -13170,7 +13164,7 @@ "2\n" "help.text" msgid "Shows or hides the menus and toolbars in Writer or Calc. To exit the full screen mode, click the Full Screen On/Off button." -msgstr "" +msgstr "ማሳያ ወይንም መደበቂያ የ እቃ መደርደሪያ ወይንም ዝርዝር በ መጻፊያ ወይንም ሰንጠረዥ ውስጥ: ከ ሙሉ መመልከቻ ዘዴ ለመውጣት ይጫኑ የ ሙሉ መመልከቻ ዘዴ ማብሪያ/ማጥፊያ ቁልፍ." #: 03110000.xhp msgctxt "" @@ -13179,7 +13173,7 @@ "29\n" "help.text" msgid "In Writer and Calc, you can also use the shortcut keys CommandCtrl+Shift+J to switch between the normal and full screen mode." -msgstr "" +msgstr "በ መጻፊያ እና በ ሰንጠረዥ ውስጥ አቋራጭ ቁልፎችን መጠቀም ይችላሉ ትእዛዝCtrl+Shift+J በ መደበኛ እና በ ሙሉ መመልከቻ ዘዴ ለመቀያየር" #: 03110000.xhp msgctxt "" @@ -13188,7 +13182,7 @@ "28\n" "help.text" msgid "You can still use shortcut keys in Full Screen mode, even though the menus are unavailable. To open the View menu, press Alt+V. " -msgstr "" +msgstr "እርስዎ አቋራጭ ክፍሎችን መጠቀም ይችላሉ ለ ሙሉ መመልከቻ ዘዴ: ምንም እንኳን ዝርዝሩ ባይኖርም ለ መክፈት የ መመልከቻ ዝርዝር: ይጫኑ Alt+V. " #: 03150100.xhp msgctxt "" @@ -13232,7 +13226,7 @@ "4\n" "help.text" msgid "Performs the deletion in the current file." -msgstr "" +msgstr "በ አሁኑ ፋይል ውስጥ ማጥፋት ተፈጽሟል" #: 03150100.xhp msgctxt "" @@ -13250,7 +13244,7 @@ "6\n" "help.text" msgid "Performs the deletion in all selected files." -msgstr "" +msgstr "በሁሉም በተመርረጡት ፋይሎች ውስጥ ማጥፋት ተፈጽሟል" #: 03150100.xhp msgctxt "" @@ -13268,7 +13262,7 @@ "8\n" "help.text" msgid "Rejects the deletion for the current file." -msgstr "" +msgstr "የ አሁኑን ፋይል ማጥፋት አይቻልም" #: 03150100.xhp msgctxt "" @@ -13320,7 +13314,7 @@ "2\n" "help.text" msgid "Show or hides the Color Bar. To modify or change the color table that is displayed, choose Format - Area, and then click on the Colors tab." -msgstr "" +msgstr "ማሳያ ወይንም መደበቂያ የ ቀለም መደርደሪያ. ለማሻሻል ወይንም ለመቀየር የሚታየውን የ ቀለም ሰንጠረዥ ይምረጡ አቀራረብ - ቦታ, እና ከዛ ይጫኑ የ ቀለሞች tab." #: 03170000.xhp msgctxt "" @@ -13338,7 +13332,7 @@ "9\n" "help.text" msgid "You can also drag a color from the Color Bar and drop it on a draw object on your slide." -msgstr "" +msgstr "ቀለም መጎተት ይችላሉ ከ ቀለም መደርደሪያ ላይ እና በሚሳለው እቃ ላይ ይጣሉት በ ተንሸራታቹ ላይ" #: 03170000.xhp msgctxt "" @@ -13382,7 +13376,7 @@ "3\n" "help.text" msgid "Customize" -msgstr "" +msgstr "Customize" #: 03990000.xhp msgctxt "" @@ -13390,7 +13384,7 @@ "par_id2789086\n" "help.text" msgid "Opens a dialog where you can add, edit, and remove icons." -msgstr "" +msgstr "ምልክቶች ለመጨመር: ለማረም እና ለማስወገድ ንግግር መክፈቻ" #: 03990000.xhp msgctxt "" @@ -13406,7 +13400,7 @@ "par_id1886654\n" "help.text" msgid "Choose View - Toolbars - Reset to reset the toolbars to their default context sensitive behavior. Now some toolbars will be shown automatically, dependent on the context." -msgstr "" +msgstr "ይምረጡ መመልከቻ - እቃ መደርደሪያ - እንደ ነበር መመለሻ እቃ መደርደሪያውን እንደ ነበር ለመመለስ ወደ ነባር ይዞታቸው: አንዳንድ እቃ መደርደሪያ ራሱ በራሱ ይታያል እንደ አገባቡ አይነት" #: 04050000.xhp msgctxt "" @@ -13422,7 +13416,7 @@ "bm_id3154100\n" "help.text" msgid "comments;inserting/editing/deleting/printing inserting; comments editing; comments deleting;comments Navigator;comments printing;comments records; inserting comments remarks, see also comments" -msgstr "" +msgstr "አስተያየቶች;ማስገቢያ/ማረሚያ/ማጥፊያ/ማተሚያ ማስገቢያ; አስተያየቶች ማረሚያ; አስተያየቶች ማጥፊያ;አስተያየቶች መቃኛ;አስተያየቶች ማተሚያ;አስተያየቶች መዝገቦች; ማስገቢያ አስተያየቶች አስተያየት, ይህን ይመልከቱ አስተያየቶች" #: 04050000.xhp msgctxt "" @@ -13464,7 +13458,7 @@ "par_id0915200910571516\n" "help.text" msgid "In Calc, Draw, and Impress, the command Insert - Comment inserts a comment." -msgstr "" +msgstr "በ ሰንጠረዥ መሳያ እና ማስደነቂያ ውስጥ በ ትእዛዝ ማስገቢያ - አስተያየት አስተያየት ያስገባል" #: 04050000.xhp msgctxt "" @@ -13480,7 +13474,7 @@ "par_id6718649\n" "help.text" msgid "The comments by different authors get different colors. Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - User Data to enter your name so that it can show up as the comment author." -msgstr "" +msgstr "በተለያዩ ደራሲዎች የተጻፉ አስተያየቶች የተለያየ ቀለም ይኖራቸዋል: ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME - የተጠቃሚ ዳታ የ እርስዎን ስም ለማስገባት እንደ አስተያየት ደራሲ" #: 04050000.xhp msgctxt "" @@ -13520,16 +13514,15 @@ "par_id0522200809383485\n" "help.text" msgid "Delete all comments by this author in the current document." -msgstr "" +msgstr "በ አሁኑ ሰነድ ውስጥ በዚህ ደራሲ የተጻፉ ሁሉንም አስተያየቶች ማጥፊያ" #: 04050000.xhp -#, fuzzy msgctxt "" "04050000.xhp\n" "par_id0522200809383428\n" "help.text" msgid "Delete all comments in the current document." -msgstr "የአሁኑን አስተያየት ማጥፊያ" +msgstr "በ አሁኑ ሰነድ ውስጥ ያሉ ሁሉንም አስተያየቶች ማጥፊያ" #: 04050000.xhp msgctxt "" @@ -13553,7 +13546,7 @@ "par_id0804200803435883\n" "help.text" msgid "Use View - Comments to show or hide all comments (not available in Calc)." -msgstr "" +msgstr "ይጠቀሙ መመልከቻ - አስተያየቶች ሁሉንም አስተያየቶች ለማሳያ ወይንም ለመደበቂያ (በ ሰንጠረዥ ውስጥ አይሰራም)." #: 04050000.xhp msgctxt "" @@ -13569,7 +13562,7 @@ "hd_id3445539\n" "help.text" msgid "Navigating from comment to comment in text documents" -msgstr "" +msgstr "በ ጽሁፍ ሰነዶች ውስጥ ከ አስተያየት ወደ አስተያየት መቃኛ" #: 04050000.xhp msgctxt "" @@ -13577,7 +13570,7 @@ "par_id4271370\n" "help.text" msgid "When the cursor is inside a comment, you can press Command+OptionCtrl+Alt+Page Down to jump to the next comment, or press Command+OptionCtrl+Alt+Page Up to jump to the previous comment." -msgstr "" +msgstr "መጠቆሚያው በ አስተያየት መስጫው ውስጥ ሲሆን: መጫን ይችላሉ ትእዛዝ+ምርጫCtrl+Alt+ገጽ ወደ ታች ለ መዝለል ወደሚቀጥለው አስተያየት ወይንም ይጫኑ ትእዛዝ+ምርጫCtrl+Alt+ገጽ ወደ ላይ ለ መዝለል ቀደም ወዳለው አስተያየት ለመሄድ" #: 04050000.xhp msgctxt "" @@ -13617,7 +13610,7 @@ "hd_id0915200910571612\n" "help.text" msgid "Comments in spreadsheets" -msgstr "" +msgstr "አስተያየቶች በ ሰንጠረዥ ውስጥ" #: 04050000.xhp msgctxt "" @@ -13659,7 +13652,7 @@ "par_id9499496\n" "help.text" msgid "To delete a comment, right-click the cell, then choose Delete Comment." -msgstr "" +msgstr "አስተያየት ለማጥፋት በ ቀኝ-ይጫኑ ክፍሉን እና ከዛ ይምረጡ አስተያየት ማጥፊያ." #: 04050000.xhp msgctxt "" @@ -13676,7 +13669,7 @@ "8\n" "help.text" msgid "To set the printing options for comments in your spreadsheet, choose Format - Page, and then click the Sheet tab." -msgstr "" +msgstr "በ እርስዎ ሰንጠረዥ ውስጥ ለ አስተያየቶች ማተሚያ ምርጫ ለማሰናዳት ይምረጡ አቀራረብ - ገጽ, እና ከዛ ይምረጡ የ ወረቀት tab." #: 04050000.xhp msgctxt "" @@ -13710,7 +13703,7 @@ "2\n" "help.text" msgid "Inserts a scanned image into your document." -msgstr "" +msgstr "ወደ እርስዎ ሰነድ ውስጥ የታሰሱ ምስሎች ማስገቢያ" #: 04060000.xhp msgctxt "" @@ -13763,7 +13756,7 @@ "2\n" "help.text" msgid "Selects the scanner that you want to use." -msgstr "" +msgstr "መጠቀም የሚፈልጉትን ማሰሻ ይምረጡ" #: 04060200.xhp msgctxt "" @@ -13815,7 +13808,7 @@ "2\n" "help.text" msgid "Inserts special characters from the installed fonts." -msgstr "" +msgstr "ከ ተገጠሙት ፊደሎች የተለየ ባህሪዎች ማስገቢያ" #: 04100000.xhp msgctxt "" @@ -13878,7 +13871,7 @@ "6\n" "help.text" msgid "Click the special character(s) that you want to insert, and then click OK." -msgstr "" +msgstr "ይጫኑ የተለየ ባህሪ(ዎች) ማስገባት የሚፈልጉትን እና ከዛ ይጫኑ እሺ." #: 04100000.xhp msgctxt "" @@ -13922,17 +13915,16 @@ "2\n" "help.text" msgid "Inserts a picture into the current document." -msgstr "" +msgstr "ወደ አሁኑ ሰነድ ስእል ማስገቢያ " #: 04140000.xhp -#, fuzzy msgctxt "" "04140000.xhp\n" "hd_id3149760\n" "17\n" "help.text" msgid "Frame Style" -msgstr "ዘዴ መፍጠሪያ" +msgstr "የ ክፈፍ ዘዴ" #: 04140000.xhp msgctxt "" @@ -13941,7 +13933,7 @@ "18\n" "help.text" msgid "Select the frame style for the graphic." -msgstr "" +msgstr "ለ ንድፍ የ ክፈፍ ዘዴ ይምረጡ" #: 04140000.xhp msgctxt "" @@ -13959,7 +13951,7 @@ "7\n" "help.text" msgid "Inserts the selected graphic file as a link." -msgstr "" +msgstr "የተመረጠውን የ ንድፍ ፋይል እንደ አገናኝ ማስገቢያ " #: 04140000.xhp msgctxt "" @@ -13977,7 +13969,7 @@ "9\n" "help.text" msgid "Displays a preview of the selected graphic file." -msgstr "" +msgstr "የተመረጠውን የ ንድፍ ፋይል በ ቅድመ እይታ ማሳያ" #: 04150000.xhp msgctxt "" @@ -14042,7 +14034,6 @@ msgstr "Formula" #: 04150000.xhp -#, fuzzy msgctxt "" "04150000.xhp\n" "hd_id3152552\n" @@ -14052,13 +14043,12 @@ msgstr "Chart" #: 04150000.xhp -#, fuzzy msgctxt "" "04150000.xhp\n" "par_id0302200903593543\n" "help.text" msgid "Inserts a chart." -msgstr "ሰንጠረዥ መፍጠሪያ" +msgstr "chart ማስገቢያ" #: 04150100.xhp msgctxt "" @@ -14254,13 +14244,12 @@ msgstr "ተሰኪ-ዎች ማስገቢያ" #: 04150200.xhp -#, fuzzy msgctxt "" "04150200.xhp\n" "bm_id3149962\n" "help.text" msgid "plug-ins; insertinginserting; plug-ins" -msgstr "መተው;ማረሚያማረሚያ;መተው" +msgstr "ተሰ-ኪዎች; ማስገቢያማስገቢያ; ተሰ-ኪዎች" #: 04150200.xhp msgctxt "" @@ -14335,23 +14324,21 @@ msgstr "" #: 04150400.xhp -#, fuzzy msgctxt "" "04150400.xhp\n" "tit\n" "help.text" msgid "Insert Audio" -msgstr "ቪዲዮ ማስገቢያ" +msgstr "ድምፅ ማስገቢያ" #: 04150400.xhp -#, fuzzy msgctxt "" "04150400.xhp\n" "hd_id3152414\n" "1\n" "help.text" msgid "Insert Audio" -msgstr "ቪዲዮ ማስገቢያ" +msgstr "ድምፅ ማስገቢያ" #: 04150400.xhp msgctxt "" @@ -14360,7 +14347,7 @@ "2\n" "help.text" msgid "Inserts an audio file into the current document." -msgstr "" +msgstr "የ ድምፅ ፋይል ወደ አሁኑ ሰነድ ማስገቢያ" #: 04150500.xhp msgctxt "" @@ -14386,7 +14373,7 @@ "2\n" "help.text" msgid "Inserts a video file into the current document." -msgstr "" +msgstr "የ ቪዲዮ ፋይል ወደ አሁኑ ሰነድ ማስገቢያ" #: 04160300.xhp msgctxt "" @@ -14444,7 +14431,7 @@ "bm_id3149783\n" "help.text" msgid "floating frames in HTML documentsinserting; floating frames" -msgstr "" +msgstr "ተንሳፋፊ ክፈፎች በ HTML ሰነዶች ውስጥማስገቢያ; ተንሳፋፊ ክፈፎች" #: 04160500.xhp msgctxt "" @@ -14531,7 +14518,7 @@ "par_id3156427\n" "help.text" msgid "Table Data bar" -msgstr "" +msgstr "የ ሰንጠረዥ ዳታ መደርደሪያ" #: 04180100.xhp msgctxt "" @@ -14565,7 +14552,7 @@ "2\n" "help.text" msgid "Select the source for a picture that you want to insert." -msgstr "" +msgstr "ማስገባት የሚፈልጉትን ስእል ምንጩን ይምረጡ" #: 04990000.xhp msgctxt "" @@ -14590,7 +14577,7 @@ "bm_id3157959\n" "help.text" msgid "formatting; undoing when writinghyperlinks; deletingdeleting; hyperlinkscells;resetting formats" -msgstr "" +msgstr "አቀራረብ; መተው በሚጽፉ ጊዜhyperlinks; ማጥፊያማጥፊያ; hyperlinksክፍሎች;እንደ ነበር መመለሻ አቀራረብ" #: 05010000.xhp msgctxt "" @@ -14652,7 +14639,7 @@ "2\n" "help.text" msgid "Changes the font and the font formatting for the selected characters." -msgstr "" +msgstr "ለተመረጡት ባህሪዎች የ ፊደል አቀራረብ እና ፊደሎች መቀየሪያ." #: 05020000.xhp msgctxt "" @@ -14686,7 +14673,7 @@ "bm_id3154812\n" "help.text" msgid "formats; fontscharacters;fonts and formatsfonts; formatstext; fonts and formatstypefaces; formatsfont sizes; relative changeslanguages; spellchecking and formattingcharacters; enabling CTL and Asian characters" -msgstr "" +msgstr "አቀራረብ; ፊደሎችባህሪዎች;ፊደሎች እና አቀራረብፊደሎች; አቀራረብጽሁፍ; ፊደሎች እና አቀራረብtypefaces; አቀራረብፊደል መጠኖች; ተዛማች ለውጦችቋንቋዎች; ፊደል ማረሚያ እና አቀራረብባህሪዎች; ማስቻያ CTL እና Asian ባህሪዎች" #: 05020100.xhp msgctxt "" @@ -14758,7 +14745,7 @@ "58\n" "help.text" msgid "To enable support for complex text layout and Asian character sets, choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages, and then select the Enabled box in the corresponding area." -msgstr "" +msgstr "ለ ውስብስብ ጽሁፍ እቅድ ማስቻያ እና የ Asian ባህሪዎች ማሰናጃ CTL ቋንቋዎች: ይምረጡ %PRODUCTNAME - ምርጫዎችTools - ምርጫ - ቋንቋ ማሰናጃ - ቋንቋዎች, እና ከዛ ይምረጡ የ ማስቻያ ሳጥን ውስጥ በ ተመሳሳይ ቦታ" #: 05020100.xhp msgctxt "" @@ -14776,7 +14763,7 @@ "7\n" "help.text" msgid "Enter the name of an installed font that you want to use, or select a font from the list." -msgstr "" +msgstr "ያስገቡ ወይንም ይምረጡ መቀየር የሚፈልጉትን የ ፊደል ስም ወይንም ፊደል ከ ዝርዝር ውስጥ ይምረጡ" #: 05020100.xhp msgctxt "" @@ -14785,7 +14772,7 @@ "10\n" "help.text" msgid "Typeface" -msgstr "" +msgstr "Typeface" #: 05020100.xhp msgctxt "" @@ -14794,7 +14781,7 @@ "11\n" "help.text" msgid "Select the formatting that you want to apply." -msgstr "" +msgstr "ይምረጡ መፈጸም የሚፈልጉትን አቀራረብ " #: 05020100.xhp msgctxt "" @@ -14812,7 +14799,7 @@ "19\n" "help.text" msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values." -msgstr "" +msgstr "ያስገቡ ወይንም ይምረጡ መቀየር የሚፈልጉትን የ ፊደል መጠን: ፊደል ለመመጠን የ ዴሲማል ዋጋ ማስገባት ይችላሉ" #: 05020100.xhp msgctxt "" @@ -14866,7 +14853,7 @@ "59\n" "help.text" msgid "You can also change the locale setting for cells (choose Format - Cells – Numbers)." -msgstr "" +msgstr "እርስዎ መቀየር ይችላሉ የ ቋንቋ ማሰናጃ ለ ክፍሎች (ይምረጡ አቀራረብ - ክፍሎች - ቁጥሮች)." #: 05020100.xhp msgctxt "" @@ -14936,7 +14923,7 @@ "82\n" "help.text" msgid "Sets the color for the selected text. If you select Automatic, the text color is set to black for light backgrounds and to white for dark backgrounds." -msgstr "" +msgstr "ለ ተመረጠው ጽሁፍ ቀለም ማሰናጃ: ይምረጡ ራሱ በራሱ, የ ጽሁፍ ቀለም ማሰናጃ በ ጥቁር ነጣ ላሉ መደቦች እና ነጭ መደበቻው ጥቁር ለሆነ" #: 05020200.xhp msgctxt "" @@ -14977,7 +14964,7 @@ "85\n" "help.text" msgid "The text color is ignored when printing, if the Print black check box is selected in %PRODUCTNAME Writer - Print in the Options dialog box." -msgstr "" +msgstr "የ ጽሁፍ ቀለም ይተዋል በሚታተም ጊዜ በ ጥቁር ማተሚያ ሳጥን ውስጥ ምልክት ተደርጎ ከተመረጠ በ %PRODUCTNAME መጻፊያ - ማተሚያበ ምርጫ ንግግር ሳጥን ውስጥ" #: 05020200.xhp msgctxt "" @@ -14985,7 +14972,7 @@ "par_id7613757\n" "help.text" msgid "The text color is ignored on screen, if the Use automatic font color for screen display check box is selected in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Accessibility." -msgstr "" +msgstr "የ ጽሁፍ ቀለም ይተዋል በ መመልከቻው ላይ ራሱ በራሱ የ ፊደል ቀለም ለ መመልከቻ ማሳያ ይጠቀሙ ሳጥን ውስጥ ምልክት ተደርጎ ከተመረጠ በ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME - መድረሻ." #: 05020200.xhp msgctxt "" @@ -15084,7 +15071,7 @@ "76\n" "help.text" msgid "Relief" -msgstr "" +msgstr "ክፍተት" #: 05020200.xhp msgctxt "" @@ -15111,7 +15098,7 @@ "73\n" "help.text" msgid "Displays the outline of the selected characters. This effect does not work with every font." -msgstr "" +msgstr "የተመረጡትን ባህሪዎች ማሳያ: ይህ ተጽእኖ በ ሁሉም ፊደሎች ላይ አይሰራም" #: 05020200.xhp msgctxt "" @@ -15129,7 +15116,7 @@ "75\n" "help.text" msgid "Adds a shadow that casts below and to the right of the selected characters." -msgstr "" +msgstr "ለተመረጡት ባህሪዎች ከ ታች እና በ ቀኝ በኩል ጥላ መፍጠሪያ" #: 05020200.xhp msgctxt "" @@ -15137,7 +15124,7 @@ "bm_id410168\n" "help.text" msgid "blinking fonts flashing fonts" -msgstr "" +msgstr "ብልጭ ድርግም የሚሉ ፊደሎች የሚያንጸባርቁ ፊደሎች" #: 05020200.xhp msgctxt "" @@ -15155,7 +15142,7 @@ "16\n" "help.text" msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" +msgstr "የተመረጡትን ባህሪዎች ብልጭ ድርግም ማድረጊያ: ብልጭ ድርግም ማድረጊያውን ድግግሞሽ መቀየር አይቻልም " #: 05020200.xhp msgctxt "" @@ -15171,7 +15158,7 @@ "par_idN10B85\n" "help.text" msgid "Hides the selected characters. To display the hidden text, ensure that Non-printing Characters is selected in the View menu. You can also choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids and select Hidden text." -msgstr "" +msgstr "የተመረጡትን ባህሪዎች መደበቂያ የተደበቀ ጽሁፍን ለማሳየት እርግጠኛ ይሁኑ የ that ምንም-የምይታተሙ ባህሪዎች መመረጣቸውን በ መመልከቻ ዝርዝር ውስጥ: እንዲሁም መምረጥ ይችላሉ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - አቀራረብ እርዳታ እና ይምረጡ የተደበቀ ጽሁፍ." #: 05020200.xhp msgctxt "" @@ -15379,7 +15366,7 @@ "2\n" "help.text" msgid "Specify the formatting options for the selected cell(s). " -msgstr "" +msgstr "ለተመረጠው ክፍል(ሎች) አቀራረቡን መወሰኛ " #: 05020300.xhp msgctxt "" @@ -15397,7 +15384,7 @@ "4\n" "help.text" msgid "Select a category from the list, and then select a formatting style in the Format box." -msgstr "" +msgstr "ይምረጡ ምድብ ከ ዝርዝር ውስጥ: እና ከዛ ይምረጡ የ አቀራረብ ዘዴ በ አቀራረብ ሳጥን ውስጥ" #: 05020300.xhp msgctxt "" @@ -15406,7 +15393,7 @@ "101\n" "help.text" msgid "The default currency format for a cell is determined by the regional settings of your operating system." -msgstr "" +msgstr "ነባር የ ገንዘብ አቀራረብ ለ ክፍሉ የሚወሰነው በ እርስዎ መስሪያ ስርአት አካባቢ ማሰናጃ መሰረት በማድረግ ነው" #: 05020300.xhp msgctxt "" @@ -15469,7 +15456,7 @@ "24\n" "help.text" msgid "Specifies the language setting for the selected cells fields. With the language set to Automatic, $[officename] automatically applies the number formats associated with the system default language. Select any language to fix the settings for the selected cells fields." -msgstr "" +msgstr "ቋንቋ ማሰናጃ ይወስኑ ለተመረጡት ክፍሎች ሜዳዎች. በ ቋንቋ ማሰናጃ ወደ ራሱ በራሱ, $[officename] ራሱ በራሱ ይፈጽማል የ ቁጥር አቀራረብ የተዛመደውን ከ ስርአት ነባር ቋንቋ ጋር: ይምረጡ ማንኛውንም ቋንቋ ማሰናጃውን ለመጠገን ለተመረጡት ክፍሎች ሜዳዎች." #: 05020300.xhp msgctxt "" @@ -15541,7 +15528,7 @@ "11\n" "help.text" msgid "Leading zeroes" -msgstr "" +msgstr "ቀዳሚ ዜሮዎች" #: 05020300.xhp msgctxt "" @@ -15550,7 +15537,7 @@ "12\n" "help.text" msgid "Enter the maximum number of zeroes to display in front of the decimal point." -msgstr "" +msgstr "ከ ዴሲማል ነጥብ በፊት ማሳየት የሚፈልጉትን ከፍተኛ የ ዜሮ ቁጥር ያስገቡ" #: 05020300.xhp msgctxt "" @@ -15568,7 +15555,7 @@ "14\n" "help.text" msgid "Changes the font color of negative numbers to red." -msgstr "" +msgstr "የ አሉታዊ ቁጥሮችን ፊደል ወደ ቀይ ቀለም መቀየሪያ" #: 05020300.xhp msgctxt "" @@ -15595,7 +15582,7 @@ "106\n" "help.text" msgid "Engineering notation" -msgstr "" +msgstr "Engineering notation" #: 05020300.xhp msgctxt "" @@ -15676,7 +15663,7 @@ "27\n" "help.text" msgid "Adds a comment to the selected number format." -msgstr "" +msgstr "ወደ ተመረጠው የ ቁጥር አቀራረብ አስተያየት መጨመሪያ" #: 05020300.xhp msgctxt "" @@ -15685,7 +15672,7 @@ "95\n" "help.text" msgid "Name line" -msgstr "" +msgstr "የ መስመር ስም" #: 05020300.xhp msgctxt "" @@ -15694,7 +15681,7 @@ "96\n" "help.text" msgid "Enter a comment for the selected number format, and then click outside this box." -msgstr "" +msgstr "ወደ ተመረጠው የ ቁጥር አቀራረብ አስተያየት ማስገቢያ እና ከዛ ይጫኑ ከዚህ ሳጥን ውጪ" #: 05020300.xhp msgctxt "" @@ -15702,7 +15689,7 @@ "par_id3145364\n" "help.text" msgid "Number format codes" -msgstr "" +msgstr "የ ቁጥር አቀራረብ codes" #: 05020300.xhp msgctxt "" @@ -15710,7 +15697,7 @@ "par_id3153095\n" "help.text" msgid "Custom format codes" -msgstr "" +msgstr "Custom አቀራረብ codes" #: 05020301.xhp msgctxt "" @@ -15726,7 +15713,7 @@ "bm_id3153514\n" "help.text" msgid "format codes; numbersconditions; in number formatsnumber formats; codescurrency formatsformats;of currencies/date/timenumbers; date, time and currency formatsEuro; currency formatsdate formatstimes, formats" -msgstr "" +msgstr "አቀራረብ codes; ቁጥሮችሁኔታዎች; በ ቁጥር ውስጥ አቀራረብቁጥር አቀራረብ; codesገንዘብ አቀራረብአቀራረብ;የ ገንዘቦች/ቀን/ሰአትቁጥሮች; ቀን, ሰአት እና ገንዘብ አቀራረብኢዩሮ; ገንዘብ አቀራረብቀን አቀራረብሰአት, አቀራረብ" #: 05020301.xhp msgctxt "" @@ -15843,7 +15830,7 @@ "6\n" "help.text" msgid "Does not display extra zeros." -msgstr "" +msgstr "ተጨማሪ ዜሮዎች አያሳይም" #: 05020301.xhp msgctxt "" @@ -15887,7 +15874,7 @@ "10\n" "help.text" msgid "Format Code" -msgstr "" +msgstr "አቀራረብ Code" #: 05020301.xhp msgctxt "" @@ -15899,7 +15886,6 @@ msgstr "3456.78 እንደ 3456.8" #: 05020301.xhp -#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3150355\n" @@ -16014,7 +16000,7 @@ "23\n" "help.text" msgid "Format Code" -msgstr "" +msgstr "አቀራረብ Code" #: 05020301.xhp msgctxt "" @@ -16275,7 +16261,7 @@ "90\n" "help.text" msgid "Positive and Negative Numbers" -msgstr "" +msgstr "አዎንታዊ እና አሉታዊ ቁጥሮች" #: 05020301.xhp msgctxt "" @@ -16418,7 +16404,7 @@ "40\n" "help.text" msgid "Format Code" -msgstr "" +msgstr "አቀራረብ Code" #: 05020301.xhp msgctxt "" @@ -17387,7 +17373,7 @@ "141\n" "help.text" msgid "Initial Format" -msgstr "" +msgstr "መጀመሪያ አቀራረብ" #: 05020301.xhp msgctxt "" @@ -17396,7 +17382,7 @@ "142\n" "help.text" msgid "Result Format" -msgstr "" +msgstr "ውጤት አቀራረብ" #: 05020301.xhp msgctxt "" @@ -17405,7 +17391,7 @@ "143\n" "help.text" msgid "Date + Date" -msgstr "" +msgstr "ቀን + ቀን" #: 05020301.xhp msgctxt "" @@ -17414,7 +17400,7 @@ "144\n" "help.text" msgid "Number (Days)" -msgstr "" +msgstr "ቁጥር (ቀኖች)" #: 05020301.xhp msgctxt "" @@ -17585,7 +17571,7 @@ "163\n" "help.text" msgid "The Date&Time format displays the date and time that an entry was made to a cell with this format. " -msgstr "" +msgstr "የ ቀን&ሰአት አቀራረብ የሚያሳየው የ ቀን እና ሰአት በ ክፍሉ ውስጥ በዚህ አቀራረብ መግባቱን ነው " #: 05020301.xhp msgctxt "" @@ -17612,7 +17598,7 @@ "62\n" "help.text" msgid "To display hours, minutes and seconds use the following number format codes." -msgstr "" +msgstr "ሰአቶችን: ደቂቆችን እና ሰከንዶችን ለማሳየት የሚቀጥለውን የ ቁጥር አቀራረብ ኮዶች ይጠቀሙ" #: 05020301.xhp msgctxt "" @@ -17630,7 +17616,7 @@ "64\n" "help.text" msgid "Format Code" -msgstr "" +msgstr "አቀራረብ Code" #: 05020301.xhp msgctxt "" @@ -17648,7 +17634,7 @@ "66\n" "help.text" msgid "h" -msgstr "" +msgstr "h" #: 05020301.xhp msgctxt "" @@ -17684,7 +17670,7 @@ "70\n" "help.text" msgid "m" -msgstr "" +msgstr "m" #: 05020301.xhp msgctxt "" @@ -17747,7 +17733,7 @@ "77\n" "help.text" msgid "To display seconds as fractions, add the decimal delimiter to your number format code. For example, enter hh:mm:ss.00 to display the time as \"01:02:03.45\"." -msgstr "" +msgstr "ሰከንዶችን እንደ ክፍልፋይ ለማሳየት የ ዴሲማል ቦታ ይጨምሩ በ ቁጥር አቀራረብ ኮድ ላይ: ለምሳሌ: ያስገቡ hh:mm:ss.00 ሰአትን ለማሳየት እንደ \"01:02:03.45\"." #: 05020301.xhp msgctxt "" @@ -17756,7 +17742,7 @@ "102\n" "help.text" msgid "If a time is entered in the form 02:03.45 or 01:02:03.45 or 25:01:02, the following formats are assigned if no other time format has been specified: MM:SS.00 or [HH]:MM:SS.00 or [HH]:MM:SS" -msgstr "" +msgstr "ስሰአት በዚህ ፎርም ከገባ 02:03.45 ወይንም 01:02:03.45 ወይንም 25:01:02, የሚቀጥለውው አቀራረብ ይመደባል ሌላ የ ሰአት አቀራረብ ካልተመደበ: MM:SS.00 ወይንም [HH]:MM:SS.00 ወይንም [HH]:MM:SS" #: 05020301.xhp msgctxt "" @@ -18184,7 +18170,7 @@ "bm_id3152895\n" "help.text" msgid "formatting; hyperlinkscharacters; hyperlinkshyperlinks; character formatstext;hyperlinkslinks; character formats" -msgstr "" +msgstr "አቀራረብ; hyperlinksባህሪዎች; hyperlinkshyperlinks; ባህሪ አቀራረብጽሁፍ;hyperlinksአገናኝ; ባህሪ አቀራረብ" #: 05020400.xhp msgctxt "" @@ -18247,7 +18233,7 @@ "15\n" "help.text" msgid "Enter a URL for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame." -msgstr "" +msgstr "ማስገቢያ a URL መክፈት ለሚፈልጉት ፋይል በሚጫኑ ጊዜ hyperlink. ኢላማ ክፈፍ ካልወሰኑ ፋይሉ በ አሁኑ ሰነድ ወይንም ክፈፍ ውስጥ ይከፈታል " #: 05020400.xhp msgctxt "" @@ -18265,7 +18251,7 @@ "17\n" "help.text" msgid "Locate the file that you want to link to, and then click Open." -msgstr "" +msgstr "ፋይሉን ፈልገው ያግኙ እንደ አገናኝ ማስገባት የሚፈልጉትን እና ከዛ ይጫኑ መክፈቻ." #: 05020400.xhp msgctxt "" @@ -18542,7 +18528,7 @@ "bm_id3154841\n" "help.text" msgid "positioning; fontsformats; positionseffects;font positionsfonts; positions in textspacing; font effectscharacters; spacingpair kerningkerning; in characterstext; kerning" -msgstr "" +msgstr "ቦታዎች; ፊደሎችአቀራረብ; ቦታዎችተፅእኖ;ፊደል ቦታዎችፊደሎች; ቦታዎች በ ጽሁፍ ውስጥክፍተት; ፊደል ተፅእኖባህሪዎች; ክፍተትpair kerningkerning; in ባህሪዎችጽሁፍ; kerning" #: 05020500.xhp msgctxt "" @@ -18560,7 +18546,7 @@ "2\n" "help.text" msgid "Specify the position, scaling, rotation, and spacing for characters." -msgstr "" +msgstr "ለ ባህሪዎች ቦታ: መጠን: ማዞሪያ እና ክፍተት ይወስኑ" #: 05020500.xhp msgctxt "" @@ -18641,7 +18627,7 @@ "11\n" "help.text" msgid "Raise/lower by" -msgstr "" +msgstr "ማሳደጊያ/ማሳነሻ በ" #: 05020500.xhp msgctxt "" @@ -18812,7 +18798,7 @@ "18\n" "help.text" msgid "Specify the spacing between individual characters." -msgstr "" +msgstr "ይወስኑ ክፍተት በ እያንዳንዱ ባህሪዎች መካከል" #: 05020500.xhp msgctxt "" @@ -18839,7 +18825,7 @@ "21\n" "help.text" msgid "Default - uses the character spacing specified in the font type" -msgstr "" +msgstr "ነባር - በ ፊደሉ አይነት የተወሰነውን የ ባህሪዎች ክፍተት ይጠቀማል" #: 05020500.xhp msgctxt "" @@ -18848,7 +18834,7 @@ "22\n" "help.text" msgid "Expanded - increases the character spacing" -msgstr "" +msgstr "ተስፋፍቷል - የ ባህሪ ክፍተት ተጨምሯል" #: 05020500.xhp msgctxt "" @@ -18857,7 +18843,7 @@ "23\n" "help.text" msgid "Condensed - decreases the character spacing" -msgstr "" +msgstr "ማሳጠር - የ ባህሪ ክፍተት ተቀንሷል" #: 05020500.xhp msgctxt "" @@ -18918,7 +18904,7 @@ "bm_id3156053\n" "help.text" msgid "double-line writing in Asian layoutformats; Asian layoutcharacters; Asian layouttext; Asian layout" -msgstr "" +msgstr "በ ድርብ-መስመር መጻፊያ in Asian layoutአቀራረብ; Asian layoutባህሪዎች; Asian layoutጽሁፍ; Asian layout" #: 05020600.xhp #, fuzzy @@ -18964,7 +18950,7 @@ "5\n" "help.text" msgid "Write in double lines" -msgstr "" +msgstr "በ ድርብ መስመሮች መጻፊያ" #: 05020600.xhp msgctxt "" @@ -18982,7 +18968,7 @@ "7\n" "help.text" msgid "Enclosing characters" -msgstr "" +msgstr "መክበቢያ ባህሪዎች" #: 05020600.xhp msgctxt "" @@ -19177,7 +19163,7 @@ "3\n" "help.text" msgid "The paragraph style for the current paragraph is displayed at the Formatting toolbar, and is highlighted in the Styles and Formatting window. " -msgstr "" +msgstr "የ አንቀጽ ዘዴ ለ አሁኑ አንቀጽ የሚታየው በ አቀራረብ እቃ መደርደሪያ ላይ እና ማድመቂያ ላይ በ ዘዴዎች እና አቀራረብ መስኮት ውስጥ ነው. " #: 05030100.xhp msgctxt "" @@ -19193,7 +19179,7 @@ "bm_id3154689\n" "help.text" msgid "spacing; between paragraphs in footnotes line spacing; paragraph spacing; lines and paragraphs single-line spacing in text one and a half line spacing in text double-line spacing in paragraphs leading between paragraphs paragraphs;spacing" -msgstr "" +msgstr "ክፍተት; በ አንቀጾች መካከል በ ግርጌ ማስታወሻ መስመር ክፍተት; አንቀጽ ክፍተት; የ መስመሮች እና አንቀጾች ነጠላ-መስመር ክፍተት በ ጽሁፍ ውስጥ አንድ እና ግማሽ የ መስመር ክፍተት በ ጽሁፍ ውስጥ ድርብ-መስመር ክፍተት በ አንቀጾች ውስጥ ቀዳሚ በ አንቀጾች መካከል የ አንቀጾች;ክፍተት" #: 05030100.xhp msgctxt "" @@ -19211,7 +19197,7 @@ "2\n" "help.text" msgid "Sets the indenting and the spacing options for the paragraph." -msgstr "" +msgstr "ለ አንቀጽ የ ማስረጊያ እና የ ክፍተት ምርጫ ማሰናጃ" #: 05030100.xhp msgctxt "" @@ -19220,7 +19206,7 @@ "64\n" "help.text" msgid "To change the measurement units used in this dialog, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General, and then select a new measurement unit in the Settings area." -msgstr "" +msgstr "በዚህ ንግግር ውስጥ የ መለኪያውን ክፍሎች ለመቀየር ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - ባጠቃላይ እና ከዛ ይምረጡ አዲስ የ መለኪያ ክፍል ከ ማሰናጃ ቦታ ውስጥ" #: 05030100.xhp msgctxt "" @@ -19229,7 +19215,7 @@ "11\n" "help.text" msgid "You can also set indents using the ruler. To display the ruler, choose View - Ruler." -msgstr "" +msgstr "እንዲሁም ይችላሉ ማስረጊያ ማሰናጃ ማስመሪያ በመጠቀም. ማስመሪያውን ለማሳየት: ይምረጡ መመልከቻ - ማስመሪያ." #: 05030100.xhp msgctxt "" @@ -19319,7 +19305,7 @@ "53\n" "help.text" msgid "Automatically indents a paragraph according to the font size and the line spacing. The setting in the First Line box is ignored." -msgstr "" +msgstr "ራሱ በራሱ አንቀጽ ማስረጊያ እንደ ፊደል መጠን እና መስመር ክፍተት: ይህ ማሰናጃ በ መጀመሪያ መስመር ሳጥን ከተተወ" #: 05030100.xhp msgctxt "" @@ -19337,7 +19323,7 @@ "23\n" "help.text" msgid "Specify the amount of space to leave between selected paragraphs." -msgstr "" +msgstr "በ ተመረጡት አንቀጾች መካከል መተው የሚፈልጉትን ክፍተት መወሰኛ" #: 05030100.xhp msgctxt "" @@ -19355,7 +19341,7 @@ "25\n" "help.text" msgid "Enter the amount of space that you want to leave above the selected paragraph(s)." -msgstr "" +msgstr "ከ ተመረጡት አንቀጽ(ጾች) በላይ መተው የሚፈልጉትን ክፍተት ያስገቡ" #: 05030100.xhp msgctxt "" @@ -19373,7 +19359,7 @@ "27\n" "help.text" msgid "Enter the amount of space that you want to leave below the selected paragraph(s)." -msgstr "" +msgstr "ከ ተመረጡት አንቀጽ(ጾች) ስር መተው የሚፈልጉትን ክፍተት ያስገቡ" #: 05030100.xhp msgctxt "" @@ -19382,7 +19368,7 @@ "26\n" "help.text" msgid "Don't add space between paragraphs of the same style" -msgstr "" +msgstr "በተመሳሳይ አንቀጽ ዘዴዎች መከከል ክፍተት አትጨምር" #: 05030100.xhp msgctxt "" @@ -19445,7 +19431,7 @@ "34\n" "help.text" msgid "Sets the line spacing to 1.5 lines. " -msgstr "" +msgstr "የ መስመር ክፍተት: 1.5 መስመሮች ማሰናጃ " #: 05030100.xhp msgctxt "" @@ -19463,7 +19449,7 @@ "37\n" "help.text" msgid "Sets the line spacing to two lines. " -msgstr "" +msgstr "የ መስመር ክፍተት: ወደ ሁለት መስመሮች ማሰናጃ " #: 05030100.xhp msgctxt "" @@ -19572,17 +19558,16 @@ "48\n" "help.text" msgid "Register-true " -msgstr "ማስወገጃ " +msgstr "Register-true " #: 05030100.xhp -#, fuzzy msgctxt "" "05030100.xhp\n" "hd_id3146316\n" "50\n" "help.text" msgid "Activate " -msgstr "ተግባር " +msgstr "ማስጀመሪያ " #: 05030100.xhp msgctxt "" @@ -19615,7 +19600,7 @@ "bm_id3156027\n" "help.text" msgid "formats; tabulatorsfill characters with tabulatorstab stops;settings" -msgstr "" +msgstr "አቀራረብ; tabulatorsመሙያ ባህሪዎች በ tabulatorstab ማስቆሚያ;ማሰናጃዎች" #: 05030300.xhp msgctxt "" @@ -20148,13 +20133,12 @@ msgstr "" #: 05030500.xhp -#, fuzzy msgctxt "" "05030500.xhp\n" "bm_id3155855\n" "help.text" msgid "shadows; bordersborders; shadowsmargins; shadows" -msgstr "ለውጦች; ማሳያመደበቂያ;ለውጦችማሳያ; ለውጦች" +msgstr "ጥላዎች; ድንበሮችድንበሮች; ጥላዎችመስመሮች; ጥላዎች" #: 05030500.xhp msgctxt "" @@ -20334,7 +20318,7 @@ "34\n" "help.text" msgid "You can specify the background for paragraphs, pages, headers, footers, text frames, tables, table cells, sections, and indexes.cells and pages." -msgstr "" +msgstr "እርስዎ መደብ መወሰን ይችላሉ ለ አንቀጾች: ገጾች: ራስጌዎች: ግርጌዎች: የ ጽሁፍ ክፈፎች: ሰንጠረዦች: ለ ሰንጤረዥ ክፍሎች: ለ ክፍሎች እና ማውጫዎችክፍሎች እና ገጾች" #: 05030600.xhp msgctxt "" @@ -20352,7 +20336,7 @@ "5\n" "help.text" msgid "Select the type of background that you want to apply." -msgstr "" +msgstr "መጠቀም የሚፈልጉትን የ መደብ አይነት ይምረጡ" #: 05030600.xhp msgctxt "" @@ -20379,7 +20363,7 @@ "9\n" "help.text" msgid "Click the color that you want to use as a background. To remove a background color, click No Fill." -msgstr "" +msgstr "ይጫኑ ለ መደብ መጠቀም የሚፈልጉትን ቀለም: የ መደብ ቀለም ለማስወገድ: ይጫኑ መሙያ የለም." #: 05030600.xhp msgctxt "" @@ -20797,14 +20781,13 @@ msgstr "" #: 05030700.xhp -#, fuzzy msgctxt "" "05030700.xhp\n" "hd_id3154936\n" "15\n" "help.text" msgid "Expand single word " -msgstr "የመጨረሻ መስመር " +msgstr "ነጠላ ቃል ማስፊያ word " #: 05030700.xhp msgctxt "" @@ -20822,7 +20805,7 @@ "22\n" "help.text" msgid "Snap to text grid (if active)" -msgstr "" +msgstr "መቁረጫ በ ጽሁፍ መጋጠሚያ ላይ (ንቁ ከሆነ)" #: 05030700.xhp msgctxt "" @@ -20831,7 +20814,7 @@ "21\n" "help.text" msgid "Aligns the paragraph to a text grid. To activate the text grid, choose Format - Page - Text Grid." -msgstr "" +msgstr "አንቀጽ ማሰለፊያ በ ጽሁፍ መጋጠሚያ ላይ: የ ጽሁፍ መጋጠሚያ ለማስጀመር: ይጫኑ አቀራረብ - ገጽ - የ ጽሁፍ መጋጠሚያ." #: 05030700.xhp msgctxt "" @@ -20892,7 +20875,7 @@ "bm_id3148585\n" "help.text" msgid "cropping picturespictures; cropping and zoomingzooming; picturesscaling;picturessizes; picturesoriginal size;restoring after cropping" -msgstr "" +msgstr "መከርከሚያ ስእሎችስእሎች; መከርከሚያ እና ማሳያማሳያ; ስእሎችመመጠኛ;ስእሎችመጠኖች; ስእሎችዋናው መጠን;እንደ ነበር መመለሻ ከ ተከረከመ በኋላ" #: 05030800.xhp msgctxt "" @@ -21072,7 +21055,7 @@ "26\n" "help.text" msgid "Enter the width for the selected graphic as a percentage." -msgstr "" +msgstr "ለ ተመረጠው ንድፍ በ ፐርሰንት ስፋት ያስገቡ" #: 05030800.xhp msgctxt "" @@ -21090,7 +21073,7 @@ "28\n" "help.text" msgid "Enter the height of the selected graphic as a percentage." -msgstr "" +msgstr "ለ ተመረጠው ንድፍ በ ፐርሰንት እርዝመት ያስገቡ" #: 05030800.xhp msgctxt "" @@ -21099,7 +21082,7 @@ "17\n" "help.text" msgid "Image size" -msgstr "" +msgstr "የ ምስል መጠን" #: 05030800.xhp msgctxt "" @@ -21126,7 +21109,7 @@ "20\n" "help.text" msgid "Enter a width for the selected graphic." -msgstr "" +msgstr "ለ ተመረጠው ንድፍ ስፋት ያስገቡ" #: 05030800.xhp msgctxt "" @@ -21144,7 +21127,7 @@ "22\n" "help.text" msgid "Enter a height for the selected graphic." -msgstr "" +msgstr "ለ ተመረጠው ንድፍ እርዝመት ያስገቡ" #: 05030800.xhp msgctxt "" @@ -21162,7 +21145,7 @@ "32\n" "help.text" msgid "Returns the selected graphic to its original size." -msgstr "" +msgstr "ለ ተመረጠው ንድፍ ዋናውን መጠን ይመልሳል" #: 05040100.xhp msgctxt "" @@ -21178,7 +21161,7 @@ "bm_id3153383\n" "help.text" msgid "organizing; styles styles; organizing" -msgstr "" +msgstr "ማደራጃ; ዘዴዎች ዘዴዎች; ማደራጃ" #: 05040100.xhp msgctxt "" @@ -21196,7 +21179,7 @@ "2\n" "help.text" msgid "Set the options for the selected style." -msgstr "" +msgstr "ለ ተመረጠው ዘዴ ምርጫ ማሰናጃ" #: 05040100.xhp msgctxt "" @@ -21217,14 +21200,13 @@ msgstr "" #: 05040100.xhp -#, fuzzy msgctxt "" "05040100.xhp\n" "hd_id3153750\n" "13\n" "help.text" msgid "AutoUpdate " -msgstr "ማሻሻያ " +msgstr "በራሱ ማሻሻያ " #: 05040100.xhp msgctxt "" @@ -21362,7 +21344,7 @@ "bm_id3150620\n" "help.text" msgid "pages;formatting and numberingformatting;pagespaper formatspaper traysprinters;paper trayslayout;pagesbinding spacemargins;pagesgutter" -msgstr "" +msgstr "ገጾች;አቀራረብ እና ቁጥር መስጫአቀራረብ;ገጾችወረቀት አቀራረብየ ወረቀት ትሪዎችማተሚያዎች;የ ወረቀት ትሪዎችእቅዶች;ገጾችማጣመሪያ ክፍተትመስመሮች;ገጾችቦይ" #: 05040200.xhp msgctxt "" @@ -21803,14 +21785,13 @@ msgstr "" #: 05040200.xhp -#, fuzzy msgctxt "" "05040200.xhp\n" "hd_id3147287\n" "21\n" "help.text" msgid "Mirrored" -msgstr "በግራ ብቻ" +msgstr "የተንፀባረቀ" #: 05040200.xhp msgctxt "" @@ -21837,7 +21818,7 @@ "24\n" "help.text" msgid "The current page style shows only odd (right) pages. Even pages are shown as blank pages." -msgstr "" +msgstr "የ አሁኑ ገጽ ዘዴ የሚያሳየው ጎዶሎ (በ ቀኝ) ገጾች ነው: ሙሉ ገጾች የሚታዩት እንደ ባዶ ገጾች ነው" #: 05040200.xhp msgctxt "" @@ -21855,7 +21836,7 @@ "26\n" "help.text" msgid "The current page style shows only even (left) pages. Odd pages are shown as blank pages." -msgstr "" +msgstr "የ አሁኑ ገጽ ዘዴ የሚያሳየው ሙሉ (በ ግራ) ገጾች ነው: ጎዶሎ ገጾች የሚታዩት እንደ ባዶ ገጾች ነው" #: 05040200.xhp #, fuzzy @@ -21883,7 +21864,7 @@ "28\n" "help.text" msgid "Select the page numbering format that you want to use for the current page style." -msgstr "" +msgstr "ለ አሁኑ ገጽ ዘዴ መጠቀም የሚፈልጉትን የ ቁጥር መስጫ ዘዴ ይምረጡ" #: 05040200.xhp msgctxt "" @@ -22023,7 +22004,7 @@ "8\n" "help.text" msgid "Adds a header to the current page style." -msgstr "" +msgstr "ለ አሁኑ የ ገጽ ዘዴ ራስጌ መጨመሪያ" #: 05040300.xhp msgctxt "" @@ -22281,14 +22262,13 @@ msgstr "" #: 05040400.xhp -#, fuzzy msgctxt "" "05040400.xhp\n" "par_id3155339\n" "31\n" "help.text" msgid "To insert a footer into the current document, select Footer on, and then click OK. " -msgstr "ለ አሁኑ የ ገጽ ዘዴ ራስጌ ለ መጨመር ይምረጡ ራስጌ በርቷል, እና ከዛ ይጫኑ እሺ. " +msgstr "ለ አሁኑ የ ገጽ ዘዴ ግርጌ ለ መጨመር ይምረጡ ግርጌ በርቷል, እና ከዛ ይጫኑ እሺ. " #: 05040400.xhp msgctxt "" @@ -22342,7 +22322,7 @@ "7\n" "help.text" msgid "Adds a footer to the current page style." -msgstr "" +msgstr "ለ አሁኑ የ ገጽ ዘዴ ግርጌ መጨመሪያ" #: 05040400.xhp msgctxt "" @@ -22468,7 +22448,7 @@ "13\n" "help.text" msgid "Enter the height you want for the footer." -msgstr "" +msgstr "ለ ግርጌ የሚፈልጉትን እርዝመት ያስገቡ" #: 05040400.xhp msgctxt "" @@ -22570,7 +22550,7 @@ "tit\n" "help.text" msgid "Change Case" -msgstr "" +msgstr "ጉዳይ መቀየሪያ" #: 05050000.xhp msgctxt "" @@ -22651,7 +22631,7 @@ "5\n" "help.text" msgid "Capitalize Every Word" -msgstr "" +msgstr "ሁሉንም ቃል በአቢይ ፊደል መጻፊያ" #: 05050000.xhp msgctxt "" @@ -22669,7 +22649,7 @@ "5\n" "help.text" msgid "tOGGLE cASE" -msgstr "" +msgstr "ጉዳይ መቀያየሪያ" #: 05050000.xhp msgctxt "" @@ -22767,7 +22747,7 @@ "bm_id9598376\n" "help.text" msgid "Asian Phonetic Guidephonetic guide" -msgstr "ጽሁፍ; የፊደል ዘዴዎችፊደሎች; ዘዴዎች" +msgstr "Asian Phonetic Guidephonetic guide" #: 05060000.xhp msgctxt "" @@ -22794,7 +22774,7 @@ "13\n" "help.text" msgid "Select one or more words in the document." -msgstr "" +msgstr "አንድ ወይንም ከዚያ በላይ ቃላቶች ከ ሰነዱ ውስጥ ይምረጡ" #: 05060000.xhp msgctxt "" @@ -22803,7 +22783,7 @@ "14\n" "help.text" msgid "Choose Format - Asian Phonetic Guide." -msgstr "" +msgstr "ይምረጡ አቀራረብ - Asian Phonetic Guide." #: 05060000.xhp msgctxt "" @@ -22920,7 +22900,7 @@ "12\n" "help.text" msgid "Opens the Styles and Formatting windowStyles and Formatting window where you can select a character style for the ruby text." -msgstr "" +msgstr "መክፈቻ የ ዘዴዎች እና አቀራረብ መስኮትዘዴዎች እና አቀራረብ መስኮት የ ruby ጽሁፍ ባህሪ ዘዴ የሚመርጡበት." #: 05070000.xhp msgctxt "" @@ -22936,7 +22916,7 @@ "bm_id3149987\n" "help.text" msgid "aligning; objectspositioning; objectsordering; objects" -msgstr "" +msgstr "ማሰለፊያ; እቃዎችቦታዎች; እቃዎችማሰናጃ; እቃዎች" #: 05070000.xhp msgctxt "" @@ -23015,7 +22995,7 @@ "3\n" "help.text" msgid "To align the individual objects in a group, choose Format - Group - Enter Groupdouble-click to enter the group, select the objects, right-click, and then choose an alignment option. " -msgstr "" +msgstr "እያንዳንዱን እቃዎች በ ቡድን ውስጥ ለማሰለፍይምረጡ አቀራረብ - ቡድን - ቡድን ማስገቢያሁለት ጊዜ-ይጫኑ ቡድን ለማስገባት: እቃዎች ይምረጡ: በ ቀኝ-ይጫኑ እና ከዛ ይምረጡ የ ማሰለፊያ ምርጫ " #: 05070200.xhp msgctxt "" @@ -23935,7 +23915,7 @@ "bm_id3154545\n" "help.text" msgid "text; shadowedcharacters; shadowedshadows;characters, using context menu" -msgstr "" +msgstr "ስሁፍ; ጥላዎችባህሪዎች; ጥላዎችጥላዎች;ባህሪዎች, የ አገባብ ዝርዝር በመጠቀም" #: 05110500.xhp msgctxt "" @@ -24602,7 +24582,7 @@ "33\n" "help.text" msgid "The Line tab of the Data Series dialog is only available if you select an XY Chart type." -msgstr "" +msgstr "መስመር tab የ ተከታታይ ዳታ ንግግር ዝግጁ የሚሆነው ይህን ከ መረጡ ነው የ XY Chart አይነት." #: 05200100.xhp msgctxt "" @@ -24790,7 +24770,7 @@ "hd_id3154580\n" "help.text" msgid "Corner and cap styles" -msgstr "" +msgstr "የ ጠርዝ እና የ ባርኔጣ ዘዴ" #: 05200100.xhp msgctxt "" @@ -24814,7 +24794,7 @@ "hd_id3154585\n" "help.text" msgid "Cap style" -msgstr "" +msgstr "የ ባርኔጣ ዘዴ" #: 05200100.xhp msgctxt "" @@ -24848,7 +24828,7 @@ "2\n" "help.text" msgid "Edit or create dashed or dotted line styles." -msgstr "" +msgstr "ጭረት ወይንም ነጠብጣብ የ መስመር ዘዴዎች ማረሚያ ወይንም መፍጠሪያ" #: 05200200.xhp msgctxt "" @@ -24893,7 +24873,7 @@ "6\n" "help.text" msgid "Select the combination of dashes and dots that you want." -msgstr "" +msgstr "መጠቀም የሚፈልጉትን የ ጭረቶች ወይንም ነጥቦች ጥምረት ይምረጡ" #: 05200200.xhp msgctxt "" @@ -24929,7 +24909,7 @@ "10\n" "help.text" msgid "Enter the length of the dash." -msgstr "" +msgstr "የ ጭረት እርዝመት ያስገቡ" #: 05200200.xhp msgctxt "" @@ -24983,7 +24963,7 @@ "18\n" "help.text" msgid "Creates a new line style using the current settings." -msgstr "" +msgstr "የ አሁኑን ማሰናጃ በመጠቀም አዲስ የ መስመር ዘዴ መፍጠሪያ " #: 05200200.xhp msgctxt "" @@ -25099,7 +25079,7 @@ "6\n" "help.text" msgid "Lets you organize the current list of arrow styles." -msgstr "" +msgstr "የ አሁኑን የ ቀስት ዘዴዎች ማደራጀት ያስችሎታል" #: 05200300.xhp msgctxt "" @@ -25249,7 +25229,7 @@ "bm_id3149999\n" "help.text" msgid "areas; stylesfill patterns for areasfill colors for areasinvisible areas" -msgstr "" +msgstr "ቦታዎች; ዘዴዎችየ መሙያ ምሳሌዎች ለ ቦታዎችመሙያ ቀለም ለ ቦታዎችየማይታዩ ቦታዎች" #: 05210100.xhp msgctxt "" @@ -25368,13 +25348,14 @@ msgstr "" #: 05210100.xhp +#, fuzzy msgctxt "" "05210100.xhp\n" "hd_id3154047\n" "12\n" "help.text" msgid "Hatching" -msgstr "" +msgstr "Hatching" #: 05210100.xhp msgctxt "" @@ -25428,7 +25409,7 @@ "20\n" "help.text" msgid "Increments (Gradients)" -msgstr "" +msgstr "ጭማሪዎች (ከፍታዎች)" #: 05210100.xhp msgctxt "" @@ -26067,12 +26048,13 @@ msgstr "" #: 05210400.xhp +#, fuzzy msgctxt "" "05210400.xhp\n" "tit\n" "help.text" msgid "Hatching" -msgstr "" +msgstr "Hatching" #: 05210400.xhp msgctxt "" @@ -26080,7 +26062,7 @@ "bm_id3149962\n" "help.text" msgid "hatchingareas; hatched/dotteddotted areas" -msgstr "" +msgstr "hatchingቦታዎች; hatched/ነጠብጣብነጠብጣብ ቦታዎች" #: 05210400.xhp msgctxt "" @@ -26598,7 +26580,7 @@ "6\n" "help.text" msgid "Adds a shadow to the selected drawing object." -msgstr "" +msgstr "ለተመረጠው መሳያ እቃ ጥላ መጨመሪያ" #: 05210600.xhp msgctxt "" @@ -26616,7 +26598,7 @@ "8\n" "help.text" msgid "Click where you want to cast the shadow." -msgstr "" +msgstr "ይጫኑ ጥላ ማጥላት የሚፈልጉበት ቦታ" #: 05210600.xhp msgctxt "" @@ -26721,7 +26703,7 @@ "bm_id3146807\n" "help.text" msgid "transparency;areasareas; transparency" -msgstr "" +msgstr "ግልጽነት;ቦታዎችቦታዎች; ግልጽነት" #: 05210700.xhp msgctxt "" @@ -26748,7 +26730,7 @@ "30\n" "help.text" msgid "Transparency mode" -msgstr "" +msgstr "የ ግልጽነት ዘዴ" #: 05210700.xhp msgctxt "" @@ -26757,7 +26739,7 @@ "3\n" "help.text" msgid "Specify the type of transparency that you want to apply." -msgstr "" +msgstr "መፈጸም የሚፈልጉትን የ ግልጽነት አይነት ይወስኑ" #: 05210700.xhp msgctxt "" @@ -26766,7 +26748,7 @@ "4\n" "help.text" msgid "No transparency" -msgstr "" +msgstr "ግልጽነት የለም" #: 05210700.xhp msgctxt "" @@ -27315,7 +27297,7 @@ "bm_id3154350\n" "help.text" msgid "positioning;draw objects and controlsdraw objects;positioning and resizingcontrols; positions and sizessizes;draw objectsanchors;types/positions for draw objectsdraw objects; anchoring" -msgstr "" +msgstr "ቦታዎች;የ መሳያ እቃዎች እና መቆጣጠሪያዎችየ መሳያ እቃዎች;ቦታዎች እና እንደ ገና መመጠኛመቆጣጠሪያዎች; ቦታዎች እና መጠኖችመጠኖች;መሳያ እቃዎችመጨረሻ;አይነቶች/ቦታዎች ለ መሳያ እቃዎችመሳያ እቃዎች; መጨረሻ" #: 05230100.xhp msgctxt "" @@ -27628,13 +27610,14 @@ msgstr "የ ተመረጠውን እቃ ማዞሪያ" #: 05230300.xhp +#, fuzzy msgctxt "" "05230300.xhp\n" "hd_id3148983\n" "3\n" "help.text" msgid "Pivot point" -msgstr "" +msgstr "Pivot point" #: 05230300.xhp msgctxt "" @@ -27776,7 +27759,7 @@ "bm_id3149988\n" "help.text" msgid "slanting draw objectsdraw objects; slantingareas; slanting" -msgstr "" +msgstr "ማዝመሚያ መሳያ እቃዎችመሳያ እቃዎች; ማዝመሚያቦታዎች; ማዝመሚያ" #: 05230400.xhp msgctxt "" @@ -27839,7 +27822,7 @@ "7\n" "help.text" msgid "Slant" -msgstr "" +msgstr "ማዝመሚያ" #: 05230400.xhp msgctxt "" @@ -28109,7 +28092,7 @@ "bm_id3152427\n" "help.text" msgid "objects; arranging within stacksarranging; objectsborders; arrangingpictures; arranging within stacksdraw objects; arranging within stackscontrols; arranging within stacksOLE objects; arranging within stackscharts; arranging within stackslayer arrangementlevels; depth staggerdepth stagger" -msgstr "" +msgstr "እቃዎች; ማዘጋጃ በ ክምር ውስጥማዘጋጃ; እቃዎችድንበሮች; ማዘጋጃስእሎች; ማዘጋጃ በ ክምር ውስጥመሳያ እቃዎች; ማዘጋጃ በ ክምር ውስጥመቆጣጠሪያ; ማዘጋጃ በ ክምር ውስጥOLE እቃዎች; ማዘጋጃ በ ክምር ውስጥcharts; ማዘጋጃ በ ክምር ውስጥደረጃ ማዘጋጃደረጃዎች; depth staggerdepth stagger" #: 05250000.xhp msgctxt "" @@ -28127,7 +28110,7 @@ "2\n" "help.text" msgid "Changes the stacking order of the selected object(s)." -msgstr "" +msgstr "የ ተመረጠውን እቃ (ዎች) ክምር ደንብ መቀየሪያ " #: 05250000.xhp msgctxt "" @@ -28153,7 +28136,7 @@ "tit\n" "help.text" msgid "Bring to Front" -msgstr "" +msgstr "ወደ ፊት ማምጫ" #: 05250100.xhp msgctxt "" @@ -28801,7 +28784,7 @@ "67\n" "help.text" msgid "Upright" -msgstr "" +msgstr "በ ቁመት" #: 05280000.xhp msgctxt "" @@ -29165,7 +29148,7 @@ "43\n" "help.text" msgid "Slant" -msgstr "" +msgstr "ማዝመሚያ" #: 05280000.xhp msgctxt "" @@ -29253,7 +29236,7 @@ "50\n" "help.text" msgid "Select a color for the text shadow." -msgstr "" +msgstr "ለ ጽሁፍ ጥላ ቀለም ይምረጡ" #: 05290000.xhp msgctxt "" @@ -29297,7 +29280,7 @@ "8\n" "help.text" msgid "To edit the individual objects of a group, select the group, right-click, and then choose Enter GroupGroup - Enter Group" -msgstr "" +msgstr "እያንዳንዱን እቃዎች በ ቡድን ውስጥ ለማረም: ይምረጡ ቡድን እና በ ቀኝ-ይጫኑ እና ከዛ ይምረጡ ቡድን ማስገቢያቡድን - ማስገቢያ ቡድን" #: 05290000.xhp msgctxt "" @@ -29324,7 +29307,7 @@ "11\n" "help.text" msgid "To exit a group, right-click, and then choose Exit GroupGroup - Exit Group" -msgstr "" +msgstr "ከ ቡድን ለመውጣት: በ ቀኝ-ይጫኑ እና ከዛ ይምረጡ ከ ቡድን መውጫቡድን - ከ ቡድን መውጫ" #: 05290000.xhp msgctxt "" @@ -29345,7 +29328,6 @@ msgstr "መበተን" #: 05290000.xhp -#, fuzzy msgctxt "" "05290000.xhp\n" "hd_id3145609\n" @@ -29355,7 +29337,6 @@ msgstr "ቡድን ማስገቢያ" #: 05290000.xhp -#, fuzzy msgctxt "" "05290000.xhp\n" "hd_id3145068\n" @@ -29520,7 +29501,6 @@ msgstr "ቡድኖች" #: 05290400.xhp -#, fuzzy msgctxt "" "05290400.xhp\n" "par_id3148520\n" @@ -29606,7 +29586,7 @@ "18\n" "help.text" msgid "Scrolls text from right to left." -msgstr "" +msgstr "ጽሁፍ ከ ቀኝ ወደ ግራ ማስኬጃ " #: 05320000.xhp msgctxt "" @@ -29641,7 +29621,7 @@ "21\n" "help.text" msgid "Scrolls text from left to right." -msgstr "" +msgstr "ጽሁፍ ከ ግራ ወደ ቀኝ ማስኬጃ" #: 05320000.xhp msgctxt "" @@ -29676,7 +29656,7 @@ "24\n" "help.text" msgid "Scrolls text from bottom to top." -msgstr "" +msgstr "ጽሁፍ ከ ታች ወደ ላይ ማስኬጃ" #: 05320000.xhp msgctxt "" @@ -29711,7 +29691,7 @@ "27\n" "help.text" msgid "Scrolls text from top to bottom." -msgstr "" +msgstr "ጽሁፍ ከ ላይ ወደ ታች ማስኬጃ" #: 05320000.xhp msgctxt "" @@ -29764,7 +29744,7 @@ "8\n" "help.text" msgid "Text visible when exiting" -msgstr "" +msgstr "በሚወጡ ጊዜ የሚታየው ጽሁፍ" #: 05320000.xhp msgctxt "" @@ -29854,7 +29834,7 @@ "14\n" "help.text" msgid "Pixels" -msgstr "" +msgstr "ፒክስሎች" #: 05320000.xhp msgctxt "" @@ -29863,7 +29843,7 @@ "38\n" "help.text" msgid "Measures increment value in pixels." -msgstr "" +msgstr "የ ጭማሪ ዋጋ በ ፒክስሎች መለኪያ" #: 05320000.xhp msgctxt "" @@ -29872,7 +29852,7 @@ "43\n" "help.text" msgid "Increment box" -msgstr "" +msgstr "የ ጭማሪ ሳጥን" #: 05320000.xhp msgctxt "" @@ -29961,7 +29941,7 @@ "2\n" "help.text" msgid "Changes the height of the current row, or the selected rows." -msgstr "" +msgstr "የ አሁኑን ረድፍ ወይንም የተመረጠውን ረድፍ እርዝመት መቀየሪያ" #: 05340100.xhp msgctxt "" @@ -30032,7 +30012,7 @@ "2\n" "help.text" msgid "Changes the width of the current column, or the selected columns." -msgstr "" +msgstr "የ አሁኑን አምድ ወይንም የተመረጠውን አምድ ስፋት መቀየሪያ" #: 05340200.xhp msgctxt "" @@ -30210,7 +30190,7 @@ "63\n" "help.text" msgid "Horizontally centers the contents of the cell." -msgstr "" +msgstr "በ ክፍሉ ውስጥ ያሉትን ይዞታዎች በ አግድም መሀከል ማሰለፊያ" #: 05340300.xhp msgctxt "" @@ -30359,7 +30339,7 @@ "73\n" "help.text" msgid "Middle" -msgstr "" +msgstr "መሀከል" #: 05340300.xhp msgctxt "" @@ -30368,7 +30348,7 @@ "74\n" "help.text" msgid "Vertically centers the contents of the cell." -msgstr "" +msgstr "በ ክፍሉ ውስጥ ያሉትን ይዞታዎች በ ቁመት መሀከል ማሰለፊያ" #: 05340300.xhp msgctxt "" @@ -30542,7 +30522,7 @@ "44\n" "help.text" msgid "Determine the text flow in a cell." -msgstr "" +msgstr "በ ክፍል ውስጥ የ ጽሁፍ አቅጣጫ መወሰኛ" #: 05340300.xhp msgctxt "" @@ -30569,7 +30549,7 @@ "81\n" "help.text" msgid "Hyphenation active" -msgstr "" +msgstr "ጭረት ንቁ ነው" #: 05340300.xhp msgctxt "" @@ -30610,7 +30590,7 @@ "bm_id3153116\n" "help.text" msgid "data source browsertables in databases;browsing and editingdatabases; editing tablesediting; database tables and queriesqueries; editing in data source view" -msgstr "" +msgstr "ዳታ ምንጭ መቃኛሰንጠረዥ ዳታቤዝ ውስጥ;መቃኛ እና ማረሚያዳታቤዝ; ማረሚያ ሰንጠረዥማረሚያ; ዳታቤዝ ሰንጠረዥ እና ጥያቄዎችጥያቄዎች; ማረሚያ የ ዳታ ምንጭ መመልከቻ" #: 05340400.xhp msgctxt "" @@ -31583,7 +31563,7 @@ "32\n" "help.text" msgid "Inverts the light source." -msgstr "" +msgstr "የ ብርሀን ምንጭ መገልበጫ" #: 05350200.xhp msgctxt "" @@ -31953,7 +31933,7 @@ "11\n" "help.text" msgid "Select a color for the current light source." -msgstr "" +msgstr "ለ አሁኑ የ ብርሀን ምንጭ ቀለም ይምረጡ" #: 05350400.xhp msgctxt "" @@ -32543,7 +32523,7 @@ "tit\n" "help.text" msgid "Material" -msgstr "" +msgstr "እቃ" #: 05350600.xhp msgctxt "" @@ -32561,7 +32541,7 @@ "2\n" "help.text" msgid "Changes the coloring of the selected 3D object." -msgstr "" +msgstr "የተመረጠውን የ 3ዲ እቃ ቀለም መቀየሪያ" #: 05350600.xhp msgctxt "" @@ -32570,7 +32550,7 @@ "4\n" "help.text" msgid "Material" -msgstr "" +msgstr "እቃ" #: 05350600.xhp msgctxt "" @@ -32615,7 +32595,7 @@ "17\n" "help.text" msgid "Select the color that you want to apply to the object." -msgstr "" +msgstr "እቃው ላይ እንዲፈጸም የሚፈልጉትን ቀለም ይምረጡ." #: 05350600.xhp msgctxt "" @@ -32690,7 +32670,6 @@ msgstr "" #: 05350600.xhp -#, fuzzy msgctxt "" "05350600.xhp\n" "hd_id3152996\n" @@ -32786,7 +32765,7 @@ "7\n" "help.text" msgid "Does not distribute the objects horizontally." -msgstr "" +msgstr "እቃዎችን በ አግድም አያሰራጭም " #: 05360000.xhp msgctxt "" @@ -32876,7 +32855,7 @@ "17\n" "help.text" msgid "Specify the vertical distribution for the selected objects." -msgstr "" +msgstr "ለ ተመረጠው እቃ የ ቁመት ስርጭት ይወስኑ" #: 05360000.xhp msgctxt "" @@ -32894,7 +32873,7 @@ "19\n" "help.text" msgid "Does not distribute the objects vertically." -msgstr "" +msgstr "እቃዎችን በ ቁመት አያሰራጭም vertically." #: 05360000.xhp msgctxt "" @@ -33161,14 +33140,13 @@ msgstr "" #: 06010000.xhp -#, fuzzy msgctxt "" "06010000.xhp\n" "hd_id3153353\n" "24\n" "help.text" msgid "Add to Dictionary" -msgstr "መዝገበ ቃላት ማረሚያ" +msgstr "ወደ መዝገበ ቃላት መጨመሪያ" #: 06010000.xhp msgctxt "" @@ -33177,7 +33155,7 @@ "25\n" "help.text" msgid "Adds the unknown word to a user-defined dictionary." -msgstr "" +msgstr "ያልታወቀውን ቃላት በተጠቃሚው-የሚወሰን መዝገበ ቃላት ውስጥ መጨመሪያ" #: 06010000.xhp msgctxt "" @@ -33195,7 +33173,7 @@ "23\n" "help.text" msgid "Skips the unknown word and continues with the spellcheck." -msgstr "" +msgstr "ያልታወቀውን ቃላት መዝለያ እና ፊደል ማረሚያውን መቀጠያ" #: 06010000.xhp msgctxt "" @@ -33238,7 +33216,7 @@ "18\n" "help.text" msgid "Correct" -msgstr "" +msgstr "ማረሚያ" #: 06010000.xhp msgctxt "" @@ -33256,7 +33234,7 @@ "16\n" "help.text" msgid "Correct All" -msgstr "" +msgstr "ሁሉንም ማረሚያ" #: 06010000.xhp msgctxt "" @@ -33419,7 +33397,7 @@ "par_idN105D4\n" "help.text" msgid "Turns hyphenation on and off." -msgstr "" +msgstr "ጭረት ማብሪያ እና ማጥፊያ" #: 06010500.xhp msgctxt "" @@ -33435,7 +33413,7 @@ "par_idN105EB\n" "help.text" msgid "Turns hyphenation on and off." -msgstr "" +msgstr "ጭረት ማብሪያ እና ማጥፊያ" #: 06010500.xhp msgctxt "" @@ -33555,7 +33533,7 @@ "par_idN10595\n" "help.text" msgid "Convert Common Terms" -msgstr "" +msgstr "የተለመደ ስምምነት መቀየሪያ" #: 06010600.xhp msgctxt "" @@ -33571,7 +33549,7 @@ "par_idN1059C\n" "help.text" msgid "Edit terms" -msgstr "" +msgstr "ስምምነቶች ማረሚያ" #: 06010600.xhp msgctxt "" @@ -33763,7 +33741,7 @@ "par_idN105A5\n" "help.text" msgid "Removes the selected user-defined entry from the dictionary." -msgstr "" +msgstr "የተመረጠውን በተጠቃሚ-የሚገለጽ መዝገበ ቃላት ማስወገጃ " #: 06020000.xhp msgctxt "" @@ -33923,7 +33901,7 @@ "24\n" "help.text" msgid "You can replace up to four different colors at one time." -msgstr "" +msgstr "እስከ አራት ቀለሞች ድረስ በ አንድ ጊዜ መቀየር ይችላሉ" #: 06030000.xhp msgctxt "" @@ -34127,7 +34105,7 @@ "bm_id3153391\n" "help.text" msgid "AutoCorrect function;switching on and offAutoComplete, see also AutoCorrect/AutoInput" -msgstr "" +msgstr "በራሱ አራሚ ተግባር;ማብሪያ እና ማጥፊያ መቀየሪያበራሱ መጨረሻ: ይህን ይመልከቱ በራሱ አራሚ/በራሱ ማስገቢያ" #: 06040000.xhp msgctxt "" @@ -34143,7 +34121,7 @@ "par_id3150838\n" "help.text" msgid "Sets the options for automatically replacing text as you type." -msgstr "" +msgstr "ራሱ በራሱ በሚጽፉ ጊዜ ፊደል ማረሚያ ምርጫዎች ማሰናጃ" #: 06040000.xhp msgctxt "" @@ -34167,7 +34145,7 @@ "par_id3146137\n" "help.text" msgid "AutoCorrect" -msgstr "" +msgstr "በራሱ አራሚ" #: 06040100.xhp msgctxt "" @@ -34325,7 +34303,7 @@ "18\n" "help.text" msgid "Automatically creates a hyperlink when you type a URL." -msgstr "" +msgstr "ራሱ በራሱ hyperlink መፍጠሪያ በሚጽፉ ጊዜ URL." #: 06040100.xhp msgctxt "" @@ -34334,7 +34312,7 @@ "19\n" "help.text" msgid "Replace Dashes" -msgstr "" +msgstr "ዳሾችን መቀየሪያ" #: 06040100.xhp msgctxt "" @@ -34769,14 +34747,13 @@ msgstr "ከ አሁኑ ሰነድ ውስጥ ባዶ አንቀጾች ማስወገጃ ይህን ሲመርጡ አቀራረብ - በራሱ አራሚ - መፈጸሚያ." #: 06040100.xhp -#, fuzzy msgctxt "" "06040100.xhp\n" "hd_id3152375\n" "60\n" "help.text" msgid "Replace Custom Styles" -msgstr "ዘዴዎች መፈጸሚያ" +msgstr "Custom ዘዴዎች መቀየሪያ" #: 06040100.xhp msgctxt "" @@ -35165,7 +35142,7 @@ "bm_id3153899\n" "help.text" msgid "quotes; customcustom quotesAutoCorrect function; quotesreplacing;ordinal numbersordinal numbers;replacing" -msgstr "" +msgstr "ጥቅሶች; customcustom ጥቅሶችበራሱ አራሚ ተግባር; ጥቅሶችመቀየሪያ;መደበኛ ቁጥሮችመደበኛ ቁጥሮች;መቀየሪያ" #: 06040400.xhp #, fuzzy @@ -35219,7 +35196,7 @@ "25\n" "help.text" msgid "Format ordinal number suffixes (1st ... 1st)" -msgstr "" +msgstr "አቀራረብ የ መደበኛ ቁጥር መድረሻ (1ኛ ... 1)" #: 06040400.xhp msgctxt "" @@ -35335,7 +35312,7 @@ "tit\n" "help.text" msgid "AutoCorrect context menu" -msgstr "" +msgstr "የ አገባብ ዝርዝር በራሱ አራሚ" #: 06040500.xhp msgctxt "" @@ -35343,7 +35320,7 @@ "bm_id3152823\n" "help.text" msgid "AutoCorrect function; context menuspellcheck; context menus" -msgstr "" +msgstr "በራሱ አራሚ ተግባሮች; የ አገባብ ዝርዝርበራሱ አራሚ; የ አገባብ ዝርዝር " #: 06040500.xhp msgctxt "" @@ -35352,7 +35329,7 @@ "1\n" "help.text" msgid "AutoCorrect context menu" -msgstr "" +msgstr "የ አገባብ ዝርዝር በራሱ አራሚ" #: 06040500.xhp msgctxt "" @@ -35612,7 +35589,7 @@ "104\n" "help.text" msgid "Accept with" -msgstr "" +msgstr "ተቀብያለሁ በ" #: 06040600.xhp msgctxt "" @@ -35621,7 +35598,7 @@ "105\n" "help.text" msgid "Select the key that you want to use to accept the automatic word completion." -msgstr "" +msgstr "ራሱ በራሱ የ ቃላት መጨረሻ ዘዴን ለመቀበል ቁልፍ ይምረጡ" #: 06040600.xhp msgctxt "" @@ -35629,7 +35606,7 @@ "par_idN106F8\n" "help.text" msgid "Press Esc to decline the word completion." -msgstr "" +msgstr "ከ ቃላት መጨረሻ ዘዴ ለመውጣት መዝለያውን ይጫኑ" #: 06040600.xhp msgctxt "" @@ -35798,7 +35775,7 @@ "tit\n" "help.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "ነጥቦች እና ቁጥር መስጫዎች" #: 06050000.xhp msgctxt "" @@ -35825,7 +35802,7 @@ "3\n" "help.text" msgid "The Bullets and Numbering dialog has the following tabs:" -msgstr "" +msgstr "የ ነጥቦች እና ቁጥር መስጫዎች ንግግር የሚቀጥለው tabs አለው:" #: 06050000.xhp msgctxt "" @@ -35911,7 +35888,7 @@ "par_id3149549\n" "help.text" msgid "Position tab (Bullets and Numbering dialog)" -msgstr "" +msgstr "ቦታ tab (የ ነጥቦች እና ቁጥር መስጫዎች ንግግር)" #: 06050100.xhp msgctxt "" @@ -35919,7 +35896,7 @@ "par_id3154317\n" "help.text" msgid "Options tab (Bullets and Numbering dialog)" -msgstr "" +msgstr "ቦታ tab (የ ነጥቦች እና ቁጥር መስጫዎች ንግግር)" #: 06050200.xhp msgctxt "" @@ -35945,7 +35922,7 @@ "2\n" "help.text" msgid "Displays the different numbering styles that you can apply." -msgstr "" +msgstr "እርስዎ ሊፈጽሙት የሚችሉት የ ቁጥር አሰጣጥ ዘዴዎች ማሳያ" #: 06050200.xhp msgctxt "" @@ -35971,7 +35948,7 @@ "par_id3149355\n" "help.text" msgid "Position tab (Bullets and Numbering dialog)" -msgstr "" +msgstr "ቦታ tab (የ ነጥቦች እና ቁጥር መስጫዎች ንግግር)" #: 06050200.xhp msgctxt "" @@ -35979,7 +35956,7 @@ "par_id3152918\n" "help.text" msgid "Options tab (Bullets and Numbering dialog)" -msgstr "" +msgstr "ቦታ tab (የ ነጥቦች እና ቁጥር መስጫዎች ንግግር)" #: 06050300.xhp msgctxt "" @@ -36031,7 +36008,7 @@ "par_id3144436\n" "help.text" msgid "Position tab (Bullets and Numbering dialog)" -msgstr "" +msgstr "ቦታ tab (የ ነጥቦች እና ቁጥር መስጫዎች ንግግር)" #: 06050300.xhp msgctxt "" @@ -36039,16 +36016,15 @@ "par_id3153935\n" "help.text" msgid "Options tab (Bullets and Numbering dialog)" -msgstr "" +msgstr "ቦታ tab (የ ነጥቦች እና ቁጥር መስጫዎች ንግግር)" #: 06050400.xhp -#, fuzzy msgctxt "" "06050400.xhp\n" "tit\n" "help.text" msgid "Image" -msgstr "ምስሎች" +msgstr "ምስል" #: 06050400.xhp msgctxt "" @@ -36104,7 +36080,7 @@ "par_id061120090437338\n" "help.text" msgid "Position tab (Bullets and Numbering dialog)" -msgstr "" +msgstr "ቦታ tab (የ ነጥቦች እና ቁጥር መስጫዎች ንግግር)" #: 06050400.xhp msgctxt "" @@ -36112,7 +36088,7 @@ "par_id0611200904373391\n" "help.text" msgid "Options tab (Bullets and Numbering dialog)" -msgstr "" +msgstr "ቦታ tab (የ ነጥቦች እና ቁጥር መስጫዎች ንግግር)" #: 06050500.xhp msgctxt "" @@ -36128,7 +36104,7 @@ "bm_id4096499\n" "help.text" msgid "numbering;options bullet lists; formatting options font sizes;bullets" -msgstr "" +msgstr "ቁጥር መስጫ;ምርጫ የ ነጥቦች ዝርዝር; አቀራረብ ምርጫ የ ፊደል መጠን;ነጥቦች" #: 06050500.xhp msgctxt "" @@ -36236,7 +36212,7 @@ "73\n" "help.text" msgid "Arabic numerals" -msgstr "" +msgstr "የ አረብኛ ቁጥሮች" #: 06050500.xhp msgctxt "" @@ -36290,7 +36266,7 @@ "69\n" "help.text" msgid "Roman numerals (uppercase)" -msgstr "" +msgstr "የ ሮማን ቁጥሮች (uppercase)" #: 06050500.xhp msgctxt "" @@ -36308,7 +36284,7 @@ "71\n" "help.text" msgid "Roman numerals (lowercase)" -msgstr "" +msgstr "የ ሮማን ቁጥሮች (lowercase)" #: 06050500.xhp msgctxt "" @@ -36374,14 +36350,13 @@ msgstr "" #: 06050500.xhp -#, fuzzy msgctxt "" "06050500.xhp\n" "par_id3152811\n" "79\n" "help.text" msgid "Image" -msgstr "ምስሎች" +msgstr "ምስል" #: 06050500.xhp msgctxt "" @@ -36525,7 +36500,7 @@ "34\n" "help.text" msgid "Enter a new starting number for the current level." -msgstr "" +msgstr "አዲስ ቁጥር ማስጀመሪያ በ አሁኑ ደረጃ ያስገቡ" #: 06050500.xhp msgctxt "" @@ -36543,17 +36518,16 @@ "105\n" "help.text" msgid "Select a color for the current numbering style." -msgstr "" +msgstr "ለ አሁኑ ቁጥር መስጫ ዘዴ ቀለም ይምረጡ " #: 06050500.xhp -#, fuzzy msgctxt "" "06050500.xhp\n" "hd_id3159180\n" "107\n" "help.text" msgid "Relative size Relative size " -msgstr "ቀለም ቀለም " +msgstr "" #: 06050500.xhp msgctxt "" @@ -36580,7 +36554,7 @@ "82\n" "help.text" msgid "Opens the Special Characters dialog, where you can select a bullet symbol." -msgstr "" +msgstr "መክፈቻ የ ተለዩ ባህሪዎች ንግግር የ ነጥብ ምልክቶች የሚመርጡበት" #: 06050500.xhp msgctxt "" @@ -36691,24 +36665,22 @@ msgstr "ሁሉንም ደረጃዎች " #: 06050500.xhp -#, fuzzy msgctxt "" "06050500.xhp\n" "par_id3148455\n" "97\n" "help.text" msgid "Set the numbering options for all of the levels. " -msgstr "በ ፋይል ውስጥ የ መስመሮች ቁጥር " +msgstr "ለሁሉም ደረጃዎች የ ቁጥር መስጫ ምርጫ ማሰናጃ " #: 06050500.xhp -#, fuzzy msgctxt "" "06050500.xhp\n" "hd_id3155852\n" "98\n" "help.text" msgid "Consecutive numbering " -msgstr "የመጨረሻ መስመር " +msgstr "ተከታታይ ቁጥር መስጫ " #: 06050500.xhp msgctxt "" @@ -36769,7 +36741,7 @@ "13\n" "help.text" msgid "Select the level(s) that you want to modify." -msgstr "" +msgstr "ማሻሻል የሚፈልጉትን ደረጃ(ዎች) ይምረጡ" #: 06050600.xhp msgctxt "" @@ -36777,7 +36749,7 @@ "hd_id6561784\n" "help.text" msgid "Numbering followed by" -msgstr "" +msgstr "ቁጥር መስጫውን ተከትሎ በ" #: 06050600.xhp msgctxt "" @@ -36785,7 +36757,7 @@ "par_id423291\n" "help.text" msgid "Select the element that will follow the numbering: a tab stop, a space, or nothing." -msgstr "" +msgstr "ይምረጡ ቁጥር አሰጣጡን የሚከተለው አካል: tab ማስቆሚያ, ክፍተት: ወይንም ምንም " #: 06050600.xhp msgctxt "" @@ -36917,14 +36889,13 @@ msgstr "" #: 06050600.xhp -#, fuzzy msgctxt "" "06050600.xhp\n" "hd_id3156194\n" "8\n" "help.text" msgid "Minimum space between numbering and text" -msgstr "ቁጥር መስጫ - ምልክት መፈጸሚያ" +msgstr "አነስተኛ ክፍተት በ ቁጥር መስጫ እና በ ጽሁፍ መካከል" #: 06050600.xhp msgctxt "" @@ -37003,7 +36974,7 @@ "4\n" "help.text" msgid "Displays the name of the selected macro. To create or to change the name of a macro, enter a name here." -msgstr "" +msgstr "የተመረጠውን macro ስም ማሳያ: የ macro ስም ለ መፍጠር ወይንም ለ መቀየር ስም እዚህ ያስገቡ" #: 06130000.xhp msgctxt "" @@ -37120,7 +37091,7 @@ "21\n" "help.text" msgid "To delete a macro, select it, and then click Delete." -msgstr "" +msgstr "macro ለማጥፋት ይምረጡት እና ከዛ ይጫኑ ማጥፊያ." #: 06130000.xhp msgctxt "" @@ -37138,7 +37109,7 @@ "65\n" "help.text" msgid "Saves the recorded macro in a new library." -msgstr "" +msgstr "የ ተመዘገበውን macro በ አዲስ መጻህፍት ቤት ውስጥ ማስቀመጫ" #: 06130000.xhp msgctxt "" @@ -37147,7 +37118,7 @@ "66\n" "help.text" msgid "New Module" -msgstr "" +msgstr "አዲስ ክፍል" #: 06130000.xhp msgctxt "" @@ -37156,7 +37127,7 @@ "67\n" "help.text" msgid "Saves the recorded macro in a new module." -msgstr "" +msgstr "የ ተመዘገበውን macro በ አዲስ ክፍል ውስጥ ማስቀመጫ" #: 06130000.xhp msgctxt "" @@ -37174,7 +37145,7 @@ "23\n" "help.text" msgid "Opens the Macro Organizer dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries." -msgstr "" +msgstr "መክፈቻ የ Macro Organizer ንግግር: መጨመሪያ ማረሚያ ወይንም ማጥፊያ የ ነበረውን macro modules, ንግግሮች እና መጻህፍይ ቤቶች" #: 06130000.xhp msgctxt "" @@ -37192,7 +37163,7 @@ "25\n" "help.text" msgid "Lets you manage modules or dialog boxes." -msgstr "" +msgstr "ክፍሎች ወይንም የ ንግግር ሳጥኖችን ማስተዳደር ያስችሎታል" #: 06130000.xhp msgctxt "" @@ -37246,7 +37217,7 @@ "37\n" "help.text" msgid "Opens the editor and creates a new module." -msgstr "" +msgstr "አዲስ ክፍል መፍጠሪያ እና ማረም ያስችሎታል" #: 06130000.xhp msgctxt "" @@ -37264,7 +37235,7 @@ "40\n" "help.text" msgid "Opens the editor and creates a new dialog." -msgstr "" +msgstr "አዲስ ንግግር መፍጠሪያ እና ማረም ያስችሎታል " #: 06130000.xhp msgctxt "" @@ -37354,7 +37325,7 @@ "51\n" "help.text" msgid "Assigns or edits the password for the selected library." -msgstr "" +msgstr "መመደቢያ ወይንም ማረሚያ የ መግቢያ ቃል ለ ተመረጠው መጻህፍት ቤት" #: 06130000.xhp msgctxt "" @@ -37390,7 +37361,7 @@ "57\n" "help.text" msgid "Enter a name for the new library or module." -msgstr "" +msgstr "ለ አዲሱ መጻህፍት ቤት ወይንም ክፍል ስም ያስገቡ" #: 06130000.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/shared/04.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared/04.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/shared/04.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared/04.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 11:23+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-09 16:17+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439464997.000000\n" +"X-POOTLE-MTIME: 1441815435.000000\n" #: 01010000.xhp msgctxt "" @@ -2572,7 +2572,7 @@ "32\n" "help.text" msgid "Shortcuts for creating Basic dialogs" -msgstr "አቋራጭ ቁልፎች መሰረታዊ ንግግር ለመፍጠር" +msgstr "አቋራጮች መሰረታዊ ንግግር ለመፍጠር" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-18 14:46+0000\n" +"PO-Revision-Date: 2015-08-31 22:54+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439909217.000000\n" +"X-POOTLE-MTIME: 1441061673.000000\n" #: 02000000.xhp msgctxt "" @@ -183,7 +183,7 @@ "29\n" "help.text" msgid "Query Through Several Tables" -msgstr "" +msgstr "ጥያቄ በ በርካታ ሰንጠረዦች ውስጥ" #: 02000000.xhp msgctxt "" @@ -244,7 +244,7 @@ "bm_id3150445\n" "help.text" msgid "queries; missing elements (Base)" -msgstr "" +msgstr "ጥያቄዎች; የ ጎደሉ አካላቶች (Base)" #: 02000002.xhp msgctxt "" @@ -395,7 +395,7 @@ "288\n" "help.text" msgid "The Query Design View allows you to create and edit a database query." -msgstr "" +msgstr "ጥያቄ ንድፍ መመልከቻ እርስዎ የ ዳታቤዝ ጥያቄ መፍጠር እና ማረም ያስችሎታል" #: 02010100.xhp msgctxt "" @@ -429,7 +429,7 @@ "3\n" "help.text" msgid "The Design View" -msgstr "" +msgstr "የ ንድፍ መመልከቻ" #: 02010100.xhp msgctxt "" @@ -618,7 +618,7 @@ "13\n" "help.text" msgid "Table Relations" -msgstr "" +msgstr "የ ሰንጠረዥ ዝምድና" #: 02010100.xhp msgctxt "" @@ -699,7 +699,7 @@ "145\n" "help.text" msgid "Deleting relations" -msgstr "" +msgstr "ግንኙነቱን ማጥፊያ" #: 02010100.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/shared/guide.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared/guide.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/shared/guide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared/guide.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-20 15:19+0000\n" +"PO-Revision-Date: 2015-09-09 16:22+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440083950.000000\n" +"X-POOTLE-MTIME: 1441815746.000000\n" #: aaa_start.xhp msgctxt "" @@ -144,7 +144,7 @@ "tit\n" "help.text" msgid "Accessibility in %PRODUCTNAME" -msgstr "" +msgstr "መድረሻ በ %PRODUCTNAME" #: accessibility.xhp msgctxt "" @@ -152,7 +152,7 @@ "bm_id3150502\n" "help.text" msgid "accessibility; %PRODUCTNAME features" -msgstr "" +msgstr "መድረሻ; %PRODUCTNAME ገጽታዎች" #: accessibility.xhp msgctxt "" @@ -161,7 +161,7 @@ "7\n" "help.text" msgid "Accessibility in %PRODUCTNAME" -msgstr "" +msgstr "መድረሻ በ %PRODUCTNAME" #: accessibility.xhp msgctxt "" @@ -285,7 +285,7 @@ "2\n" "help.text" msgid "Extended tips provide a brief description of the function of a particular icon, text box or menu command when you rest your cursor on that item." -msgstr "" +msgstr "የተስፋፉ ምክሮች የሚያቀርበው ለ ተግባሮች ሰፊ መግለጫ ነው ለ ተወሰነ ምልክት ተግባር የ ጽሁፍ ሳጥን ወይንም ትእዛዝ እርስዎ መጠቆሚያውን በላዩ ላይ በሚያሳርፉበት ጊዜ" #: active_help_on_off.xhp msgctxt "" @@ -531,7 +531,7 @@ "bm_id3147399\n" "help.text" msgid "accessibility; $[officename] assistive technologyassistive technology in $[officename]screen readersscreen magnifiersmagnifiers" -msgstr "" +msgstr "መድረሻ; $[officename] የ ቴክኖሎጂ እርዳታየ ቴክኖሎጂ እርዳታ in $[officename]መመልከቻ አንባቢመመልከቻ ማጉሊያማጉሊያ" #: assistive.xhp msgctxt "" @@ -540,7 +540,7 @@ "22\n" "help.text" msgid "Assistive Tools in $[officename]" -msgstr "" +msgstr "የ እርዳታ መሳሪያዎች ለ $[officename]" #: assistive.xhp msgctxt "" @@ -593,7 +593,7 @@ "9\n" "help.text" msgid "On-screen keyboards enable users to perform almost all data input and commands with a mouse." -msgstr "" +msgstr "የ ፊደል ገበታ በ መመልከቻው-ላይ ተጠቃሚውን ሁሉንም ዳታ እና ትእዛዞች መፈጸም ያስችለዋል አይጥን በ መጠቀም" #: assistive.xhp msgctxt "" @@ -1059,7 +1059,7 @@ "10\n" "help.text" msgid "In the User-defined area select the edge(s) that you want to appear in a common layout. Click on an edge in the preview to toggle the selection of an edge." -msgstr "" +msgstr "በ ተጠቃሚ-የሚገለጽ ቦታ ይምረጡ ጠርዝ(ዞች) በ መደበኛ ቦታ እንዲታይ የሚፈልጉትን ይጫኑ በ ጠረዙ ላይ በ ቅድመ እይታ መመልከቻ ላይ ለ መቀያየር የ ጠርዝ ምርጫውን" #: border_paragraph.xhp msgctxt "" @@ -1201,7 +1201,7 @@ "10\n" "help.text" msgid "In the User-defined area select the edge(s) that you want to appear in a common layout. Click on an edge in the preview to toggle the selection of an edge." -msgstr "" +msgstr "በ ተጠቃሚ-የሚገለጽ ቦታ ይምረጡ ጠርዝ(ዞች) በ መደበኛ ቦታ እንዲታይ የሚፈልጉትን ይጫኑ በ ጠረዙ ላይ በ ቅድመ እይታ መመልከቻ ላይ ለ መቀያየር የ ጠርዝ ምርጫውን" #: border_table.xhp msgctxt "" @@ -10268,7 +10268,7 @@ "tit\n" "help.text" msgid "Shortcuts (%PRODUCTNAME Accessibility)" -msgstr "አቋራጮች (%PRODUCTNAME Accessibility)" +msgstr "አቋራጮች (%PRODUCTNAME መድረሻ)" #: keyboard.xhp msgctxt "" @@ -10276,7 +10276,7 @@ "bm_id3158421\n" "help.text" msgid "accessibility;general shortcuts shortcut keys; %PRODUCTNAME accessibility" -msgstr "" +msgstr "መድረሻ;ባጠቃላይ አቋራጮች አቋራጭ ቁልፎች; %PRODUCTNAME መድረሻ" #: keyboard.xhp msgctxt "" @@ -10285,7 +10285,7 @@ "52\n" "help.text" msgid "Shortcuts (%PRODUCTNAME Accessibility)" -msgstr "አቋራጮች (%PRODUCTNAME Accessibility)" +msgstr "አቋራጮች (%PRODUCTNAME መድረሻ)" #: keyboard.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/shared.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/shared.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-18 21:30+0000\n" +"PO-Revision-Date: 2015-09-01 14:56+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439933459.000000\n" +"X-POOTLE-MTIME: 1441119378.000000\n" #: 3dsettings_toolbar.xhp msgctxt "" @@ -699,7 +699,7 @@ "par_idN10901\n" "help.text" msgid "Inserts a spreadsheet as an OLE object. Enter or paste data into the cells, then click outside the object to return to Impress." -msgstr "" +msgstr "ሰንጠረዥ ማስገቢያ እንደ የ OLE እቃ: ዳታ ወደ ክፍሉ ያስገቡ ወይንም ይለጥፉ: እና ከዛ ይጫኑ ከ እቃው ውጪ ወደ ማስደነቂያ ለመመለስ" #: main0201.xhp msgctxt "" @@ -1086,7 +1086,7 @@ "5\n" "help.text" msgid "Shows the number of the current record. Enter a number to go to the corresponding record." -msgstr "" +msgstr "የ አሁኑን መዝገብ ቁጥር ማሳያ: ቁጥር ያስገቡ ወደ ተመሳሳዩ መዝገብ ለመሄድ" #: main0213.xhp msgctxt "" @@ -1294,7 +1294,7 @@ "21\n" "help.text" msgid "Deletes a record. A query needs to be confirmed before deleting." -msgstr "" +msgstr "መዝገብ ማጥፊያ: ጥያቄ መዝገብ ከማጥፋቱ በፊት ማረጋገጫ ይጠይቃል" #: main0213.xhp msgctxt "" @@ -2111,7 +2111,7 @@ "5\n" "help.text" msgid "Activate Java platform support by choosing %PRODUCTNAME - PreferencesTools - Options - $[officename] - Advanced." -msgstr "" +msgstr "ማስነሻ የ Java platform ድጋፍ በ መምረጥ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - $[officename] - የረቀቀ." #: main0650.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/simpress/01.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/simpress/01.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/simpress/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/simpress/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-06-29 17:24+0000\n" +"PO-Revision-Date: 2015-08-23 22:55+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435598641.000000\n" +"X-POOTLE-MTIME: 1440370508.000000\n" #: 01170000.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3153728\n" "help.text" msgid "Macromedia Flash exportexporting;to Macromedia Flash format" -msgstr "" +msgstr "Macromedia Flash exportexporting;to Macromedia Flash format" #: 01170000.xhp msgctxt "" @@ -4621,7 +4621,7 @@ "15\n" "help.text" msgid "Dimension line below the object" -msgstr "" +msgstr "የ አቅጣጫ መስመር ከ እቃው ስር" #: 05150000.xhp msgctxt "" @@ -4666,7 +4666,7 @@ "20\n" "help.text" msgid "Sets the properties of the dimension text." -msgstr "" +msgstr "የ ጽሁፍ አቅጣጫ ባህሪዎች ማሰናጃ" #: 05150000.xhp msgctxt "" @@ -4693,7 +4693,7 @@ "88\n" "help.text" msgid "The AutoVertical and AutoHorizontal checkboxes must be cleared before you can assign the Text position." -msgstr "" +msgstr "የ በራሱ በ ቁመት and በራሱ በ አግድም ምልክት ማድረጊያ ሳጥን መጽዳት አለበት ከ መመደቡ በፊት የ ጽሁፍ ቦታ." #: 05150000.xhp msgctxt "" @@ -5178,7 +5178,7 @@ "1\n" "help.text" msgid "Hyphenation" -msgstr "" +msgstr "ጭረት" #: 06030000.xhp msgctxt "" @@ -5300,7 +5300,7 @@ "29\n" "help.text" msgid "Lists sounds that can played during the slide transition." -msgstr "" +msgstr "ተንሸራታቹ በሚሸጋገር ጊዜ ሊጫወቱ የሚችሉ የ ድምፅ ዝርዝሮች" #: 06040000.xhp msgctxt "" @@ -5516,7 +5516,7 @@ "8\n" "help.text" msgid "Plays the animation backwards." -msgstr "" +msgstr "እንቅስቃሴውን የኋሊዮሽ ማጫወቻ" #: 06050000.xhp msgctxt "" @@ -5542,7 +5542,7 @@ "10\n" "help.text" msgid "Stops playing the animation." -msgstr "" +msgstr "እንቅስቃሴውን ማጫወቱን ማስቆሚያ" #: 06050000.xhp msgctxt "" @@ -5568,7 +5568,7 @@ "12\n" "help.text" msgid "Plays the animation." -msgstr "" +msgstr "እንቅስቃሴውን ማጫወቻ" #: 06050000.xhp msgctxt "" @@ -5701,7 +5701,7 @@ "39\n" "help.text" msgid "Adds selected object(s) as a single image." -msgstr "" +msgstr "የተመረጠውን እቃ(ዎች) እንደ አንድ ምስል መጨመሪያ" #: 06050000.xhp msgctxt "" @@ -5780,7 +5780,7 @@ "43\n" "help.text" msgid "Deletes current image from the animation sequence." -msgstr "" +msgstr "የ አሁኑን ምስል ከ እንቅስቃሴው ቅደም ተከተል ውስጥ ማጥፊያ" #: 06050000.xhp msgctxt "" @@ -5815,7 +5815,7 @@ "45\n" "help.text" msgid "Deletes all of the images in the animation." -msgstr "" +msgstr "ሁሉንም ምስሎች ከ እንቅስቃሴው ውስጥ ማጥፊያ" #: 06050000.xhp msgctxt "" @@ -5904,7 +5904,7 @@ "29\n" "help.text" msgid "Combines images into a single image." -msgstr "" +msgstr "ምስሎችን ወደ አንድ ምስል መቀላቀያ" #: 06050000.xhp msgctxt "" @@ -5922,7 +5922,7 @@ "33\n" "help.text" msgid "Aligns the images in your animation." -msgstr "" +msgstr "ምስሎች በ እንቅስቃሴው ውስጥ ማሰለፊያ" #: 06050000.xhp msgctxt "" @@ -5940,7 +5940,7 @@ "35\n" "help.text" msgid "Inserts the animation into the current slide." -msgstr "" +msgstr "እንቅስቃሴውን ወደ አሁኑ ተንሸራታች ውስጥ ማስገቢያ" #: 06060000.xhp msgctxt "" @@ -5956,7 +5956,7 @@ "bm_id3148837\n" "help.text" msgid "sounds; for effectseffects; soundssounds; formatspresentations; ordering of effectslists;animationsanimations;list of" -msgstr "" +msgstr "ድምፆች; ለ ውጤትውጤት; ድምፆችድምፆች; አቀራረብማቅረቢያ; ቅደም ተከተል ለ ውጤትዝርዝር;እንቅስቃሴእንቅስቃሴ;ዝርዝር ለ" #: 06060000.xhp msgctxt "" @@ -5974,7 +5974,7 @@ "2\n" "help.text" msgid "Assigns effects to selected objects." -msgstr "" +msgstr "ለ ተመረጡት እቃዎች ውጤት መመደቢያ" #: 06060000.xhp msgctxt "" @@ -5990,7 +5990,7 @@ "par_idN10792\n" "help.text" msgid "The animation list displays all animations for the current slide. " -msgstr "" +msgstr "የ እንቅስቃሴ ዝርዝር የሚያሳየው ሁሉንም እንቅስቃሴዎች ለ አሁኑ ተንሸራታች ነው " #: 06060000.xhp msgctxt "" @@ -6070,7 +6070,7 @@ "par_idN107BC\n" "help.text" msgid "Opens the Custom Animation dialog to add another animation effect for the selected object on the slide." -msgstr "" +msgstr "መክፈቻ የ Custom እንቅስስቃሴ ንግግር ለ መጨመር ሌላ የ እንቅስቃሴ ውጤት በ ተመረጠው ተንሸራታች እቃ ላይ " #: 06060000.xhp msgctxt "" @@ -6102,7 +6102,7 @@ "par_idN107E6\n" "help.text" msgid "Removes the selected animation effects from the animation list." -msgstr "" +msgstr "የተመረጠውን የ እንቅስቃሴ ውጤት ከ እንቅስቃሴ ዝርዝር ውስጥ ማስወገጃ" #: 06060000.xhp msgctxt "" @@ -6126,7 +6126,7 @@ "par_idN107F3\n" "help.text" msgid "On click - the animation stops at this effect until the next mouse click." -msgstr "" +msgstr "በሚጫኑ ጊዜ - እንቅስቃሴው ውጤቱን ያስቆማል እንደገና በ አይጥ እስከሚጫኑ ድረሰ" #: 06060000.xhp msgctxt "" @@ -6134,7 +6134,7 @@ "par_idN107FA\n" "help.text" msgid "With previous - the animation runs immediately." -msgstr "" +msgstr "ቀደም ያለው - እንቅስቃሴው ወዲያውኑ ይጫወታል" #: 06060000.xhp msgctxt "" @@ -6142,7 +6142,7 @@ "par_idN10801\n" "help.text" msgid "After previous - the animation runs as soon as the previous animation ends." -msgstr "" +msgstr "ቀደም ያለው በኋላ - እንቅስቃሴው ወዲያውኑ ቀደም ያለው እንቅስቃሴ እንደጨረሰ ይጫወታል" #: 06060000.xhp msgctxt "" @@ -6174,7 +6174,7 @@ "par_idN10824\n" "help.text" msgid "Specifies the speed or duration of the selected animation effect." -msgstr "" +msgstr "የተመረጠውን የ እንቅስቃሴ ውጤት ፍጥነት ወይንም የሚቆይበትን ጊዜ መወሰኛ " #: 06060000.xhp msgctxt "" @@ -6254,7 +6254,7 @@ "bm_id3153246\n" "help.text" msgid "interactions; objects in interactive presentationsprograms run by mouse click in presentationsrunning macros/programs in presentationsmacros; running in presentationspresentations;exiting by interactionexiting;by clicking objects" -msgstr "" +msgstr "ተፅእኖ; እቃዎች ተፅእኖ በ ማቅረቢያፕሮግራሞች አይጥ ሲጫኑ ማስኬጃ በ ማቅረቢያ ውስጥማስኬጃ macros/ፕሮግራሞች በ ማቅረቢያ ውስጥmacros; ማስኬጃ በ ማቅረቢያ ውስጥማቅረቢያ;የ ነበረ ተፅእኖየ ነበረ; በመጫን እቃዎችን" #: 06070000.xhp msgctxt "" @@ -6533,7 +6533,7 @@ "18\n" "help.text" msgid "Play audio" -msgstr "" +msgstr "ድምፅ ማጫወቻ" #: 06070000.xhp msgctxt "" @@ -6542,7 +6542,7 @@ "60\n" "help.text" msgid "Plays an audio file." -msgstr "" +msgstr "የ ድምፅ ፋይል ማጫወቻ" #: 06070000.xhp msgctxt "" @@ -6551,17 +6551,16 @@ "19\n" "help.text" msgid "Audio" -msgstr "" +msgstr "ድምፅ" #: 06070000.xhp -#, fuzzy msgctxt "" "06070000.xhp\n" "par_id3150467\n" "61\n" "help.text" msgid "Define the location of the audio file." -msgstr "የድምፅ ፋይል አካባቢ ይግለጹ" +msgstr "የ ድምፅ ፋይል አካባቢ ይግለጹ" #: 06070000.xhp msgctxt "" @@ -6570,7 +6569,7 @@ "20\n" "help.text" msgid "Audio" -msgstr "" +msgstr "ድምፅ" #: 06070000.xhp msgctxt "" @@ -6579,7 +6578,7 @@ "62\n" "help.text" msgid "Enter a path to the audio file you want to open, or click Browse to locate the file." -msgstr "" +msgstr "መክፈት የሚፈልጉትን የ ድምፅ ፋይል መንገድ ያስገቡ ወይንም ይጫኑ መቃኝ ፋይሉን ፈልጎ ለማግኘት" #: 06070000.xhp msgctxt "" @@ -6591,7 +6590,6 @@ msgstr "መቃኛ" #: 06070000.xhp -#, fuzzy msgctxt "" "06070000.xhp\n" "par_id3147171\n" @@ -6619,7 +6617,6 @@ msgstr "ማጫወቻ" #: 06070000.xhp -#, fuzzy msgctxt "" "06070000.xhp\n" "par_id3145202\n" @@ -6698,7 +6695,7 @@ "39\n" "help.text" msgid "Run macro" -msgstr "" +msgstr "macro ማስኬጃ" #: 06070000.xhp msgctxt "" @@ -6707,7 +6704,7 @@ "83\n" "help.text" msgid "Runs a macro during the slide show." -msgstr "" +msgstr "macro ማስኬጃ ተንሸራታች በሚታይበት ጊዜ" #: 06070000.xhp msgctxt "" @@ -6890,7 +6887,7 @@ "8\n" "help.text" msgid "Enter the number of the start slide." -msgstr "" +msgstr "እንዲጀምር የሚፈጉትን ተንሸራትታች ቁጥር ያስገቡ" #: 06080000.xhp msgctxt "" @@ -6908,7 +6905,7 @@ "87\n" "help.text" msgid "Runs a custom slide show in the order that you defined in Slide Show - Custom Slide Show." -msgstr "" +msgstr "የ custom ተንሸራታች ማሳያ ማስኬጃ እርስዎ በገጽት ደንብ መሰረት ተንሸራታች ማሳያ - Custom ተንሸራታች ማሳያ." #: 06080000.xhp msgctxt "" @@ -7043,7 +7040,7 @@ "14\n" "help.text" msgid "Slides never change automatically when this box is selected." -msgstr "" +msgstr "ተንሸራታች ራሱ በራሱ በፍጹም አይቀይርም ይህን ሳጥን ከመረጡ" #: 06080000.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/smath/02.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/smath/02.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/smath/02.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/smath/02.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2014-01-03 21:29+0000\n" -"Last-Translator: Samson \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-08-31 23:26+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Pootle 2.5.0\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1388784560.0\n" +"X-POOTLE-MTIME: 1441063602.000000\n" #: 03010000.xhp msgctxt "" @@ -57,7 +57,7 @@ "14\n" "help.text" msgid "You can also click a position in the document to move the cursor to its corresponding position in the Commands window." -msgstr "" +msgstr "እርስዎ መጫን ይችላሉ በ ሰነዱ ውስጥ ማንኛውም ቦታ መጠቆሚያውን ተመሳሳይ ቦታ በ ትእዛዝ መስኮት" #: 03010000.xhp msgctxt "" @@ -66,4 +66,4 @@ "15\n" "help.text" msgid "Double-clicking a character or symbol in the document moves the focus of the cursor to the Commands window and highlights its respective position." -msgstr "" +msgstr "ሁለት ጊዜ-ይጫኑ ባህሪ ወይንም በ ምልክት ልላይ በ ሰነዱ ውስጥ ትኩረቱን ወደ ትእዛዝ መስኮት እና ተመሳሳዩን ቦታ ያደምቀዋል" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/smath/guide.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/smath/guide.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/smath/guide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/smath/guide.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2013-07-01 22:19+0000\n" -"Last-Translator: Samson \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-08-31 21:01+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1372717184.0\n" +"X-POOTLE-MTIME: 1441054871.000000\n" #: align.xhp msgctxt "" @@ -188,7 +188,7 @@ "bm_id3152596\n" "help.text" msgid "brackets; merging formula partsformula parts; mergingfractions in formulasmerging;formula parts" -msgstr "" +msgstr "ቅንፎች; ማዋሀጃ formula partsformula parts; ማዋሀጃfractions in formulasማዋሀጃ;formula parts" #: brackets.xhp msgctxt "" @@ -197,7 +197,7 @@ "1\n" "help.text" msgid "Merging Formula Parts in Brackets" -msgstr "" +msgstr "የ Formula Parts በ ቅንፎች ማዋሀጃ" #: brackets.xhp msgctxt "" @@ -206,7 +206,7 @@ "2\n" "help.text" msgid "Inserting fractions into formulas" -msgstr "" +msgstr "ክፍልፋዮች ወደ formulas ማስገቢያ" #: brackets.xhp msgctxt "" @@ -224,7 +224,7 @@ "3\n" "help.text" msgid "Use the following syntax:" -msgstr "" +msgstr "የሚቀጥለውን syntax ይጠቀሙ:" #: brackets.xhp msgctxt "" @@ -371,7 +371,7 @@ "4\n" "help.text" msgid "Write the formula into your text" -msgstr "" +msgstr "ይጻፉ formula በ እርስዎ ሰነድ ውስጥ" #: keyboard.xhp msgctxt "" @@ -398,7 +398,7 @@ "7\n" "help.text" msgid "Inserting a Formula using a Window" -msgstr "" +msgstr "መስኮት በመጠቀም Formula ማስገቢያ" #: keyboard.xhp msgctxt "" @@ -443,7 +443,7 @@ "11\n" "help.text" msgid "Elements window" -msgstr "" +msgstr "የ መስኮት አካሎች" #: limits.xhp msgctxt "" @@ -451,7 +451,7 @@ "tit\n" "help.text" msgid "Working with Limits" -msgstr "" +msgstr "በ መጠኖች መስሪያ" #: limits.xhp msgctxt "" @@ -467,7 +467,7 @@ "hd_id1892147\n" "help.text" msgid "Working with Limits" -msgstr "" +msgstr "በ መጠኖች መስሪያ" #: limits.xhp msgctxt "" @@ -627,7 +627,7 @@ "par_id3877071\n" "help.text" msgid "If you don't like the font of the letters f and x, choose Format - Fonts and select other fonts. Click the Default button to use the new fonts as default from now on." -msgstr "" +msgstr "እርስዎ ካልወደዱት የ ጽሁፉን ፊደል f እና x, ይምረጡ አቀራረብ - ፊደል እና ይምረጡ ሌላ ፊደል: እና ይጫኑ የ ነባር ቁልፍ አዲሱን ፊደል እንደ ነባር ከ አሁን በኋላ ለመጠቀም" #: limits.xhp msgctxt "" @@ -659,7 +659,7 @@ "bm_id3147341\n" "help.text" msgid "$[officename] Math;general instructionsinstructions; $[officename] MathEquation Editor, see $[officename] Math" -msgstr "" +msgstr "$[officename] Math;ባጠቃላይ ትእዛዞችትእዛዞች; $[officename] MathEquation Editor, ይህን ይመልከቱ $[officename] Math" #: main.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/swriter/01.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/swriter/01.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/swriter/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/swriter/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-18 14:48+0000\n" +"PO-Revision-Date: 2015-09-01 17:14+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439909320.000000\n" +"X-POOTLE-MTIME: 1441127672.000000\n" #: 01120000.xhp msgctxt "" @@ -405,7 +405,7 @@ "46\n" "help.text" msgid "Uses the content of the selected data field as the file name for the form letter." -msgstr "" +msgstr "ለ ደብዳቤ ፎርሞች የተመረጠውን የ ዳታ ሜዳ ይዞታ እንደ ስም ይጠቀማል " #: 01150000.xhp msgctxt "" @@ -1163,7 +1163,7 @@ "35\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 " መጎተቻ እና መጣያ ማሰናጃ ከ ምርጫዎች ውስጥ: ከ መቃኛው ወደ ሰነዱ ውስጥ ለምሳሌ እንደ hyperlink. ይጫኑ እዚህ ምልክት ላይ እና ከዛ ይምረጡ መጠቀም የሚፈልጉትን ከምርጫዎች ውስጥ " +msgstr "መጎተቻ እና መጣያ ማሰናጃ ከ ምርጫዎች ውስጥ: ከ መቃኛው ወደ ሰነዱ ውስጥ ለምሳሌ እንደ hyperlink. ይጫኑ እዚህ ምልክት ላይ እና ከዛ ይምረጡ መጠቀም የሚፈልጉትን ከምርጫዎች ውስጥ " #: 02110000.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/swriter/02.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/swriter/02.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/swriter/02.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/swriter/02.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-07-31 18:50+0000\n" +"PO-Revision-Date: 2015-08-23 17:08+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438368638.000000\n" +"X-POOTLE-MTIME: 1440349739.000000\n" #: 02110000.xhp msgctxt "" @@ -1556,7 +1556,7 @@ "bm_id3149687\n" "help.text" msgid "operators; in formulasstatistical functionstrigonometric functionspages;number ofvariables;document propertiesarithmetical operators in formulas" -msgstr "" +msgstr "operators; in formulasstatistical functionstrigonometric functionsየ ገጾች;ቁጥር ከvariables;document propertiesarithmetical operators in formulas" #: 14020000.xhp msgctxt "" @@ -2077,7 +2077,7 @@ "55\n" "help.text" msgid "Tests for inequality between selected values." -msgstr "" +msgstr "ከተሰጠው ዋጋ ጋር እኩል ወይንም እኩል እንዳልሆነ መሞከሪያ " #: 14020000.xhp msgctxt "" @@ -2257,7 +2257,7 @@ "75\n" "help.text" msgid "Tests for values matching the Boolean OR" -msgstr "" +msgstr "ዋጋዎቹ ይመሳሰሉ እንደሆን መሞከሪያ ከ Boolean OR" #: 14020000.xhp msgctxt "" @@ -2293,7 +2293,7 @@ "78\n" "help.text" msgid "Tests for values matching the Boolean exclusive OR" -msgstr "" +msgstr "ዋጋዎቹ ይመሳሰሉ እንደሆን መሞከሪያ ከ Boolean exclusive OR" #: 14020000.xhp msgctxt "" @@ -2329,7 +2329,7 @@ "81\n" "help.text" msgid "Tests for values matching the Boolean AND" -msgstr "" +msgstr "ዋጋዎቹ ይመሳሰሉ እንደሆን መሞከሪያ ከ Boolean AND" #: 14020000.xhp msgctxt "" @@ -2365,7 +2365,7 @@ "84\n" "help.text" msgid "Tests for values matching the Boolean NOT" -msgstr "" +msgstr "ዋጋዎቹ ይመሳሰሉ እንደሆን መሞከሪያ ከ Boolean NOT" #: 14020000.xhp msgctxt "" @@ -2455,7 +2455,7 @@ "92\n" "help.text" msgid "Calculates the minimum value in an area or a list." -msgstr "" +msgstr "በ ቦታ ወይንም በ ዝርዝር ውስጥ አነስተኛ ዋጋ ማስሊያ " #: 14020000.xhp msgctxt "" @@ -2491,7 +2491,7 @@ "96\n" "help.text" msgid "Calculates the maximum value in an area or a list." -msgstr "" +msgstr "በ ቦታ ወይንም በ ዝርዝር ውስጥ ከፍተኛ ዋጋ ማስሊያ " #: 14020000.xhp msgctxt "" @@ -3090,7 +3090,7 @@ "tit\n" "help.text" msgid "Formula Area" -msgstr "" +msgstr "የ Formula ቦታ" #: 14050000.xhp msgctxt "" @@ -3099,7 +3099,7 @@ "1\n" "help.text" msgid "Formula Area" -msgstr "" +msgstr "የ Formula ቦታ" #: 14050000.xhp msgctxt "" @@ -3116,7 +3116,7 @@ "par_id3151174\n" "help.text" msgid "Formula area with formula" -msgstr "" +msgstr "የ Formula ቦታ በ formula" #: 14050000.xhp msgctxt "" @@ -3125,7 +3125,7 @@ "3\n" "help.text" msgid "Formula Area" -msgstr "" +msgstr "የ Formula ቦታ" #: 18010000.xhp msgctxt "" @@ -3321,7 +3321,7 @@ "par_idN10769\n" "help.text" msgid "Chart" -msgstr "" +msgstr "Chart" #: 18010000.xhp msgctxt "" @@ -3388,7 +3388,7 @@ "2\n" "help.text" msgid "Click to open the Fields dialog. Click the arrow next to the icon to open a submenu. Click to open the Fields dialog. Click the arrow next to the icon to open a submenu." -msgstr "" +msgstr "ይጫኑ ለመክፈት የ ሜዳዎች ንግግር: ይጫኑ ቀስቱን ከ ምልክቱ አጠገብ ያለውን ለ መክፈት ንዑስ ዝርዝር ይጫኑ ለመክፈት የ ሜዳዎች ንግግር: ይጫኑ ቀስቱን ከ ምልክቱ አጠገብ ያለውን ለ መክፈት ንዑስ ዝርዝር" #: 18030000.xhp msgctxt "" @@ -3432,7 +3432,7 @@ "2\n" "help.text" msgid "Inserts the current date as a field. The default date format is used, and the date is not automatically updated." -msgstr "" +msgstr "የ አሁኑን ቀን እንደ ሜዳ ማስገቢያየ አሁኑን ቀን አቀራረብ ይጠቀማል እና ቀን ራሱ በራሱ አይሻሻልም" #: 18030100.xhp msgctxt "" @@ -3441,7 +3441,7 @@ "3\n" "help.text" msgid "If you would like to define a different date format, or have the date updated automatically, select Insert - Fields - More Fields to insert a field command and make the desired settings in the Fields dialog. The format of an existing date field can be modified at any time by choosing Edit - Fields." -msgstr "" +msgstr "የተለየ የ ቀን አቀራረብ መግለጽ ከፈለጉ ወይንም ቀን ራሱ በራሱ እንዲሻሻል ከፈለጉ: ይምረጡ ማስገቢያ - ሜዳዎች - ተጨማሪ ሜዳዎች የ ሜዳ ትእዛዝ ለማስገባት እና የሚፈልጉትን ለማሰናዳት በ ሜዳዎች ንግግር ውስጥ: የ ነበረው የ ሜዳ አቀራረብ በማንኛውም ጊዜ ማሻሻል ይችላሉ በ መምረጥ ከማረሚያ - ሜዳዎች." #: 18030200.xhp msgctxt "" @@ -3475,7 +3475,7 @@ "2\n" "help.text" msgid "Inserts the current time as a field. The time is taken directly from the system settings of your operating system. A fixed time format is applied, which cannot be updated by using the F9 function key." -msgstr "" +msgstr "የ አሁኑን ሰአት እንደ ሜዳ ማስገቢያ ሰአቱ የሚወሰደው ከ እርስዎ የ ስርአት ማሰናጃ የ መስሪያ ስርአት ላይ ነው: የ ተወሰነ የ ሰአት አቀራረብ ይፈጸማል: የ F9 ተግባር ቁልፍ በ መጫን ማሻሻል አይቻልም" #: 18030200.xhp msgctxt "" @@ -3484,7 +3484,7 @@ "3\n" "help.text" msgid "To assign a different time format, or adapt the actual time data, select Insert - Fields - More Fields and make the desired changes in the Fields dialog. Additionally, you can modify the format of an inserted time field at any time by choosing Edit - Fields." -msgstr "" +msgstr "የተለየ የ ሰአት አቀራረብ መመደብ ከፈለጉ ወይንም ትክክለኛ የ ሰአት ዳታ መጠቀም ከፈለጉ: ይምረጡ ማስገቢያ - ሜዳዎች - ተጨማሪ ሜዳዎች እና የሚፈልጉትን ለውጥ ያካሂዱ በ ሜዳዎች ንግግር ውስጥ: በተጨማሪም ያስገቡትን የ ሰአት ሜዳ በሚፈልጉ ጊዜ ማሻሻል ይችላሉ በመምረጥ ከማረሚያ - ሜዳዎች." #: 18030300.xhp msgctxt "" @@ -3510,7 +3510,7 @@ "2\n" "help.text" msgid "Inserts the current page number as a field at the cursor position. The default setting is the Page Style format." -msgstr "" +msgstr "የ አሁኑን ገጽ ቁጥር ማስገቢያ መጠቆሚያው ባለበት ቦታ ነባር ማሰናጃው የ ገጽ ዘዴ አቀራረብ ነው" #: 18030300.xhp msgctxt "" @@ -3554,7 +3554,7 @@ "3\n" "help.text" msgid "If you wish to have the page number formatted with a different numbering style, choose Insert - Field - More Fields to insert the required field, and specify the settings in the Field dialog. The format of the field inserted using the Page Number command can also be modified using the Edit - Field command." -msgstr "" +msgstr "የ ገጽ ቁጥር መስጫ አቀራረብ መቀየር ከፈለጉ በ ሌላ የ ቁጥር መስጫ ዘዴ: ይምረጡ ማስገቢያ - ሜዳ - ተጨማሪ ሜዳዎች የ ሜዳ ትእዛዝ ለማስገባት እና የሚፈልጉትን ለማሰናዳት በ ሜዳ ንግግር ውስጥ: የ ነበረው የ ሜዳ አቀራረብ የሚገባው ይህን በ መምረጥ ነው የ ገጽ ቁጥር ትእዛዝ እንዲሁም ማሻሻል ይቻላል በመጠቀም የ ማረሚያ - ሜዳዎች ትእዛዝ" #: 18030500.xhp msgctxt "" @@ -3588,7 +3588,7 @@ "2\n" "help.text" msgid "Inserts the subject specified in the document properties as a field . This field displays the data entered in the Subject field under File - Properties - Description." -msgstr "" +msgstr "ጉዳይ ማስገቢያ በ ሰነድ ባህሪዎች እንደ ሜዳ የተወሰነውን: ይህ ሜዳ የሚያሳየው ያስገቡትን ዳታ ነው በ ጉዳይ ሜዳ ስርፋይል - ባህሪዎች – መግለጫ." #: 18030500.xhp msgctxt "" @@ -3597,7 +3597,7 @@ "3\n" "help.text" msgid "If you would like to insert a different document property as a field, select Insert - Fields - More Fields and make the desired settings in the Fields dialog. The DocInformation category contains all of the fields shown in the document properties." -msgstr "" +msgstr "እርስዎ የ ሰነድ ባህሪ እንደ ሜዳ ማስገባት ከፈለጉ: ይምረጡ ማስገቢያ - ሜዳ - ተጨማሪ ሜዳዎች የሚፈለገውን ያሰናዱ በ ሜዳዎች ንግግር ውስጥ: የ ሰነድ መረጃ ምድብ በ ሰነድ ባህሪዎች ውስጥ የሚታየውን ሁሉንም ሜዳዎች ይዟል" #: 18030600.xhp msgctxt "" @@ -3632,7 +3632,7 @@ "3\n" "help.text" msgid "If you would like to insert a different document property as a field, select Insert - Fields - More Fields and make the desired settings in the Fields dialog. The DocInformation category contains all of the fields shown in the document properties." -msgstr "" +msgstr "እርስዎ ሌላ የ ሰነድ ባህሪ እንደ ሜዳ ማስገባት ከፈለጉ: ይምረጡ ማስገቢያ - ሜዳ - ተጨማሪ ሜዳዎች እና የሚፈለገውን ያሰናዱ በ ሜዳዎች ንግግር ውስጥ: የ ሰነድ መረጃ ምድብ በ ሰነድ ባህሪዎች ውስጥ የሚታየውን ሁሉንም ሜዳዎች ይዟል" #: 18030700.xhp msgctxt "" @@ -3692,7 +3692,7 @@ "3\n" "help.text" msgid "If the Images On/Off icon on the Tools bar is activated, no graphics are displayed - only empty frames as placeholders." -msgstr "" +msgstr " ምስሎች ማብሪያ/ማጥፊያ ምልክት በ መሳሪያዎች መደርደሪያ ላይ ያስነሱ: ምንም ንድፎች አይታይም - ባዶ ክፈፎች ብቻ እንደ ቦታ ያዢዎች ይታያሉ" #: 18120000.xhp msgctxt "" @@ -3743,7 +3743,7 @@ "2\n" "help.text" msgid "Activates or deactivates the direct cursor. You can specify the behavior of the direct cursor by choosing %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids." -msgstr "" +msgstr "ማስነሻ ወይንም ማቦዘኛ በ ቀጥታ መጠቆሚያውን እርስዎ የ ቀጥታ መጠቆሚያውን ባህሪ መግለጽ ይችላሉ በ መምረጥ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - የ አቀራረብ እርዳታ." #: 18130000.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/swriter/guide.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/swriter/guide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/swriter/guide.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-17 18:22+0000\n" +"PO-Revision-Date: 2015-08-28 01:25+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439835750.000000\n" +"X-POOTLE-MTIME: 1440725117.000000\n" #: anchor_object.xhp msgctxt "" @@ -1474,7 +1474,7 @@ "par_id3110541\n" "help.text" msgid "In the User-defined area select the edge(s) that you want to appear in a common layout. Click on an edge in the preview to toggle the selection of an edge." -msgstr "" +msgstr "በ ተጠቃሚ-የሚገለጽ ቦታ ይምረጡ ጠርዝ(ዞች) በ መደበኛ ቦታ እንዲታይ የሚፈልጉትን ይጫኑ በ ጠረዙ ላይ በ ቅድመ እይታ መመልከቻ ላይ ለ መቀያየር የ ጠርዝ ምርጫውን" #: border_character.xhp msgctxt "" @@ -1612,7 +1612,7 @@ "11\n" "help.text" msgid "In the User-defined area select the edge(s) that you want to appear in a common layout. Click on an edge in the preview to toggle the selection of an edge." -msgstr "" +msgstr "በ ተጠቃሚ-የሚገለጽ ቦታ ይምረጡ ጠርዝ(ዞች) በ መደበኛ ቦታ እንዲታይ የሚፈልጉትን ይጫኑ በ ጠረዙ ላይ በ ቅድመ እይታ መመልከቻ ላይ ለ መቀያየር የ ጠርዝ ምርጫውን" #: border_object.xhp msgctxt "" @@ -1763,7 +1763,7 @@ "10\n" "help.text" msgid "In the User-defined area select the edge(s) that you want to appear in a common layout. Click on an edge in the preview to toggle the selection of an edge." -msgstr "" +msgstr "በ ተጠቃሚ-የሚገለጽ ቦታ ይምረጡ ጠርዝ(ዞች) በ መደበኛ ቦታ እንዲታይ የሚፈልጉትን ይጫኑ በ ጠረዙ ላይ በ ቅድመ እይታ መመልከቻ ላይ ለ መቀያየር የ ጠርዝ ምርጫውን" #: border_page.xhp msgctxt "" @@ -2488,7 +2488,7 @@ "bm_id3147406\n" "help.text" msgid "formulas; complex formulas in text calculating;formulas/mean values" -msgstr "" +msgstr "መቀመሪያ; ውስብስብ መቀመሪያ በ ጽሁፍ ውስጥ በማስላት ላይ;መቀመሪያ/አማካይ ዋጋዎች" #: calculate_intext.xhp msgctxt "" @@ -2639,7 +2639,7 @@ "31\n" "help.text" msgid "Click in a cell in the larger table that contains a number, press the plus sign (+), and then click in a different cell containing a number." -msgstr "" +msgstr "ይጫኑ በ ክፍሉ ላይ በ ትልቁ ሰንጠረዥ ላይ ቁጥር የያዘው ክፍል ውስጥ: እና ይጫኑ የ መደመሪያ ምልክት (+) እና ከዛ ይጫኑ የ ተለየ ቁጥር የያዘ ክፍል" #: calculate_intext2.xhp msgctxt "" @@ -2665,7 +2665,7 @@ "tit\n" "help.text" msgid "Calculating Across Tables" -msgstr "" +msgstr "በ ሰንጠረዦች ባሻገር በማስላት ላይ" #: calculate_multitable.xhp msgctxt "" @@ -2673,7 +2673,7 @@ "bm_id3154248\n" "help.text" msgid "calculating; across multiple text tables tables;calculating across" -msgstr "" +msgstr "በማስላት ላይ; በ በርካታ የ ጽሁፍ ሰንጠረዥ ውስጥ ሰንጠረዥ;በማስላት ላይ ባሻገር" #: calculate_multitable.xhp msgctxt "" @@ -2682,7 +2682,7 @@ "11\n" "help.text" msgid "Calculating Across Tables" -msgstr "" +msgstr "በ ሰንጠረዦች ባሻገር በማስላት ላይ" #: calculate_multitable.xhp msgctxt "" @@ -3244,7 +3244,7 @@ "27\n" "help.text" msgid "Select the custom style in the Paragraph Style box." -msgstr "" +msgstr "ይምረጡ የ custom ዘዴ ከ አንቀጽ ዘዴ ሳጥን ውስጥ" #: chapter_numbering.xhp msgctxt "" @@ -3253,7 +3253,7 @@ "39\n" "help.text" msgid "Click the heading level that you want to assign to the custom paragraph style in the Level list." -msgstr "" +msgstr "ይጫኑ የ ራስጌ ደረጃ መመደብ የሚፈልጉትን ለ custom የ አንቀጽ ዘዴ ከ ደረጃ ዝርዝር ውስጥ" #: chapter_numbering.xhp msgctxt "" @@ -4351,7 +4351,7 @@ "tit\n" "help.text" msgid "Querying User Data in Fields or Conditions" -msgstr "" +msgstr "ጥያቄዎች በ ተጠቃሚ ዳታ ሜዳዎች ወይንም ሁኔታዎች ውስጥ" #: fields_userdata.xhp msgctxt "" @@ -4368,7 +4368,7 @@ "59\n" "help.text" msgid "Querying User Data in Fields or Conditions" -msgstr "" +msgstr "ጥያቄዎች በ ተጠቃሚ ዳታ ሜዳዎች ወይንም ሁኔታዎች ውስጥ " #: fields_userdata.xhp msgctxt "" @@ -4887,7 +4887,7 @@ "par_id4377269\n" "help.text" msgid "When you click Find Next, Writer will show you the next text that is equal to your entry. You can watch and edit the text, then click Find Next again to advance to the next found text." -msgstr "" +msgstr "ይህን ሲጫኑ ቀጥሎ መፈለጊያ, መጻፊያ እርስዎ ካስገቡት ጋር የሚመሳሰለውን ጽሁፍ ያሳያል: ከዛ እርስዎ እያዩ ጽሁፉን ማረም ይችላሉ: ከዛ ይጫኑ ቀጥሎ መፈለጊያ እንደገና ወደ ቀጥሎ ወደሚገኘው ጽሁፍ ያመራል" #: finding.xhp msgctxt "" @@ -18123,7 +18123,7 @@ "par_idN10B4C\n" "help.text" msgid "Disable the option When closing a document, remove the words collected from it from the list." -msgstr "" +msgstr "ምርጫ ማሰናከያ ሰነዱ በሚዘጋበት ጊዜ በ ዝርዝር ውስጥ የተሰበሰቡትን ቃላቶች ማስወገጃ." #: word_completion_adjust.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/swriter.po libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/swriter.po --- libreoffice-5.0.1~rc2/translations/source/am/helpcontent2/source/text/swriter.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/helpcontent2/source/text/swriter.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-16 19:22+0000\n" +"PO-Revision-Date: 2015-08-31 23:36+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439752963.000000\n" +"X-POOTLE-MTIME: 1441064188.000000\n" #: main0000.xhp msgctxt "" @@ -2029,7 +2029,7 @@ "9\n" "help.text" msgid "Designing and Structuring" -msgstr "" +msgstr "ንድፍ እና ግንባታ" #: main0503.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-14 10:49+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-06 23:50+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439549368.000000\n" +"X-POOTLE-MTIME: 1441583431.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3325,8 +3325,8 @@ "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" -msgstr "መሙያ" +msgid "F~ill" +msgstr "መ~ሙያ" #: CalcCommands.xcu msgctxt "" @@ -15167,12 +15167,13 @@ msgstr "~ነጥቦች እና ቁጥር መስጫ..." #: GenericCommands.xcu +#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "ማረ~ሚያ ዘዴ" #: GenericCommands.xcu @@ -20405,7 +20406,7 @@ "Label\n" "value.text" msgid "~Subreport in New Window..." -msgstr "ንዑስ መግለጫ በአዲስ መስኮት..." +msgstr "~ንዑስ መግለጫ በ አዲስ መስኮት..." #: ReportCommands.xcu msgctxt "" @@ -22502,7 +22503,7 @@ "Label\n" "value.text" msgid "~Replace Image..." -msgstr "~ምስል ~መቀየሪያ..." +msgstr "ምስል ~መቀየሪያ..." #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/am/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/am/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-20 17:21+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-06 23:50+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440091308.000000\n" +"X-POOTLE-MTIME: 1441583450.000000\n" #: condformatdlg.src msgctxt "" @@ -4923,7 +4923,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5001,6 +5001,15 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "መጠን" + +#: globstr.src +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" "STR_HEADER_COND\n" "string.text" msgid "First Condition" @@ -13984,13 +13993,14 @@ msgstr "ቀጥተኛ_አይነት" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n" "7\n" "string.text" msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears." -msgstr "" +msgstr "አይነት = 0 ቀጥተኛው የሚሰላው በዜሮ ነጥብ ውስጥ ነው ፡ ያለበለዚያ ቀጥተኛው ይንቀሳቀሳል" #: scfuncs.src msgctxt "" @@ -14065,13 +14075,14 @@ msgstr "የተግባር_አይነት" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n" "7\n" "string.text" msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." -msgstr "" +msgstr "አይነቱ = 0 ከሆነ ተግባሩ የሚሰላው በዚህ ፎርሙላ ነው y=m^x, ወይንም በነዚህ ተግባሮች y=b*m^x." #: scfuncs.src msgctxt "" @@ -15821,13 +15832,14 @@ msgstr "አይነት" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_AVG\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "የቅደም ተከተል ደንብ : 0 ወይንም ከተዘለለ እየቀነስ የሚሄድ ማለት ነው ፡ ሌላ የተለየ ዋጋ ከ 0 ሌላ እየጨመረ የሚሄድ ማለት ነው" #: scfuncs.src msgctxt "" @@ -16298,13 +16310,14 @@ msgstr "C" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BINOM_DIST_MS\n" "9\n" "string.text" msgid "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." -msgstr "" +msgstr "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." #: scfuncs.src msgctxt "" @@ -16946,13 +16959,14 @@ msgstr "ቁጥር" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "" +msgstr "The probability value for which the inverse normal distribution is to be calculated." #: scfuncs.src msgctxt "" @@ -17109,13 +17123,14 @@ msgstr "ቁጥር" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_S_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "" +msgstr "The probability value for which the inverse standard normal distribution is to be calculated." #: scfuncs.src msgctxt "" @@ -17363,13 +17378,14 @@ msgstr "ቁጥር" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "" +msgstr "The probability value for which the inverse log normal distribution is to be calculated." #: scfuncs.src msgctxt "" @@ -17615,13 +17631,14 @@ msgstr "0 ወይንም ሀሰት የሚያሰላው የምናልባት density function ነው ሌሎች ዋጋዎች ወይንም እውነት ወይንም የተተወ የሚያሰላው የ cumulative distribution function." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "1\n" "string.text" msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." -msgstr "" +msgstr "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." #: scfuncs.src msgctxt "" @@ -17777,13 +17794,14 @@ msgstr "ቁጥር" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "" +msgstr "The probability value for which the inverse gamma distribution is to be calculated." #: scfuncs.src msgctxt "" @@ -17867,13 +17885,14 @@ msgstr "ቁጥር" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_LN_MS\n" "3\n" "string.text" msgid "The value for which the natural logarithm of the gamma function is to be calculated." -msgstr "" +msgstr "The value for which the natural logarithm of the gamma function is to be calculated." #: scfuncs.src msgctxt "" @@ -18254,13 +18273,14 @@ msgstr "ቁጥር" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse beta distribution is to be calculated." -msgstr "" +msgstr "The probability value for which the inverse beta distribution is to be calculated." #: scfuncs.src msgctxt "" @@ -18957,13 +18977,14 @@ msgstr "ቁጥር" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "The probability value for which the inverse T distribution is to be calculated." #: scfuncs.src msgctxt "" @@ -19003,13 +19024,14 @@ msgstr "ቁጥር" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_2T\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "The probability value for which the inverse T distribution is to be calculated." #: scfuncs.src msgctxt "" @@ -19318,13 +19340,14 @@ msgstr "ቁጥር" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_LT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "The probability value for which the inverse F distribution is to be calculated." #: scfuncs.src msgctxt "" @@ -19381,13 +19404,14 @@ msgstr "ቁጥር" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_RT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "The probability value for which the inverse F distribution is to be calculated." #: scfuncs.src msgctxt "" @@ -19579,13 +19603,14 @@ msgstr "0 ወይንም ሀሰት የሚያሰላው የምናልባት density function ነው ሌሎች ዋጋዎች ወይንም እውነት ወይንም የተተወ የሚያሰላው የ cumulative distribution function." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "1\n" "string.text" msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." -msgstr "" +msgstr "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." #: scfuncs.src msgctxt "" @@ -19597,13 +19622,14 @@ msgstr "ቁጥር" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "3\n" "string.text" msgid "The value for which the probability density function or cumulative distribution function is to be calculated." -msgstr "" +msgstr "The value for which the probability density function or cumulative distribution function is to be calculated." #: scfuncs.src msgctxt "" @@ -19705,13 +19731,14 @@ msgstr "ቁጥር" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse chi square distribution is to be calculated." -msgstr "" +msgstr "The probability value for which the inverse chi square distribution is to be calculated." #: scfuncs.src msgctxt "" @@ -19795,13 +19822,14 @@ msgstr "ምናልባት" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse of the chi square distribution is to be calculated." -msgstr "" +msgstr "The probability value for which the inverse of the chi square distribution is to be calculated." #: scfuncs.src msgctxt "" @@ -20227,13 +20255,14 @@ msgstr "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "1\n" "string.text" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "" +msgstr "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." #: scfuncs.src msgctxt "" @@ -20281,13 +20310,14 @@ msgstr "sigma" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "7\n" "string.text" msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "" +msgstr "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." #: scfuncs.src msgctxt "" @@ -20605,13 +20635,14 @@ msgstr "ዘዴ" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST_MS\n" "7\n" "string.text" msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" -msgstr "" +msgstr "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" #: scfuncs.src msgctxt "" @@ -25442,7 +25473,7 @@ "~Suppress output of empty pages\n" "itemlist.text" msgid "~Suppress output of empty pages" -msgstr "የ ባዶ ገጽ ውጤቶችን _ማገጃ" +msgstr "የ ባዶ ገጽ ውጤቶችን ~ማገጃ" #: scstring.src msgctxt "" @@ -25974,58 +26005,3 @@ "string.text" msgid "Collapse Formula Bar" msgstr "የ Formula Bar ማሳነሻ" - -#: condformatdlg.src -#, fuzzy -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Smilies\n" -"stringlist.text" -msgid "3 Smilies" -msgstr "3 ሳቂታዎች" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Colored Smilies\n" -"stringlist.text" -msgid "3 Colored Smilies" -msgstr "3 ባለ ቀለም ሳቂታዎች" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" -"1\n" -"string.text" -msgid "Returns the day of the week for the date value as an integer (1-7)." -msgstr "በሳምንት ውስጥ የቀኑን ዋጋ ለቀኑ በቁጥር ይመልሳል (1-7)." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n" -"7\n" -"string.text" -msgid "If given and not equal to zero then rounded down according to amount when a negative number and significance." -msgstr "If given and not equal to zero then rounded down according to amount when a negative number and significance." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MS\n" -"1\n" -"string.text" -msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance." -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ENCODEURL\n" -"3\n" -"string.text" -msgid "A string to be URL encoded" -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/sc/uiconfig/scalc/ui.po libreoffice-5.0.2~rc2/translations/source/am/sc/uiconfig/scalc/ui.po --- libreoffice-5.0.1~rc2/translations/source/am/sc/uiconfig/scalc/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/sc/uiconfig/scalc/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-14 11:07+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-06 23:51+0000\n" +"Last-Translator: Samson B \n" "Language-Team: none\n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439550478.000000\n" +"X-POOTLE-MTIME: 1441583496.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -3940,7 +3940,7 @@ "label\n" "string.text" msgid "Save cell fo_rmulas instead of calculated values" -msgstr "የክፍል fo~rmulas ማስቀመጫ በተሰሉ ዋጋዎች ፋንታ" +msgstr "የ ክፍል fo_rmulas ማስቀመጫ በተሰሉ ዋጋዎች ፋንታ" #: imoptdialog.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/am/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/am/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-14 11:18+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-04 02:54+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439551108.000000\n" +"X-POOTLE-MTIME: 1441335263.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "ነባር" +msgid "According to layout" +msgstr "እንደ እቅዱ" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/sd/uiconfig/simpress/ui.po libreoffice-5.0.2~rc2/translations/source/am/sd/uiconfig/simpress/ui.po --- libreoffice-5.0.1~rc2/translations/source/am/sd/uiconfig/simpress/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/sd/uiconfig/simpress/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-16 19:36+0000\n" +"PO-Revision-Date: 2015-09-06 23:52+0000\n" "Last-Translator: Samson B \n" "Language-Team: none\n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439753812.000000\n" +"X-POOTLE-MTIME: 1441583532.000000\n" #: assistentdialog.ui msgctxt "" @@ -2633,7 +2633,7 @@ "label\n" "string.text" msgid "_URL for listeners:" -msgstr "~URL ለ አድማጮች:" +msgstr "_URL ለ አድማጮች:" #: publishingdialog.ui msgctxt "" @@ -2876,7 +2876,7 @@ "label\n" "string.text" msgid "_Export sounds when slide advances" -msgstr "ተንሸራታቹ ሲጀምር ድምጾችን ~መላኪያ" +msgstr "ተንሸራታቹ ሲጀምር ድምጾችን _መላኪያ" #: publishingdialog.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/svtools/source/misc.po libreoffice-5.0.2~rc2/translations/source/am/svtools/source/misc.po --- libreoffice-5.0.1~rc2/translations/source/am/svtools/source/misc.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/svtools/source/misc.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-14 11:26+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-05 22:17+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439551590.000000\n" +"X-POOTLE-MTIME: 1441491425.000000\n" #: imagemgr.src msgctxt "" @@ -945,13 +945,14 @@ msgstr "Chinese (Macau)" #: langtab.src +#, fuzzy msgctxt "" "langtab.src\n" "STR_ARR_SVT_LANGUAGE_TABLE\n" "LANGUAGE_USER_CHURCH_SLAVIC\n" "pairedlist.text" msgid "Church Slavic" -msgstr "" +msgstr "Church Slavic" #: langtab.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/svx/source/dialog.po libreoffice-5.0.2~rc2/translations/source/am/svx/source/dialog.po --- libreoffice-5.0.1~rc2/translations/source/am/svx/source/dialog.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/svx/source/dialog.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-08-14 11:29+0000\n" +"PO-Revision-Date: 2015-09-02 01:34+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439551752.000000\n" +"X-POOTLE-MTIME: 1441157646.000000\n" #: bmpmask.src msgctxt "" @@ -1797,7 +1797,7 @@ "RID_SVXSTR_GRDT71\n" "string.text" msgid "Subtle Tango Green" -msgstr "" +msgstr "ቀጭን ታንጎ አረንጓዴ" #: sdstring.src msgctxt "" @@ -1853,7 +1853,7 @@ "RID_SVXSTR_GRDT78\n" "string.text" msgid "Clay" -msgstr "" +msgstr "ጭቃ" #: sdstring.src msgctxt "" @@ -1877,7 +1877,7 @@ "RID_SVXSTR_GRDT81\n" "string.text" msgid "Sunburst" -msgstr "" +msgstr "ፀሐይ" #: sdstring.src msgctxt "" @@ -1925,7 +1925,7 @@ "RID_SVXSTR_GRDT87\n" "string.text" msgid "Purple Haze" -msgstr "" +msgstr "ወይን ጠጅ" #: sdstring.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/svx/source/gallery2.po libreoffice-5.0.2~rc2/translations/source/am/svx/source/gallery2.po --- libreoffice-5.0.1~rc2/translations/source/am/svx/source/gallery2.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/svx/source/gallery2.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2014-06-14 16:12+0000\n" -"Last-Translator: Samson \n" +"PO-Revision-Date: 2015-08-22 19:13+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402762329.000000\n" +"X-POOTLE-MTIME: 1440270799.000000\n" #: gallery.src msgctxt "" @@ -386,7 +386,7 @@ "RID_GALLERYSTR_THEME_INTERACTION\n" "string.text" msgid "Interaction" -msgstr "ተፅእኖው" +msgstr "ተፅእኖ" #: galtheme.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/svx/source/items.po libreoffice-5.0.2~rc2/translations/source/am/svx/source/items.po --- libreoffice-5.0.1~rc2/translations/source/am/svx/source/items.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/svx/source/items.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-14 11:30+0000\n" +"PO-Revision-Date: 2015-09-02 01:36+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439551844.000000\n" +"X-POOTLE-MTIME: 1441157813.000000\n" #: svxerr.src msgctxt "" @@ -442,7 +442,7 @@ "Character blinking\n" "itemlist.text" msgid "Character blinking" -msgstr "" +msgstr "ባህሪ ብልጭ ድርግም ባይ" #: svxitems.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/svx/source/tbxctrls.po libreoffice-5.0.2~rc2/translations/source/am/svx/source/tbxctrls.po --- libreoffice-5.0.1~rc2/translations/source/am/svx/source/tbxctrls.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/svx/source/tbxctrls.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-03 17:12+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-02 01:37+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438621937.000000\n" +"X-POOTLE-MTIME: 1441157856.000000\n" #: colrctrl.src msgctxt "" @@ -656,7 +656,7 @@ "RID_SVXSTR_DEFAULT_PAL\n" "string.text" msgid "Default palette" -msgstr "" +msgstr "ነባር ማቅለሚያ" #: tbcontrl.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/sw/source/ui/utlui.po libreoffice-5.0.2~rc2/translations/source/am/sw/source/ui/utlui.po --- libreoffice-5.0.1~rc2/translations/source/am/sw/source/ui/utlui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-21 01:12+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/sw/source/uibase/lingu.po libreoffice-5.0.2~rc2/translations/source/am/sw/source/uibase/lingu.po --- libreoffice-5.0.1~rc2/translations/source/am/sw/source/uibase/lingu.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/sw/source/uibase/lingu.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-06-16 17:53+0000\n" +"PO-Revision-Date: 2015-09-06 23:52+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434477214.000000\n" +"X-POOTLE-MTIME: 1441583548.000000\n" #: olmenu.src msgctxt "" @@ -23,7 +23,7 @@ "MN_IGNORE_WORD\n" "menuitem.text" msgid "I~gnore All" -msgstr "ሁሉንም መ_ተው" +msgstr "ሁሉንም መ~ተው" #: olmenu.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/uui/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/am/uui/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/am/uui/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/uui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-09 16:29+0000\n" +"PO-Revision-Date: 2015-09-06 23:47+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,17 +14,16 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436459383.000000\n" +"X-POOTLE-MTIME: 1441583257.000000\n" #: authfallback.ui -#, fuzzy msgctxt "" "authfallback.ui\n" "AuthFallbackDlg\n" "title\n" "string.text" msgid "OneDrive Authentication Code" -msgstr "OneDrive Authentication Code" +msgstr "OneDrive ማረጋገጫ ኮድ" #: filterselect.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/am/vcl/source/src.po libreoffice-5.0.2~rc2/translations/source/am/vcl/source/src.po --- libreoffice-5.0.1~rc2/translations/source/am/vcl/source/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/am/vcl/source/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-06-22 00:29+0000\n" +"PO-Revision-Date: 2015-09-02 01:29+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434932976.000000\n" +"X-POOTLE-MTIME: 1441157394.000000\n" #. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string #: btntext.src @@ -1208,7 +1208,7 @@ "SV_EDIT_WARNING_STR\n" "string.text" msgid "The inserted text exceeded the maximum length of this text field. The text was truncated." -msgstr "" +msgstr "ያስገቡት ጽሁፍ ለዚህ ጽሁፍ የተፈቀደውን ከፍተኛ እርዝመት አልፏል: ስለዚህ ጽሁፉ ተቆርጧል" #: stdtext.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/ar/chart2/source/controller/dialogs.po libreoffice-5.0.2~rc2/translations/source/ar/chart2/source/controller/dialogs.po --- libreoffice-5.0.1~rc2/translations/source/ar/chart2/source/controller/dialogs.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ar/chart2/source/controller/dialogs.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-06-29 11:31+0000\n" +"PO-Revision-Date: 2015-08-26 15:47+0000\n" "Last-Translator: صفا الفليج \n" "Language-Team: LANGUAGE \n" "Language: ar\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435577495.000000\n" +"X-POOTLE-MTIME: 1440604034.000000\n" #: Strings.src msgctxt "" @@ -174,7 +174,7 @@ "STR_PAGE_SCALE\n" "string.text" msgid "Scale" -msgstr "" +msgstr "التحجيم" #: Strings.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/ar/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/ar/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/ar/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ar/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-14 10:24+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" @@ -1053,12 +1053,13 @@ #. ∍ (U+0220D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "SMALL_CONTAINS_AS_MEMBER\n" "LngText.text" msgid "small ni" -msgstr "" +msgstr "ينتمي صغيرة" #. ∎ (U+0220E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1377,12 +1378,13 @@ #. ⊅ (U+02285), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "NOT_A_SUPERSET_OF\n" "LngText.text" msgid "not superset" -msgstr "" +msgstr "ليس مجموعة جزئية" #. ⊿ (U+022BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2466,12 +2468,13 @@ #. ♭ (U+0266D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MUSIC_FLAT_SIGN\n" "LngText.text" msgid "flat" -msgstr "" +msgstr "علم" #. ♮ (U+0266E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3269,12 +3272,13 @@ #. ❇ (U+02747), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "SPARKLE\n" "LngText.text" msgid "sparkle" -msgstr "" +msgstr "بريق" #. ❌ (U+0274C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4387,12 +4391,13 @@ #. 🍟 (U+1F35F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "FRENCH_FRIES\n" "LngText.text" msgid "fries" -msgstr "" +msgstr "الحمل" #. 🍠 (U+1F360), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4594,12 +4599,13 @@ #. 🍶 (U+1F376), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "SAKE_BOTTLE_AND_CUP\n" "LngText.text" msgid "sake" -msgstr "" +msgstr "أفعى" #. 🍷 (U+1F377), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4792,12 +4798,13 @@ #. 🎏 (U+1F38F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CARP_STREAMER\n" "LngText.text" msgid "flags2" -msgstr "" +msgstr "علم2" #. 🎐 (U+1F390), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5089,21 +5096,23 @@ #. 🎼 (U+1F3BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MUSICAL_SCORE\n" "LngText.text" msgid "score" -msgstr "" +msgstr "مخزن" #. 🎽 (U+1F3BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "RUNNING_SHIRT_WITH_SASH\n" "LngText.text" msgid "shirt2" -msgstr "" +msgstr "قميص" #. 🎾 (U+1F3BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6251,12 +6260,13 @@ #. 👤 (U+1F464), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BUST_IN_SILHOUETTE\n" "LngText.text" msgid "bust" -msgstr "" +msgstr "حافلة" #. 👥 (U+1F465), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6359,12 +6369,13 @@ #. 👰 (U+1F470), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BRIDE_WITH_VEIL\n" "LngText.text" msgid "bride" -msgstr "" +msgstr "جسر" #. 👱 (U+1F471), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6773,12 +6784,13 @@ #. 💢 (U+1F4A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "ANGER_SYMBOL\n" "LngText.text" msgid "anger" -msgstr "" +msgstr "ملاك" #. 💣 (U+1F4A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6800,12 +6812,13 @@ #. 💥 (U+1F4A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "COLLISION_SYMBOL\n" "LngText.text" msgid "boom" -msgstr "" +msgstr "جزمة" #. 💦 (U+1F4A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7115,12 +7128,13 @@ #. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CHART_WITH_UPWARDS_TREND\n" "LngText.text" msgid "char" -msgstr "" +msgstr "رسم بياني" #. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7331,30 +7345,33 @@ #. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CHEERING_MEGAPHONE\n" "LngText.text" msgid "mega" -msgstr "" +msgstr "أوميغا كبير" #. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "OUTBOX_TRAY\n" "LngText.text" msgid "tray" -msgstr "" +msgstr "سجود" #. 📥 (U+1F4E5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "INBOX_TRAY\n" "LngText.text" msgid "tray2" -msgstr "" +msgstr "ترام2" #. 📦 (U+1F4E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7439,12 +7456,13 @@ #. 📯 (U+1F4EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "POSTAL_HORN\n" "LngText.text" msgid "horn" -msgstr "" +msgstr "ذرة" #. 📰 (U+1F4F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7988,110 +8006,122 @@ #. 🕜 (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "1:30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "2:30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "3:30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "4:30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "5:30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "6:30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "7:30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "8:30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "9:30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "10:30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "11:30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "12:30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-27 17:02+0000\n" -"Last-Translator: صفا الفليج \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 10:49+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: ar\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438016574.000000\n" +"X-POOTLE-MTIME: 1439549392.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3307,12 +3307,13 @@ msgstr "حذف فاصل ~الصفحات" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "تعبئة" #: CalcCommands.xcu @@ -15154,12 +15155,13 @@ msgstr "~تعداد نقطي ورقمي..." #: GenericCommands.xcu +#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "وضعية الت_حرير" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/ar/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/ar/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/ar/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ar/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-17 20:27+0000\n" "Last-Translator: صفا الفليج \n" "Language-Team: LANGUAGE \n" @@ -4920,10 +4920,11 @@ msgstr "الاسم" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "تعبير النّطاق أو الصّيغة" @@ -5001,6 +5002,15 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "النطاق" + +#: globstr.src +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" "STR_HEADER_COND\n" "string.text" msgid "First Condition" @@ -7844,13 +7854,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_NETWORKDAYS_MS\n" "1\n" "string.text" msgid "Returns the number of workdays between two dates using arguments to indicate weekend days and holidays." -msgstr "" +msgstr "تُرجع عدد أيام العمل بين تاريخين باستخدام المعطيات لتحديد أيام العمل والعطل." #: scfuncs.src #, fuzzy @@ -7863,13 +7874,14 @@ msgstr "تاريخ البدء" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_NETWORKDAYS_MS\n" "3\n" "string.text" msgid "Start date for calculation." -msgstr "" +msgstr "تاريخ البدء للحساب." #: scfuncs.src #, fuzzy @@ -7882,13 +7894,14 @@ msgstr "تاريخ الانتهاء" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_NETWORKDAYS_MS\n" "5\n" "string.text" msgid "End date for calculation." -msgstr "" +msgstr "تاريخ الانتهاء للحساب." #: scfuncs.src msgctxt "" @@ -7946,13 +7959,14 @@ msgstr "تاريخ البدء" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_WORKDAY_MS\n" "3\n" "string.text" msgid "Start date for calculation." -msgstr "" +msgstr "تاريخ البدء للحساب." #: scfuncs.src msgctxt "" @@ -14000,13 +14014,14 @@ msgstr "نوع_خطي" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n" "7\n" "string.text" msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears." -msgstr "" +msgstr "إذا كان النوع =0، فسيتم حساب الخطوط من خلال نقطة الصفر، وإلا، فإن الخط سيكون متحركًا." #: scfuncs.src msgctxt "" @@ -14081,13 +14096,14 @@ msgstr "نوع_الدالة" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n" "7\n" "string.text" msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." -msgstr "" +msgstr "إذا كان النوع =0، فسيتم حساب الدالة وفقًا للمعادلة y=m^x، وإلا، فسيتم حسابها وفقًا للمعادلة y=b*m^x." #: scfuncs.src msgctxt "" @@ -14477,13 +14493,14 @@ msgstr "الرقم " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_S\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "" +msgstr "الرقم 1، الرقم 2، ... من 1 إلى 30 وسيطة رقمية تمثل عينة للمجتمع." #: scfuncs.src msgctxt "" @@ -14558,13 +14575,14 @@ msgstr "الرقم " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population." -msgstr "" +msgstr "الرقم 1، الرقم 2، ... من 1 إلى 30 وسيطة رقمية تمثل المجتمع." #: scfuncs.src msgctxt "" @@ -14639,13 +14657,14 @@ msgstr "الرقم " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_S\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "" +msgstr "الرقم 1، الرقم 2، ... من 1 إلى 30 وسيطة رقمية تمثل عينة للمجتمع." #: scfuncs.src msgctxt "" @@ -14693,13 +14712,14 @@ msgstr "الرقم " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." -msgstr "" +msgstr "الرقم 1، الرقم 2، ... من 1 إلى 30 وسيطة رقمية تمثل المجتمع." #: scfuncs.src msgctxt "" @@ -14720,13 +14740,14 @@ msgstr "الرقم " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." -msgstr "" +msgstr "الرقم 1، الرقم 2، ... من 1 إلى 30 وسيطة رقمية تمثل المجتمع." #: scfuncs.src msgctxt "" @@ -15044,13 +15065,14 @@ msgstr "الرقم " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." -msgstr "" +msgstr "الرقم 1، الرقم 2، ... من 1 إلى 30 وسيطة رقمية تمثل عينة." #: scfuncs.src msgctxt "" @@ -15071,13 +15093,14 @@ msgstr "الرقم " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MULTI\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample." -msgstr "" +msgstr "الرقم 1، الرقم 2، ... من 1 إلى 30 وسيطة رقمية تمثل عينة." #: scfuncs.src msgctxt "" @@ -15778,13 +15801,14 @@ msgstr "النوع" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_EQ\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "ترتيب التسلسل: 0 أو محذوف يعني تنازلي، أي قيمة أخرى غير 0 تعني تصاعدي." #: scfuncs.src msgctxt "" @@ -15841,13 +15865,14 @@ msgstr "النوع" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_AVG\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "ترتيب التسلسل: 0 أو محذوف يعني تنازلي، أي قيمة أخرى غير 0 تعني تصاعدي." #: scfuncs.src msgctxt "" @@ -16318,13 +16343,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BINOM_DIST_MS\n" "9\n" "string.text" msgid "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." -msgstr "" +msgstr "التراكم. C= 0 سيتم حساب الاحتمال المفرد لكل القيمة، C=1 سيتم حساب الاحتمال المتراكم." #: scfuncs.src msgctxt "" @@ -16462,13 +16488,14 @@ msgstr "تراكمي" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NEG_BINOM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "تقوم القيمة 0 أو FALSE بحساب دالة الكثافة الاحتمالية. بينما تقوم أية قيمة أخرى أو TRUE أو تم حذفها بحساب دالة التوزيع التراكمي." #: scfuncs.src msgctxt "" @@ -16714,13 +16741,14 @@ msgstr "تراكمي" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_POISSON_DIST_MS\n" "7\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." -msgstr "" +msgstr "تقوم القيمة 0 أو FALSE بحساب دالة الكثافة الاحتمالية. بينما تقوم أية قيمة أخرى أو TRUE أو تم حذفها بحساب دالة التوزيع التراكمي." #: scfuncs.src msgctxt "" @@ -16876,13 +16904,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "تقوم القيمة 0 أو FALSE بحساب دالة الكثافة الاحتمالية. بينما تقوم أية قيمة أخرى أو TRUE أو تم حذفها بحساب دالة التوزيع التراكمي." #: scfuncs.src msgctxt "" @@ -16966,13 +16995,14 @@ msgstr "الرقم" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "" +msgstr "الاحتمال المراد حساب التوزيع الطبيعي العكسي له." #: scfuncs.src msgctxt "" @@ -17076,13 +17106,14 @@ msgstr "تراكمي" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STD_NORM_DIST_MS\n" "5\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "تقوم القيمة 0 أو FALSE بحساب دالة الكثافة الاحتمالية. بينما تقوم أية قيمة أخرى أو TRUE أو تم حذفها بحساب دالة التوزيع التراكمي." #: scfuncs.src msgctxt "" @@ -17130,13 +17161,14 @@ msgstr "الرقم" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_S_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "" +msgstr "الاحتمال المراد حساب التوزيع الطبيعي القياسي العكسي له." #: scfuncs.src msgctxt "" @@ -17294,13 +17326,14 @@ msgstr "تراكمي" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "تقوم القيمة 0 أو FALSE بحساب دالة الكثافة الاحتمالية. بينما تقوم أية قيمة أخرى أو TRUE أو تم حذفها بحساب دالة التوزيع التراكمي." #: scfuncs.src msgctxt "" @@ -17384,13 +17417,14 @@ msgstr "الرقم" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "" +msgstr "الاحتمال المراد حساب التوزيع اللوغاريتمي الطبيعي له." #: scfuncs.src msgctxt "" @@ -17637,13 +17671,14 @@ msgstr "تقوم القيمة 0 أو FALSE بحساب دالة الكثافة الاحتمالية. بينما تقوم أية قيمة أخرى أو TRUE أو تم حذفها بحساب دالة التوزيع التراكمي." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "1\n" "string.text" msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." -msgstr "" +msgstr "لإرجاع قيمة دالة كثافة الاحتمالات أو دالة التوزيع التراكمي لتوزيع جاما." #: scfuncs.src msgctxt "" @@ -17709,13 +17744,14 @@ msgstr "تراكمي" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "تقوم القيمة 0 أو FALSE بحساب دالة الكثافة الاحتمالية. بينما تقوم أية قيمة أخرى أو TRUE أو تم حذفها بحساب دالة التوزيع التراكمي." #: scfuncs.src msgctxt "" @@ -17799,13 +17835,14 @@ msgstr "الرقم" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "" +msgstr "الاحتمال المراد حساب توزيع جاما العكسي له." #: scfuncs.src msgctxt "" @@ -17889,13 +17926,14 @@ msgstr "الرقم" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_LN_MS\n" "3\n" "string.text" msgid "The value for which the natural logarithm of the gamma function is to be calculated." -msgstr "" +msgstr "القيمة المراد حساب القيم اللوغاريتمية الطبيعية لدالة جاما لها." #: scfuncs.src msgctxt "" @@ -18213,13 +18251,14 @@ msgstr "تراكمي" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function." -msgstr "" +msgstr "القيمة تساوي 0 أو FALSE لدالة الكثافة الاحتمالية، أو أية قيمة أخرى أو TRUE أو يتم حذفها لدالة التوزيع التراكمي." #: scfuncs.src msgctxt "" @@ -18276,13 +18315,14 @@ msgstr "الرقم" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse beta distribution is to be calculated." -msgstr "" +msgstr "الاحتمال المراد حساب توزيع بيتا العكسي له." #: scfuncs.src msgctxt "" @@ -18980,13 +19020,14 @@ msgstr "الرقم" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "الاحتمال المراد حساب توزيع تي العكسي عنده." #: scfuncs.src msgctxt "" @@ -19026,13 +19067,14 @@ msgstr "الرقم" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_2T\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "الاحتمال المراد حساب توزيع تي العكسي عنده." #: scfuncs.src msgctxt "" @@ -19345,13 +19387,14 @@ msgstr "الرقم" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_LT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "الاحتمال المراد حساب التوزيع إف العكسي له." #: scfuncs.src msgctxt "" @@ -19409,13 +19452,14 @@ msgstr "الرقم" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_RT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "الاحتمال المراد حساب التوزيع إف العكسي له." #: scfuncs.src msgctxt "" @@ -19607,13 +19651,14 @@ msgstr "تقوم القيمة 0 أو FALSE بحساب دالة الكثافة الاحتمالية. بينما تقوم أية قيمة أخرى أو TRUE أو تم حذفها بحساب دالة التوزيع التراكمي." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "1\n" "string.text" msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." -msgstr "" +msgstr "يؤدي إلى إرجاع احتمالية الطرف الأيسر لدالة التوزيع التراكمي أو قيم دالة الكثافة الاحتمالية لتوزيع مربع كاي." #: scfuncs.src msgctxt "" @@ -19625,13 +19670,14 @@ msgstr "الرقم" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "3\n" "string.text" msgid "The value for which the probability density function or cumulative distribution function is to be calculated." -msgstr "" +msgstr "القيمة التي سيتم حساب دالة الكثافة الاحتمالية أو دالة التوزيع التراكمي لها." #: scfuncs.src msgctxt "" @@ -19661,13 +19707,14 @@ msgstr "تراكمي" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "7\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "تقوم القيمة 0 أو FALSE بحساب دالة الكثافة الاحتمالية. بينما تقوم أية قيمة أخرى أو TRUE أو تم حذفها بحساب دالة التوزيع التراكمي." #: scfuncs.src msgctxt "" @@ -19733,13 +19780,14 @@ msgstr "الرقم" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse chi square distribution is to be calculated." -msgstr "" +msgstr "الاحتمال المراد حساب توزيع تشاي التربيعي العكسي عنده." #: scfuncs.src msgctxt "" @@ -19824,13 +19872,14 @@ msgstr "الاحتمالية" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse of the chi square distribution is to be calculated." -msgstr "" +msgstr "القيمة الاحتمالية التي سيتم حساب عكس توزيع مربع كاي لها." #: scfuncs.src msgctxt "" @@ -20257,13 +20306,14 @@ msgstr "الانحراف المعياري المعروف للمجتمع الإحصائي. إذا تم الحذف، يتم استخدام الانحراف المعيار للعينة المقدمة." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "1\n" "string.text" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "" +msgstr "لحساب احتمالية قياس إحصائيات z أكبر من تلك التي تم حسابها استنادًا إلى عينة." #: scfuncs.src msgctxt "" @@ -20311,13 +20361,14 @@ msgstr "سيجما" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "7\n" "string.text" msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "" +msgstr "الانحراف المعياري المعروف للمجتمع الإحصائي. إذا تم الحذف، يتم استخدام الانحراف المعيار للعينة المقدمة." #: scfuncs.src msgctxt "" @@ -20635,13 +20686,14 @@ msgstr "الوضع" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST_MS\n" "7\n" "string.text" msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" -msgstr "" +msgstr "تحديد عدد أطراف التوزيع للإرجاع؛ توزيع أحادي الطرف = 1؛ توزيع ثنائي الأطراف = 2." #: scfuncs.src msgctxt "" @@ -26018,57 +26070,3 @@ "string.text" msgid "Collapse Formula Bar" msgstr "طي شريط الصيغة" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Smilies\n" -"stringlist.text" -msgid "3 Smilies" -msgstr "3 ابتسامات" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Colored Smilies\n" -"stringlist.text" -msgid "3 Colored Smilies" -msgstr "3 ابتسامات ملوّنة" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" -"1\n" -"string.text" -msgid "Returns the day of the week for the date value as an integer (1-7)." -msgstr "إرجاع اليوم من الأسبوع لقيمة التاريخ كرقم صحيح (من 1 إلى 7)." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n" -"7\n" -"string.text" -msgid "If given and not equal to zero then rounded down according to amount when a negative number and significance." -msgstr "إذا تم إدخال قيمة رقمية غير مساوية للصفر، فسيتم تقريبها رقميًا للأدنى وفقًا للقيمة المطلقة، وذلك إذا كانت القيمة والرقم المميز سالبين." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MS\n" -"1\n" -"string.text" -msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance." -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ENCODEURL\n" -"3\n" -"string.text" -msgid "A string to be URL encoded" -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/ar/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/ar/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/ar/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ar/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-06-16 17:49+0000\n" -"Last-Translator: صفا \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 11:17+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1371404942.0\n" +"X-POOTLE-MTIME: 1439551021.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "افتراضي" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/as/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/as/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/as/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/as/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 22:29+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 10:26+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: as\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435271362.000000\n" +"X-POOTLE-MTIME: 1439548001.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7999,7 +7999,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8008,7 +8008,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8017,7 +8017,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8026,7 +8026,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8035,7 +8035,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8044,7 +8044,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8053,7 +8053,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8062,7 +8062,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8071,7 +8071,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8080,7 +8080,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8089,7 +8089,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8098,7 +8098,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/as/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/as/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/as/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/as/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" "PO-Revision-Date: 2015-08-14 10:52+0000\n" "Last-Translator: system user <>\n" "Language-Team: Assamese \n" @@ -1007,13 +1007,14 @@ msgstr "চৰ্তসাপেক্ষ ফৰমেটিং (~o)" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ConditionalFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Condition" -msgstr "" +msgstr "চৰ্তসাপেক্ষ ফৰমেটিং (~o)" #: CalcCommands.xcu msgctxt "" @@ -1043,13 +1044,14 @@ msgstr "ৰঙৰ স্কেইল..." #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:DataBarFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Data Bar" -msgstr "" +msgstr "চৰ্তসাপেক্ষ ফৰমেটিং (~o)" #: CalcCommands.xcu msgctxt "" @@ -1061,13 +1063,14 @@ msgstr "তথ্য বাৰ..." #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:IconSetFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Icon Set" -msgstr "" +msgstr "চৰ্তসাপেক্ষ ফৰমেটিং (~o)" #: CalcCommands.xcu msgctxt "" @@ -3310,12 +3313,13 @@ msgstr "মেন্যুৱেল ব্রেক আঁতৰাওক (~B)" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "পূৰ্ণ কৰক" #: CalcCommands.xcu @@ -15173,7 +15177,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "" #: GenericCommands.xcu @@ -20889,13 +20893,14 @@ msgstr "ফাংকশ্বনসমূহ" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.ManageChangesDeck\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "নামসমূহ ব্যৱস্থাপনা কৰক (~M)..." #: Sidebar.xcu msgctxt "" @@ -21124,13 +21129,14 @@ msgstr "নেভিগেটৰ" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SwManageChangesPanel\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "নামসমূহ ব্যৱস্থাপনা কৰক (~M)..." #: Sidebar.xcu msgctxt "" @@ -21700,13 +21706,14 @@ msgstr "পৰিবৰ্তনসমূহ ৰেকৰ্ড কৰক (~R)" #: WriterCommands.xcu +#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:ShowTrackedChanges\n" "Label\n" "value.text" msgid "~Show Changes" -msgstr "" +msgstr "সনিসমূহ দেখুৱাওক (~w)..." #: WriterCommands.xcu msgctxt "" @@ -27087,47 +27094,3 @@ "value.text" msgid "Fontwork Shape" msgstr "ফন্টৱাৰ্ক আকৃতি" - -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ElementsDockingWindow\n" -"Label\n" -"value.text" -msgid "Elements Dock" -msgstr "উপাদানসমূহ ডক" - -#: CalcCommands.xcu -msgctxt "" -"CalcCommands.xcu\n" -"..CalcCommands.UserInterface.Popups..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: DrawImpressCommands.xcu -msgctxt "" -"DrawImpressCommands.xcu\n" -"..DrawImpressCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: MathCommands.xcu -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ToolBox\n" -"Label\n" -"value.text" -msgid "Elements" -msgstr "উপাদান" - -#: WriterCommands.xcu -msgctxt "" -"WriterCommands.xcu\n" -"..WriterCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/as/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/as/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/as/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/as/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-14 11:08+0000\n" "Last-Translator: system user <>\n" "Language-Team: Assamese \n" @@ -4931,7 +4931,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5009,6 +5009,15 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "বিস্তাৰ" + +#: globstr.src +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" "STR_HEADER_COND\n" "string.text" msgid "First Condition" @@ -14009,13 +14018,14 @@ msgstr "একঘাতীয়_ধৰণ" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n" "7\n" "string.text" msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears." -msgstr "" +msgstr "যদি = 0 linears ক zero point ৰে গণনা কৰা হ'ব, ন'হ'লে moved linears।" #: scfuncs.src msgctxt "" @@ -14090,13 +14100,14 @@ msgstr "ফলন_ধৰণ" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n" "7\n" "string.text" msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." -msgstr "" +msgstr "যদি type = 0 functions ৰ গননা কৰা হ'ব যাৰ আকাৰ y=m^x, বা y=b*m^x।" #: scfuncs.src msgctxt "" @@ -14486,13 +14497,14 @@ msgstr "সংখ্যা " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_S\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "" +msgstr "সংখ্যা 1, সংখ্যা 2, ... আদি 1 ৰ পৰা 30 লৈকে সাংখ্যিক যুক্তিবোৰ, যিবোৰে এটা জনসংখ্যা প্ৰতিনিধিত্ব কৰে।" #: scfuncs.src msgctxt "" @@ -14567,13 +14579,14 @@ msgstr "সংখ্যা " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population." -msgstr "" +msgstr "সংখ্যা 1, সংখ্যা 2, ... আদি 1 ৰ পৰা 30 লৈকে সাংখ্যিক যুক্তিবোৰ, যিবোৰে এটা জনসংখ্যা প্ৰতিনিধিত্ব কৰে।" #: scfuncs.src msgctxt "" @@ -14648,13 +14661,14 @@ msgstr "সংখ্যা " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_S\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "" +msgstr "সংখ্যা 1, সংখ্যা 2, ... আদি 1 ৰ পৰা 30 লৈকে সাংখ্যিক যুক্তিবোৰ, যিবোৰে এটা জনসংখ্যা প্ৰতিনিধিত্ব কৰে।" #: scfuncs.src msgctxt "" @@ -14702,13 +14716,14 @@ msgstr "সংখ্যা " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." -msgstr "" +msgstr "সংখ্যা 1, সংখ্যা 2, ... আদি 1 ৰ পৰা 30 লৈকে সাংখ্যিক যুক্তিবোৰ, যিবোৰে এটা জনসংখ্যা প্ৰতিনিধিত্ব কৰে।" #: scfuncs.src msgctxt "" @@ -14729,13 +14744,14 @@ msgstr "সংখ্যা " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." -msgstr "" +msgstr "সংখ্যা 1, সংখ্যা 2, ... আদি 1 ৰ পৰা 30 লৈকে সাংখ্যিক যুক্তিবোৰ, যিবোৰে এটা জনসংখ্যা প্ৰতিনিধিত্ব কৰে।" #: scfuncs.src msgctxt "" @@ -15053,13 +15069,14 @@ msgstr "সংখ্যা " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." -msgstr "" +msgstr "সংখ্যা 1, সংখ্যা 2, ... আদি 1 ৰ পৰা 30 লৈকে সাংখ্যিক যুক্তিবোৰ, যিবোৰে এটা জনসংখ্যা প্ৰতিনিধিত্ব কৰে।" #: scfuncs.src msgctxt "" @@ -15080,13 +15097,14 @@ msgstr "সংখ্যা " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MULTI\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample." -msgstr "" +msgstr "সংখ্যা 1, সংখ্যা 2, ... আদি 1 ৰ পৰা 30 লৈকে সাংখ্যিক যুক্তিবোৰ, যিবোৰে এটা জনসংখ্যা প্ৰতিনিধিত্ব কৰে।" #: scfuncs.src msgctxt "" @@ -15787,13 +15805,14 @@ msgstr "ধৰণ" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_EQ\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "ক্ৰম: ০ বা ন'হ'লে মানে descending, ০ ৰ বাহিৰে অন্য কোনো মান হ'ল ascending।" #: scfuncs.src msgctxt "" @@ -15850,13 +15869,14 @@ msgstr "ধৰণ" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_AVG\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "ক্ৰম: ০ বা ন'হ'লে মানে descending, ০ ৰ বাহিৰে অন্য কোনো মান হ'ল ascending।" #: scfuncs.src msgctxt "" @@ -16327,13 +16347,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BINOM_DIST_MS\n" "9\n" "string.text" msgid "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." -msgstr "" +msgstr "সঞ্চিত। C=0 ব্যক্তিগত সম্ভাৱনাটো গণনা কৰে, C=1 সঞ্চিত সম্ভাৱনাটো।" #: scfuncs.src msgctxt "" @@ -16471,13 +16492,14 @@ msgstr "পূঞ্জীভূত" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NEG_BINOM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 বা FALSE এ probability density function গণনা কৰে। অন্য কোনো মান বা TRUE বা একো নিদিলে cumulative distribution function গণনা কৰে।" #: scfuncs.src msgctxt "" @@ -16723,13 +16745,14 @@ msgstr "পূঞ্জীভূত" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_POISSON_DIST_MS\n" "7\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." -msgstr "" +msgstr "0 বা FALSE এ probability density function গণনা কৰে। অন্য কোনো মান বা TRUE বা একো নিদিলে cumulative distribution function গণনা কৰে।" #: scfuncs.src msgctxt "" @@ -16885,13 +16908,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 বা FALSE এ probability density function গণনা কৰে। অন্য কোনো মান বা TRUE বা একো নিদিলে cumulative distribution function গণনা কৰে।" #: scfuncs.src msgctxt "" @@ -16975,13 +16999,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "" +msgstr "যাৰ কাৰণে প্ৰতিলোম সাধাৰণ বিতৰণটো গণনা কৰিবলগীয়া হয়, সেই সম্ভাৱনা মানটো।" #: scfuncs.src msgctxt "" @@ -17085,13 +17110,14 @@ msgstr "পূঞ্জীভূত" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STD_NORM_DIST_MS\n" "5\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 বা FALSE এ probability density function গণনা কৰে। অন্য কোনো মান বা TRUE বা একো নিদিলে cumulative distribution function গণনা কৰে।" #: scfuncs.src msgctxt "" @@ -17139,13 +17165,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_S_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "" +msgstr "যাৰ কাৰণে প্ৰতিলোম মানবিশিষ্ট সাধাৰণ বিতৰণটো গণনা কৰিবলগীয়া হয়, সেই সম্ভাৱনা মানটো।" #: scfuncs.src msgctxt "" @@ -17284,13 +17311,14 @@ msgstr "STDEV" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST_MS\n" "7\n" "string.text" msgid "The standard deviation of the log normal distribution." -msgstr "" +msgstr "গড় মানটো। সাধাৰণ বিতৰণটোৰ গড় মানটো।" #: scfuncs.src msgctxt "" @@ -17302,13 +17330,14 @@ msgstr "পূঞ্জীভূত" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 বা FALSE এ probability density function গণনা কৰে। অন্য কোনো মান বা TRUE বা একো নিদিলে cumulative distribution function গণনা কৰে।" #: scfuncs.src msgctxt "" @@ -17392,13 +17421,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "" +msgstr "যাৰ কাৰণে প্ৰতিলোম সাধাৰণ ঘাতাংক বিতৰণটো গণনা কৰিবলগীয়া হয়, সেই সম্ভাৱনা মানটো।" #: scfuncs.src msgctxt "" @@ -17645,13 +17675,14 @@ msgstr "0 বা FALSE এ probability density function গণনা কৰে। অন্য কোনো মান বা TRUE বা একো নিদিলে cumulative distribution function গণনা কৰে।" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "1\n" "string.text" msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." -msgstr "" +msgstr "গামা বিতৰণৰ বাবে সম্ভাব্যতা ঘন ফলন অথবা সংযুক্ত বিতৰণ ফলনৰ মান ঘুৰাই দিয়ে।" #: scfuncs.src msgctxt "" @@ -17717,13 +17748,14 @@ msgstr "পূঞ্জীভূত" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 বা FALSE এ probability density function গণনা কৰে। অন্য কোনো মান বা TRUE বা একো নিদিলে cumulative distribution function গণনা কৰে।" #: scfuncs.src msgctxt "" @@ -17807,13 +17839,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "" +msgstr "যাৰ কাৰণে প্ৰতিলোম গামা বিতৰণটো গণনা কৰিবলগীয়া হয়, সেই সম্ভাৱনা মানটো।" #: scfuncs.src msgctxt "" @@ -17897,13 +17930,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_LN_MS\n" "3\n" "string.text" msgid "The value for which the natural logarithm of the gamma function is to be calculated." -msgstr "" +msgstr "যাৰ কাৰণে গামা ফলনটোৰ স্বাভাৱিক ঘাতাংকটো গণনা কৰিবলগীয়া হয়, সেই মানটো।" #: scfuncs.src msgctxt "" @@ -18221,13 +18255,14 @@ msgstr "পূঞ্জীভূত" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function." -msgstr "" +msgstr "0 বা FALSE এ probability density function গণনা কৰে। অন্য কোনো মান বা TRUE বা একো নিদিলে cumulative distribution function গণনা কৰে।" #: scfuncs.src msgctxt "" @@ -18284,13 +18319,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse beta distribution is to be calculated." -msgstr "" +msgstr "যাৰ কাৰণে প্ৰতিলোম বিটা বিতৰণটো গণনা কৰিবলগীয়া হয়, সেই সম্ভাৱনা মানটো।" #: scfuncs.src msgctxt "" @@ -18988,13 +19024,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "যাৰ কাৰণে প্ৰতিলোম T বিতৰণটো গণনা কৰিবলগীয়া হয়, সেই সম্ভাৱনা মানটো।" #: scfuncs.src msgctxt "" @@ -19034,13 +19071,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_2T\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "যাৰ কাৰণে প্ৰতিলোম T বিতৰণটো গণনা কৰিবলগীয়া হয়, সেই সম্ভাৱনা মানটো।" #: scfuncs.src msgctxt "" @@ -19353,13 +19391,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_LT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "যাৰ কাৰণে প্ৰতিলোম F বিতৰণটো গণনা কৰিবলগীয়া হয়, সেই সম্ভাৱনা মানটো।" #: scfuncs.src msgctxt "" @@ -19417,13 +19456,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_RT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "যাৰ কাৰণে প্ৰতিলোম F বিতৰণটো গণনা কৰিবলগীয়া হয়, সেই সম্ভাৱনা মানটো।" #: scfuncs.src msgctxt "" @@ -19615,13 +19655,14 @@ msgstr "0 বা FALSE এ probability density function গণনা কৰে। অন্য কোনো মান বা TRUE বা একো নিদিলে cumulative distribution function গণনা কৰে।" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "1\n" "string.text" msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." -msgstr "" +msgstr "cumulative distribution function ৰ left-tail probability দিয়ে বা chi-square distribution ৰ probability density function মান।" #: scfuncs.src msgctxt "" @@ -19633,13 +19674,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "3\n" "string.text" msgid "The value for which the probability density function or cumulative distribution function is to be calculated." -msgstr "" +msgstr "যাৰ কাৰণে F বিতৰণটো গণনা কৰিবলগীয়া হয়, সেই মানটো।" #: scfuncs.src msgctxt "" @@ -19669,13 +19711,14 @@ msgstr "পূঞ্জীভূত" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "7\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 বা FALSE এ probability density function গণনা কৰে। অন্য কোনো মান বা TRUE বা একো নিদিলে cumulative distribution function গণনা কৰে।" #: scfuncs.src msgctxt "" @@ -19741,13 +19784,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse chi square distribution is to be calculated." -msgstr "" +msgstr "যাৰ কাৰণে প্ৰতিলোম ছাই বৰ্গমূল বিতৰণটো গণনা কৰিবলগীয়া হয়, সেই সম্ভাৱনা মানটো।" #: scfuncs.src msgctxt "" @@ -19832,13 +19876,14 @@ msgstr "সম্ভাৱনা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse of the chi square distribution is to be calculated." -msgstr "" +msgstr "যাৰ কাৰণে প্ৰতিলোম ছাই বৰ্গমূল বিতৰণটো গণনা কৰিবলগীয়া হয়, সেই সম্ভাৱনা মানটো।" #: scfuncs.src msgctxt "" @@ -20265,13 +20310,14 @@ msgstr "জনসংখ্যাৰ জ্ঞাত প্ৰামাণিক বিচ্যুতি। যদি বাদ দিয়া হয়, প্ৰদান কৰা নমুনাৰ প্ৰামাণিক বিচ্যুতি ব্যৱহাৰ কৰা হয়।" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "1\n" "string.text" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "" +msgstr "এটা z-পৰিসংখ্যা দৰ্শন কৰাৰ সম্ভাৱনাক এটা নমুনাৰ উপৰত ভিত্তি কৰি গণনা কৰাতকে অধিক গণনা কৰে।" #: scfuncs.src msgctxt "" @@ -20319,13 +20365,14 @@ msgstr "ছিগমা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "7\n" "string.text" msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "" +msgstr "জনসংখ্যাৰ জ্ঞাত প্ৰামাণিক বিচ্যুতি। যদি বাদ দিয়া হয়, প্ৰদান কৰা নমুনাৰ প্ৰামাণিক বিচ্যুতি ব্যৱহাৰ কৰা হয়।" #: scfuncs.src msgctxt "" @@ -20643,13 +20690,14 @@ msgstr "ধৰণ" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST_MS\n" "7\n" "string.text" msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" -msgstr "" +msgstr "ধৰণটোৱে বিতৰণ টেইলবোৰৰ সংখ্যাটোক ঘূৰাই পথাবৰ বাবে নিৰ্দিষ্ট কৰে। 1= এটা-টেইলযুক্ত, 2 = দুটা-টেইলযুক্ত বিতৰণ" #: scfuncs.src msgctxt "" @@ -26025,57 +26073,3 @@ "string.text" msgid "Collapse Formula Bar" msgstr "সূত্ৰ বাৰ স্খলিত কৰক" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Smilies\n" -"stringlist.text" -msgid "3 Smilies" -msgstr "" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Colored Smilies\n" -"stringlist.text" -msgid "3 Colored Smilies" -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" -"1\n" -"string.text" -msgid "Returns the day of the week for the date value as an integer (1-7)." -msgstr "এটা পূৰ্ণ সংখ্যা (1-7) হিচাপে তাৰিখ মানটোৰ কাৰণে সপ্তাহটোৰ দিনটো ঘূৰাই পঠায়।" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n" -"7\n" -"string.text" -msgid "If given and not equal to zero then rounded down according to amount when a negative number and significance." -msgstr "যদি দিয়া হয় আৰু শূন্যৰ সমান নহয়, তেতিয়া পৰিমাণ অনুসাৰে কাষলৈ আনি পৰিবৰ্তন কৰে যেতিয়া এটা ঋণাত্মক সংখ্যা আৰু তাৎপৰ্য।" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MS\n" -"1\n" -"string.text" -msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance." -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ENCODEURL\n" -"3\n" -"string.text" -msgid "A string to be URL encoded" -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/as/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/as/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/as/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/as/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-06-20 07:07+0000\n" -"Last-Translator: ngoswami \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 11:25+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: as\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1371712028.0\n" +"X-POOTLE-MTIME: 1439551549.000000\n" #: DocumentRenderer.src msgctxt "" @@ -100,10 +100,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "অবিকল্পিত" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/as/starmath/source.po libreoffice-5.0.2~rc2/translations/source/as/starmath/source.po --- libreoffice-5.0.1~rc2/translations/source/as/starmath/source.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/as/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-20 09:18+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/ast/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/ast/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/ast/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ast/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 22:28+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 10:22+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: ast\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435271306.000000\n" +"X-POOTLE-MTIME: 1439547740.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8000,7 +8000,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8009,7 +8009,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8018,7 +8018,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8027,7 +8027,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8036,7 +8036,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8045,7 +8045,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8054,7 +8054,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8063,7 +8063,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8072,7 +8072,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8081,7 +8081,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8090,7 +8090,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8099,7 +8099,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-11 22:39+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 10:45+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: ast\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431383976.000000\n" +"X-POOTLE-MTIME: 1439549111.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -1026,13 +1026,14 @@ msgstr "Condición..." #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ColorScaleFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Color Scale" -msgstr "" +msgstr "Formatéu co~ndicional" #: CalcCommands.xcu msgctxt "" @@ -3313,12 +3314,13 @@ msgstr "Desaniciar sal~tu de páxina" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Llenar" #: CalcCommands.xcu @@ -15177,7 +15179,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/ast/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/ast/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/ast/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ast/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-14 10:54+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" @@ -4928,7 +4928,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5006,6 +5006,15 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Rangu" + +#: globstr.src +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" "STR_HEADER_COND\n" "string.text" msgid "First Condition" @@ -14006,13 +14015,14 @@ msgstr "Triba_llinial" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n" "7\n" "string.text" msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears." -msgstr "" +msgstr "Si la triba = 0 les llinies reutes calcularánse per aciu del puntu cero, sinon como llinies de regresión." #: scfuncs.src msgctxt "" @@ -14087,13 +14097,14 @@ msgstr "Tipu_función" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n" "7\n" "string.text" msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." -msgstr "" +msgstr "Si triba = 0 les funciones calcularánse na forma de y=m^x, o también funciones y=b*m^x." #: scfuncs.src msgctxt "" @@ -15050,13 +15061,14 @@ msgstr "númberu " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." -msgstr "" +msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." #: scfuncs.src msgctxt "" @@ -15077,13 +15089,14 @@ msgstr "númberu " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MULTI\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample." -msgstr "" +msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." #: scfuncs.src msgctxt "" @@ -15784,13 +15797,14 @@ msgstr "Triba" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_EQ\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "Orde de la secuencia: 0 o omitíu significa descendente; cualquier otru valor que nun seya 0 significa ascendente." #: scfuncs.src msgctxt "" @@ -15847,13 +15861,14 @@ msgstr "Triba" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_AVG\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "Orde de la secuencia: 0 o omitíu significa descendente; cualquier otru valor que nun seya 0 significa ascendente." #: scfuncs.src msgctxt "" @@ -16468,22 +16483,24 @@ msgstr "Acumuláu" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NEG_BINOM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 o FALSO calcula la función de densidá de probabilidá. Cualquier otru valor, o VERDADERO calcula la función de distribución acumulativa." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CRIT_BINOM\n" "1\n" "string.text" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "" +msgstr "Devuelve'l menor valor pal que la distribución binomial acumulativa ye mayor que o igual a un valor de criteriu." #: scfuncs.src msgctxt "" @@ -16882,13 +16899,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 o FALSO calcula la función de densidá de probabilidá. Cualquier otru valor, o VERDADERO calcula la función de distribución acumulativa." #: scfuncs.src msgctxt "" @@ -16972,13 +16990,14 @@ msgstr "númberu" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "" +msgstr "El valor de la probabilidá pa la que va calculase la distribución normal inversa." #: scfuncs.src msgctxt "" @@ -17082,13 +17101,14 @@ msgstr "Acumuláu" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STD_NORM_DIST_MS\n" "5\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 o FALSO calcula la función de densidá de probabilidá. Cualquier otru valor, o VERDADERO calcula la función de distribución acumulativa." #: scfuncs.src msgctxt "" @@ -17136,13 +17156,14 @@ msgstr "númberu" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_S_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "" +msgstr "El valor de probabilidá sobre'l que se tien que calcular la inversa de la distribución normal estándar." #: scfuncs.src msgctxt "" @@ -17281,13 +17302,14 @@ msgstr "DESVEST" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST_MS\n" "7\n" "string.text" msgid "The standard deviation of the log normal distribution." -msgstr "" +msgstr "El valor mediu. El valor mediu de la distribución normal logarítmica." #: scfuncs.src msgctxt "" @@ -17299,13 +17321,14 @@ msgstr "Acumuláu" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 o FALSO calcula la función de densidá de probabilidá. Cualquier otru valor, o VERDADERO calcula la función de distribución acumulativa." #: scfuncs.src msgctxt "" @@ -17389,13 +17412,14 @@ msgstr "númberu" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "" +msgstr "El valor de la probabilidá pa la que va calculase la distribución normal logarítmica inversa." #: scfuncs.src msgctxt "" @@ -17642,13 +17666,14 @@ msgstr "0 o FALSE calcula la función de densidá de probabilidá. Cualesquier otru valor o TRUE o ren calcula la función de distribución acumulativa." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "1\n" "string.text" msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." -msgstr "" +msgstr "Devuelve'l valor de la probabilidá de la función de densidá o la función de distribución acumulada pa la distribución Gamma." #: scfuncs.src msgctxt "" @@ -17714,13 +17739,14 @@ msgstr "Acumuláu" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 o FALSO calcula la función de densidá de probabilidá. Cualquier otru valor, o VERDADERO calcula la función de distribución acumulativa." #: scfuncs.src msgctxt "" @@ -17804,13 +17830,14 @@ msgstr "Númberu" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "" +msgstr "El valor de la probabilidá pa la que va calculase la distribución gamma inversa." #: scfuncs.src msgctxt "" @@ -17894,13 +17921,14 @@ msgstr "Númberu" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_LN_MS\n" "3\n" "string.text" msgid "The value for which the natural logarithm of the gamma function is to be calculated." -msgstr "" +msgstr "El valor pal que va calculase'l logaritmu natural de la función gamma." #: scfuncs.src msgctxt "" @@ -18866,13 +18894,14 @@ msgstr "acumulativa" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_DIST_MS\n" "7\n" "string.text" msgid "True calculates the cumulative distribution function, false the probability density function." -msgstr "" +msgstr "Acumulada. VERDADERO calcula la función de distribución acumulativa, FALSO la función de masa de probabilidá." #: scfuncs.src msgctxt "" @@ -18984,13 +19013,14 @@ msgstr "númberu" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "El valor de la probabilidá pa la que va calculase la distribución T inversa." #: scfuncs.src msgctxt "" @@ -19030,13 +19060,14 @@ msgstr "númberu" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_2T\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "El valor de la probabilidá pa la que va calculase la distribución T inversa." #: scfuncs.src msgctxt "" @@ -20254,13 +20285,14 @@ msgstr "La desviación standard conocida de la población. Si ye omitida, la desviación standard del exemplu dáu ye usáu." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "1\n" "string.text" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "" +msgstr "Calcula la probabilidá d'observación del mayor z-statistc que'l basáu nel ordenador nun exemplu." #: scfuncs.src msgctxt "" @@ -20308,13 +20340,14 @@ msgstr "sigma" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "7\n" "string.text" msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "" +msgstr "La desviación standard conocida de la población. Si ye omitida, la desviación standard del exemplu dáu ye usáu." #: scfuncs.src msgctxt "" @@ -20632,13 +20665,14 @@ msgstr "mou" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST_MS\n" "7\n" "string.text" msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" -msgstr "" +msgstr "Mou especifica'l númberu de coles de distribución a devolver. 1= una cola, 2 = dos coles" #: scfuncs.src msgctxt "" @@ -26008,57 +26042,3 @@ "string.text" msgid "Collapse Formula Bar" msgstr "Soverar la barra de fórmules" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Smilies\n" -"stringlist.text" -msgid "3 Smilies" -msgstr "3 emoticonos" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Colored Smilies\n" -"stringlist.text" -msgid "3 Colored Smilies" -msgstr "3 emoticonos de color" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" -"1\n" -"string.text" -msgid "Returns the day of the week for the date value as an integer (1-7)." -msgstr "Devuelve el día de la selmana pal valor de la data como númberu enteru (1-7)." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n" -"7\n" -"string.text" -msgid "If given and not equal to zero then rounded down according to amount when a negative number and significance." -msgstr "Si'l mou nun ye igual a cero, un númberu negativu con un significáu negativu, redondéase hasta conseguir un valor absolutu." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MS\n" -"1\n" -"string.text" -msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance." -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ENCODEURL\n" -"3\n" -"string.text" -msgid "A string to be URL encoded" -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/ast/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/ast/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/ast/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ast/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-08-19 22:47+0000\n" -"Last-Translator: Xuacu \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 11:11+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1376952446.0\n" +"X-POOTLE-MTIME: 1439550698.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Predetermináu" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/be/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/be/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/be/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/be/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 22:07+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 10:23+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435270065.000000\n" +"X-POOTLE-MTIME: 1439547809.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8000,7 +8000,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8009,7 +8009,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8018,7 +8018,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8027,7 +8027,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8036,7 +8036,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8045,7 +8045,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8054,7 +8054,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8063,7 +8063,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8072,7 +8072,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8081,7 +8081,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8090,7 +8090,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8099,7 +8099,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-5.0.2~rc2/translations/source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-5.0.1~rc2/translations/source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2015-09-17 13:33:11.000000000 +0000 @@ -2,17 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: com.sun.star.comp.Calc.NLPSolver\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:06+0200\n" -"PO-Revision-Date: 2013-07-24 22:52+0300\n" -"Last-Translator: \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-01 17:41+0000\n" +"Last-Translator: Christian Lohmaier \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1441129266.000000\n" #: Options.xhp #, fuzzy @@ -30,7 +32,7 @@ "bm_id0503200917110375_scalc\n" "help.text" msgid "Solver for Nonlinear Problems;Options" -msgstr " для Настаўленні value" +msgstr " для Настаўленні value" #: Options.xhp #, fuzzy @@ -392,7 +394,7 @@ "bm_id0603200910434044_scalc\n" "help.text" msgid "Solver for Nonlinear Problems;Usage" -msgstr " для value" +msgstr " для value" #: Usage.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "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: 2015-06-24 17:06+0200\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" "PO-Revision-Date: 2015-08-14 10:47+0000\n" "Last-Translator: system user <>\n" "Language-Team: Belarusian \n" @@ -1033,13 +1033,14 @@ msgstr "Узгодненае фарматаванне" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ConditionalFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Condition" -msgstr "" +msgstr "Узгодненае фарматаванне" #: CalcCommands.xcu msgctxt "" @@ -1070,13 +1071,14 @@ msgstr "Колер Маштаб." #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:DataBarFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Data Bar" -msgstr "" +msgstr "Узгодненае фарматаванне" #: CalcCommands.xcu #, fuzzy @@ -1089,13 +1091,14 @@ msgstr "Даныя Брусок." #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:IconSetFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Icon Set" -msgstr "" +msgstr "Узгодненае фарматаванне" #: CalcCommands.xcu msgctxt "" @@ -3372,12 +3375,13 @@ msgstr "Сцерці разрыў старонкі" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Запаўненне" #: CalcCommands.xcu @@ -15559,7 +15563,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "" #: GenericCommands.xcu @@ -21466,13 +21470,14 @@ msgstr "Функцыі" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.ManageChangesDeck\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "Вызначыць назвы..." #: Sidebar.xcu msgctxt "" @@ -21724,13 +21729,14 @@ msgstr "Навігатар" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SwManageChangesPanel\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "Вызначыць назвы..." #: Sidebar.xcu #, fuzzy @@ -22330,13 +22336,14 @@ msgstr "Запісваць змены" #: WriterCommands.xcu +#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:ShowTrackedChanges\n" "Label\n" "value.text" msgid "~Show Changes" -msgstr "" +msgstr "Паказваць змены..." #: WriterCommands.xcu msgctxt "" @@ -27999,48 +28006,3 @@ "value.text" msgid "Fontwork Shape" msgstr "Абрыс шрыфтавання" - -#, fuzzy -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ElementsDockingWindow\n" -"Label\n" -"value.text" -msgid "Elements Dock" -msgstr "Плашка элементаў" - -#: CalcCommands.xcu -msgctxt "" -"CalcCommands.xcu\n" -"..CalcCommands.UserInterface.Popups..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: DrawImpressCommands.xcu -msgctxt "" -"DrawImpressCommands.xcu\n" -"..DrawImpressCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: MathCommands.xcu -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ToolBox\n" -"Label\n" -"value.text" -msgid "Elements" -msgstr "Элементы" - -#: WriterCommands.xcu -msgctxt "" -"WriterCommands.xcu\n" -"..WriterCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/be/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/be/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/be/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/be/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: src\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-14 10:57+0000\n" "Last-Translator: system user <>\n" "Language-Team: Belarusian \n" @@ -4968,7 +4968,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5044,6 +5044,16 @@ msgstr "На гэты незапісаны дакумент спасылаюцца іншыя дакументы. Закрыўшы яго без запісу, можна страціць даныя." #: globstr.src +#, fuzzy +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "У інтэрвале" + +#: globstr.src msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" @@ -9013,13 +9023,14 @@ msgstr "NPER" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_PMT\n" "5\n" "string.text" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "" +msgstr "Перыяды выплат. Агульная колькасць перыядаў выплаты ануітэту/рэнты." #: scfuncs.src msgctxt "" @@ -9049,13 +9060,14 @@ msgstr "FV" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_PMT\n" "9\n" "string.text" msgid "Future value. The value (end value) to be attained after the final payment." -msgstr "" +msgstr "Будучая вартасць. Вартасць (канчатковая), якая будзе асягнута пасля апошняй выплаты." #: scfuncs.src msgctxt "" @@ -9094,13 +9106,14 @@ msgstr "NPER" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_RATE\n" "3\n" "string.text" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "" +msgstr "Перыяды выплат. Агульная колькасць перыядаў выплаты ануітэту/рэнты." #: scfuncs.src msgctxt "" @@ -9148,13 +9161,14 @@ msgstr "FV" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_RATE\n" "9\n" "string.text" msgid "Future value. The value (end value) to be attained after the final payment." -msgstr "" +msgstr "Будучая вартасць. Вартасць (канчатковая), якая будзе асягнута пасля апошняй выплаты." #: scfuncs.src msgctxt "" @@ -9248,13 +9262,14 @@ msgstr "NPER" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_IPMT\n" "7\n" "string.text" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "" +msgstr "Перыяды выплат. Агульная колькасць перыядаў выплаты ануітэту/рэнты." #: scfuncs.src msgctxt "" @@ -9284,13 +9299,14 @@ msgstr "FV" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_IPMT\n" "11\n" "string.text" msgid "Future value. The value (end value) to be attained after the final payment." -msgstr "" +msgstr "Будучая вартасць. Вартасць (канчатковая), якая будзе асягнута пасля апошняй выплаты." #: scfuncs.src msgctxt "" @@ -9465,13 +9481,14 @@ msgstr "NPER" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CUM_PRINC\n" "5\n" "string.text" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "" +msgstr "Перыяды выплат. Агульная колькасць перыядаў выплаты ануітэту/рэнты." #: scfuncs.src msgctxt "" @@ -9483,13 +9500,14 @@ msgstr "PV" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CUM_PRINC\n" "7\n" "string.text" msgid "The present value. The present value or the amount the annuity is currently worth." -msgstr "" +msgstr "Актуальная вартасць. Актуальная вартасць ануітэту/рэнты." #: scfuncs.src msgctxt "" @@ -9582,13 +9600,14 @@ msgstr "NPER" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CUM_IPMT\n" "5\n" "string.text" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "" +msgstr "Перыяды выплат. Агульная колькасць перыядаў выплаты ануітэту/рэнты." #: scfuncs.src msgctxt "" @@ -9600,13 +9619,14 @@ msgstr "pv" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CUM_IPMT\n" "7\n" "string.text" msgid "The present value. The present value or the amount the annuity is currently worth." -msgstr "" +msgstr "Актуальная вартасць. Актуальная вартасць ануітэту/рэнты." #: scfuncs.src msgctxt "" @@ -14357,13 +14377,14 @@ msgstr "Linear_type" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n" "7\n" "string.text" msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears." -msgstr "" +msgstr "Калі тып роўны 0, лінія рэгрэсіі будзе лічыцца праз пачатак каардынат, іначай са зрухам." #: scfuncs.src msgctxt "" @@ -14443,13 +14464,14 @@ msgstr "Function_type" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n" "7\n" "string.text" msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." -msgstr "" +msgstr "Калі тып роўны 0, функцыі вылічваюцца ў выглядзе y=m^x, або, таксама, функцыі y=b*m^x." #: scfuncs.src msgctxt "" @@ -14461,13 +14483,14 @@ msgstr "stats" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n" "9\n" "string.text" msgid "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well." -msgstr "" +msgstr "Калі параметр роўны 0, вылічваецца толькі каэфіцыент рэгрэсіі, калі не, то іншыя значэнні таксама." #: scfuncs.src msgctxt "" @@ -14858,13 +14881,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_S\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "" +msgstr "Лік 1, 2, ... гэта ад 1 да 30 лікавых аргументаў, якія з'яўляюць выбарку з сукупнасці." #: scfuncs.src msgctxt "" @@ -14941,13 +14965,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population." -msgstr "" +msgstr "Лік 1, 2, ... гэта ад 1 да 30 лікавых аргументаў, якія з'яўляюць генеральную сукупнасць." #: scfuncs.src msgctxt "" @@ -15025,13 +15050,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_S\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "" +msgstr "Лік 1, 2, ... гэта ад 1 да 30 лікавых аргументаў, якія з'яўляюць выбарку з сукупнасці." #: scfuncs.src msgctxt "" @@ -15082,13 +15108,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." -msgstr "" +msgstr "Лік 1, 2, ... гэта ад 1 да 30 лікавых аргументаў, якія з'яўляюць генеральную сукупнасць." #: scfuncs.src msgctxt "" @@ -15109,13 +15136,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." -msgstr "" +msgstr "Лік 1, 2, ... гэта ад 1 да 30 лікавых аргументаў, якія з'яўляюць генеральную сукупнасць." #: scfuncs.src msgctxt "" @@ -15449,13 +15477,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." -msgstr "" +msgstr "Лік 1, 2, ... гэта ад 1 да 30 лікавых аргументаў, якія з'яўляюць выбарку." #: scfuncs.src msgctxt "" @@ -15476,13 +15505,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MULTI\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample." -msgstr "" +msgstr "Лік 1, 2, ... гэта ад 1 да 30 лікавых аргументаў, якія з'яўляюць выбарку." #: scfuncs.src msgctxt "" @@ -16202,13 +16232,14 @@ msgstr "Тып" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_EQ\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "Паслядоўнасць: 0 або адсутнасць азначае да памяншэння, усякае іншае ненулявое значэнне азначае да павелічэння." #: scfuncs.src msgctxt "" @@ -16265,13 +16296,14 @@ msgstr "Тып" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_AVG\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "Паслядоўнасць: 0 або адсутнасць азначае да памяншэння, усякае іншае ненулявое значэнне азначае да павелічэння." #: scfuncs.src msgctxt "" @@ -16754,13 +16786,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BINOM_DIST_MS\n" "9\n" "string.text" msgid "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." -msgstr "" +msgstr "Пры C=0 вылічваецца індывідуальная імавернасць, C=1 вылічваецца назапашаная імавернасць." #: scfuncs.src msgctxt "" @@ -16902,13 +16935,14 @@ msgstr "Cumulative" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NEG_BINOM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." #: scfuncs.src msgctxt "" @@ -17157,13 +17191,14 @@ msgstr "Cumulative" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_POISSON_DIST_MS\n" "7\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." -msgstr "" +msgstr "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." #: scfuncs.src msgctxt "" @@ -17323,13 +17358,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." #: scfuncs.src msgctxt "" @@ -17418,13 +17454,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "" +msgstr "Значэнне імавернасці, для якога вылічваецца інверснае нармальнае размеркаванне." #: scfuncs.src msgctxt "" @@ -17530,13 +17567,14 @@ msgstr "Cumulative" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STD_NORM_DIST_MS\n" "5\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." #: scfuncs.src msgctxt "" @@ -17585,13 +17623,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_S_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "" +msgstr "Значэнне імавернасці, для якога вылічваецца інверснае стандартнае нармальнае размеркаванне." #: scfuncs.src msgctxt "" @@ -17735,13 +17774,14 @@ msgstr "STDEV" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST_MS\n" "7\n" "string.text" msgid "The standard deviation of the log normal distribution." -msgstr "" +msgstr "Сярэдняе значэнне лагарыфмічнага нармальнага размеркавання." #: scfuncs.src msgctxt "" @@ -17753,13 +17793,14 @@ msgstr "Cumulative" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." #: scfuncs.src msgctxt "" @@ -17846,13 +17887,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "" +msgstr "Значэнне, для якога вылічваецца інверснае лагарыфмічнае нармальнае размеркаванне." #: scfuncs.src msgctxt "" @@ -18105,13 +18147,14 @@ msgstr "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "1\n" "string.text" msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." -msgstr "" +msgstr "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." #: scfuncs.src msgctxt "" @@ -18178,13 +18221,14 @@ msgstr "Cumulative" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." #: scfuncs.src msgctxt "" @@ -18271,13 +18315,14 @@ msgstr "лік" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "" +msgstr "Значэнне, для якога вылічваецца інверснае гама-размеркаванне." #: scfuncs.src #, fuzzy @@ -18363,13 +18408,14 @@ msgstr "лік" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_LN_MS\n" "3\n" "string.text" msgid "The value for which the natural logarithm of the gamma function is to be calculated." -msgstr "" +msgstr "Значэнне, для якога вылічваецца натуральны лагарыфм гама-функцыі." #: scfuncs.src msgctxt "" @@ -18704,13 +18750,14 @@ msgstr "Cumulative" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function." -msgstr "" +msgstr "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function." #: scfuncs.src msgctxt "" @@ -18767,13 +18814,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse beta distribution is to be calculated." -msgstr "" +msgstr "Значэнне, для якога вылічваецца інверснае бета-размеркаванне." #: scfuncs.src #, fuzzy @@ -19483,13 +19531,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "Значэнне, для якога вылічваецца інверснае T-размеркаванне." #: scfuncs.src msgctxt "" @@ -19529,13 +19578,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_2T\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "Значэнне, для якога вылічваецца інверснае T-размеркаванне." #: scfuncs.src msgctxt "" @@ -19854,13 +19904,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_LT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "Значэнне, для якога вылічваецца інверснае F-размеркаванне." #: scfuncs.src msgctxt "" @@ -19918,13 +19969,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_RT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "Значэнне, для якога вылічваецца інверснае F-размеркаванне." #: scfuncs.src msgctxt "" @@ -20121,13 +20173,14 @@ msgstr "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "1\n" "string.text" msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." -msgstr "" +msgstr "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." #: scfuncs.src msgctxt "" @@ -20139,13 +20192,14 @@ msgstr "лік" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "3\n" "string.text" msgid "The value for which the probability density function or cumulative distribution function is to be calculated." -msgstr "" +msgstr "The value for which the probability density function or cumulative distribution function is to be calculated." #: scfuncs.src msgctxt "" @@ -20175,13 +20229,14 @@ msgstr "Cumulative" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "7\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." #: scfuncs.src msgctxt "" @@ -20250,13 +20305,14 @@ msgstr "number " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse chi square distribution is to be calculated." -msgstr "" +msgstr "Значэнне, для якога вылічваецца інверснае хі-квадрат размеркаванне." #: scfuncs.src msgctxt "" @@ -20343,13 +20399,14 @@ msgstr "Probability" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse of the chi square distribution is to be calculated." -msgstr "" +msgstr "Значэнне імавернасці, для якога вылічваецца адваротнае (інверснае) хі-квадрат размеркаванне." #: scfuncs.src msgctxt "" @@ -20784,13 +20841,14 @@ msgstr "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "1\n" "string.text" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "" +msgstr "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." #: scfuncs.src msgctxt "" @@ -20838,13 +20896,14 @@ msgstr "sigma" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "7\n" "string.text" msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "" +msgstr "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." #: scfuncs.src msgctxt "" @@ -21168,13 +21227,14 @@ msgstr "рэжым" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST_MS\n" "7\n" "string.text" msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" -msgstr "" +msgstr "Лад вызначае колькасць вяртаных кірункаў размеркавання, 1 = адзін, 2 = двукірункавае размеркаванне" #: scfuncs.src msgctxt "" @@ -26706,57 +26766,3 @@ "string.text" msgid "Collapse Formula Bar" msgstr "Згарнуць стужку формул" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Smilies\n" -"stringlist.text" -msgid "3 Smilies" -msgstr "" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Colored Smilies\n" -"stringlist.text" -msgid "3 Colored Smilies" -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" -"1\n" -"string.text" -msgid "Returns the day of the week for the date value as an integer (1-7)." -msgstr "Вяртае дзень тыдня для пэўнай даты як цэлы лік (1-7)." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n" -"7\n" -"string.text" -msgid "If given and not equal to zero then rounded down according to amount when a negative number and significance." -msgstr "Калі пададзена, і не роўна нулю, тады акругляецца ўніз." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MS\n" -"1\n" -"string.text" -msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance." -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ENCODEURL\n" -"3\n" -"string.text" -msgid "A string to be URL encoded" -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/be/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/be/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/be/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/be/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: view\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2013-08-26 09:02+0000\n" -"Last-Translator: Andras Timar \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 11:13+0000\n" +"Last-Translator: system user <>\n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1377507734.000000\n" +"X-POOTLE-MTIME: 1439550789.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Прадвызначана" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/bg/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/bg/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/bg/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bg/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-24 14:33+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-03 08:15+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437748423.000000\n" +"X-POOTLE-MTIME: 1441268133.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6602,7 +6602,7 @@ "KISS_MARK\n" "LngText.text" msgid "kiss mark" -msgstr "целувка3" +msgstr "целувка5" #. 💌 (U+1F48C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7987,8 +7987,8 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" -msgstr "1:30" +msgid "1.30" +msgstr "1.30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7996,8 +7996,8 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" -msgstr "2:30" +msgid "2.30" +msgstr "2.30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8005,8 +8005,8 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" -msgstr "3:30" +msgid "3.30" +msgstr "3.30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8014,8 +8014,8 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" -msgstr "4:30" +msgid "4.30" +msgstr "4.30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8023,8 +8023,8 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" -msgstr "5:30" +msgid "5.30" +msgstr "5.30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8032,8 +8032,8 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" -msgstr "6:30" +msgid "6.30" +msgstr "6.30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8041,8 +8041,8 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" -msgstr "7:30" +msgid "7.30" +msgstr "7.30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8050,8 +8050,8 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" -msgstr "8:30" +msgid "8.30" +msgstr "8.30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8059,8 +8059,8 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" -msgstr "9:30" +msgid "9.30" +msgstr "9.30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8068,8 +8068,8 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" -msgstr "10:30" +msgid "10.30" +msgstr "10.30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8077,8 +8077,8 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" -msgstr "11:30" +msgid "11.30" +msgstr "11.30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8086,8 +8086,8 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" -msgstr "12:30" +msgid "12.30" +msgstr "12.30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-5.0.1~rc2/translations/source/bg/helpcontent2/source/text/swriter/01.po libreoffice-5.0.2~rc2/translations/source/bg/helpcontent2/source/text/swriter/01.po --- libreoffice-5.0.1~rc2/translations/source/bg/helpcontent2/source/text/swriter/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bg/helpcontent2/source/text/swriter/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-06-27 14:00+0000\n" -"Last-Translator: Mihail Balabanov \n" +"PO-Revision-Date: 2015-09-01 15:31+0000\n" +"Last-Translator: Christian Lohmaier \n" "Language-Team: .\n" "Language: bg\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1435413631.000000\n" +"X-POOTLE-MTIME: 1441121494.000000\n" #: 01120000.xhp msgctxt "" @@ -4176,7 +4176,7 @@ "37\n" "help.text" msgid "Section" -msgstr "Раздел" +msgstr "Раздел" #: 04020100.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-06-27 14:27+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-12 12:32+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435415256.000000\n" +"X-POOTLE-MTIME: 1442061179.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3307,7 +3307,7 @@ "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Запълване" #: CalcCommands.xcu @@ -15153,7 +15153,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "Режим на редактиране" #: GenericCommands.xcu @@ -15973,7 +15973,7 @@ "Label\n" "value.text" msgid "~Spacing" -msgstr "" +msgstr "Разредка" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/bg/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/bg/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/bg/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bg/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-27 20:45+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-10 10:56+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435437922.000000\n" +"X-POOTLE-MTIME: 1441882565.000000\n" #: condformatdlg.src msgctxt "" @@ -4923,7 +4923,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "Израз – диапазон или формула" @@ -4999,6 +4999,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Област" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/bg/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/bg/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/bg/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bg/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-06-27 13:28+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-10 10:56+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435411736.000000\n" +"X-POOTLE-MTIME: 1441882572.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "По подразбиране" +msgid "According to layout" +msgstr "Според оформлението" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/bg/sw/source/ui/utlui.po libreoffice-5.0.2~rc2/translations/source/bg/sw/source/ui/utlui.po --- libreoffice-5.0.1~rc2/translations/source/bg/sw/source/ui/utlui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bg/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-04-19 01:45+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/bn/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/bn/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/bn/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bn/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 22:05+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 10:19+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: bn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435269929.000000\n" +"X-POOTLE-MTIME: 1439547585.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8000,7 +8000,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8009,7 +8009,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8018,7 +8018,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8027,7 +8027,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8036,7 +8036,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8045,7 +8045,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8054,7 +8054,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8063,7 +8063,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8072,7 +8072,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8081,7 +8081,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8090,7 +8090,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8099,7 +8099,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" "PO-Revision-Date: 2015-08-14 10:45+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" @@ -1014,13 +1014,14 @@ msgstr "শর্তাধীন বিন্যাস... (~o)" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ConditionalFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Condition" -msgstr "" +msgstr "শর্তাধীন বিন্যাস... (~o)" #: CalcCommands.xcu msgctxt "" @@ -1050,13 +1051,14 @@ msgstr "" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:DataBarFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Data Bar" -msgstr "" +msgstr "শর্তাধীন বিন্যাস... (~o)" #: CalcCommands.xcu msgctxt "" @@ -1068,13 +1070,14 @@ msgstr "" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:IconSetFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Icon Set" -msgstr "" +msgstr "শর্তাধীন বিন্যাস... (~o)" #: CalcCommands.xcu msgctxt "" @@ -3321,12 +3324,13 @@ msgstr "পৃষ্ঠা বিরতি মুছে ফেলা হবে (~B)" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "ভরাট" #: CalcCommands.xcu @@ -15193,7 +15197,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "" #: GenericCommands.xcu @@ -20943,13 +20947,14 @@ msgstr "ফাংশন" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.ManageChangesDeck\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "নাম তৈরি... (~C)" #: Sidebar.xcu msgctxt "" @@ -21193,13 +21198,14 @@ msgstr "ন্যাভিগেটর (~v)" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SwManageChangesPanel\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "নাম তৈরি... (~C)" #: Sidebar.xcu #, fuzzy @@ -21772,13 +21778,14 @@ msgstr "পরিবর্তনসমূহ রেকর্ড (~R)" #: WriterCommands.xcu +#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:ShowTrackedChanges\n" "Label\n" "value.text" msgid "~Show Changes" -msgstr "" +msgstr "পরিবর্তন প্রদর্শন... (~w)" #: WriterCommands.xcu msgctxt "" @@ -27166,48 +27173,3 @@ "value.text" msgid "Fontwork Shape" msgstr "ফন্টওয়ার্কের আকৃতি" - -#: CalcCommands.xcu -msgctxt "" -"CalcCommands.xcu\n" -"..CalcCommands.UserInterface.Popups..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: DrawImpressCommands.xcu -msgctxt "" -"DrawImpressCommands.xcu\n" -"..DrawImpressCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: MathCommands.xcu -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ToolBox\n" -"Label\n" -"value.text" -msgid "Elements" -msgstr "উপাদান" - -#: MathCommands.xcu -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ElementsDockingWindow\n" -"Label\n" -"value.text" -msgid "Elements Dock" -msgstr "" - -#: WriterCommands.xcu -msgctxt "" -"WriterCommands.xcu\n" -"..WriterCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/bn/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/bn/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/bn/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bn/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-14 10:56+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" @@ -5040,7 +5040,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5114,6 +5114,16 @@ msgstr "" #: globstr.src +#, fuzzy +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "পরিসর" + +#: globstr.src msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" @@ -14162,13 +14172,14 @@ msgstr "Linear_type" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n" "7\n" "string.text" msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears." -msgstr "" +msgstr "যদি type= 0 হয়, তবে রৈখিকগুলো শূন্য বিন্দু অতিক্রম করে নির্ণয় করা হবে, অন্যথায় স্থানান্তরিত রৈখিক নির্ণয় করা হবে।" #: scfuncs.src msgctxt "" @@ -14243,13 +14254,14 @@ msgstr "Function_type" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n" "7\n" "string.text" msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." -msgstr "" +msgstr "যদি type = 0,তবে ফাংশনগুলো y=m^x হিসেবে নির্ণয় করা হবে, অথবা y=b*m^x ফাংশন।" #: scfuncs.src msgctxt "" @@ -14639,13 +14651,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_S\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "" +msgstr "Number 1, number 2, ... হলো 1 থেকে 30 পর্যন্ত সংখ্যাসূচক আর্গুমেন্ট যা সমগ্রকের নমুনার প্রতিরুপ।" #: scfuncs.src msgctxt "" @@ -14720,13 +14733,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population." -msgstr "" +msgstr "Number 1, number 2, ... হলো 1 থেকে 30 পর্যন্ত সংখ্যাসূচক আর্গুমেন্ট সমগ্রক উপস্থাপন করে।" #: scfuncs.src msgctxt "" @@ -14801,13 +14815,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_S\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "" +msgstr "Number 1, number 2, ... হলো 1 থেকে 30 পর্যন্ত সংখ্যাসূচক আর্গুমেন্ট যা সমগ্রকের নমুনার প্রতিরুপ।" #: scfuncs.src msgctxt "" @@ -14855,13 +14870,14 @@ msgstr "number" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." -msgstr "" +msgstr "Number 1, number 2, ... হলো 1 থেকে 30 পর্যন্ত সংখ্যাসূচক আর্গুমেন্ট সমগ্রক উপস্থাপন করে।" #: scfuncs.src msgctxt "" @@ -14882,13 +14898,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." -msgstr "" +msgstr "Number 1, number 2, ... হলো 1 থেকে 30 পর্যন্ত সংখ্যাসূচক আর্গুমেন্ট সমগ্রক উপস্থাপন করে।" #: scfuncs.src msgctxt "" @@ -15208,13 +15225,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." -msgstr "" +msgstr "নাম্বার 1, নাম্বার 2, ... 1 হতে 30 নমুনা নিউমেরিক্যাল আর্গুমেন্ট হিসেবে বিবেচনা।" #: scfuncs.src msgctxt "" @@ -15235,13 +15253,14 @@ msgstr "সংখ্যা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MULTI\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample." -msgstr "" +msgstr "নাম্বার 1, নাম্বার 2, ... 1 হতে 30 নমুনা নিউমেরিক্যাল আর্গুমেন্ট হিসেবে বিবেচনা।" #: scfuncs.src msgctxt "" @@ -15942,13 +15961,14 @@ msgstr "ধরন" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_EQ\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "ধারার ক্রম: 0 অথবা বাদ থাকা মানে অবরোহী, 0 ছাড়া অন্য মান মানে আরোহী" #: scfuncs.src msgctxt "" @@ -16005,13 +16025,14 @@ msgstr "ধরন" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_AVG\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "ধারার ক্রম: 0 অথবা বাদ থাকা মানে অবরোহী, 0 ছাড়া অন্য মান মানে আরোহী" #: scfuncs.src msgctxt "" @@ -16483,13 +16504,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BINOM_DIST_MS\n" "9\n" "string.text" msgid "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." -msgstr "" +msgstr "ক্রমযোজিত। C=0 পৃথক সম্ভাব্যতা গণনা করে, C=1 ক্রমযোজিত সম্ভাব্যতা।" #: scfuncs.src msgctxt "" @@ -16627,13 +16649,14 @@ msgstr "ক্রমযোজিত" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NEG_BINOM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 অথবা FALSE সম্ভাব্যতা ঘনত্ব ফাংশন গণনা করা হয়। অন্য যেকোনো মান অথবা TRUE অথবা অবজ্ঞা করা মান দ্বারা ক্রমযোজিত নিবেশন ফাংশন গণনা করা হয়।" #: scfuncs.src msgctxt "" @@ -16879,13 +16902,14 @@ msgstr "ক্রমযোজিত" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_POISSON_DIST_MS\n" "7\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." -msgstr "" +msgstr "0 অথবা FALSE সম্ভাব্যতা ঘনত্ব ফাংশন গণনা করা হয়। অন্য যেকোনো মান অথবা TRUE অথবা অবজ্ঞা করা মান দ্বারা ক্রমযোজিত নিবেশন ফাংশন গণনা করা হয়।" #: scfuncs.src msgctxt "" @@ -17041,13 +17065,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 অথবা FALSE সম্ভাব্যতা ঘনত্ব ফাংশন গণনা করা হয়। অন্য যেকোনো মান অথবা TRUE অথবা অবজ্ঞা করা মান দ্বারা ক্রমযোজিত নিবেশন ফাংশন গণনা করা হয়।" #: scfuncs.src msgctxt "" @@ -17131,13 +17156,14 @@ msgstr "নাম্বার" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "" +msgstr "সম্ভাব্যতার মান যার জন্য বিপরীত সাধারণ নিবেশন নির্ণয় করা হবে।" #: scfuncs.src msgctxt "" @@ -17241,13 +17267,14 @@ msgstr "ক্রমযোজিত" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STD_NORM_DIST_MS\n" "5\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 অথবা FALSE সম্ভাব্যতা ঘনত্ব ফাংশন গণনা করা হয়। অন্য যেকোনো মান অথবা TRUE অথবা অবজ্ঞা করা মান দ্বারা ক্রমযোজিত নিবেশন ফাংশন গণনা করা হয়।" #: scfuncs.src msgctxt "" @@ -17295,13 +17322,14 @@ msgstr "নাম্বার" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_S_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "" +msgstr "সম্ভাব্যতার মান যার জন্য বিপরীত সাধারণ নিবেশন নির্ণয় করা হবে।" #: scfuncs.src msgctxt "" @@ -17440,13 +17468,14 @@ msgstr "STDEV" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST_MS\n" "7\n" "string.text" msgid "The standard deviation of the log normal distribution." -msgstr "" +msgstr "গড় মান। লগ নরমাল ডিস্ট্রিবিউশনের গড় মান।" #: scfuncs.src msgctxt "" @@ -17458,13 +17487,14 @@ msgstr "ক্রমযোজিত" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 অথবা FALSE সম্ভাব্যতা ঘনত্ব ফাংশন গণনা করা হয়। অন্য যেকোনো মান অথবা TRUE অথবা অবজ্ঞা করা মান দ্বারা ক্রমযোজিত নিবেশন ফাংশন গণনা করা হয়।" #: scfuncs.src msgctxt "" @@ -17548,13 +17578,14 @@ msgstr "নাম্বার" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "" +msgstr "সম্ভাব্যতার মান যার জন্য বিপরীত লগের সাধারণ নিবেশন নির্ণয় করা হবে।" #: scfuncs.src msgctxt "" @@ -17801,13 +17832,14 @@ msgstr "0 অথবা FALSE সম্ভাব্যতা গন্তব্য ফাংশন নির্ণয় করে। অন্য যেকোনো মান অথবা সত্য অথবা মান না থাকলে ক্রমযোজিত নিবেশন ফাংশন নির্ণয় করে।" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "1\n" "string.text" msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." -msgstr "" +msgstr "গামা নিবেশনের জন্য সম্ভাব্যতা ক্রমবর্ধমান ফাংশন অথবা ক্রমযোজিত নিবেশন " #: scfuncs.src msgctxt "" @@ -17873,13 +17905,14 @@ msgstr "ক্রমযোজিত" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 অথবা FALSE সম্ভাব্যতা ঘনত্ব ফাংশন গণনা করা হয়। অন্য যেকোনো মান অথবা TRUE অথবা অবজ্ঞা করা মান দ্বারা ক্রমযোজিত নিবেশন ফাংশন গণনা করা হয়।" #: scfuncs.src msgctxt "" @@ -17963,13 +17996,14 @@ msgstr "নম্বর" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "" +msgstr "সম্ভাব্যতার মান যার জন্য বিপরীত গামা নিবেশন নির্ণয় করা হবে।" #: scfuncs.src msgctxt "" @@ -18053,13 +18087,14 @@ msgstr "নম্বর" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_LN_MS\n" "3\n" "string.text" msgid "The value for which the natural logarithm of the gamma function is to be calculated." -msgstr "" +msgstr "যে মানের জন্য গামা ফাংশনের সাধারণ লগরিদমের নির্ণয় করতে হবে।" #: scfuncs.src msgctxt "" @@ -18377,13 +18412,14 @@ msgstr "ক্রমযোজিত" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function." -msgstr "" +msgstr "সম্ভাব্যতা গন্তব্য ফাংশনের জন্য 0 অথবা FALSE। অন্য যেকোনো মান অথবা TRUE অথবা বাতিল করা ক্রমযোজিত নিবেশন ফাংশন গণনা করে।" #: scfuncs.src msgctxt "" @@ -18440,13 +18476,14 @@ msgstr "নাম্বার" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse beta distribution is to be calculated." -msgstr "" +msgstr "সম্ভাব্যতার মান যার জন্য বিপরীত বেটা নিবেশন নির্ণয় করা হবে।" #: scfuncs.src msgctxt "" @@ -19144,13 +19181,14 @@ msgstr "নাম্বার" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "সম্ভাব্যতার মান যার জন্য বিপরীত T-নিবেশন নির্ণয় করা হবে।" #: scfuncs.src msgctxt "" @@ -19190,13 +19228,14 @@ msgstr "নাম্বার" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_2T\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "সম্ভাব্যতার মান যার জন্য বিপরীত T-নিবেশন নির্ণয় করা হবে।" #: scfuncs.src msgctxt "" @@ -19509,13 +19548,14 @@ msgstr "নাম্বার" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_LT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "সম্ভাব্যতার মান যার জন্য বিপরীত F নিবেশন নির্ণয় করা হবে।" #: scfuncs.src msgctxt "" @@ -19573,13 +19613,14 @@ msgstr "নাম্বার" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_RT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "সম্ভাব্যতার মান যার জন্য বিপরীত F নিবেশন নির্ণয় করা হবে।" #: scfuncs.src msgctxt "" @@ -19771,13 +19812,14 @@ msgstr "0 অথবা FALSE সম্ভাব্যতা ঘনত্ব ফাংশন গণনা করে। অন্য যেকোনো মান অথবা TRUE অথবা বাদ দেয়া ক্রমযোজিত বিন্যাস ফাংশন গণনা করে।" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "1\n" "string.text" msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." -msgstr "" +msgstr "ক্রমযোজিত নিবেশন ফাংশনের বাম-টেইল সম্ভাব্যতা ফাংশন ফেরত দেয় অথবা কাই-বর্গ নিবেশনের সম্ভাব্যতা গন্তব্য ফাংশনের মান ফেরত দেয়।" #: scfuncs.src msgctxt "" @@ -19789,13 +19831,14 @@ msgstr "নম্বর" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "3\n" "string.text" msgid "The value for which the probability density function or cumulative distribution function is to be calculated." -msgstr "" +msgstr "যে মানের জন্য সম্ভাব্যতা গন্তব্য ফাংশন অথবা ক্রমযোজিত নিবেশন ফাংশন নির্ণয় করা হয়।" #: scfuncs.src msgctxt "" @@ -19825,13 +19868,14 @@ msgstr "ক্রমযোজিত" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "7\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 অথবা FALSE সম্ভাব্যতা ঘনত্ব ফাংশন গণনা করা হয়। অন্য যেকোনো মান অথবা TRUE অথবা অবজ্ঞা করা মান দ্বারা ক্রমযোজিত নিবেশন ফাংশন গণনা করা হয়।" #: scfuncs.src msgctxt "" @@ -19897,13 +19941,14 @@ msgstr "নাম্বার" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse chi square distribution is to be calculated." -msgstr "" +msgstr "সম্ভাব্যতার মান যার জন্য বিপরীত কাই-বর্গ নিবেশন নির্ণয় করা হবে।" #: scfuncs.src msgctxt "" @@ -19988,13 +20033,14 @@ msgstr "সম্ভাব্যতা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse of the chi square distribution is to be calculated." -msgstr "" +msgstr "সম্ভাব্যতার মান যার জন্য কাই-বর্গ নিবেশনের বিপরীত নির্ণয় করা হবে।" #: scfuncs.src msgctxt "" @@ -20421,13 +20467,14 @@ msgstr "সমগ্রকের পরিমিত ব্যবধান। যদি মুছে ফেলা হয়, প্রদত্ত নমুনার পরিমিত ব্যবধান ব্যবহার করা হয়।" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "1\n" "string.text" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "" +msgstr "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." #: scfuncs.src msgctxt "" @@ -20475,13 +20522,14 @@ msgstr "সিগমা" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "7\n" "string.text" msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "" +msgstr "সমগ্রকের পরিমিত ব্যবধান। যদি মুছে ফেলা হয়, প্রদত্ত নমুনার পরিমিত ব্যবধান ব্যবহার করা হয়।" #: scfuncs.src msgctxt "" @@ -20799,13 +20847,14 @@ msgstr "মোড" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST_MS\n" "7\n" "string.text" msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" -msgstr "" +msgstr "মোড ফেরত পাঠানোর জন্য নিবেশন টেইলের সংখ্যা নির্ধারণ করে। 1=এক-টেইল্ড, 2=দুই-টেইল্ড নিবেশন" #: scfuncs.src msgctxt "" @@ -26209,57 +26258,3 @@ "string.text" msgid "Collapse Formula Bar" msgstr "" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Smilies\n" -"stringlist.text" -msgid "3 Smilies" -msgstr "" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Colored Smilies\n" -"stringlist.text" -msgid "3 Colored Smilies" -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" -"1\n" -"string.text" -msgid "Returns the day of the week for the date value as an integer (1-7)." -msgstr "তারিখের মানের জন্য পূর্ণসংখ্যা হিসেবে সপ্তাহিক দিন (1-7) ফেরত পাঠায়।" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n" -"7\n" -"string.text" -msgid "If given and not equal to zero then rounded down according to amount when a negative number and significance." -msgstr "যদি দেয়া থাকে এবং শূন্যের সমান না হয় তবে ঋনাত্মক নম্বর ও গুরুত্বের পরিমাণ অনুসারে নিম্ন পূর্ণ সংখ্যায় রূপান্তর করুন।" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MS\n" -"1\n" -"string.text" -msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance." -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ENCODEURL\n" -"3\n" -"string.text" -msgid "A string to be URL encoded" -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/bn/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/bn/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/bn/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bn/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2011-10-22 23:06+0000\n" -"Last-Translator: Andras \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 11:12+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1319324817.0\n" +"X-POOTLE-MTIME: 1439550748.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "পূর্বনির্ধারিত" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/bn-IN/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/bn-IN/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/bn-IN/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bn-IN/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 22:15+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 10:26+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: bn_IN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435270545.000000\n" +"X-POOTLE-MTIME: 1439547964.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8000,7 +8000,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8009,7 +8009,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8018,7 +8018,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8027,7 +8027,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8036,7 +8036,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8045,7 +8045,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8054,7 +8054,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8063,7 +8063,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8072,7 +8072,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8081,7 +8081,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8090,7 +8090,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8099,7 +8099,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/bn-IN/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/bn-IN/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/bn-IN/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bn-IN/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-27 00:11+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-12 00:45+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 10:50+0000\n" "Last-Translator: system user <>\n" "Language-Team: Bengali (India) \n" "Language: bn_IN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431391535.000000\n" +"X-POOTLE-MTIME: 1439549413.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3304,12 +3304,13 @@ msgstr "পৃষ্ঠা বিরতি মুছে ফেলা হবে (~B)" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "ভরাট" #: CalcCommands.xcu @@ -15157,12 +15158,13 @@ msgstr "বুলেট ও সংখ্যায়ন... (~B)" #: GenericCommands.xcu +#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "মোড সম্পাদনা (~i)" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/bn-IN/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/bn-IN/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/bn-IN/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bn-IN/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-14 11:02+0000\n" "Last-Translator: system user <>\n" "Language-Team: Bengali (India) \n" @@ -4926,7 +4926,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5004,6 +5004,15 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "পরিসর" + +#: globstr.src +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" "STR_HEADER_COND\n" "string.text" msgid "First Condition" @@ -7767,13 +7776,14 @@ msgstr "ব্যবধান নির্ধারণ করার মেথড: Type = 0 অর্থ US method (NASD),Type = 1 অর্থ European method।" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_NETWORKDAYS\n" "1\n" "string.text" msgid "Returns the number of workdays between two dates using arguments to indicate weekenddays and holidays." -msgstr "" +msgstr "সপ্তাহান্ত দিন এবং ছুটির দিন সূচিত করতে, দুইটি তারিখের মধ্যে কাজের দিনের সংখ্যা দেখায়।" #: scfuncs.src msgctxt "" @@ -13087,13 +13097,14 @@ msgstr "যে নম্বরটিকে মানের দ্বিগুণে রূপান্তর করা হবে।" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CEIL_PRECISE\n" "1\n" "string.text" msgid "Rounds a number up to the nearest multiple of significance, regardless of sign of significance." -msgstr "" +msgstr "গুরুত্বের চিহ্ন যাই হোক না কেন, সংখ্যা গুরুত্বের নিরিখে নিকটবর্তী দ্বিগুণে পূর্ণ হয়।" #: scfuncs.src msgctxt "" @@ -13998,13 +14009,14 @@ msgstr "Linear_type" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n" "7\n" "string.text" msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears." -msgstr "" +msgstr "যদি type= 0 হয়, তবে রৈখিকগুলো শূন্য বিন্দু অতিক্রম করে নির্ণয় করা হবে, অন্যথায় স্থানান্তরিত রৈখিক নির্ণয় করা হবে।" #: scfuncs.src msgctxt "" @@ -14079,13 +14091,14 @@ msgstr "Function_type" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n" "7\n" "string.text" msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." -msgstr "" +msgstr "যদি type = 0, তবে ফাংশনগুলো y=m^x হিসেবে নির্ণয় করা হবে, অথবা y=b*m^x ফাংশন।" #: scfuncs.src msgctxt "" @@ -16464,13 +16477,14 @@ msgstr "0 অথবা FALSE সম্ভাব্যতা ঘনত্ব ফাংশন গণনা করা হয়। অন্য যেকোনো মান অথবা TRUE মান দ্বারা ক্রমযোজিত নিবেশন ফাংশন গণনা করা হয়।" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CRIT_BINOM\n" "1\n" "string.text" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "" +msgstr "সর্বনিম্ন মান প্রদান করে, যার জন্য ক্রমযোজিত দ্বিপদী বিন্যাস নির্ণায়কের মান অপেক্ষা বড় বা সমান হয়।" #: scfuncs.src msgctxt "" @@ -25981,57 +25995,3 @@ "string.text" msgid "Collapse Formula Bar" msgstr "ফরমুলা বার সংকুচন করা হবে" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Smilies\n" -"stringlist.text" -msgid "3 Smilies" -msgstr "৩টি হাসিমুখ" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Colored Smilies\n" -"stringlist.text" -msgid "3 Colored Smilies" -msgstr "৩টি রঙিন হাসিমুখ" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" -"1\n" -"string.text" -msgid "Returns the day of the week for the date value as an integer (1-7)." -msgstr "তারিখের মানের জন্য পূর্ণসংখ্যা হিসেবে সপ্তাহিক দিন (1-7) ফেরত পাঠায়।" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n" -"7\n" -"string.text" -msgid "If given and not equal to zero then rounded down according to amount when a negative number and significance." -msgstr "যদি দেয়া থাকে এবং শূন্যের সমান না হয় তবে ঋনাত্মক নম্বর ও গুরুত্বের পরিমাণ অনুসারে নিম্ন পূর্ণ সংখ্যায় রূপান্তর করুন।" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MS\n" -"1\n" -"string.text" -msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance." -msgstr "গুরুত্বের চিহ্ন যাই হোক না কেন, গুরুত্বের নিকটবর্তী গুণিতকে সংখ্যায় পরিণত করে।" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ENCODEURL\n" -"3\n" -"string.text" -msgid "A string to be URL encoded" -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/bn-IN/scaddins/source/analysis.po libreoffice-5.0.2~rc2/translations/source/bn-IN/scaddins/source/analysis.po --- libreoffice-5.0.1~rc2/translations/source/bn-IN/scaddins/source/analysis.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bn-IN/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-04-19 01:45+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/bn-IN/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/bn-IN/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/bn-IN/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bn-IN/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-12-18 06:24+0000\n" -"Last-Translator: Saibal \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 11:18+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: bn_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1418883877.000000\n" +"X-POOTLE-MTIME: 1439551097.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "পূর্বনির্ধারিত" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/bo/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/bo/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/bo/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bo/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 22:08+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 10:22+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: bo\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435270136.000000\n" +"X-POOTLE-MTIME: 1439547752.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8000,7 +8000,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8009,7 +8009,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8018,7 +8018,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8027,7 +8027,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8036,7 +8036,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8045,7 +8045,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8054,7 +8054,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8063,7 +8063,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8072,7 +8072,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8081,7 +8081,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8090,7 +8090,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8099,7 +8099,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/bo/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/bo/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/bo/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bo/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-27 00:11+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" "PO-Revision-Date: 2015-08-14 10:48+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" @@ -1019,13 +1019,14 @@ msgstr "ཆ་རྐྱེན་རྣམ་གཞག(~D)..." #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ConditionalFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Condition" -msgstr "" +msgstr "ཆ་རྐྱེན་རྣམ་གཞག(~D)..." #: CalcCommands.xcu msgctxt "" @@ -1055,13 +1056,14 @@ msgstr "" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:DataBarFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Data Bar" -msgstr "" +msgstr "ཆ་རྐྱེན་རྣམ་གཞག(~D)..." #: CalcCommands.xcu msgctxt "" @@ -1073,13 +1075,14 @@ msgstr "" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:IconSetFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Icon Set" -msgstr "" +msgstr "ཆ་རྐྱེན་རྣམ་གཞག(~D)..." #: CalcCommands.xcu msgctxt "" @@ -3329,12 +3332,13 @@ msgstr "ལག་བཟོའི་བར་གཅོད་སུབ་པ།" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "སྐོང་གསབ།" #: CalcCommands.xcu @@ -15208,7 +15212,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "" #: GenericCommands.xcu @@ -20976,13 +20980,14 @@ msgstr "བྱེད་ནུས།" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.ManageChangesDeck\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "གཏན་འཁེལ།(~C)..." #: Sidebar.xcu msgctxt "" @@ -21226,13 +21231,14 @@ msgstr "ལག་རོགས།(~N)" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SwManageChangesPanel\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "གཏན་འཁེལ།(~C)..." #: Sidebar.xcu #, fuzzy @@ -21806,13 +21812,14 @@ msgstr "བཅོས་འབེབས་ཟིན་འགོད་འགོ་ཚུགས་པ།(~R)" #: WriterCommands.xcu +#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:ShowTrackedChanges\n" "Label\n" "value.text" msgid "~Show Changes" -msgstr "" +msgstr "འབུར་ཐོན་མངོན་པ་བཅོས་འབེབས།(~W)..." #: WriterCommands.xcu msgctxt "" @@ -27233,48 +27240,3 @@ "value.text" msgid "Fontwork Shape" msgstr "སྒྱུ་རྩལ་ཡི་གེའི་བཟོ་དབྱིབས།" - -#: CalcCommands.xcu -msgctxt "" -"CalcCommands.xcu\n" -"..CalcCommands.UserInterface.Popups..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: DrawImpressCommands.xcu -msgctxt "" -"DrawImpressCommands.xcu\n" -"..DrawImpressCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: MathCommands.xcu -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ToolBox\n" -"Label\n" -"value.text" -msgid "Elements" -msgstr "གཞི་རྒྱུ།" - -#: MathCommands.xcu -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ElementsDockingWindow\n" -"Label\n" -"value.text" -msgid "Elements Dock" -msgstr "" - -#: WriterCommands.xcu -msgctxt "" -"WriterCommands.xcu\n" -"..WriterCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/bo/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/bo/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/bo/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bo/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-05-12 01:11+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 11:02+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: bo\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431393067.000000\n" +"X-POOTLE-MTIME: 1439550138.000000\n" #: condformatdlg.src #, fuzzy @@ -5048,7 +5048,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5121,6 +5121,16 @@ msgstr "" #: globstr.src +#, fuzzy +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "ས་ཁོངས།" + +#: globstr.src msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/bo/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/bo/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/bo/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bo/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2013-08-27 16:20+0000\n" -"Last-Translator: Andras Timar \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 11:18+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: bo\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1377620433.000000\n" +"X-POOTLE-MTIME: 1439551108.000000\n" #: DocumentRenderer.src msgctxt "" @@ -155,22 +155,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" +msgid "According to layout" msgstr "" -"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n" -"ངོས་བཟུང་བྱས་པ།\n" -"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n" -"ཚད་གཞི།(~D)\n" -"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n" -"ངོས་བཟུང་བྱས་པ།\n" -"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n" -"ངོས་བཟུང་བྱས་པ།\n" -"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n" -"ངོས་བཟུང་བྱས་པ།\n" -"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n" -"ཚད་གཞི།" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/bo/sw/source/ui/utlui.po libreoffice-5.0.2~rc2/translations/source/bo/sw/source/ui/utlui.po --- libreoffice-5.0.1~rc2/translations/source/bo/sw/source/ui/utlui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bo/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-20 11:58+0100\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/br/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/br/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/br/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/br/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-14 11:33+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-14 17:47+0000\n" +"Last-Translator: Alan \n" "Language-Team: LANGUAGE \n" "Language: br\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439552038.000000\n" +"X-POOTLE-MTIME: 1442252843.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1040,7 +1040,7 @@ "CONTAINS_AS_MEMBER\n" "LngText.text" msgid "ni" -msgstr "" +msgstr "enbeziant" #. ∌ (U+0220C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1049,7 +1049,7 @@ "DOES_NOT_CONTAIN_AS_MEMBER\n" "LngText.text" msgid "not ni" -msgstr "" +msgstr "ezveziat" #. ∍ (U+0220D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1058,7 +1058,7 @@ "SMALL_CONTAINS_AS_MEMBER\n" "LngText.text" msgid "small ni" -msgstr "" +msgstr "enbeziat bihan" #. ∎ (U+0220E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1067,7 +1067,7 @@ "END_OF_PROOF\n" "LngText.text" msgid "end of proof" -msgstr "" +msgstr "pezh a oa da vezañ prouet" #. ∏ (U+0220F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1148,7 +1148,7 @@ "FOURTH_ROOT\n" "LngText.text" msgid "fourth root" -msgstr "" +msgstr "pevarbonad" #. ∞ (U+0221E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1445,7 +1445,7 @@ "STOPWATCH\n" "LngText.text" msgid "stopwatch" -msgstr "" +msgstr "padventer" #. ⏲ (U+023F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1454,7 +1454,7 @@ "TIMER_CLOCK\n" "LngText.text" msgid "timer clock" -msgstr "" +msgstr "munutennerez" #. ⏳ (U+023F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1562,7 +1562,7 @@ "LOZENGE\n" "LngText.text" msgid "lozenge" -msgstr "" +msgstr "lankell" #. ○ (U+025CB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1679,7 +1679,7 @@ "COMET\n" "LngText.text" msgid "comet" -msgstr "" +msgstr "steredenn-lostek" #. ★ (U+02605), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1778,7 +1778,7 @@ "SALTIRE\n" "LngText.text" msgid "saltire" -msgstr "" +msgstr "kroaz sant Andrev" #. ☔ (U+02614), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1877,7 +1877,7 @@ "RADIOACTIVE_SIGN\n" "LngText.text" msgid "radioactive" -msgstr "" +msgstr "skinoberiek" #. ☣ (U+02623), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1886,7 +1886,7 @@ "BIOHAZARD_SIGN\n" "LngText.text" msgid "biohazard" -msgstr "" +msgstr "bevarvar" #. ☤ (U+02624), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1895,7 +1895,7 @@ "CADUCEUS\n" "LngText.text" msgid "caduceus" -msgstr "" +msgstr "naerwialenn" #. ☥ (U+02625), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1904,7 +1904,7 @@ "ANKH\n" "LngText.text" msgid "ankh" -msgstr "" +msgstr "kroaz ankh" #. ☦ (U+02626), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1958,7 +1958,7 @@ "FARSI_SYMBOL\n" "LngText.text" msgid "Farsi" -msgstr "" +msgstr "Farsi" #. ☬ (U+0262C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1976,7 +1976,7 @@ "HAMMER_AND_SICKLE\n" "LngText.text" msgid "hammer and sickle" -msgstr "" +msgstr "morzhol ha falz" #. ☮ (U+0262E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2138,7 +2138,7 @@ "ARIES\n" "LngText.text" msgid "Aries" -msgstr "" +msgstr "Tourz" #. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2147,7 +2147,7 @@ "TAURUS\n" "LngText.text" msgid "Taurus" -msgstr "" +msgstr "Tarv" #. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2156,7 +2156,7 @@ "GEMINI\n" "LngText.text" msgid "Gemini" -msgstr "" +msgstr "Gevelled" #. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2165,7 +2165,7 @@ "CANCER\n" "LngText.text" msgid "Cancer" -msgstr "" +msgstr "Krank" #. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2183,7 +2183,7 @@ "VIRGO\n" "LngText.text" msgid "Virgo" -msgstr "" +msgstr "Gwerc'hez" #. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2192,7 +2192,7 @@ "LIBRA\n" "LngText.text" msgid "Libra" -msgstr "" +msgstr "Mentel" #. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2201,7 +2201,7 @@ "SCORPIUS\n" "LngText.text" msgid "Scorpius" -msgstr "" +msgstr "Krug" #. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2210,7 +2210,7 @@ "SAGITTARIUS\n" "LngText.text" msgid "Sagittarius" -msgstr "" +msgstr "Saezhataer" #. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2228,7 +2228,7 @@ "AQUARIUS\n" "LngText.text" msgid "Aquarius" -msgstr "" +msgstr "Skuilher-dour" #. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2282,7 +2282,7 @@ "WHITE_CHESS_KNIGHT\n" "LngText.text" msgid "white knight" -msgstr "" +msgstr "marc'heger gwenn" #. ♙ (U+02659), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2291,7 +2291,7 @@ "WHITE_CHESS_PAWN\n" "LngText.text" msgid "white pawn" -msgstr "" +msgstr "pezh gwenn" #. ♚ (U+0265A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2336,7 +2336,7 @@ "BLACK_CHESS_KNIGHT\n" "LngText.text" msgid "black knight" -msgstr "" +msgstr "marc'heger du" #. ♟ (U+0265F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2345,7 +2345,7 @@ "BLACK_CHESS_PAWN\n" "LngText.text" msgid "black pawn" -msgstr "" +msgstr "pezh du" #. ♠ (U+02660), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2471,7 +2471,7 @@ "MUSIC_FLAT_SIGN\n" "LngText.text" msgid "flat" -msgstr "" +msgstr "bouc'hell" #. ♮ (U+0266E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2480,7 +2480,7 @@ "MUSIC_NATURAL_SIGN\n" "LngText.text" msgid "natural" -msgstr "" +msgstr "derikell" #. ♯ (U+0266F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2489,7 +2489,7 @@ "MUSIC_SHARP_SIGN\n" "LngText.text" msgid "sharp" -msgstr "" +msgstr "lemmell" #. ♲ (U+02672), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2498,7 +2498,7 @@ "UNIVERSAL_RECYCLING_SYMBOL\n" "LngText.text" msgid "recycling" -msgstr "" +msgstr "atoradur" #. ♻ (U+0267B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2507,7 +2507,7 @@ "BLACK_UNIVERSAL_RECYCLING_SYMBOL\n" "LngText.text" msgid "recycling2" -msgstr "" +msgstr "atoradur2" #. ♼ (U+0267C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2516,7 +2516,7 @@ "RECYCLED_PAPER\n" "LngText.text" msgid "recycled paper" -msgstr "" +msgstr "paper atoret" #. ♾ (U+0267E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2525,7 +2525,7 @@ "PERMANENT_PAPER\n" "LngText.text" msgid "permanent paper" -msgstr "" +msgstr "paper peurzalc'hus" #. ♿ (U+0267F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2534,7 +2534,7 @@ "WHEELCHAIR_SYMBOL\n" "LngText.text" msgid "wheelchair" -msgstr "" +msgstr "kador-ruilh" #. ⚀ (U+02680), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2615,7 +2615,7 @@ "HAMMER_AND_PICK\n" "LngText.text" msgid "hammer and pick" -msgstr "" +msgstr "morzhol ha pig" #. ⚓ (U+02693), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2633,7 +2633,7 @@ "CROSSED_SWORDS\n" "LngText.text" msgid "swords" -msgstr "" +msgstr "klezeier" #. ⚕ (U+02695), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2660,7 +2660,7 @@ "ALEMBIC\n" "LngText.text" msgid "alembic" -msgstr "" +msgstr "lambig" #. ⚘ (U+02698), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2678,7 +2678,7 @@ "GEAR\n" "LngText.text" msgid "gear" -msgstr "" +msgstr "kendentañ" #. ⚚ (U+0269A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2687,7 +2687,7 @@ "STAFF_OF_HERMES\n" "LngText.text" msgid "staff" -msgstr "" +msgstr "bazh Hermez" #. ⚛ (U+0269B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2705,7 +2705,7 @@ "FLEUR-DE-LIS\n" "LngText.text" msgid "fleur de lis" -msgstr "" +msgstr "fleur de lis" #. ⚠ (U+026A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2723,7 +2723,7 @@ "HIGH_VOLTAGE_SIGN\n" "LngText.text" msgid "zap" -msgstr "" +msgstr "tredanvarr uhel" #. ⚪ (U+026AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2768,7 +2768,7 @@ "COFFIN\n" "LngText.text" msgid "coffin" -msgstr "" +msgstr "arched" #. ⚱ (U+026B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2777,7 +2777,7 @@ "FUNERAL_URN\n" "LngText.text" msgid "urn" -msgstr "" +msgstr "jarl" #. ⚽ (U+026BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2840,7 +2840,7 @@ "OPHIUCHUS\n" "LngText.text" msgid "ophiuchus" -msgstr "" +msgstr "naeretaer" #. ⛏ (U+026CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2849,7 +2849,7 @@ "PICK\n" "LngText.text" msgid "pick" -msgstr "" +msgstr "pig" #. ⛐ (U+026D0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2858,7 +2858,7 @@ "CAR_SLIDING\n" "LngText.text" msgid "sliding car" -msgstr "" +msgstr "karr o rilklañ" #. ⛑ (U+026D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2903,7 +2903,7 @@ "PENTAGRAM\n" "LngText.text" msgid "pentagram" -msgstr "" +msgstr "pemparouez" #. ⛨ (U+026E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3533,7 +3533,7 @@ "WHOLE_REST\n" "LngText.text" msgid "whole rest" -msgstr "" +msgstr "span" #. 𝄼 (U+1D13C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3542,7 +3542,7 @@ "HALF_REST\n" "LngText.text" msgid "half rest" -msgstr "" +msgstr "hanter-span" #. 𝄽 (U+1D13D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3551,7 +3551,7 @@ "QUARTER_REST\n" "LngText.text" msgid "quarter rest" -msgstr "" +msgstr "kardspan" #. 𝄾 (U+1D13E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3560,7 +3560,7 @@ "EIGHTH_REST\n" "LngText.text" msgid "eighth rest" -msgstr "" +msgstr "hanterdav" #. 𝅝 (U+1D15D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3992,7 +3992,7 @@ "EVERGREEN_TREE\n" "LngText.text" msgid "pine" -msgstr "" +msgstr "pinenn" #. 🌳 (U+1F333), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4325,7 +4325,7 @@ "RICE_CRACKER\n" "LngText.text" msgid "rice cracker" -msgstr "" +msgstr "gwispidenn sall dre riz" #. 🍙 (U+1F359), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4334,7 +4334,7 @@ "RICE_BALL\n" "LngText.text" msgid "rice ball" -msgstr "" +msgstr "bolotenn riz" #. 🍚 (U+1F35A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4388,7 +4388,7 @@ "FRENCH_FRIES\n" "LngText.text" msgid "fries" -msgstr "" +msgstr "fritez" #. 🍠 (U+1F360), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4415,7 +4415,7 @@ "ODEN\n" "LngText.text" msgid "oden" -msgstr "" +msgstr "oden" #. 🍣 (U+1F363), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4433,7 +4433,7 @@ "FRIED_SHRIMP\n" "LngText.text" msgid "fried shrimp" -msgstr "" +msgstr "chevrenn" #. 🍥 (U+1F365), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4442,7 +4442,7 @@ "FISH_CAKE_WITH_SWIRL_DESIGN\n" "LngText.text" msgid "fish cake" -msgstr "" +msgstr "fish cake" #. 🍦 (U+1F366), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4460,7 +4460,7 @@ "SHAVED_ICE\n" "LngText.text" msgid "shaved ice" -msgstr "" +msgstr "skorn drailhet" #. 🍨 (U+1F368), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4478,7 +4478,7 @@ "DOUGHNUT\n" "LngText.text" msgid "doughnut" -msgstr "" +msgstr "doneud" #. 🍪 (U+1F36A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4514,7 +4514,7 @@ "LOLLIPOP\n" "LngText.text" msgid "lollipop" -msgstr "" +msgstr "sunig" #. 🍮 (U+1F36E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4523,7 +4523,7 @@ "CUSTARD\n" "LngText.text" msgid "custard" -msgstr "" +msgstr "koavon" #. 🍯 (U+1F36F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4550,7 +4550,7 @@ "BENTO_BOX\n" "LngText.text" msgid "bento" -msgstr "" +msgstr "bento" #. 🍲 (U+1F372), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4559,7 +4559,7 @@ "POT_OF_FOOD\n" "LngText.text" msgid "stew" -msgstr "" +msgstr "keusteurenn" #. 🍳 (U+1F373), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4613,7 +4613,7 @@ "COCKTAIL_GLASS\n" "LngText.text" msgid "cocktail" -msgstr "" +msgstr "cocktail" #. 🍹 (U+1F379), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4622,7 +4622,7 @@ "TROPICAL_DRINK\n" "LngText.text" msgid "tropical drink" -msgstr "" +msgstr "evaj trovan" #. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4712,7 +4712,7 @@ "FIREWORKS\n" "LngText.text" msgid "fireworks" -msgstr "" +msgstr "tan-arvest" #. 🎇 (U+1F387), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4721,7 +4721,7 @@ "FIREWORK_SPARKLER\n" "LngText.text" msgid "sparkler" -msgstr "" +msgstr "goulaouenn dre ful" #. 🎈 (U+1F388), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4730,7 +4730,7 @@ "BALLOON\n" "LngText.text" msgid "balloon" -msgstr "" +msgstr "klogorenn" #. 🎉 (U+1F389), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4739,7 +4739,7 @@ "PARTY_POPPER\n" "LngText.text" msgid "party" -msgstr "" +msgstr "fest" #. 🎊 (U+1F38A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4748,7 +4748,7 @@ "CONFETTI_BALL\n" "LngText.text" msgid "confetti ball" -msgstr "" +msgstr "koñfeti" #. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4757,7 +4757,7 @@ "TANABATA_TREE\n" "LngText.text" msgid "tanabata tree" -msgstr "" +msgstr "tanabata" #. 🎌 (U+1F38C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4766,7 +4766,7 @@ "CROSSED_FLAGS\n" "LngText.text" msgid "flags" -msgstr "" +msgstr "bannieloù" #. 🎍 (U+1F38D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4775,7 +4775,7 @@ "PINE_DECORATION\n" "LngText.text" msgid "bamboo" -msgstr "" +msgstr "bambouz" #. 🎎 (U+1F38E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4784,7 +4784,7 @@ "JAPANESE_DOLLS\n" "LngText.text" msgid "dolls" -msgstr "" +msgstr "merc'hodennoù" #. 🎏 (U+1F38F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4802,7 +4802,7 @@ "WIND_CHIME\n" "LngText.text" msgid "wind chime" -msgstr "" +msgstr "sonerez avel" #. 🎑 (U+1F391), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4811,7 +4811,7 @@ "MOON_VIEWING_CEREMONY\n" "LngText.text" msgid "rice scene" -msgstr "" +msgstr "arvest ar riz" #. 🎒 (U+1F392), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4820,7 +4820,7 @@ "SCHOOL_SATCHEL\n" "LngText.text" msgid "school satchel" -msgstr "" +msgstr "sac'h skol" #. 🎓 (U+1F393), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4829,7 +4829,7 @@ "GRADUATION_CAP\n" "LngText.text" msgid "graduation" -msgstr "" +msgstr "roidigezh an diplomoù" #. 🎠 (U+1F3A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4838,7 +4838,7 @@ "CAROUSEL_HORSE\n" "LngText.text" msgid "carousel horse" -msgstr "" +msgstr "marc'h koad" #. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4847,7 +4847,7 @@ "FERRIS_WHEEL\n" "LngText.text" msgid "ferris wheel" -msgstr "" +msgstr "rod vras" #. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4856,7 +4856,7 @@ "ROLLER_COASTER\n" "LngText.text" msgid "roller coaster" -msgstr "" +msgstr "menezioù Rusia" #. 🎣 (U+1F3A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4865,7 +4865,7 @@ "FISHING_POLE_AND_FISH\n" "LngText.text" msgid "fishing" -msgstr "" +msgstr "pesketa" #. 🎤 (U+1F3A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4874,7 +4874,7 @@ "MICROPHONE\n" "LngText.text" msgid "microphone" -msgstr "" +msgstr "klevell" #. 🎥 (U+1F3A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4883,7 +4883,7 @@ "MOVIE_CAMERA\n" "LngText.text" msgid "movie camera" -msgstr "" +msgstr "kamera fiñveier" #. 🎦 (U+1F3A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4892,7 +4892,7 @@ "CINEMA\n" "LngText.text" msgid "cinema" -msgstr "" +msgstr "fiñveier" #. 🎧 (U+1F3A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4901,7 +4901,7 @@ "HEADPHONE\n" "LngText.text" msgid "headphone" -msgstr "" +msgstr "selaouell" #. 🎨 (U+1F3A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4910,7 +4910,7 @@ "ARTIST_PALETTE\n" "LngText.text" msgid "art" -msgstr "" +msgstr "arz" #. 🎩 (U+1F3A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4919,7 +4919,7 @@ "TOP_HAT\n" "LngText.text" msgid "top hat" -msgstr "" +msgstr "tog pod hir" #. 🎪 (U+1F3AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4928,7 +4928,7 @@ "CIRCUS_TENT\n" "LngText.text" msgid "circus tent" -msgstr "" +msgstr "pabell" #. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4937,7 +4937,7 @@ "TICKET\n" "LngText.text" msgid "ticket" -msgstr "" +msgstr "tiked" #. 🎬 (U+1F3AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4946,7 +4946,7 @@ "CLAPPER_BOARD\n" "LngText.text" msgid "clapper" -msgstr "" +msgstr "klap" #. 🎭 (U+1F3AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4973,7 +4973,7 @@ "DIRECT_HIT\n" "LngText.text" msgid "hit" -msgstr "" +msgstr "gwenn" #. 🎰 (U+1F3B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5072,7 +5072,7 @@ "TRUMPET\n" "LngText.text" msgid "trumpet" -msgstr "" +msgstr "trompilh" #. 🎻 (U+1F3BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5090,7 +5090,7 @@ "MUSICAL_SCORE\n" "LngText.text" msgid "score" -msgstr "" +msgstr "sonskrid" #. 🎽 (U+1F3BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5171,7 +5171,7 @@ "TROPHY\n" "LngText.text" msgid "trophy" -msgstr "" +msgstr "arouez-trec'h" #. 🏇 (U+1F3C7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5180,7 +5180,7 @@ "HORSE_RACING\n" "LngText.text" msgid "horse racing" -msgstr "" +msgstr "redadeg roñsed" #. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5198,7 +5198,7 @@ "RUGBY_FOOTBALL\n" "LngText.text" msgid "rugby football" -msgstr "" +msgstr "mell rugbi" #. 🏊 (U+1F3CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5207,7 +5207,7 @@ "SWIMMER\n" "LngText.text" msgid "swimmer" -msgstr "" +msgstr "neuiour" #. 🏠 (U+1F3E0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5333,7 +5333,7 @@ "FACTORY\n" "LngText.text" msgid "factory" -msgstr "" +msgstr "greanterezh" #. 🏮 (U+1F3EE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5342,7 +5342,7 @@ "IZAKAYA_LANTERN\n" "LngText.text" msgid "lantern" -msgstr "" +msgstr "letern" #. 🏯 (U+1F3EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5387,7 +5387,7 @@ "OX\n" "LngText.text" msgid "ox" -msgstr "" +msgstr "ejen" #. 🐃 (U+1F403), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5396,7 +5396,7 @@ "WATER_BUFFALO\n" "LngText.text" msgid "water buffalo" -msgstr "" +msgstr "bual dour" #. 🐄 (U+1F404), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5423,7 +5423,7 @@ "LEOPARD\n" "LngText.text" msgid "leopard" -msgstr "" +msgstr "loupard" #. 🐇 (U+1F407), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5450,7 +5450,7 @@ "DRAGON\n" "LngText.text" msgid "dragon" -msgstr "" +msgstr "aerouant" #. 🐊 (U+1F40A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5459,7 +5459,7 @@ "CROCODILE\n" "LngText.text" msgid "crocodile" -msgstr "" +msgstr "krokodil" #. 🐋 (U+1F40B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5468,7 +5468,7 @@ "WHALE\n" "LngText.text" msgid "whale2" -msgstr "" +msgstr "balum2" #. 🐌 (U+1F40C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5513,7 +5513,7 @@ "GOAT\n" "LngText.text" msgid "goat" -msgstr "" +msgstr "garv" #. 🐑 (U+1F411), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5576,7 +5576,7 @@ "BOAR\n" "LngText.text" msgid "boar" -msgstr "" +msgstr "tourc'h" #. 🐘 (U+1F418), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5594,7 +5594,7 @@ "OCTOPUS\n" "LngText.text" msgid "octopus" -msgstr "" +msgstr "morgazh" #. 🐚 (U+1F41A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5603,7 +5603,7 @@ "SPIRAL_SHELL\n" "LngText.text" msgid "shell" -msgstr "" +msgstr "krogenn" #. 🐛 (U+1F41B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5612,7 +5612,7 @@ "BUG\n" "LngText.text" msgid "bug" -msgstr "" +msgstr "biskoulenn" #. 🐜 (U+1F41C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5621,7 +5621,7 @@ "ANT\n" "LngText.text" msgid "ant" -msgstr "" +msgstr "merienenn" #. 🐝 (U+1F41D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5630,7 +5630,7 @@ "HONEYBEE\n" "LngText.text" msgid "bee" -msgstr "" +msgstr "gwenanenn" #. 🐞 (U+1F41E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5639,7 +5639,7 @@ "LADY_BEETLE\n" "LngText.text" msgid "ladybug" -msgstr "" +msgstr "buoc'hig Doue" #. 🐟 (U+1F41F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5675,7 +5675,7 @@ "TURTLE\n" "LngText.text" msgid "turtle" -msgstr "" +msgstr "baot" #. 🐣 (U+1F423), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5684,7 +5684,7 @@ "HATCHING_CHICK\n" "LngText.text" msgid "chick" -msgstr "" +msgstr "labous yar" #. 🐤 (U+1F424), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5693,7 +5693,7 @@ "BABY_CHICK\n" "LngText.text" msgid "chick2" -msgstr "" +msgstr "labous yar2" #. 🐥 (U+1F425), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5702,7 +5702,7 @@ "FRONT-FACING_BABY_CHICK\n" "LngText.text" msgid "chick3" -msgstr "" +msgstr "labous yar3" #. 🐦 (U+1F426), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5720,7 +5720,7 @@ "PENGUIN\n" "LngText.text" msgid "penguin" -msgstr "" +msgstr "mank" #. 🐨 (U+1F428), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5738,7 +5738,7 @@ "POODLE\n" "LngText.text" msgid "poodle" -msgstr "" +msgstr "ki rodellek" #. 🐪 (U+1F42A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5747,7 +5747,7 @@ "DROMEDARY_CAMEL\n" "LngText.text" msgid "camel" -msgstr "" +msgstr "kañval" #. 🐫 (U+1F42B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5756,7 +5756,7 @@ "BACTRIAN_CAMEL\n" "LngText.text" msgid "camel2" -msgstr "" +msgstr "kañval2" #. 🐬 (U+1F42C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5765,7 +5765,7 @@ "DOLPHIN\n" "LngText.text" msgid "dolphin" -msgstr "" +msgstr "delfin" #. 🐭 (U+1F42D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5819,7 +5819,7 @@ "DRAGON_FACE\n" "LngText.text" msgid "dragon2" -msgstr "" +msgstr "aerouant2" #. 🐳 (U+1F433), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5828,7 +5828,7 @@ "SPOUTING_WHALE\n" "LngText.text" msgid "whale" -msgstr "" +msgstr "balum" #. 🐴 (U+1F434), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5837,7 +5837,7 @@ "HORSE_FACE\n" "LngText.text" msgid "horse2" -msgstr "" +msgstr "marc'h2" #. 🐵 (U+1F435), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5846,7 +5846,7 @@ "MONKEY_FACE\n" "LngText.text" msgid "monkey2" -msgstr "" +msgstr "marmouz2" #. 🐶 (U+1F436), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5900,7 +5900,7 @@ "BEAR_FACE\n" "LngText.text" msgid "bear" -msgstr "" +msgstr "arzh" #. 🐼 (U+1F43C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5918,7 +5918,7 @@ "PIG_NOSE\n" "LngText.text" msgid "pig nose" -msgstr "" +msgstr "moj" #. 🐾 (U+1F43E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5927,7 +5927,7 @@ "PAW_PRINTS\n" "LngText.text" msgid "feet" -msgstr "" +msgstr "roudoù treid" #. 👀 (U+1F440), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5936,7 +5936,7 @@ "EYES\n" "LngText.text" msgid "eyes" -msgstr "" +msgstr "daoulagad" #. 👂 (U+1F442), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5945,7 +5945,7 @@ "EAR\n" "LngText.text" msgid "ear" -msgstr "" +msgstr "skouarn" #. 👃 (U+1F443), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5954,7 +5954,7 @@ "NOSE\n" "LngText.text" msgid "nose" -msgstr "" +msgstr "fri" #. 👄 (U+1F444), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5963,7 +5963,7 @@ "MOUTH\n" "LngText.text" msgid "mouth" -msgstr "" +msgstr "beg" #. 👅 (U+1F445), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5972,7 +5972,7 @@ "TONGUE\n" "LngText.text" msgid "tongue" -msgstr "" +msgstr "teod" #. 👆 (U+1F446), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5981,7 +5981,7 @@ "WHITE_UP_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "up2" -msgstr "" +msgstr "krec'h2" #. 👇 (U+1F447), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5990,7 +5990,7 @@ "WHITE_DOWN_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "down2" -msgstr "" +msgstr "traoñ2" #. 👈 (U+1F448), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6062,7 +6062,7 @@ "CLAPPING_HANDS_SIGN\n" "LngText.text" msgid "clap" -msgstr "" +msgstr "stlakadegoù" #. 👐 (U+1F450), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6107,7 +6107,7 @@ "NECKTIE\n" "LngText.text" msgid "necktie" -msgstr "" +msgstr "frondenn" #. 👕 (U+1F455), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6116,7 +6116,7 @@ "T-SHIRT\n" "LngText.text" msgid "shirt" -msgstr "" +msgstr "hiviz" #. 👖 (U+1F456), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6125,7 +6125,7 @@ "JEANS\n" "LngText.text" msgid "jeans" -msgstr "" +msgstr "djin" #. 👗 (U+1F457), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6134,7 +6134,7 @@ "DRESS\n" "LngText.text" msgid "dress" -msgstr "" +msgstr "sae" #. 👘 (U+1F458), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6170,7 +6170,7 @@ "PURSE\n" "LngText.text" msgid "purse" -msgstr "" +msgstr "doug-moneiz" #. 👜 (U+1F45C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6179,7 +6179,7 @@ "HANDBAG\n" "LngText.text" msgid "handbag" -msgstr "" +msgstr "sac'h-dorn" #. 👝 (U+1F45D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6197,7 +6197,7 @@ "MANS_SHOE\n" "LngText.text" msgid "shoe" -msgstr "" +msgstr "botoù" #. 👟 (U+1F45F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6206,7 +6206,7 @@ "ATHLETIC_SHOE\n" "LngText.text" msgid "shoe2" -msgstr "" +msgstr "botoù2" #. 👠 (U+1F460), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6215,7 +6215,7 @@ "HIGH-HEELED_SHOE\n" "LngText.text" msgid "shoe3" -msgstr "" +msgstr "Botoù3" #. 👡 (U+1F461), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6224,7 +6224,7 @@ "WOMANS_SANDAL\n" "LngText.text" msgid "sandal" -msgstr "" +msgstr "solenn" #. 👢 (U+1F462), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6233,7 +6233,7 @@ "WOMANS_BOOTS\n" "LngText.text" msgid "boot" -msgstr "" +msgstr "heuzoù" #. 👣 (U+1F463), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6242,7 +6242,7 @@ "FOOTPRINTS\n" "LngText.text" msgid "footprints" -msgstr "" +msgstr "troadlouc'hadoù" #. 👤 (U+1F464), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6251,7 +6251,7 @@ "BUST_IN_SILHOUETTE\n" "LngText.text" msgid "bust" -msgstr "" +msgstr "korf-bras" #. 👥 (U+1F465), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6260,7 +6260,7 @@ "BUSTS_IN_SILHOUETTE\n" "LngText.text" msgid "busts" -msgstr "" +msgstr "korfoù-bras" #. 👦 (U+1F466), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6269,7 +6269,7 @@ "BOY\n" "LngText.text" msgid "boy" -msgstr "" +msgstr "paotr" #. 👧 (U+1F467), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6278,7 +6278,7 @@ "GIRL\n" "LngText.text" msgid "girl" -msgstr "" +msgstr "plac'h" #. 👨 (U+1F468), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6287,7 +6287,7 @@ "MAN\n" "LngText.text" msgid "man" -msgstr "" +msgstr "gwaz" #. 👩 (U+1F469), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6359,7 +6359,7 @@ "BRIDE_WITH_VEIL\n" "LngText.text" msgid "bride" -msgstr "" +msgstr "plac'h-nevez" #. 👱 (U+1F471), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6386,7 +6386,7 @@ "MAN_WITH_TURBAN\n" "LngText.text" msgid "turban" -msgstr "" +msgstr "tulban" #. 👴 (U+1F474), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6440,7 +6440,7 @@ "JAPANESE_OGRE\n" "LngText.text" msgid "ogre" -msgstr "" +msgstr "roñfl" #. 👺 (U+1F47A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6476,7 +6476,7 @@ "EXTRATERRESTRIAL_ALIEN\n" "LngText.text" msgid "alien" -msgstr "" +msgstr "ezdouarad" #. 👾 (U+1F47E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6485,7 +6485,7 @@ "ALIEN_MONSTER\n" "LngText.text" msgid "alien2" -msgstr "" +msgstr "ezdouarad2" #. 👿 (U+1F47F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6494,7 +6494,7 @@ "IMP\n" "LngText.text" msgid "imp" -msgstr "" +msgstr "korrigan" #. 💀 (U+1F480), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6521,7 +6521,7 @@ "GUARDSMAN\n" "LngText.text" msgid "guard" -msgstr "" +msgstr "gward" #. 💃 (U+1F483), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6539,7 +6539,7 @@ "LIPSTICK\n" "LngText.text" msgid "lipstick" -msgstr "" +msgstr "ruz muzelloù" #. 💅 (U+1F485), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6548,7 +6548,7 @@ "NAIL_POLISH\n" "LngText.text" msgid "nail care" -msgstr "" +msgstr "ivinoù" #. 💆 (U+1F486), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6557,7 +6557,7 @@ "FACE_MASSAGE\n" "LngText.text" msgid "massage" -msgstr "" +msgstr "leuñviñ" #. 💇 (U+1F487), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6584,7 +6584,7 @@ "SYRINGE\n" "LngText.text" msgid "syringe" -msgstr "" +msgstr "strinkell" #. 💊 (U+1F48A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6593,7 +6593,7 @@ "PILL\n" "LngText.text" msgid "pill" -msgstr "" +msgstr "pilulenn" #. 💋 (U+1F48B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6629,7 +6629,7 @@ "GEM_STONE\n" "LngText.text" msgid "gem" -msgstr "" +msgstr "maen prizius" #. 💏 (U+1F48F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6647,7 +6647,7 @@ "BOUQUET\n" "LngText.text" msgid "bouquet" -msgstr "" +msgstr "boked" #. 💑 (U+1F491), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6701,7 +6701,7 @@ "SPARKLING_HEART\n" "LngText.text" msgid "sparkling heart" -msgstr "" +msgstr "kalon lugernus" #. 💗 (U+1F497), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6710,7 +6710,7 @@ "GROWING_HEART\n" "LngText.text" msgid "heartpulse" -msgstr "" +msgstr "talm ar galon" #. 💘 (U+1F498), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6728,7 +6728,7 @@ "HEART_WITH_RIBBON\n" "LngText.text" msgid "gift heart" -msgstr "" +msgstr "kalon brof" #. 💞 (U+1F49E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6737,7 +6737,7 @@ "REVOLVING_HEARTS\n" "LngText.text" msgid "revolving hearts" -msgstr "" +msgstr "kalonoù o treiñ" #. 💟 (U+1F49F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6746,7 +6746,7 @@ "HEART_DECORATION\n" "LngText.text" msgid "heart decoration" -msgstr "" +msgstr "kalon ginklañ" #. 💠 (U+1F4A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6755,7 +6755,7 @@ "DIAMOND_SHAPE_WITH_A_DOT_INSIDE\n" "LngText.text" msgid "cuteness" -msgstr "" +msgstr "koantelezh" #. 💡 (U+1F4A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6773,7 +6773,7 @@ "ANGER_SYMBOL\n" "LngText.text" msgid "anger" -msgstr "" +msgstr "kounnar" #. 💣 (U+1F4A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6809,7 +6809,7 @@ "SPLASHING_SWEAT_SYMBOL\n" "LngText.text" msgid "sweat drops" -msgstr "" +msgstr "pizenn c'hwez" #. 💧 (U+1F4A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6818,7 +6818,7 @@ "DROPLET\n" "LngText.text" msgid "droplet" -msgstr "" +msgstr "takennig" #. 💨 (U+1F4A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6836,7 +6836,7 @@ "PILE_OF_POO\n" "LngText.text" msgid "poo" -msgstr "" +msgstr "kakac'h" #. 💪 (U+1F4AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6854,7 +6854,7 @@ "DIZZY_SYMBOL\n" "LngText.text" msgid "dizzy" -msgstr "" +msgstr "brell" #. 💬 (U+1F4AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6863,7 +6863,7 @@ "SPEECH_BALLOON\n" "LngText.text" msgid "speech balloon" -msgstr "" +msgstr "lagadenn gomz" #. 💭 (U+1F4AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6872,7 +6872,7 @@ "THOUGHT_BALLOON\n" "LngText.text" msgid "thought balloon" -msgstr "" +msgstr "lagadenn soñjal" #. 💮 (U+1F4AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6908,7 +6908,7 @@ "CURRENCY_EXCHANGE\n" "LngText.text" msgid "currency exchange" -msgstr "" +msgstr "eskemm teulenn" #. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7007,7 +7007,7 @@ "BRIEFCASE\n" "LngText.text" msgid "briefcase" -msgstr "" +msgstr "maletenn" #. 💽 (U+1F4BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7016,7 +7016,7 @@ "MINIDISC\n" "LngText.text" msgid "md" -msgstr "" +msgstr "korrgantenn" #. 💾 (U+1F4BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7025,7 +7025,7 @@ "FLOPPY_DISK\n" "LngText.text" msgid "floppy" -msgstr "" +msgstr "kantennig vouk" #. 💿 (U+1F4BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7070,7 +7070,7 @@ "PAGE_WITH_CURL\n" "LngText.text" msgid "page with curl" -msgstr "" +msgstr "pajenn gromm" #. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7079,7 +7079,7 @@ "PAGE_FACING_UP\n" "LngText.text" msgid "page facing up" -msgstr "" +msgstr "talbajenn" #. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7088,7 +7088,7 @@ "CALENDAR\n" "LngText.text" msgid "calendar" -msgstr "" +msgstr "deiziataer" #. 📆 (U+1F4C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7097,7 +7097,7 @@ "TEAR-OFF_CALENDAR\n" "LngText.text" msgid "calendar2" -msgstr "" +msgstr "deiziataer2" #. 📇 (U+1F4C7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7106,7 +7106,7 @@ "CARD_INDEX\n" "LngText.text" msgid "card index" -msgstr "" +msgstr "fichennaoueg" #. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7151,7 +7151,7 @@ "PUSHPIN\n" "LngText.text" msgid "pushpin" -msgstr "" +msgstr "tach-meud" #. 📍 (U+1F4CD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7160,7 +7160,7 @@ "ROUND_PUSHPIN\n" "LngText.text" msgid "round pushpin" -msgstr "" +msgstr "tach-meud ront" #. 📎 (U+1F4CE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7169,7 +7169,7 @@ "PAPERCLIP\n" "LngText.text" msgid "paperclip" -msgstr "" +msgstr "strobell" #. 📏 (U+1F4CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7205,7 +7205,7 @@ "LEDGER\n" "LngText.text" msgid "ledger" -msgstr "" +msgstr "levr ar c'hontoù" #. 📓 (U+1F4D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7214,7 +7214,7 @@ "NOTEBOOK\n" "LngText.text" msgid "notebook" -msgstr "" +msgstr "urzhiataer skovloc'h" #. 📔 (U+1F4D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7223,7 +7223,7 @@ "NOTEBOOK_WITH_DECORATIVE_COVER\n" "LngText.text" msgid "notebook2" -msgstr "" +msgstr "urzhiataer skovloc'h2" #. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7268,7 +7268,7 @@ "SCROLL\n" "LngText.text" msgid "scroll" -msgstr "" +msgstr "paper roll" #. 📝 (U+1F4DD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7286,7 +7286,7 @@ "TELEPHONE_RECEIVER\n" "LngText.text" msgid "receiver" -msgstr "" +msgstr "yevenn" #. 📟 (U+1F4DF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7295,7 +7295,7 @@ "PAGER\n" "LngText.text" msgid "pager" -msgstr "" +msgstr "pajenner" #. 📠 (U+1F4E0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7313,7 +7313,7 @@ "SATELLITE_ANTENNA\n" "LngText.text" msgid "satellite" -msgstr "" +msgstr "loarell" #. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7322,7 +7322,7 @@ "PUBLIC_ADDRESS_LOUDSPEAKER\n" "LngText.text" msgid "loudspeaker" -msgstr "" +msgstr "uhelgomzer" #. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7331,7 +7331,7 @@ "CHEERING_MEGAPHONE\n" "LngText.text" msgid "mega" -msgstr "" +msgstr "korn-mouezh" #. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7340,7 +7340,7 @@ "OUTBOX_TRAY\n" "LngText.text" msgid "tray" -msgstr "" +msgstr "boest kas" #. 📥 (U+1F4E5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7349,7 +7349,7 @@ "INBOX_TRAY\n" "LngText.text" msgid "tray2" -msgstr "" +msgstr "boest degemer" #. 📦 (U+1F4E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7358,7 +7358,7 @@ "PACKAGE\n" "LngText.text" msgid "package" -msgstr "" +msgstr "pakad" #. 📧 (U+1F4E7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7367,7 +7367,7 @@ "E-MAIL_SYMBOL\n" "LngText.text" msgid "e-mail" -msgstr "" +msgstr "postel" #. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7439,7 +7439,7 @@ "POSTAL_HORN\n" "LngText.text" msgid "horn" -msgstr "" +msgstr "korn" #. 📰 (U+1F4F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7448,7 +7448,7 @@ "NEWSPAPER\n" "LngText.text" msgid "newspaper" -msgstr "" +msgstr "kazetenn" #. 📱 (U+1F4F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7457,7 +7457,7 @@ "MOBILE_PHONE\n" "LngText.text" msgid "mobile" -msgstr "" +msgstr "hezougell" #. 📲 (U+1F4F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7466,7 +7466,7 @@ "MOBILE_PHONE_WITH_RIGHTWARDS_ARROW_AT_LEFT\n" "LngText.text" msgid "calling" -msgstr "" +msgstr "galv" #. 📳 (U+1F4F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7475,7 +7475,7 @@ "VIBRATION_MODE\n" "LngText.text" msgid "vibration mode" -msgstr "" +msgstr "mod daskrennañ" #. 📴 (U+1F4F4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7484,7 +7484,7 @@ "MOBILE_PHONE_OFF\n" "LngText.text" msgid "mobile phone off" -msgstr "" +msgstr "hezougell lazhet" #. 📵 (U+1F4F5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7493,7 +7493,7 @@ "NO_MOBILE_PHONES\n" "LngText.text" msgid "no mobile" -msgstr "" +msgstr "hezougell berzhet" #. 📶 (U+1F4F6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7502,7 +7502,7 @@ "ANTENNA_WITH_BARS\n" "LngText.text" msgid "signal strength" -msgstr "" +msgstr "kreñvder an arhent" #. 📷 (U+1F4F7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7511,7 +7511,7 @@ "CAMERA\n" "LngText.text" msgid "camera" -msgstr "" +msgstr "benveg luc'hskeudenniñ" #. 📹 (U+1F4F9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7520,7 +7520,7 @@ "VIDEO_CAMERA\n" "LngText.text" msgid "video camera" -msgstr "" +msgstr "kamera video" #. 📺 (U+1F4FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7529,7 +7529,7 @@ "TELEVISION\n" "LngText.text" msgid "tv" -msgstr "" +msgstr "skinwel" #. 📻 (U+1F4FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7538,7 +7538,7 @@ "RADIO\n" "LngText.text" msgid "radio" -msgstr "" +msgstr "radio" #. 📼 (U+1F4FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7547,7 +7547,7 @@ "VIDEOCASSETTE\n" "LngText.text" msgid "vhs" -msgstr "" +msgstr "vhs" #. 🔅 (U+1F505), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7556,7 +7556,7 @@ "LOW_BRIGHTNESS_SYMBOL\n" "LngText.text" msgid "brightness" -msgstr "" +msgstr "lintr" #. 🔆 (U+1F506), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7565,7 +7565,7 @@ "HIGH_BRIGHTNESS_SYMBOL\n" "LngText.text" msgid "brightness2" -msgstr "" +msgstr "lintr2" #. 🔇 (U+1F507), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7574,7 +7574,7 @@ "SPEAKER_WITH_CANCELLATION_STROKE\n" "LngText.text" msgid "mute" -msgstr "" +msgstr "didrouz" #. 🔈 (U+1F508), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7583,7 +7583,7 @@ "SPEAKER\n" "LngText.text" msgid "speaker" -msgstr "" +msgstr "uhelgomzer2" #. 🔉 (U+1F509), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7592,7 +7592,7 @@ "SPEAKER_WITH_ONE_SOUND_WAVE\n" "LngText.text" msgid "sound" -msgstr "" +msgstr "son" #. 🔊 (U+1F50A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7601,7 +7601,7 @@ "SPEAKER_WITH_THREE_SOUND_WAVES\n" "LngText.text" msgid "loud sound" -msgstr "" +msgstr "son kreñv" #. 🔋 (U+1F50B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7610,7 +7610,7 @@ "BATTERY\n" "LngText.text" msgid "battery" -msgstr "" +msgstr "pod tredan" #. 🔌 (U+1F50C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7619,7 +7619,7 @@ "ELECTRIC_PLUG\n" "LngText.text" msgid "plug" -msgstr "" +msgstr "ki" #. 🔍 (U+1F50D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7628,7 +7628,7 @@ "LEFT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag" -msgstr "" +msgstr "kreskwerenn" #. 🔎 (U+1F50E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7637,7 +7637,7 @@ "RIGHT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag2" -msgstr "" +msgstr "kreskwerenn2" #. 🔏 (U+1F50F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7646,7 +7646,7 @@ "LOCK_WITH_INK_PEN\n" "LngText.text" msgid "lock2" -msgstr "" +msgstr "prennet2" #. 🔐 (U+1F510), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7655,7 +7655,7 @@ "CLOSED_LOCK_WITH_KEY\n" "LngText.text" msgid "lock3" -msgstr "" +msgstr "prennet3" #. 🔑 (U+1F511), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7664,7 +7664,7 @@ "KEY\n" "LngText.text" msgid "key" -msgstr "" +msgstr "alc'hwez" #. 🔒 (U+1F512), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7673,7 +7673,7 @@ "LOCK\n" "LngText.text" msgid "lock" -msgstr "" +msgstr "prennet" #. 🔓 (U+1F513), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7682,7 +7682,7 @@ "OPEN_LOCK\n" "LngText.text" msgid "unlock" -msgstr "" +msgstr "dibrennet" #. 🔔 (U+1F514), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7691,7 +7691,7 @@ "BELL\n" "LngText.text" msgid "bell" -msgstr "" +msgstr "sonerez" #. 🔕 (U+1F515), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7700,7 +7700,7 @@ "BELL_WITH_CANCELLATION_STROKE\n" "LngText.text" msgid "no bell" -msgstr "" +msgstr "sonerez ebet" #. 🔖 (U+1F516), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7709,7 +7709,7 @@ "BOOKMARK\n" "LngText.text" msgid "bookmark2" -msgstr "" +msgstr "sined2" #. 🔗 (U+1F517), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7718,7 +7718,7 @@ "LINK_SYMBOL\n" "LngText.text" msgid "link" -msgstr "" +msgstr "ere" #. 🔘 (U+1F518), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7727,7 +7727,7 @@ "RADIO_BUTTON\n" "LngText.text" msgid "radio button" -msgstr "" +msgstr "afell radio" #. 🔞 (U+1F51E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7736,7 +7736,7 @@ "NO_ONE_UNDER_EIGHTEEN_SYMBOL\n" "LngText.text" msgid "underage" -msgstr "" +msgstr "dindan oad" #. 🔤 (U+1F524), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7745,7 +7745,7 @@ "INPUT_SYMBOL_FOR_LATIN_LETTERS\n" "LngText.text" msgid "abc" -msgstr "" +msgstr "abc" #. 🔥 (U+1F525), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7754,7 +7754,7 @@ "FIRE\n" "LngText.text" msgid "fire" -msgstr "" +msgstr "tan" #. 🔦 (U+1F526), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7763,7 +7763,7 @@ "ELECTRIC_TORCH\n" "LngText.text" msgid "flashlight" -msgstr "" +msgstr "etev tredan" #. 🔧 (U+1F527), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7772,7 +7772,7 @@ "WRENCH\n" "LngText.text" msgid "wrench" -msgstr "" +msgstr "alc'hwez saoz" #. 🔨 (U+1F528), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7781,7 +7781,7 @@ "HAMMER\n" "LngText.text" msgid "hammer" -msgstr "" +msgstr "morzhol" #. 🔩 (U+1F529), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7790,7 +7790,7 @@ "NUT_AND_BOLT\n" "LngText.text" msgid "nut and bolt" -msgstr "" +msgstr "bouster ha biñs" #. 🔪 (U+1F52A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7799,7 +7799,7 @@ "HOCHO\n" "LngText.text" msgid "knife" -msgstr "" +msgstr "kontell" #. 🔫 (U+1F52B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7808,7 +7808,7 @@ "PISTOL\n" "LngText.text" msgid "pistol" -msgstr "" +msgstr "pistolenn" #. 🔬 (U+1F52C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7817,7 +7817,7 @@ "MICROSCOPE\n" "LngText.text" msgid "microscope" -msgstr "" +msgstr "mikroskop" #. 🔭 (U+1F52D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7826,7 +7826,7 @@ "TELESCOPE\n" "LngText.text" msgid "telescope" -msgstr "" +msgstr "teleskop" #. 🔮 (U+1F52E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7835,7 +7835,7 @@ "CRYSTAL_BALL\n" "LngText.text" msgid "crystal ball" -msgstr "" +msgstr "boull strink" #. 🔰 (U+1F530), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7844,7 +7844,7 @@ "JAPANESE_SYMBOL_FOR_BEGINNER\n" "LngText.text" msgid "beginner" -msgstr "" +msgstr "deraouad" #. 🔱 (U+1F531), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7853,7 +7853,7 @@ "TRIDENT_EMBLEM\n" "LngText.text" msgid "trident" -msgstr "" +msgstr "tridant" #. 🔲 (U+1F532), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7862,7 +7862,7 @@ "BLACK_SQUARE_BUTTON\n" "LngText.text" msgid "button2" -msgstr "" +msgstr "afell2" #. 🔳 (U+1F533), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7987,7 +7987,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "1:30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -7996,7 +7996,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "2:30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8005,7 +8005,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "3:30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8014,7 +8014,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "4:30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8023,7 +8023,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "5:30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8032,7 +8032,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "6:30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8041,7 +8041,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "7:30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8050,7 +8050,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "8:30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8059,7 +8059,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "9:30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8068,7 +8068,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "10:30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8077,7 +8077,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "11:30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8086,7 +8086,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "12:30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji @@ -8141,7 +8141,7 @@ "GRINNING_FACE\n" "LngText.text" msgid "grinning" -msgstr "" +msgstr "o kammañ e c'henoù" #. 😁 (U+1F601), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8150,7 +8150,7 @@ "GRINNING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "grin" -msgstr "" +msgstr "mousklenn gamm" #. 😂 (U+1F602), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8186,7 +8186,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT\n" "LngText.text" msgid "sweat smile" -msgstr "" +msgstr "mousc'hoarzh c'hwez" #. 😆 (U+1F606), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8204,7 +8204,7 @@ "SMILING_FACE_WITH_HALO\n" "LngText.text" msgid "innocent" -msgstr "" +msgstr "digablus" #. 😈 (U+1F608), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8222,7 +8222,7 @@ "WINKING_FACE\n" "LngText.text" msgid "wink" -msgstr "" +msgstr "serr-lagad" #. 😊 (U+1F60A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8231,7 +8231,7 @@ "SMILING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "blush" -msgstr "" +msgstr "ruziañ" #. 😋 (U+1F60B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8249,7 +8249,7 @@ "RELIEVED_FACE\n" "LngText.text" msgid "relieved" -msgstr "" +msgstr "divec'hiet" #. 😍 (U+1F60D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8276,7 +8276,7 @@ "SMIRKING_FACE\n" "LngText.text" msgid "smirk" -msgstr "" +msgstr "godisus" #. 😐 (U+1F610), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8285,7 +8285,7 @@ "NEUTRAL_FACE\n" "LngText.text" msgid "neutral face" -msgstr "" +msgstr "dremm difromm" #. 😑 (U+1F611), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8294,7 +8294,7 @@ "EXPRESSIONLESS_FACE\n" "LngText.text" msgid "expressionless" -msgstr "" +msgstr "dieztaol" #. 😒 (U+1F612), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8303,7 +8303,7 @@ "UNAMUSED_FACE\n" "LngText.text" msgid "unamused" -msgstr "" +msgstr "displijet" #. 😓 (U+1F613), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8312,7 +8312,7 @@ "FACE_WITH_COLD_SWEAT\n" "LngText.text" msgid "sweat" -msgstr "" +msgstr "c'hwez" #. 😔 (U+1F614), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8321,7 +8321,7 @@ "PENSIVE_FACE\n" "LngText.text" msgid "pensive" -msgstr "" +msgstr "soñjus" #. 😕 (U+1F615), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8330,7 +8330,7 @@ "CONFUSED_FACE\n" "LngText.text" msgid "confused" -msgstr "" +msgstr "pinous" #. 😖 (U+1F616), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8339,7 +8339,7 @@ "CONFOUNDED_FACE\n" "LngText.text" msgid "confounded" -msgstr "" +msgstr "mezhekaet" #. 😗 (U+1F617), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8348,7 +8348,7 @@ "KISSING_FACE\n" "LngText.text" msgid "kissing" -msgstr "" +msgstr "pok" #. 😘 (U+1F618), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8429,7 +8429,7 @@ "ANGRY_FACE\n" "LngText.text" msgid "angry" -msgstr "" +msgstr "fulor" #. 😡 (U+1F621), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8438,7 +8438,7 @@ "POUTING_FACE\n" "LngText.text" msgid "rage" -msgstr "" +msgstr "kounnar" #. 😢 (U+1F622), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8456,7 +8456,7 @@ "PERSEVERING_FACE\n" "LngText.text" msgid "persevere" -msgstr "" +msgstr "dalc'hek" #. 😤 (U+1F624), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8465,7 +8465,7 @@ "FACE_WITH_LOOK_OF_TRIUMPH\n" "LngText.text" msgid "triumph" -msgstr "" +msgstr "gourzrec'h" #. 😥 (U+1F625), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8474,7 +8474,7 @@ "DISAPPOINTED_BUT_RELIEVED_FACE\n" "LngText.text" msgid "disappointed relieved" -msgstr "" +msgstr "divec'hiet dipitet" #. 😦 (U+1F626), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8483,7 +8483,7 @@ "FROWNING_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "frowning" -msgstr "" +msgstr "moulbennek" #. 😧 (U+1F627), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8492,7 +8492,7 @@ "ANGUISHED_FACE\n" "LngText.text" msgid "anguished" -msgstr "" +msgstr "ankeniet" #. 😨 (U+1F628), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8501,7 +8501,7 @@ "FEARFUL_FACE\n" "LngText.text" msgid "fearful" -msgstr "" +msgstr "aonek" #. 😩 (U+1F629), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8519,7 +8519,7 @@ "SLEEPY_FACE\n" "LngText.text" msgid "sleepy" -msgstr "" +msgstr "damgouskus" #. 😫 (U+1F62B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8537,7 +8537,7 @@ "GRIMACING_FACE\n" "LngText.text" msgid "grimacing" -msgstr "" +msgstr "o kammañ e c'henoù2" #. 😭 (U+1F62D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8546,7 +8546,7 @@ "LOUDLY_CRYING_FACE\n" "LngText.text" msgid "sob" -msgstr "" +msgstr "difronkañ" #. 😮 (U+1F62E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8564,7 +8564,7 @@ "HUSHED_FACE\n" "LngText.text" msgid "hushed" -msgstr "" +msgstr "mouget" #. 😰 (U+1F630), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8573,7 +8573,7 @@ "FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT\n" "LngText.text" msgid "cold sweat" -msgstr "" +msgstr "c'hwez yen" #. 😱 (U+1F631), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8582,7 +8582,7 @@ "FACE_SCREAMING_IN_FEAR\n" "LngText.text" msgid "scream" -msgstr "" +msgstr "huchal" #. 😲 (U+1F632), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8591,7 +8591,7 @@ "ASTONISHED_FACE\n" "LngText.text" msgid "astonished" -msgstr "" +msgstr "souezhet" #. 😳 (U+1F633), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8600,7 +8600,7 @@ "FLUSHED_FACE\n" "LngText.text" msgid "flushed" -msgstr "" +msgstr "ruziet" #. 😴 (U+1F634), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8609,7 +8609,7 @@ "SLEEPING_FACE\n" "LngText.text" msgid "sleeping" -msgstr "" +msgstr "o kousket" #. 😵 (U+1F635), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8618,7 +8618,7 @@ "DIZZY_FACE\n" "LngText.text" msgid "dizzy face" -msgstr "" +msgstr "mezevenniñ" #. 😶 (U+1F636), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8627,7 +8627,7 @@ "FACE_WITHOUT_MOUTH\n" "LngText.text" msgid "no mouth" -msgstr "" +msgstr "hep beg" #. 😷 (U+1F637), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8636,7 +8636,7 @@ "FACE_WITH_MEDICAL_MASK\n" "LngText.text" msgid "mask" -msgstr "" +msgstr "maskl" #. 😸 (U+1F638), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8645,7 +8645,7 @@ "GRINNING_CAT_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "smile cat" -msgstr "" +msgstr "kazh a vousc'hoarzh" #. 😹 (U+1F639), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8654,7 +8654,7 @@ "CAT_FACE_WITH_TEARS_OF_JOY\n" "LngText.text" msgid "joy cat" -msgstr "" +msgstr "kazh laouen" #. 😺 (U+1F63A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8663,7 +8663,7 @@ "SMILING_CAT_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "smiley cat" -msgstr "" +msgstr "kazh a vousc'hoarzh2" #. 😻 (U+1F63B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8672,7 +8672,7 @@ "SMILING_CAT_FACE_WITH_HEART-SHAPED_EYES\n" "LngText.text" msgid "heart eyes cat" -msgstr "" +msgstr "kazh e zaoulagad kalon" #. 😼 (U+1F63C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8681,7 +8681,7 @@ "CAT_FACE_WITH_WRY_SMILE\n" "LngText.text" msgid "smirk cat" -msgstr "" +msgstr "kazh godisus" #. 😽 (U+1F63D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8690,7 +8690,7 @@ "KISSING_CAT_FACE_WITH_CLOSED_EYES\n" "LngText.text" msgid "kissing cat" -msgstr "" +msgstr "kazh a bok" #. 😾 (U+1F63E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8699,7 +8699,7 @@ "POUTING_CAT_FACE\n" "LngText.text" msgid "pouting cat" -msgstr "" +msgstr "kazh a vouzh" #. 😿 (U+1F63F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8708,7 +8708,7 @@ "CRYING_CAT_FACE\n" "LngText.text" msgid "crying cat" -msgstr "" +msgstr "kazh a ouel" #. 🙀 (U+1F640), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8717,7 +8717,7 @@ "WEARY_CAT_FACE\n" "LngText.text" msgid "scream cat" -msgstr "" +msgstr "kazh a huch" #. 🙅 (U+1F645), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8726,7 +8726,7 @@ "FACE_WITH_NO_GOOD_GESTURE\n" "LngText.text" msgid "no good" -msgstr "" +msgstr "fall" #. 🙆 (U+1F646), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8735,7 +8735,7 @@ "FACE_WITH_OK_GESTURE\n" "LngText.text" msgid "ok2" -msgstr "" +msgstr "ok2" #. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8744,7 +8744,7 @@ "PERSON_BOWING_DEEPLY\n" "LngText.text" msgid "bow" -msgstr "" +msgstr "skoulm" #. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8753,7 +8753,7 @@ "SEE-NO-EVIL_MONKEY\n" "LngText.text" msgid "see no evil" -msgstr "" +msgstr "ne wel tra" #. 🙉 (U+1F649), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8762,7 +8762,7 @@ "HEAR-NO-EVIL_MONKEY\n" "LngText.text" msgid "hear no evil" -msgstr "" +msgstr "ne glev tra" #. 🙊 (U+1F64A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8771,7 +8771,7 @@ "SPEAK-NO-EVIL_MONKEY\n" "LngText.text" msgid "speak no evil" -msgstr "" +msgstr "ne lâr tra" #. 🙋 (U+1F64B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8780,7 +8780,7 @@ "HAPPY_PERSON_RAISING_ONE_HAND\n" "LngText.text" msgid "happiness" -msgstr "" +msgstr "eürusted" #. 🙌 (U+1F64C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8789,7 +8789,7 @@ "PERSON_RAISING_BOTH_HANDS_IN_CELEBRATION\n" "LngText.text" msgid "celebration" -msgstr "" +msgstr "fest" #. 🙍 (U+1F64D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8798,7 +8798,7 @@ "PERSON_FROWNING\n" "LngText.text" msgid "person frowning" -msgstr "" +msgstr "den moulbennek" #. 🙎 (U+1F64E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8807,7 +8807,7 @@ "PERSON_WITH_POUTING_FACE\n" "LngText.text" msgid "person pouting" -msgstr "" +msgstr "den a vouzh" #. 🙏 (U+1F64F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8825,7 +8825,7 @@ "ROCKET\n" "LngText.text" msgid "rocket" -msgstr "" +msgstr "dasloc'hell" #. 🚁 (U+1F681), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8843,7 +8843,7 @@ "STEAM_LOCOMOTIVE\n" "LngText.text" msgid "steam locomotive" -msgstr "" +msgstr "marc'h-du dre vurezh" #. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8852,7 +8852,7 @@ "RAILWAY_CAR\n" "LngText.text" msgid "railway car" -msgstr "" +msgstr "bagon" #. 🚄 (U+1F684), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8897,7 +8897,7 @@ "LIGHT_RAIL\n" "LngText.text" msgid "light rail" -msgstr "" +msgstr "tren skañv" #. 🚉 (U+1F689), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8906,7 +8906,7 @@ "STATION\n" "LngText.text" msgid "station" -msgstr "" +msgstr "ti-gar" #. 🚊 (U+1F68A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8915,7 +8915,7 @@ "TRAM\n" "LngText.text" msgid "tram" -msgstr "" +msgstr "trammgarr" #. 🚋 (U+1F68B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8924,7 +8924,7 @@ "TRAM_CAR\n" "LngText.text" msgid "tram2" -msgstr "" +msgstr "trammgarr2" #. 🚌 (U+1F68C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8951,7 +8951,7 @@ "TROLLEYBUS\n" "LngText.text" msgid "trolleybus" -msgstr "" +msgstr "trolle" #. 🚏 (U+1F68F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8960,7 +8960,7 @@ "BUS_STOP\n" "LngText.text" msgid "busstop" -msgstr "" +msgstr "arsav bus" #. 🚐 (U+1F690), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8969,7 +8969,7 @@ "MINIBUS\n" "LngText.text" msgid "minibus" -msgstr "" +msgstr "korrvus" #. 🚑 (U+1F691), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8978,7 +8978,7 @@ "AMBULANCE\n" "LngText.text" msgid "ambulance" -msgstr "" +msgstr "klañvgarr" #. 🚒 (U+1F692), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8987,7 +8987,7 @@ "FIRE_ENGINE\n" "LngText.text" msgid "fire engine" -msgstr "" +msgstr "sammorell ar bomperion" #. 🚓 (U+1F693), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8996,7 +8996,7 @@ "POLICE_CAR\n" "LngText.text" msgid "police car" -msgstr "" +msgstr "karr polis" #. 🚔 (U+1F694), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9005,7 +9005,7 @@ "ONCOMING_POLICE_CAR\n" "LngText.text" msgid "police car2" -msgstr "" +msgstr "karr polis2" #. 🚕 (U+1F695), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9068,7 +9068,7 @@ "ARTICULATED_LORRY\n" "LngText.text" msgid "lorry" -msgstr "" +msgstr "sammorell" #. 🚜 (U+1F69C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9077,7 +9077,7 @@ "TRACTOR\n" "LngText.text" msgid "tractor" -msgstr "" +msgstr "stlejerez" #. 🚝 (U+1F69D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9086,7 +9086,7 @@ "MONORAIL\n" "LngText.text" msgid "monorail" -msgstr "" +msgstr "unroudenn" #. 🚞 (U+1F69E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9095,7 +9095,7 @@ "MOUNTAIN_RAILWAY\n" "LngText.text" msgid "mountain railway" -msgstr "" +msgstr "tren dre fun" #. 🚟 (U+1F69F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9104,7 +9104,7 @@ "SUSPENSION_RAILWAY\n" "LngText.text" msgid "suspension railway" -msgstr "" +msgstr "tren istribilhet" #. 🚠 (U+1F6A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9113,7 +9113,7 @@ "MOUNTAIN_CABLEWAY\n" "LngText.text" msgid "mountain cableway" -msgstr "" +msgstr "fundezouger" #. 🚡 (U+1F6A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9122,7 +9122,7 @@ "AERIAL_TRAMWAY\n" "LngText.text" msgid "aerial tramway" -msgstr "" +msgstr "trammgarr-aer" #. 🚢 (U+1F6A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9140,7 +9140,7 @@ "ROWBOAT\n" "LngText.text" msgid "rowboat" -msgstr "" +msgstr "bagig" #. 🚤 (U+1F6A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9149,7 +9149,7 @@ "SPEEDBOAT\n" "LngText.text" msgid "speedboat" -msgstr "" +msgstr "herrvag" #. 🚥 (U+1F6A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9158,7 +9158,7 @@ "HORIZONTAL_TRAFFIC_LIGHT\n" "LngText.text" msgid "traffic light" -msgstr "" +msgstr "gouloù triliv" #. 🚦 (U+1F6A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9176,7 +9176,7 @@ "CONSTRUCTION_SIGN\n" "LngText.text" msgid "construction" -msgstr "" +msgstr "chanter" #. 🚨 (U+1F6A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9185,7 +9185,7 @@ "POLICE_CARS_REVOLVING_LIGHT\n" "LngText.text" msgid "rotating light" -msgstr "" +msgstr "gouloù c'hwelus" #. 🚩 (U+1F6A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9194,7 +9194,7 @@ "TRIANGULAR_FLAG_ON_POST\n" "LngText.text" msgid "triangular flag" -msgstr "" +msgstr "banniel tric'hornek" #. 🚪 (U+1F6AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9212,7 +9212,7 @@ "NO_ENTRY_SIGN\n" "LngText.text" msgid "no entry sign" -msgstr "" +msgstr "tu difennet" #. 🚬 (U+1F6AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9221,7 +9221,7 @@ "SMOKING_SYMBOL\n" "LngText.text" msgid "smoking" -msgstr "" +msgstr "butuniñ aotreet" #. 🚭 (U+1F6AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9230,7 +9230,7 @@ "NO_SMOKING_SYMBOL\n" "LngText.text" msgid "no smoking" -msgstr "" +msgstr "butuniñ berzhet" #. 🚮 (U+1F6AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9239,7 +9239,7 @@ "PUT_LITTER_IN_ITS_PLACE_SYMBOL\n" "LngText.text" msgid "litter" -msgstr "" +msgstr "pod-lastez" #. 🚯 (U+1F6AF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9248,7 +9248,7 @@ "DO_NOT_LITTER_SYMBOL\n" "LngText.text" msgid "do not litter" -msgstr "" +msgstr "na leuskel" #. 🚰 (U+1F6B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9257,7 +9257,7 @@ "POTABLE_WATER_SYMBOL\n" "LngText.text" msgid "potable water" -msgstr "" +msgstr "dour evadus" #. 🚱 (U+1F6B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9266,7 +9266,7 @@ "NON-POTABLE_WATER_SYMBOL\n" "LngText.text" msgid "non-potable water" -msgstr "" +msgstr "dour dievadus" #. 🚲 (U+1F6B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9275,7 +9275,7 @@ "BICYCLE\n" "LngText.text" msgid "bike" -msgstr "" +msgstr "marc'h-houarn" #. 🚳 (U+1F6B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9284,7 +9284,7 @@ "NO_BICYCLES\n" "LngText.text" msgid "no bicycles" -msgstr "" +msgstr "roñsed-houarn berzhet" #. 🚴 (U+1F6B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9293,7 +9293,7 @@ "BICYCLIST\n" "LngText.text" msgid "bicyclist" -msgstr "" +msgstr "marc'hhouarnour" #. 🚵 (U+1F6B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9302,7 +9302,7 @@ "MOUNTAIN_BICYCLIST\n" "LngText.text" msgid "bicyclist2" -msgstr "" +msgstr "marc'hhouarnour2" #. 🚶 (U+1F6B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9311,7 +9311,7 @@ "PEDESTRIAN\n" "LngText.text" msgid "walking" -msgstr "" +msgstr "den war droad" #. 🚷 (U+1F6B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9320,7 +9320,7 @@ "NO_PEDESTRIANS\n" "LngText.text" msgid "no pedestrians" -msgstr "" +msgstr "ardroadourion berzhet" #. 🚸 (U+1F6B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9329,7 +9329,7 @@ "CHILDREN_CROSSING\n" "LngText.text" msgid "children crossing" -msgstr "" +msgstr "bugale a dreuz" #. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9338,7 +9338,7 @@ "MENS_SYMBOL\n" "LngText.text" msgid "mens" -msgstr "" +msgstr "gwazed" #. 🚺 (U+1F6BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9347,7 +9347,7 @@ "WOMENS_SYMBOL\n" "LngText.text" msgid "womens" -msgstr "" +msgstr "merc'hed" #. 🚻 (U+1F6BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9356,7 +9356,7 @@ "RESTROOM\n" "LngText.text" msgid "restroom" -msgstr "" +msgstr "privezioù" #. 🚼 (U+1F6BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9365,7 +9365,7 @@ "BABY_SYMBOL\n" "LngText.text" msgid "baby2" -msgstr "" +msgstr "babig2" #. 🚽 (U+1F6BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9374,7 +9374,7 @@ "TOILET\n" "LngText.text" msgid "toilet" -msgstr "" +msgstr "privezioù2" #. 🚾 (U+1F6BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9383,7 +9383,7 @@ "WATER_CLOSET\n" "LngText.text" msgid "toilet2" -msgstr "" +msgstr "privezioù3" #. 🚿 (U+1F6BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9392,7 +9392,7 @@ "SHOWER\n" "LngText.text" msgid "shower" -msgstr "" +msgstr "strinkadenn" #. 🛀 (U+1F6C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9401,7 +9401,7 @@ "BATH\n" "LngText.text" msgid "bath" -msgstr "" +msgstr "kibellat" #. 🛁 (U+1F6C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9410,7 +9410,7 @@ "BATHTUB\n" "LngText.text" msgid "bathtub" -msgstr "" +msgstr "kibell" #. 🛂 (U+1F6C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9419,7 +9419,7 @@ "PASSPORT_CONTROL\n" "LngText.text" msgid "passport" -msgstr "" +msgstr "paseporzh" #. 🛃 (U+1F6C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9428,7 +9428,7 @@ "CUSTOMS\n" "LngText.text" msgid "customs" -msgstr "" +msgstr "maltouterezh" #. 🛄 (U+1F6C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9437,7 +9437,7 @@ "BAGGAGE_CLAIM\n" "LngText.text" msgid "baggage" -msgstr "" +msgstr "pakadoù" #. 🛅 (U+1F6C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9446,7 +9446,7 @@ "LEFT_LUGGAGE\n" "LngText.text" msgid "left luggage" -msgstr "" +msgstr "pakva" #. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-5.0.1~rc2/translations/source/br/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/br/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/br/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/br/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-07 16:34+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/br/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/br/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/br/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/br/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-18 14:00+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-10 09:30+0000\n" "Last-Translator: Alan \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437228042.000000\n" +"X-POOTLE-MTIME: 1441877442.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3307,8 +3307,8 @@ "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" -msgstr "Leuniañ" +msgid "F~ill" +msgstr "Leun~iañ" #: CalcCommands.xcu msgctxt "" @@ -15153,7 +15153,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "Mod em~bann" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/br/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/br/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/br/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/br/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-29 17:33+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-10 09:31+0000\n" "Last-Translator: Alan \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438191191.000000\n" +"X-POOTLE-MTIME: 1441877519.000000\n" #: condformatdlg.src msgctxt "" @@ -4923,10 +4923,10 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" -msgstr "Riñvenn ar reollun pe al ledad" +msgstr "Ledad pe riñvenn ar reollun" #: globstr.src msgctxt "" @@ -4999,6 +4999,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Lijorenn" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/br/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/br/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/br/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/br/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-06-09 14:48+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-10 09:33+0000\n" "Last-Translator: Alan \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1370789305.0\n" +"X-POOTLE-MTIME: 1441877582.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Dre ziouer" +msgid "According to layout" +msgstr "Hervez ar pajennaozañ" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/brx/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/brx/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/brx/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/brx/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 23:08+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 11:29+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: brx\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435273731.000000\n" +"X-POOTLE-MTIME: 1439551794.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7999,7 +7999,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8008,7 +8008,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8017,7 +8017,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8026,7 +8026,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8035,7 +8035,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8044,7 +8044,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8053,7 +8053,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8062,7 +8062,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8071,7 +8071,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8080,7 +8080,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8089,7 +8089,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8098,7 +8098,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/brx/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/brx/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/brx/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/brx/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-27 00:11+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" "PO-Revision-Date: 2015-08-14 11:57+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" @@ -1022,13 +1022,14 @@ msgstr "~जाहोनारि दाथाय दानाय" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ConditionalFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Condition" -msgstr "" +msgstr "~जाहोनारि दाथाय दानाय" #: CalcCommands.xcu msgctxt "" @@ -1058,13 +1059,14 @@ msgstr "" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:DataBarFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Data Bar" -msgstr "" +msgstr "~जाहोनारि दाथाय दानाय" #: CalcCommands.xcu msgctxt "" @@ -1076,13 +1078,14 @@ msgstr "" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:IconSetFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Icon Set" -msgstr "" +msgstr "~जाहोनारि दाथाय दानाय" #: CalcCommands.xcu msgctxt "" @@ -3357,12 +3360,13 @@ msgstr "बिखं सिफायनायखौ हुखुमोर" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "आबुं" #: CalcCommands.xcu @@ -15259,7 +15263,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "" #: GenericCommands.xcu @@ -21030,13 +21034,14 @@ msgstr "हाबाफारिफोर" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.ManageChangesDeck\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "मुंफोर सोरजि" #: Sidebar.xcu msgctxt "" @@ -21280,13 +21285,14 @@ msgstr "~लामा दिन्थिगिरि" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SwManageChangesPanel\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "मुंफोर सोरजि" #: Sidebar.xcu #, fuzzy @@ -21862,13 +21868,14 @@ msgstr "रेकर्डेट सोलायनाय" #: WriterCommands.xcu +#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:ShowTrackedChanges\n" "Label\n" "value.text" msgid "~Show Changes" -msgstr "" +msgstr "सोलायनायफोर दिनथि" #: WriterCommands.xcu msgctxt "" @@ -27295,48 +27302,3 @@ "value.text" msgid "Fontwork Shape" msgstr "फन्ट खामानि महर" - -#: CalcCommands.xcu -msgctxt "" -"CalcCommands.xcu\n" -"..CalcCommands.UserInterface.Popups..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: DrawImpressCommands.xcu -msgctxt "" -"DrawImpressCommands.xcu\n" -"..DrawImpressCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: MathCommands.xcu -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ToolBox\n" -"Label\n" -"value.text" -msgid "Elements" -msgstr "सायखनाय" - -#: MathCommands.xcu -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ElementsDockingWindow\n" -"Label\n" -"value.text" -msgid "Elements Dock" -msgstr "" - -#: WriterCommands.xcu -msgctxt "" -"WriterCommands.xcu\n" -"..WriterCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/brx/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/brx/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/brx/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/brx/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-05-12 02:00+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 12:13+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: brx\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431396048.000000\n" +"X-POOTLE-MTIME: 1439554387.000000\n" #: condformatdlg.src #, fuzzy @@ -5025,7 +5025,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5098,6 +5098,16 @@ msgstr "" #: globstr.src +#, fuzzy +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "सारि" + +#: globstr.src msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/brx/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/brx/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/brx/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/brx/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2013-01-06 14:07+0000\n" -"Last-Translator: Andras Timar \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 12:28+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: brx\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1357481227.000000\n" +"X-POOTLE-MTIME: 1439555282.000000\n" #: DocumentRenderer.src #, fuzzy @@ -134,16 +134,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" +msgid "According to layout" msgstr "" -"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n" -"म\n" -"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n" -"खामानिआव उदायै\n" -"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n" -"खामानिआव उदायै" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/brx/starmath/source.po libreoffice-5.0.2~rc2/translations/source/brx/starmath/source.po --- libreoffice-5.0.1~rc2/translations/source/brx/starmath/source.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/brx/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-20 09:18+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/brx/sw/source/ui/utlui.po libreoffice-5.0.2~rc2/translations/source/brx/sw/source/ui/utlui.po --- libreoffice-5.0.1~rc2/translations/source/brx/sw/source/ui/utlui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/brx/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-20 11:58+0100\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/bs/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/bs/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/bs/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bs/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 23:15+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 11:35+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: bs\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435274154.000000\n" +"X-POOTLE-MTIME: 1439552100.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8000,7 +8000,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8009,7 +8009,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8018,7 +8018,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8027,7 +8027,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8036,7 +8036,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8045,7 +8045,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8054,7 +8054,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8063,7 +8063,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8072,7 +8072,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8081,7 +8081,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8090,7 +8090,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8099,7 +8099,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" "PO-Revision-Date: 2015-08-14 11:59+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" @@ -1007,13 +1007,14 @@ msgstr "U~slovno formatiranje" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ConditionalFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Condition" -msgstr "" +msgstr "U~slovno formatiranje" #: CalcCommands.xcu msgctxt "" @@ -1043,13 +1044,14 @@ msgstr "Skala boja..." #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:DataBarFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Data Bar" -msgstr "" +msgstr "U~slovno formatiranje" #: CalcCommands.xcu msgctxt "" @@ -1061,13 +1063,14 @@ msgstr "Traka podataka..." #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:IconSetFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Icon Set" -msgstr "" +msgstr "U~slovno formatiranje" #: CalcCommands.xcu msgctxt "" @@ -3310,12 +3313,13 @@ msgstr "Obriši prijelom ~stranice" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Popuni" #: CalcCommands.xcu @@ -15174,7 +15178,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "" #: GenericCommands.xcu @@ -20890,13 +20894,14 @@ msgstr "Funkcije" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.ManageChangesDeck\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "~Upravljaj imenima..." #: Sidebar.xcu msgctxt "" @@ -21125,13 +21130,14 @@ msgstr "Navigator" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SwManageChangesPanel\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "~Upravljaj imenima..." #: Sidebar.xcu msgctxt "" @@ -21701,13 +21707,14 @@ msgstr "~Zapiši izmjene" #: WriterCommands.xcu +#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:ShowTrackedChanges\n" "Label\n" "value.text" msgid "~Show Changes" -msgstr "" +msgstr "Pri~kaži izmjene..." #: WriterCommands.xcu msgctxt "" @@ -27090,47 +27097,3 @@ "value.text" msgid "Fontwork Shape" msgstr "Oblik fontworka" - -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ElementsDockingWindow\n" -"Label\n" -"value.text" -msgid "Elements Dock" -msgstr "Priključna stranica elemenata" - -#: CalcCommands.xcu -msgctxt "" -"CalcCommands.xcu\n" -"..CalcCommands.UserInterface.Popups..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: DrawImpressCommands.xcu -msgctxt "" -"DrawImpressCommands.xcu\n" -"..DrawImpressCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: MathCommands.xcu -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ToolBox\n" -"Label\n" -"value.text" -msgid "Elements" -msgstr "Elementi" - -#: WriterCommands.xcu -msgctxt "" -"WriterCommands.xcu\n" -"..WriterCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/bs/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/bs/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/bs/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bs/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-05-12 02:25+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 12:11+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: bs\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431397545.000000\n" +"X-POOTLE-MTIME: 1439554318.000000\n" #: condformatdlg.src msgctxt "" @@ -4928,7 +4928,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5004,6 +5004,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Raspon" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/bs/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/bs/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/bs/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bs/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-01-15 19:02+0000\n" -"Last-Translator: vljubovic \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 12:26+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1389812524.0\n" +"X-POOTLE-MTIME: 1439555215.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Uobičajeno" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/bs/sw/source/ui/utlui.po libreoffice-5.0.2~rc2/translations/source/bs/sw/source/ui/utlui.po --- libreoffice-5.0.1~rc2/translations/source/bs/sw/source/ui/utlui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/bs/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-20 09:18+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/ca/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/ca/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/ca/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ca/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-17 16:37+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" @@ -2466,12 +2466,13 @@ #. ♭ (U+0266D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MUSIC_FLAT_SIGN\n" "LngText.text" msgid "flat" -msgstr "" +msgstr "bandera" #. ♮ (U+0266E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2979,12 +2980,13 @@ #. ⛺ (U+026FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "TENT\n" "LngText.text" msgid "tent" -msgstr "" +msgstr "cèntim" #. ⛷ (U+026F7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4464,12 +4466,13 @@ #. 🍨 (U+1F368), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "ICE_CREAM\n" "LngText.text" msgid "ice cream" -msgstr "" +msgstr "gelat" #. 🍩 (U+1F369), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5301,12 +5304,13 @@ #. 🏪 (U+1F3EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CONVENIENCE_STORE\n" "LngText.text" msgid "store" -msgstr "" +msgstr "tempesta" #. 🏫 (U+1F3EB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6228,12 +6232,13 @@ #. 👢 (U+1F462), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "WOMANS_BOOTS\n" "LngText.text" msgid "boot" -msgstr "" +msgstr "llibre" #. 👣 (U+1F463), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6768,12 +6773,13 @@ #. 💢 (U+1F4A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "ANGER_SYMBOL\n" "LngText.text" msgid "anger" -msgstr "" +msgstr "àngel" #. 💣 (U+1F4A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6795,12 +6801,13 @@ #. 💥 (U+1F4A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "COLLISION_SYMBOL\n" "LngText.text" msgid "boom" -msgstr "" +msgstr "llibre" #. 💦 (U+1F4A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6984,12 +6991,13 @@ #. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "SEAT\n" "LngText.text" msgid "seat" -msgstr "" +msgstr "carn" #. 💻 (U+1F4BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7110,12 +7118,13 @@ #. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CHART_WITH_UPWARDS_TREND\n" "LngText.text" msgid "char" -msgstr "" +msgstr "coche" #. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7191,12 +7200,13 @@ #. 📑 (U+1F4D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BOOKMARK_TABS\n" "LngText.text" msgid "bookmark" -msgstr "" +msgstr "marcador2" #. 📒 (U+1F4D2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7326,12 +7336,13 @@ #. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CHEERING_MEGAPHONE\n" "LngText.text" msgid "mega" -msgstr "" +msgstr "Omega" #. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7434,12 +7445,13 @@ #. 📯 (U+1F4EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "POSTAL_HORN\n" "LngText.text" msgid "horn" -msgstr "" +msgstr "panís" #. 📰 (U+1F4F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7641,21 +7653,23 @@ #. 🔏 (U+1F50F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "LOCK_WITH_INK_PEN\n" "LngText.text" msgid "lock2" -msgstr "" +msgstr "bloqueig" #. 🔐 (U+1F510), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOSED_LOCK_WITH_KEY\n" "LngText.text" msgid "lock3" -msgstr "" +msgstr "bloqueig" #. 🔑 (U+1F511), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7983,110 +7997,122 @@ #. 🕜 (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "1.30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "2.30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "3.30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "4.30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "5.30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "6.30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "7.30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "8.30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "9.30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "10.30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "11.30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "12.30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji @@ -8217,12 +8243,13 @@ #. 😉 (U+1F609), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "WINKING_FACE\n" "LngText.text" msgid "wink" -msgstr "" +msgstr "enllaç" #. 😊 (U+1F60A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8352,30 +8379,33 @@ #. 😘 (U+1F618), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "FACE_THROWING_A_KISS\n" "LngText.text" msgid "kiss2" -msgstr "" +msgstr "petó" #. 😙 (U+1F619), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "KISSING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "kiss3" -msgstr "" +msgstr "petó" #. 😚 (U+1F61A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "KISSING_FACE_WITH_CLOSED_EYES\n" "LngText.text" msgid "kiss4" -msgstr "" +msgstr "petó" #. 😛 (U+1F61B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9297,12 +9327,13 @@ #. 🚵 (U+1F6B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MOUNTAIN_BICYCLIST\n" "LngText.text" msgid "bicyclist2" -msgstr "" +msgstr "ciclista" #. 🚶 (U+1F6B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-5.0.1~rc2/translations/source/ca/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/ca/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/ca/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ca/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-27 00:11+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po libreoffice-5.0.2~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po --- libreoffice-5.0.1~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-06-03 17:06+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-01 15:38+0000\n" +"Last-Translator: Christian Lohmaier \n" "Language-Team: LANGUAGE \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1433351190.000000\n" +"X-POOTLE-MTIME: 1441121929.000000\n" #: 01010000.xhp msgctxt "" @@ -1430,7 +1430,7 @@ "4\n" "help.text" msgid "Creates a full page of labels or business cards." -msgstr "Crea tota una pàgina d'etiquetes o de targetes de visita." +msgstr "Crea tota una pàgina d'etiquetes o de targetes de visita." #: 01010203.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-14 21:58+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-03 19:54+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439589518.000000\n" +"X-POOTLE-MTIME: 1441310086.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3307,8 +3307,8 @@ "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" -msgstr "Emplena" +msgid "F~ill" +msgstr "~Emplena" #: CalcCommands.xcu msgctxt "" @@ -15153,8 +15153,8 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" -msgstr "Mode d'ed~ició" +msgid "E~dit Mode" +msgstr "Mode d'~edició" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/ca/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/ca/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/ca/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ca/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-14 21:34+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-03 19:54+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439588082.000000\n" +"X-POOTLE-MTIME: 1441310046.000000\n" #: condformatdlg.src msgctxt "" @@ -4923,7 +4923,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "Interval o expressió de fórmula" @@ -4999,6 +4999,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Interval" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/ca/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/ca/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/ca/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ca/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-05-26 11:48+0000\n" -"Last-Translator: Joan \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-03 19:55+0000\n" +"Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369568939.0\n" +"X-POOTLE-MTIME: 1441310123.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Per defecte" +msgid "According to layout" +msgstr "Segons la disposició" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/ca-valencia/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/ca-valencia/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/ca-valencia/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ca-valencia/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 23:17+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 12:10+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435274241.000000\n" +"X-POOTLE-MTIME: 1439554204.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8000,7 +8000,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8009,7 +8009,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8018,7 +8018,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8027,7 +8027,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8036,7 +8036,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8045,7 +8045,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8054,7 +8054,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8063,7 +8063,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8072,7 +8072,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8081,7 +8081,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8090,7 +8090,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8099,7 +8099,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/ca-valencia/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/ca-valencia/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/ca-valencia/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ca-valencia/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-27 00:11+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-12 03:20+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 12:32+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431400809.000000\n" +"X-POOTLE-MTIME: 1439555534.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3304,12 +3304,13 @@ msgstr "Suprimeix el salt de ~pàgina" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Emplena" #: CalcCommands.xcu @@ -15157,12 +15158,13 @@ msgstr "~Pics i numeració..." #: GenericCommands.xcu +#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "Mode d'ed~ició" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/ca-valencia/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/ca-valencia/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/ca-valencia/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ca-valencia/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-14 12:44+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" @@ -4927,7 +4927,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5005,6 +5005,15 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Interval" + +#: globstr.src +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" "STR_HEADER_COND\n" "string.text" msgid "First Condition" @@ -7768,13 +7777,14 @@ msgstr "El mètode utilitzat per formar diferències: tipus = 0 indica el mètode americà (NASD), tipus = 1 indica el mètode europeu." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_NETWORKDAYS\n" "1\n" "string.text" msgid "Returns the number of workdays between two dates using arguments to indicate weekenddays and holidays." -msgstr "" +msgstr "Retorna el nombre de dies feiners entre dues dates usant arguments per a indicar els caps de setmana i els dies festius." #: scfuncs.src msgctxt "" @@ -13998,13 +14008,14 @@ msgstr "Linear_type" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n" "7\n" "string.text" msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears." -msgstr "" +msgstr "Si el tipus = 0, les lineals es calcularan a través del punt zero, o si no les lineals mogudes." #: scfuncs.src msgctxt "" @@ -14079,13 +14090,14 @@ msgstr "Function_type" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n" "7\n" "string.text" msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." -msgstr "" +msgstr "Si el tipus = 0, les funcions es calcularan en la forma y=m^x, o també y=b*m^x." #: scfuncs.src msgctxt "" @@ -15774,13 +15786,14 @@ msgstr "Tipus" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_EQ\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "Orde de la seqüència: 0 o res significa descendent, i qualsevol altre valor que no siga 0 significa ascendent." #: scfuncs.src msgctxt "" @@ -15837,13 +15850,14 @@ msgstr "Tipus" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_AVG\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "Orde de la seqüència: 0 o res significa descendent, i qualsevol altre valor que no siga 0 significa ascendent." #: scfuncs.src msgctxt "" @@ -16458,22 +16472,24 @@ msgstr "Acumulada" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NEG_BINOM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 o FALS calcula la funció de densitat de probabilitat. Qualsevol altre valor o CERT calcula la funció de distribució acumulada." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CRIT_BINOM\n" "1\n" "string.text" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "" +msgstr "Retorna el valor més petit la distribució binomial acumulada del qual és més gran o igual que un valor de criteri." #: scfuncs.src msgctxt "" @@ -16872,13 +16888,14 @@ msgstr "C" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 o FALS calcula la funció de densitat de probabilitat. Qualsevol altre valor o CERT calcula la funció de distribució acumulada." #: scfuncs.src msgctxt "" @@ -16962,13 +16979,14 @@ msgstr "nombre" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "" +msgstr "Valor de probabilitat la distribució normal inversa del qual s'ha de calcular." #: scfuncs.src msgctxt "" @@ -17072,13 +17090,14 @@ msgstr "Acumulada" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STD_NORM_DIST_MS\n" "5\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 o FALS calcula la funció de densitat de probabilitat. Qualsevol altre valor o CERT calcula la funció de distribució acumulada." #: scfuncs.src msgctxt "" @@ -17126,13 +17145,14 @@ msgstr "nombre" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_S_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "" +msgstr "Valor de probabilitat la distribució normal estàndard inversa del qual s'ha de calcular." #: scfuncs.src msgctxt "" @@ -17632,13 +17652,14 @@ msgstr "0 o FALS calcula la funció de densitat de probabilitat. Qualsevol altre valor, CERT o ometre'l calcula la funció de distribució acumulada." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "1\n" "string.text" msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." -msgstr "" +msgstr "Retorna el valor de la funció de densitat de probabilitat o de la funció de distribució acumulada per a la distribució gamma." #: scfuncs.src msgctxt "" @@ -17704,13 +17725,14 @@ msgstr "Acumulada" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "0 o FALS calcula la funció de densitat de probabilitat. Qualsevol altre valor o CERT calcula la funció de distribució acumulada." #: scfuncs.src msgctxt "" @@ -18856,13 +18878,14 @@ msgstr "acumulada" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_DIST_MS\n" "7\n" "string.text" msgid "True calculates the cumulative distribution function, false the probability density function." -msgstr "" +msgstr "Acumulat. CERT calcula la funció de distribució acumulada, FALS calcula la funció de massa de probabilitat." #: scfuncs.src #, fuzzy @@ -25990,57 +26013,3 @@ "string.text" msgid "Collapse Formula Bar" msgstr "Redueix la barra de fórmules" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Smilies\n" -"stringlist.text" -msgid "3 Smilies" -msgstr "3 emoticones" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Colored Smilies\n" -"stringlist.text" -msgid "3 Colored Smilies" -msgstr "3 emoticones de colors" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" -"1\n" -"string.text" -msgid "Returns the day of the week for the date value as an integer (1-7)." -msgstr "Retorna el dia de la setmana per al valor de la data com a enter (1-7)." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n" -"7\n" -"string.text" -msgid "If given and not equal to zero then rounded down according to amount when a negative number and significance." -msgstr "Si s'indica, i no és igual a zero, s'arrodoneix cap avall segons la quantitat quan és un valor negatiu significatiu." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MS\n" -"1\n" -"string.text" -msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance." -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ENCODEURL\n" -"3\n" -"string.text" -msgid "A string to be URL encoded" -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/ca-valencia/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/ca-valencia/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/ca-valencia/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ca-valencia/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-05-26 11:48+0000\n" -"Last-Translator: Joan \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 13:01+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369568939.0\n" +"X-POOTLE-MTIME: 1439557262.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Per defecte" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/cs/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/cs/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/cs/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cs/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-19 19:49+0000\n" -"Last-Translator: Stanislav Horáček \n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 12:18+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437335346.000000\n" +"X-POOTLE-MTIME: 1439554697.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7983,110 +7983,122 @@ #. 🕜 (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "1:30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "2:30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "3:30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "4:30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "5:30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "6:30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "7:30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "8:30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "9:30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "10:30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "11:30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "12:30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-29 19:51+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 12:40+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438199469.000000\n" +"X-POOTLE-MTIME: 1439556053.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3302,12 +3302,13 @@ msgstr "Smazat ~zalomení stránky" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "V~yplnit" #: CalcCommands.xcu @@ -15148,12 +15149,13 @@ msgstr "Odrážky a číslování..." #: GenericCommands.xcu +#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "Rež~im úprav" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/cs/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/cs/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/cs/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cs/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-10 14:13+0000\n" -"Last-Translator: Stanislav Horáček \n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 12:52+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436537610.000000\n" +"X-POOTLE-MTIME: 1439556767.000000\n" #: condformatdlg.src msgctxt "" @@ -4920,10 +4920,11 @@ msgstr "Název" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "Oblast nebo vzorec" @@ -4999,6 +5000,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Oblast" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/cs/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/cs/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/cs/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cs/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-06-01 13:33+0000\n" -"Last-Translator: Stanislav \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 13:08+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401629594.000000\n" +"X-POOTLE-MTIME: 1439557727.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Výchozí" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/cs/sw/source/ui/utlui.po libreoffice-5.0.2~rc2/translations/source/cs/sw/source/ui/utlui.po --- libreoffice-5.0.1~rc2/translations/source/cs/sw/source/ui/utlui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cs/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-04-19 01:45+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/cy/cui/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/cy/cui/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/cy/cui/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cy/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-07 10:11+0000\n" +"PO-Revision-Date: 2015-08-27 18:30+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436263911.000000\n" +"X-POOTLE-MTIME: 1440700225.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -6080,7 +6080,7 @@ "label\n" "string.text" msgid "Edit..." -msgstr "Golygu…" +msgstr "Golygu..." #: hangulhanjaoptdialog.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/cy/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/cy/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/cy/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cy/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-07 10:21+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-14 16:01+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436264503.000000\n" +"X-POOTLE-MTIME: 1442246501.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7987,7 +7987,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "1:30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -7996,7 +7996,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "2:30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8005,7 +8005,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "3:30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8014,7 +8014,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "4:30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8023,7 +8023,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "5:30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8032,7 +8032,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "6:30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8041,7 +8041,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "7:30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8050,7 +8050,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "8:30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8059,7 +8059,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "9:30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8068,7 +8068,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "10:30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8077,7 +8077,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "11:30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8086,7 +8086,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "12:30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/cy/filter/source/config/fragments/filters.po libreoffice-5.0.2~rc2/translations/source/cy/filter/source/config/fragments/filters.po --- libreoffice-5.0.1~rc2/translations/source/cy/filter/source/config/fragments/filters.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cy/filter/source/config/fragments/filters.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-07 09:24+0000\n" +"PO-Revision-Date: 2015-08-27 15:05+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436261058.000000\n" +"X-POOTLE-MTIME: 1440687928.000000\n" #: AbiWord.xcu msgctxt "" @@ -527,7 +527,7 @@ "UIName\n" "value.text" msgid "Microsoft Word 2007-2013 XML" -msgstr "Microsoft Word 97-2003 XML" +msgstr "Microsoft Word 2007-2013 XML" #: MS_Word_2007_XML_Template.xcu msgctxt "" @@ -536,7 +536,7 @@ "UIName\n" "value.text" msgid "Microsoft Word 2007-2013 XML Template" -msgstr "Templed XML Microsoft Word 97-2013" +msgstr "Templed XML Microsoft Word 2007-2013 XML" #: MS_Word_95.xcu msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-07 10:07+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-14 16:01+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436263633.000000\n" +"X-POOTLE-MTIME: 1442246518.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3307,8 +3307,8 @@ "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" -msgstr "Llanw" +msgid "F~ill" +msgstr "L~lanw" #: CalcCommands.xcu msgctxt "" @@ -15153,7 +15153,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "Modd ~Golygu" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/cy/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/cy/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/cy/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cy/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-07 10:03+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-14 16:02+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436263412.000000\n" +"X-POOTLE-MTIME: 1442246528.000000\n" #: condformatdlg.src msgctxt "" @@ -4923,7 +4923,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "Mynegiad ystod neu fformiwla" @@ -5001,6 +5001,15 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Ystod" + +#: globstr.src +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" "STR_HEADER_COND\n" "string.text" msgid "First Condition" @@ -5595,7 +5604,7 @@ "STR_PRINT_PREVIEW_NODATA\n" "string.text" msgid "No Data" -msgstr "Dim Data [" +msgstr "Dim Data" #: globstr.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/cy/sc/uiconfig/scalc/ui.po libreoffice-5.0.2~rc2/translations/source/cy/sc/uiconfig/scalc/ui.po --- libreoffice-5.0.1~rc2/translations/source/cy/sc/uiconfig/scalc/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cy/sc/uiconfig/scalc/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-07 10:08+0000\n" +"PO-Revision-Date: 2015-08-27 18:30+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: none\n" "Language: cy\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436263687.000000\n" +"X-POOTLE-MTIME: 1440700247.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -8543,7 +8543,7 @@ "label\n" "string.text" msgid "Edit..." -msgstr "Golygu…" +msgstr "Golygu..." #: solverprogressdialog.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/cy/sd/source/ui/app.po libreoffice-5.0.2~rc2/translations/source/cy/sd/source/ui/app.po --- libreoffice-5.0.1~rc2/translations/source/cy/sd/source/ui/app.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cy/sd/source/ui/app.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-07 09:28+0000\n" +"PO-Revision-Date: 2015-08-27 18:03+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436261285.000000\n" +"X-POOTLE-MTIME: 1440698590.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -977,7 +977,7 @@ "SID_RULER\n" "menuitem.text" msgid "View ~Ruler" -msgstr "Gweld _ Pren Mesur" +msgstr "Gweld ~Pren Mesur" #: menuids_tmpl.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/cy/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/cy/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/cy/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cy/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-06-17 12:22+0000\n" -"Last-Translator: Rhoslyn \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-14 16:02+0000\n" +"Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1371471744.0\n" +"X-POOTLE-MTIME: 1442246533.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Rhagosodedig" +msgid "According to layout" +msgstr "Yn ôl y cynllun" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/cy/svx/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/cy/svx/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/cy/svx/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cy/svx/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-07 09:28+0000\n" +"PO-Revision-Date: 2015-08-27 18:03+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436261309.000000\n" +"X-POOTLE-MTIME: 1440698614.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -1490,7 +1490,7 @@ "label\n" "string.text" msgid "S_urface angle" -msgstr "~Ongl wyneb" +msgstr "Ongl _wyneb" #: docking3deffects.ui msgctxt "" @@ -1679,7 +1679,7 @@ "label\n" "string.text" msgid "_Projection X" -msgstr "_Tafluniad ~X" +msgstr "_Tafluniad X" #: docking3deffects.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/cy/sw/uiconfig/swriter/ui.po libreoffice-5.0.2~rc2/translations/source/cy/sw/uiconfig/swriter/ui.po --- libreoffice-5.0.1~rc2/translations/source/cy/sw/uiconfig/swriter/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cy/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-14 13:43+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-08-27 18:31+0000\n" +"Last-Translator: Rhoslyn Prys \n" "Language-Team: none\n" "Language: cy\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439559830.000000\n" +"X-POOTLE-MTIME: 1440700303.000000\n" #: abstractdialog.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/cy/uui/source.po libreoffice-5.0.2~rc2/translations/source/cy/uui/source.po --- libreoffice-5.0.1~rc2/translations/source/cy/uui/source.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/cy/uui/source.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-07 10:05+0000\n" +"PO-Revision-Date: 2015-08-27 18:38+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436263527.000000\n" +"X-POOTLE-MTIME: 1440700739.000000\n" #: alreadyopen.src msgctxt "" @@ -863,7 +863,7 @@ "Nid oes modd llwytho'r gydran, efallai ei fod wedi torri neu fod y gosodiad yn anghyflawn.\n" "Neges gwall llawn:\n" "\n" -" $(ARG1)." +" $(ARG1)." #: ids.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/da/dbaccess/source/ui/dlg.po libreoffice-5.0.2~rc2/translations/source/da/dbaccess/source/ui/dlg.po --- libreoffice-5.0.1~rc2/translations/source/da/dbaccess/source/ui/dlg.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/da/dbaccess/source/ui/dlg.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-20 15:07+0000\n" -"Last-Translator: Jesper Hertel \n" +"PO-Revision-Date: 2015-08-25 18:49+0000\n" +"Last-Translator: Jeppe Bundsgaard \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440083230.000000\n" +"X-POOTLE-MTIME: 1440528560.000000\n" #: AutoControls.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/da/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/da/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/da/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/da/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-20 15:23+0000\n" -"Last-Translator: Jesper Hertel \n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-13 19:40+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440084233.000000\n" +"X-POOTLE-MTIME: 1442173241.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7987,7 +7987,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "1:30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -7996,7 +7996,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "2:30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8005,7 +8005,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "3:30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8014,7 +8014,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "4:30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8023,7 +8023,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "5:30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8032,7 +8032,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "6:30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8041,7 +8041,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "7:30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8050,7 +8050,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "8:30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8059,7 +8059,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "9:30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8068,7 +8068,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "10:30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8077,7 +8077,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "11:30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8086,7 +8086,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "12:30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/da/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/da/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/da/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/da/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-27 00:11+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1019,7 +1019,7 @@ "SC_OPCODE_FLOOR_MS\n" "string.text" msgid "FLOOR.XCL" -msgstr "" +msgstr "GULV.XCL" #: core_resource.src msgctxt "" @@ -1028,7 +1028,7 @@ "SC_OPCODE_FLOOR_MATH\n" "string.text" msgid "FLOOR.MATH" -msgstr "" +msgstr "GULV.MAT" #: core_resource.src #, fuzzy diff -Nru libreoffice-5.0.1~rc2/translations/source/da/helpcontent2/source/text/sbasic/shared.po libreoffice-5.0.2~rc2/translations/source/da/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.0.1~rc2/translations/source/da/helpcontent2/source/text/sbasic/shared.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/da/helpcontent2/source/text/sbasic/shared.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-13 10:21+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-08-25 18:43+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439461295.000000\n" +"X-POOTLE-MTIME: 1440528214.000000\n" #: 00000002.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/da/helpcontent2/source/text/shared/00.po libreoffice-5.0.2~rc2/translations/source/da/helpcontent2/source/text/shared/00.po --- libreoffice-5.0.1~rc2/translations/source/da/helpcontent2/source/text/shared/00.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/da/helpcontent2/source/text/shared/00.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-07-19 22:04+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-01 18:08+0000\n" +"Last-Translator: Christian Lohmaier \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437343492.000000\n" +"X-POOTLE-MTIME: 1441130907.000000\n" #: 00000001.xhp msgctxt "" @@ -7165,7 +7165,7 @@ "555\n" "help.text" msgid "Choose Edit - Track Changes" -msgstr "Vælg Rediger - Følg ændringer" +msgstr "Vælg Rediger - Følg ændringer" #: 00000402.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/da/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.0.2~rc2/translations/source/da/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.0.1~rc2/translations/source/da/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/da/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 @@ -5,7 +5,7 @@ "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" "PO-Revision-Date: 2015-08-20 15:08+0000\n" -"Last-Translator: Jesper Hertel \n" +"Last-Translator: Jeppe Bundsgaard \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/da/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/da/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/da/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/da/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-14 12:46+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-13 19:41+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439556417.000000\n" +"X-POOTLE-MTIME: 1442173268.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3307,7 +3307,7 @@ "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Fyld" #: CalcCommands.xcu @@ -15153,7 +15153,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "Redigeringstilstand" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/da/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.0.2~rc2/translations/source/da/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.0.1~rc2/translations/source/da/officecfg/registry/data/org/openoffice/Office.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/da/officecfg/registry/data/org/openoffice/Office.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-06-24 08:11+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-08-25 18:36+0000\n" +"Last-Translator: Jeppe Bundsgaard \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435133498.000000\n" +"X-POOTLE-MTIME: 1440527772.000000\n" #: Addons.xcu msgctxt "" @@ -89,7 +89,6 @@ msgstr "RYD SKÆRM" #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m10\n" @@ -99,7 +98,6 @@ msgstr "Logo-kommandolinje (tryk retur for udførelse af kommando eller F1 for hjælp)" #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m09\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/da/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/da/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/da/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/da/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-14 13:00+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-13 19:41+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439557226.000000\n" +"X-POOTLE-MTIME: 1442173276.000000\n" #: condformatdlg.src msgctxt "" @@ -4923,7 +4923,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "Område eller formeludtryk" @@ -4999,6 +4999,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Område" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/da/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/da/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/da/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/da/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-05-24 21:35+0000\n" -"Last-Translator: laugesen \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 13:16+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369431324.0\n" +"X-POOTLE-MTIME: 1439558203.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Standard" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/da/svtools/source/java.po libreoffice-5.0.2~rc2/translations/source/da/svtools/source/java.po --- libreoffice-5.0.1~rc2/translations/source/da/svtools/source/java.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/da/svtools/source/java.po 2015-09-17 13:33:11.000000000 +0000 @@ -5,7 +5,7 @@ "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" "PO-Revision-Date: 2015-08-20 14:58+0000\n" -"Last-Translator: Jesper Hertel \n" +"Last-Translator: Jeppe Bundsgaard \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/da/sw/uiconfig/swriter/ui.po libreoffice-5.0.2~rc2/translations/source/da/sw/uiconfig/swriter/ui.po --- libreoffice-5.0.1~rc2/translations/source/da/sw/uiconfig/swriter/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/da/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-20 14:58+0000\n" -"Last-Translator: Jesper Hertel \n" +"PO-Revision-Date: 2015-08-25 18:36+0000\n" +"Last-Translator: Jeppe Bundsgaard \n" "Language-Team: none\n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440082710.000000\n" +"X-POOTLE-MTIME: 1440527783.000000\n" #: abstractdialog.ui msgctxt "" @@ -10597,7 +10597,6 @@ msgstr "Kolonne:" #: opttablepage.ui -#, fuzzy msgctxt "" "opttablepage.ui\n" "label14\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/basctl/source/basicide.po libreoffice-5.0.2~rc2/translations/source/de/basctl/source/basicide.po --- libreoffice-5.0.1~rc2/translations/source/de/basctl/source/basicide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/basctl/source/basicide.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-07-26 06:02+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2015-09-02 15:27+0000\n" +"Last-Translator: Christian Lohmaier \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437890574.000000\n" +"X-POOTLE-MTIME: 1441207642.000000\n" #: basicprint.src msgctxt "" @@ -871,6 +871,7 @@ "\n" "Benennen Sie den Dialog um, um den vorhandenen beizubehalten,\n" "oder ersetzen Sie den gegenwärtigen Dialog.\n" +" " #: basidesh.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/cui/source/options.po libreoffice-5.0.2~rc2/translations/source/de/cui/source/options.po --- libreoffice-5.0.1~rc2/translations/source/de/cui/source/options.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/cui/source/options.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-06-20 05:16+0000\n" +"PO-Revision-Date: 2015-09-15 11:57+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434777397.000000\n" +"X-POOTLE-MTIME: 1442318269.000000\n" #: connpooloptions.src msgctxt "" @@ -835,7 +835,7 @@ "Basic IDE Options\n" "itemlist.text" msgid "Basic IDE Options" -msgstr "Optionen für die Basic-IDE" +msgstr "Basic-IDE" #: treeopt.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/cui/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/de/cui/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/de/cui/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-28 11:46+0000\n" +"PO-Revision-Date: 2015-08-28 09:47+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: none\n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438083983.000000\n" +"X-POOTLE-MTIME: 1440755264.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -9415,7 +9415,7 @@ "1\n" "stringlist.text" msgid "Space" -msgstr "Leerezeichen" +msgstr "Leerzeichen" #: numberingpositionpage.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/de/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/de/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-26 05:18+0000\n" -"Last-Translator: Christian Kühl \n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-02 15:31+0000\n" +"Last-Translator: Christian Lohmaier \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437887892.000000\n" +"X-POOTLE-MTIME: 1441207881.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7987,8 +7987,8 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" -msgstr "Uhr 1:30" +msgid "1.30" +msgstr "Uhr 1.30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7996,8 +7996,8 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" -msgstr "Uhr 2:30" +msgid "2.30" +msgstr "Uhr 2.30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8005,8 +8005,8 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" -msgstr "Uhr 3:30" +msgid "3.30" +msgstr "Uhr 3.30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8014,8 +8014,8 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" -msgstr "Uhr 4:30" +msgid "4.30" +msgstr "Uhr 4.30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8023,8 +8023,8 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" -msgstr "Uhr 5:30" +msgid "5.30" +msgstr "Uhr 5.30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8032,8 +8032,8 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" -msgstr "Uhr 6:30" +msgid "6.30" +msgstr "Uhr 6.30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8041,8 +8041,8 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" -msgstr "Uhr 7:30" +msgid "7.30" +msgstr "Uhr 7.30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8050,8 +8050,8 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" -msgstr "Uhr 8:30" +msgid "8.30" +msgstr "Uhr 8.30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8059,8 +8059,8 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" -msgstr "Uhr 9:30" +msgid "9.30" +msgstr "Uhr 9.30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8068,8 +8068,8 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" -msgstr "Uhr 10:30" +msgid "10.30" +msgstr "Uhr 10.30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8077,8 +8077,8 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" -msgstr "Uhr 11:30" +msgid "11.30" +msgstr "Uhr 11.30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8086,8 +8086,8 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" -msgstr "Uhr 0:30" +msgid "12.30" +msgstr "Uhr 0.30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/sbasic/guide.po libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/guide.po --- libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/sbasic/guide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/guide.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-07-28 03:07+0000\n" -"Last-Translator: Christian Lohmaier \n" +"PO-Revision-Date: 2015-08-27 09:31+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438052829.000000\n" +"X-POOTLE-MTIME: 1440667902.000000\n" #: access2base.xhp msgctxt "" @@ -126,7 +126,7 @@ "par_idA2B013\n" "help.text" msgid "the support of the shortcut notations like Forms!myForm!myControl" -msgstr "die Unterstützung der Kurznotationen wie Forms!myForm!myControl" +msgstr "die Unterstützung der Kurzschreibweise wie Forms!myForm!myControl" #: access2base.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-07 12:39+0000\n" -"Last-Translator: Christian Lohmaier \n" +"PO-Revision-Date: 2015-08-27 09:35+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438951195.000000\n" +"X-POOTLE-MTIME: 1440668100.000000\n" #: 00000002.xhp msgctxt "" @@ -138,7 +138,7 @@ "106\n" "help.text" msgid "URL Notation" -msgstr "URL Notation" +msgstr "URL-Schreibweise" #: 00000002.xhp msgctxt "" @@ -174,7 +174,7 @@ "110\n" "help.text" msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (/) is used as a path separator. For example, a file referred to as C:\\My File.sxw on the local host in \"Windows notation\" becomes file:///C|/My%20File.sxw in URL notation." -msgstr "In der URL-Notation sind bestimmte Sonderzeichen nicht zulässig. Sie werden entweder durch andere Zeichen ersetzt oder codiert. Als Pfadtrenner wird der Schrägstrich (/) verwendet. Ein Verweis auf eine Datei im lokalen Rechner, der in \"Windows-Notation\" C:\\Meine Datei.sxw lautet, wird in URL-Notation zu file:///C|/Meine%20Datei.sxw." +msgstr "In der URL-Schreibweise sind bestimmte Sonderzeichen nicht zulässig. Sie werden entweder durch andere Zeichen ersetzt oder codiert. Als Pfadtrenner wird der Schrägstrich (/) verwendet. Ein Verweis auf eine Datei im lokalen Rechner, der in \"Windows-Schreibweise\" C:\\Meine Datei.sxw lautet, wird in URL-Schreibweise zu file:///C|/Meine%20Datei.sxw." #: 00000003.xhp msgctxt "" @@ -7820,7 +7820,7 @@ "10\n" "help.text" msgid "Positive numeric expressions are printed with a leading space. Negative expressions are printed with a leading minus sign. If a certain range is exceeded for floating-point values, the respective numeric expression is printed in exponential notation." -msgstr "Bei der Ausgabe von positiven numerischen Ausdrücken wird ein Leerzeichen quasi als imaginäres Plus-Zeichen vorangestellt. Negative Ausdrücke werden mit vorgestelltem Minuszeichen ausgegeben. Wird bei Fließkommawerten ein bestimmter Bereich überschritten, wird der jeweilige numerische Ausdruck in einer Exponential-Notation ausgegeben." +msgstr "Bei der Ausgabe von positiven numerischen Ausdrücken wird ein Leerzeichen quasi als imaginäres Plus-Zeichen vorangestellt. Negative Ausdrücke werden mit vorgestelltem Minuszeichen ausgegeben. Wird bei Fließkommawerten ein bestimmter Bereich überschritten, wird der jeweilige numerische Ausdruck in einer Exponential-Schreibweise ausgegeben." #: 03010103.xhp msgctxt "" @@ -10942,7 +10942,7 @@ "6\n" "help.text" msgid "Text: Any string expression that contains the drive letter of the new drive. If you want, you can use URL notation." -msgstr "Text: Ein beliebiger Zeichenkettenausdruck, der den Laufwerksbuchstaben des neuen Laufwerks enthält. Falls gewünscht können Sie auch die URL-Notation verwenden." +msgstr "Text: Ein beliebiger Zeichenkettenausdruck, der den Laufwerksbuchstaben des neuen Laufwerks enthält. Falls gewünscht können Sie auch die URL-Schreibweise verwenden." #: 03020402.xhp msgctxt "" @@ -11172,7 +11172,7 @@ "8\n" "help.text" msgid "Text: Any string expression that specifies the search path, directory or file. This argument can only be specified the first time that you call the Dir function. If you want, you can enter the path in URL notation." -msgstr "Text: Ein beliebiger Zeichenkettenausdruck, der den Suchpfad, das Verzeichnis oder die Datei angibt. Dieses Argument kann nur beim ersten Aufruf der Dir-Funktion angegeben werden. Falls gewünscht, können Sie den Pfad in URL-Notation eingeben." +msgstr "Text: Ein beliebiger Zeichenkettenausdruck, der den Suchpfad, das Verzeichnis oder die Datei angibt. Dieses Argument kann nur beim ersten Aufruf der Dir-Funktion angegeben werden. Falls gewünscht, können Sie den Pfad in URL-Schreibweise eingeben." #: 03020404.xhp msgctxt "" @@ -11564,7 +11564,7 @@ "6\n" "help.text" msgid "TextFrom: Any string expression that specifies the name of the file that you want to copy. The expression can contain optional path and drive information. If you want, you can enter a path in URL notation." -msgstr "TextVon: Ein beliebiger Zeichenkettenausdruck, der den Namen der zu kopierenden Datei angibt. Der Ausdruck kann optional auch Pfad- und Laufwerksangaben enthalten. Falls gewünscht, können Sie einen Pfad in URL-Notation eingeben." +msgstr "TextVon: Ein beliebiger Zeichenkettenausdruck, der den Namen der zu kopierenden Datei angibt. Der Ausdruck kann optional auch Pfad- und Laufwerksangaben enthalten. Falls gewünscht, können Sie einen Pfad in URL-Schreibweise eingeben." #: 03020406.xhp msgctxt "" @@ -11573,7 +11573,7 @@ "7\n" "help.text" msgid "TextTo: Any string expression that specifies where you want to copy the source file to. The expression can contain the destination drive, the path, and file name, or the path in URL notation." -msgstr "TextNach: Ein beliebiger Zeichenkettenausdruck, der angibt, wohin Sie die Quelldatei kopieren möchten. Der Ausdruck kann das Ziellaufwerk, den Pfad und den Dateinamen oder den Pfad in URL-Notation enthalten." +msgstr "TextNach: Ein beliebiger Zeichenkettenausdruck, der angibt, wohin Sie die Quelldatei kopieren möchten. Der Ausdruck kann das Ziellaufwerk, den Pfad und den Dateinamen oder den Pfad in URL-Schreibweise enthalten." #: 03020406.xhp msgctxt "" @@ -11661,7 +11661,7 @@ "6\n" "help.text" msgid "Text: Any string expression that contains an unambiguous (no wildcards) file specification. You can also use URL notation." -msgstr "Text: Ein beliebiger Zeichenkettenausdruck, der eine eindeutige Dateiangabe (ohne Platzhalterzeichen) enthält. Sie können auch die URL-Notation verwenden." +msgstr "Text: Ein beliebiger Zeichenkettenausdruck, der eine eindeutige Dateiangabe (ohne Platzhalterzeichen) enthält. Sie können auch die URL-Schreibweise verwenden." #: 03020407.xhp msgctxt "" @@ -11767,7 +11767,7 @@ "8\n" "help.text" msgid "Text: Any string expression that contains an unambiguous file specification. You can also use URL notation." -msgstr "Text: Ein beliebiger Zeichenkettenausdruck, der eine eindeutige Dateiangabe enthält. Sie können auch die URL-Notation verwenden." +msgstr "Text: Ein beliebiger Zeichenkettenausdruck, der eine eindeutige Dateiangabe enthält. Sie können auch die URL-Schreibweise verwenden." #: 03020408.xhp msgctxt "" @@ -11873,7 +11873,7 @@ "8\n" "help.text" msgid "Text: Any string expression that contains an unambiguous file specification. You can also use URL notation." -msgstr "Text: Ein beliebiger Zeichenkettenausdruck, der eine eindeutige Dateiangabe enthält. Sie können auch die URL-Notation verwenden." +msgstr "Text: Ein beliebiger Zeichenkettenausdruck, der eine eindeutige Dateiangabe enthält. Sie können auch die URL-Schreibweise verwenden." #: 03020409.xhp msgctxt "" @@ -12033,7 +12033,7 @@ "6\n" "help.text" msgid "File: Any string expression that contains an unambiguous file specification. You can also use URL notation." -msgstr "Datei: Ein beliebiger Zeichenkettenausdruck, der eine eindeutige Dateiangabe enthält. Sie können auch die URL-Notation verwenden." +msgstr "Datei: Ein beliebiger Zeichenkettenausdruck, der eine eindeutige Dateiangabe enthält. Sie können auch die URL-Schreibweise verwenden." #: 03020410.xhp msgctxt "" @@ -12121,7 +12121,7 @@ "6\n" "help.text" msgid "Text: Any string expression that specifies the name and path of the directory to be created. You can also use URL notation." -msgstr "Text: Ein Zeichenkettenausdruck, der Name und Pfad des anzulegenden Verzeichnisses angibt. Sie können auch die URL-Notation verwenden." +msgstr "Text: Ein Zeichenkettenausdruck, der Name und Pfad des anzulegenden Verzeichnisses angibt. Sie können auch die URL-Schreibweise verwenden." #: 03020411.xhp msgctxt "" @@ -12344,7 +12344,7 @@ "6\n" "help.text" msgid "OldName, NewName: Any string expression that specifies the file name, including the path. You can also use URL notation." -msgstr "NameAlt, NameNeu: Beliebige Zeichenkettenausdrücke, die den Dateinamen einschließlich Pfad angeben. Sie können auch die URL-Notation verwenden." +msgstr "NameAlt, NameNeu: Beliebige Zeichenkettenausdrücke, die den Dateinamen einschließlich Pfad angeben. Sie können auch die URL-Schreibweise verwenden." #: 03020412.xhp msgctxt "" @@ -12432,7 +12432,7 @@ "6\n" "help.text" msgid "Text: Any string expression that specifies the name and path of the directory that you want to delete. You can also use URL notation." -msgstr "Text: Ein beliebiger Zeichenkettenausdruck, der Name und Pfad des zu löschenden Verzeichnisses angibt. Sie können auch die URL-Notation verwenden." +msgstr "Text: Ein beliebiger Zeichenkettenausdruck, der Name und Pfad des zu löschenden Verzeichnisses angibt. Sie können auch die URL-Schreibweise verwenden." #: 03020413.xhp msgctxt "" @@ -12520,7 +12520,7 @@ "6\n" "help.text" msgid "FileName: Name of the file, including the path, that you want to test attributes of. If you do not enter a path, SetAttr searches for the file in the current directory. You can also use URL notation." -msgstr "Dateiname: Name der Datei (einschließlich Pfad), deren Attribute Sie überprüfen bzw. setzen möchten. Wenn Sie keinen Pfad angeben, sucht SetAttr im aktuellen Verzeichnis nach der Datei. Sie können auch die URL-Notation verwenden." +msgstr "Dateiname: Name der Datei (einschließlich Pfad), deren Attribute Sie überprüfen bzw. setzen möchten. Wenn Sie keinen Pfad angeben, sucht SetAttr im aktuellen Verzeichnis nach der Datei. Sie können auch die URL-Schreibweise verwenden." #: 03020414.xhp msgctxt "" @@ -12680,7 +12680,7 @@ "8\n" "help.text" msgid "FileName | DirectoryName: Any string expression that contains an unambiguous file specification. You can also use URL notation." -msgstr "Dateiname | Verzeichnisname: Ein beliebiger Zeichenkettenausdruck, der eine eindeutige Dateiangabe enthält. Sie können auch die URL-Notation verwenden." +msgstr "Dateiname | Verzeichnisname: Ein beliebiger Zeichenkettenausdruck, der eine eindeutige Dateiangabe enthält. Sie können auch die URL-Schreibweise verwenden." #: 03020415.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po --- libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-27 17:02+0000\n" -"Last-Translator: Thomas Hackert \n" +"PO-Revision-Date: 2015-08-27 09:36+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438016520.000000\n" +"X-POOTLE-MTIME: 1440668161.000000\n" #: 01120000.xhp msgctxt "" @@ -11037,7 +11037,7 @@ "183\n" "help.text" msgid "Returns the complete cell address in Lotus(TM) notation." -msgstr "Ergibt die vollständige Zelladresse in Lotus(TM)-Notation." +msgstr "Ergibt die vollständige Zelladresse in Lotus(TM)-Schreibweise." #: 04060104.xhp msgctxt "" @@ -21839,7 +21839,7 @@ "par_id1027200802301348\n" "help.text" msgid "For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used." -msgstr "Für die Kompatibilität besitzen die Funktionen ADRESSE und INDIREKT nun einen optionalen Parameter, der angibt, ob die R1C1-Notation anstatt der üblichen A1-Notation verwendet werden soll." +msgstr "Für die Kompatibilität besitzen die Funktionen ADRESSE und INDIREKT nun einen optionalen Parameter, der angibt, ob die R1C1-Schreibweise anstatt der üblichen A1-Schreibweise verwendet werden soll." #: 04060109.xhp msgctxt "" @@ -21863,7 +21863,7 @@ "par_id102720080230151\n" "help.text" msgid "In both functions, if the argument is inserted with the value 0, then the R1C1 notation is used. If the argument is not given or has a value other than 0, then the A1 notation is used." -msgstr "Bei beiden Funktionen gilt, wenn das Argument mit dem Wert 0 eingefügt wird, dann wird die R1C1-Notation verwendet. Wenn das Argument nicht angegeben wird oder einen Wert ungleich 0 hat, dann wird die A1-Notation verwendet." +msgstr "Bei beiden Funktionen gilt, wenn das Argument mit dem Wert 0 eingefügt wird, dann wird die R1C1-Schreibweise verwendet. Wenn das Argument nicht angegeben wird oder einen Wert ungleich 0 hat, dann wird die A1-Schreibweise verwendet." #: 04060109.xhp msgctxt "" @@ -21871,7 +21871,7 @@ "par_id1027200802301556\n" "help.text" msgid "In case of R1C1 notation, ADDRESS returns address strings using the exclamation mark '!' as the sheet name separator, and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation." -msgstr "Im Falle der R1C1-Notation liefert ADRESSE das Ausrufezeichen '!' als Trenner für den Tabellennamen und INDIREKT erwartet das Ausrufezeichen als Trenner für Tabellennamen. Beide Funktionen benutzen den Punkt '.' als Trenner im Falle der A1-Notation." +msgstr "Im Falle der R1C1-Schreibweise liefert ADRESSE das Ausrufezeichen '!' als Trenner für den Tabellennamen und INDIREKT erwartet das Ausrufezeichen als Trenner für Tabellennamen. Beide Funktionen benutzen den Punkt '.' als Trenner im Falle der A1-Schreibweise." #: 04060109.xhp msgctxt "" @@ -21992,7 +21992,7 @@ "par_id1027200802465915\n" "help.text" msgid "A1 (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used." -msgstr "Wenn A1 (optional) auf 0 gesetzt ist, wird die R1C1 Notation verwendet. Wenn dieser Parameter fehlt oder einen anderen Wert als 0 hat, wird die A1 Notation verwendet." +msgstr "Wenn A1 (optional) auf 0 gesetzt ist, wird die R1C1-Schreibweise verwendet. Wenn dieser Parameter fehlt oder einen anderen Wert als 0 hat, wird die A1-Schreibweise verwendet." #: 04060109.xhp msgctxt "" @@ -22585,7 +22585,7 @@ "par_id1027200802470312\n" "help.text" msgid "A1 (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used." -msgstr "Wenn A1 (optional) auf 0 gesetzt ist, wird die R1C1 Notation verwendet. Wenn dieser Parameter fehlt oder einen anderen Wert als 0 hat, wird die A1 Notation verwendet." +msgstr "Wenn A1 (optional) auf 0 gesetzt ist, wird die R1C1-Schreibweise verwendet. Wenn dieser Parameter fehlt oder einen anderen Wert als 0 hat, wird die A1-Schreibweise verwendet." #: 04060109.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/shared/00.po libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/shared/00.po --- libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 11:24+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-01 17:33+0000\n" +"Last-Translator: Christian Lohmaier \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439465071.000000\n" +"X-POOTLE-MTIME: 1441128822.000000\n" #: 00000001.xhp msgctxt "" @@ -5120,7 +5120,7 @@ "par_id314995724\n" "help.text" msgid "When this option is disabled, Calc will detect and convert only decimal numbers. The rest, including numbers formatted in scientific notation, will be imported as text. A decimal number string can have digits 0-9, thousands separators, and a decimal separator. Thousands separators and decimal separators may vary with the selected language and region." -msgstr "Ist diese Option deaktiviert, erkennt und konvertiert Calc nur Dezimalzahlen. Alle anderen, einschließlich Zahlen in wissenschaftlicher Notation werden als Text importiert. Eine Dezimalzahl dann aus den Ziffern 0-9, Tausendertrennzeichen und einem Dezimaltrenner bestehen. Tausendertrennzeichen und Dezimaltrenner können je nach gewählter Sprache und Region unterschiedlich sein." +msgstr "Ist diese Option deaktiviert, erkennt und konvertiert Calc nur Dezimalzahlen. Alle anderen, einschließlich Zahlen in wissenschaftlicher Schreibweise werden als Text importiert. Eine Dezimalzahl dann aus den Ziffern 0-9, Tausendertrennzeichen und einem Dezimaltrenner bestehen. Tausendertrennzeichen und Dezimaltrenner können je nach gewählter Sprache und Region unterschiedlich sein." #: 00000208.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/shared/01.po libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/shared/01.po --- libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/shared/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/shared/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-13 11:46+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-06 06:32+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439466365.000000\n" +"X-POOTLE-MTIME: 1441521153.000000\n" #: 01010000.xhp msgctxt "" @@ -41610,7 +41610,7 @@ "par_id8326975\n" "help.text" msgid "Inserts a space that will keep bordering characters together on line breaks." -msgstr "Fügt ein Leerzeichen ein, dass angrenzende Zeichen bei Zeilenumbrüchen zusammenhält." +msgstr "Fügt ein Leerzeichen ein, das angrenzende Zeichen bei Zeilenumbrüchen zusammenhält." #: formatting_mark.xhp msgctxt "" @@ -41642,7 +41642,7 @@ "par_id9407330\n" "help.text" msgid "Inserts an invisible hyphen within a word that will appear and create a line break once it becomes the last character in a line." -msgstr "Fügt ein unsichtbares Zeichen in einem Wort ein, das sichtbar wird und einen Zeilenumbruch erzeugt, wenn es das letzte Zeichen auf einer Zeile wird." +msgstr "Fügt ein unsichtbares Trennzeichen in ein Wort ein, das sichtbar wird und einen Zeilenumbruch erzeugt, wenn es das letzte Zeichen in einer Zeile wird." #: formatting_mark.xhp msgctxt "" @@ -41650,7 +41650,7 @@ "hd_id2295907\n" "help.text" msgid "No-width optional break" -msgstr "Optionaler Umbruch ohne Breite" +msgstr "Leerzeichen ohne Breite" #: formatting_mark.xhp msgctxt "" @@ -41658,7 +41658,7 @@ "par_id1536301\n" "help.text" msgid "Inserts an invisible space within a word that will insert a line break once it becomes the last character in a line. Available when complex text layout (CTL) is enabled." -msgstr "Fügt ein unsichtbares Leerzeichen in einem Wort ein, das einen Zeilenumbruch erzeugt, wenn es das letzte Zeichen auf einer Zeile wird. Nur verfügbar, wenn Complex Text Layout (CTL) aktiviert ist." +msgstr "Fügt ein unsichtbares Leerzeichen in ein Wort ein, das einen Zeilenumbruch erzeugt, wenn es das letzte Zeichen in einer Zeile wird. Nur verfügbar, wenn Complex Text Layout (CTL) aktiviert ist." #: formatting_mark.xhp msgctxt "" @@ -41666,7 +41666,7 @@ "hd_id3245643\n" "help.text" msgid "No-width no break" -msgstr "Kein Umbruch ohne Breite" +msgstr "Verbindungszeichen ohne Breite" #: formatting_mark.xhp msgctxt "" @@ -41674,7 +41674,7 @@ "par_id1085238\n" "help.text" msgid "Inserts an invisible space within a word that will keep the word together at the end of a line. Available when complex text layout (CTL) is enabled." -msgstr "Fügt ein unsichtbares Leerzeichen in einem Wort ein, das das Wort am Ende einer Zeile zusammenhält. Nur verfügbar, wenn Complex Text Layout (CTL) aktiviert ist." +msgstr "Fügt ein unsichtbares Leerzeichen in ein Wort ein, welches das Wort am Ende einer Zeile zusammenhält. Nur verfügbar, wenn Complex Text Layout (CTL) aktiviert ist." #: formatting_mark.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po --- libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-06-19 20:36+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-06 05:23+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434746184.000000\n" +"X-POOTLE-MTIME: 1441516982.000000\n" #: aaa_start.xhp msgctxt "" @@ -17225,7 +17225,7 @@ "tit\n" "help.text" msgid "Inserting Non-breaking Spaces, Hyphens and Soft Hyphens" -msgstr "Fügt geschützte Leerzeichen, geschützte Trennzeichen und weiche Trennzeichen ein" +msgstr "Einfügen von geschützten Leerzeichen, geschützten Bindestrichen und weichen Trennzeichen" #: space_hyphen.xhp msgctxt "" @@ -17242,7 +17242,7 @@ "30\n" "help.text" msgid "Inserting Non-breaking Spaces, Hyphens and Soft Hyphens" -msgstr "Einfügen von geschützten Leerzeichen, geschützten Bindestrichen und weichen Trennzeichen" +msgstr "Einfügen von geschützten Leerzeichen, geschützten Bindestrichen und weichen Trennzeichen" #: space_hyphen.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-06-19 20:41+0000\n" +"PO-Revision-Date: 2015-09-04 12:43+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434746464.000000\n" +"X-POOTLE-MTIME: 1441370618.000000\n" #: 01000000.xhp msgctxt "" @@ -7470,7 +7470,7 @@ "29\n" "help.text" msgid "Paragraph end" -msgstr "Absatzende" +msgstr "Absatzenden" #: 01040600.xhp msgctxt "" @@ -7488,7 +7488,7 @@ "31\n" "help.text" msgid "Soft hyphens" -msgstr "Weiche Trennzeichen" +msgstr "Weichen Trennzeichen" #: 01040600.xhp msgctxt "" @@ -7524,7 +7524,7 @@ "35\n" "help.text" msgid "Non-breaking spaces" -msgstr "Geschützte Leerzeichen" +msgstr "Geschützten Zeichen" #: 01040600.xhp msgctxt "" @@ -7533,7 +7533,7 @@ "36\n" "help.text" msgid "Specifies that non-breaking spaces are shown as gray boxes. Non-breaking spaces are not broken at the end of a line and are entered with the Command+Shift+Spacebar Ctrl+Shift+Spacebar shortcut keys." -msgstr "Geschützte Leerzeichen werden als graue Kästchen dargestellt. Geschützte Leerzeichen werden am Zeilenende nicht umgebrochen und werden mit Umschalt+BefehlStrg+Leertaste eingegeben." +msgstr "Geschützte Zeichen werden grau hinterlegt dargestellt und am Zeilenende nicht umgebrochen. Geschützte Leereichen bzw. geschützte Bindestriche werden mit Umschalt+BefehlStrg+Leertaste bzw. +Minus (-) eingegeben." #: 01040600.xhp msgctxt "" @@ -7560,7 +7560,7 @@ "39\n" "help.text" msgid "Breaks" -msgstr "Umbrüche" +msgstr "Umbrüchen" #: 01040600.xhp msgctxt "" @@ -7577,7 +7577,7 @@ "par_idN108E5\n" "help.text" msgid "Hidden text" -msgstr "Ausgeblendeter Text" +msgstr "Ausgeblendetem Text" #: 01040600.xhp msgctxt "" @@ -7594,7 +7594,7 @@ "41\n" "help.text" msgid "Fields: Hidden text (not for HTML documents)" -msgstr "Versteckter Text (nicht in HTML-Dokumenten)" +msgstr "Feldbefehlen: Versteckter Text (nicht in HTML-Dokumenten)" #: 01040600.xhp msgctxt "" @@ -7612,7 +7612,7 @@ "43\n" "help.text" msgid "Fields: Hidden paragraphs (not for HTML documents)" -msgstr "Feldbefehle: Versteckte Absätze (nicht bei HTML-Dokumenten)" +msgstr "Feldbefehlen: Versteckte Absätze (nicht bei HTML-Dokumenten)" #: 01040600.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/simpress/04.po libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/simpress/04.po --- libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/simpress/04.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/simpress/04.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-06-19 20:47+0000\n" +"PO-Revision-Date: 2015-09-06 05:46+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434746877.000000\n" +"X-POOTLE-MTIME: 1441518398.000000\n" #: 01020000.xhp msgctxt "" @@ -836,7 +836,7 @@ "102\n" "help.text" msgid "CtrlCtrl+Hyphen(-)" -msgstr "StrgStrg+Bindestrich(-)" +msgstr "StrgStrg+Minus (-)" #: 01020000.xhp msgctxt "" @@ -854,7 +854,7 @@ "303\n" "help.text" msgid "CommandCtrl+Shift+minus sign (-)" -msgstr "BefehlStrg+Shift+Minuszeichen (-)" +msgstr "BefehlStrg+Umschalt+Minus (-)" #: 01020000.xhp msgctxt "" @@ -872,7 +872,7 @@ "108\n" "help.text" msgid "CommandCtrl+Shift+Space" -msgstr "BefehlStrg+Shift+Leerzeichen" +msgstr "BefehlStrg+Umschalt+Leertaste" #: 01020000.xhp msgctxt "" @@ -881,7 +881,7 @@ "110\n" "help.text" msgid "Non-breaking spaces. Non-breaking spaces are not used for hyphenation and are not expanded if the text is justified." -msgstr "Geschützte Leerzeichen. Geschützte Leerzeichen werden nicht für die Silbentrennung genutzt und nicht angezeigt, wenn der Text ausgerichtet ist." +msgstr "Geschütztes Leerzeichen. Geschützte Leerzeichen werden nicht für die Silbentrennung genutzt und nicht angezeigt, wenn der Text ausgerichtet ist." #: 01020000.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/smath/01.po libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/smath/01.po --- libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/smath/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/smath/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-07-28 06:40+0000\n" +"PO-Revision-Date: 2015-09-01 09:10+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438065610.000000\n" +"X-POOTLE-MTIME: 1441098613.000000\n" #: 02080000.xhp msgctxt "" @@ -1799,7 +1799,7 @@ "75\n" "help.text" msgid "Type ll or << in the Commands window to insert the much less than relation into the formula." -msgstr "Um das Zeichen ist viel kleiner als einzufügen, geben Sie ll oder emph> << im Fenster Kommandos ein." +msgstr "Um das Zeichen ist viel kleiner als einzufügen, geben Sie ll oder << im Fenster Kommandos ein." #: 03090200.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po --- libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-06-19 20:52+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-06 06:39+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434747123.000000\n" +"X-POOTLE-MTIME: 1441521552.000000\n" #: 01120000.xhp msgctxt "" @@ -4175,7 +4175,7 @@ "37\n" "help.text" msgid "Section" -msgstr "Bereich" +msgstr "Bereich" #: 04020100.xhp msgctxt "" @@ -6096,7 +6096,7 @@ "7\n" "help.text" msgid "Meaning" -msgstr "Bedeutung" +msgstr "Bedeutung" #: 04090001.xhp msgctxt "" @@ -23482,7 +23482,7 @@ "3\n" "help.text" msgid "To automatically hyphenate the current or selected paragraphs, choose Format - Paragraph, and then click the Text Flow tab. You can also apply automatic hyphenation to a paragraph style. In text where automatic hyphenation is enabled, the Hyphenation dialog will not find any word to hyphenate." -msgstr "Um im aktuellen oder den ausgewählten Absätzen automatisch Trennstriche einzufügen, wählen Sie Format - Absatz... und klicken dann auf das Register Textfluss. Sie können die automatische Silbentrennung auch auf eine Absatzvorlage anwenden. Bei Text mit automatischer Silbentrennung, wird der Dialog Silbentrennung keine Wörter anzeigen, die getrennt werden können." +msgstr "Um im aktuellen oder den ausgewählten Absätzen automatisch Trennzeichen einzufügen, wählen Sie Format - Absatz... und klicken dann auf das Register Textfluss. Sie können die automatische Silbentrennung auch auf eine Absatzvorlage anwenden. Bei Text mit automatischer Silbentrennung, wird der Dialog Silbentrennung keine Wörter anzeigen, die getrennt werden können." #: 06030000.xhp msgctxt "" @@ -23545,7 +23545,7 @@ "19\n" "help.text" msgid "To exclude paragraphs from the automatic hyphenation, select the paragraphs, choose Format - Paragraph, click the Text Flow tab, and then clear the Automatically check box in the Hyphenation area." -msgstr "Um Absätze von der automatischen Silbentrennung auszuschließen, markieren Sie die Absätze und wählen Format - Absatz, klicken Sie auf das Register Textfluss und deaktivieren das Markierfeld Automatisch im Silbentrennung." +msgstr "Um Absätze von der automatischen Silbentrennung auszuschließen, markieren Sie die Absätze und wählen Format - Absatz, klicken auf das Register Textfluss und deaktivieren das Markierfeld Automatisch im Bereich Silbentrennung." #: 06030000.xhp msgctxt "" @@ -23554,7 +23554,7 @@ "18\n" "help.text" msgid "To disable the Hyphenation dialog and always hyphenate automatically, choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Writing Aids, and select the Hyphenate without inquiry check box." -msgstr "Um die automatischen Vorschlagsdialoge für die Silbentrennung abzuschalten, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Linguistik und aktivieren Sie das Markierfeld Trennen ohne Nachfrage." +msgstr "Um den Dialog Silbentrennung zu deaktivieren und immer automatisch zu trennen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Linguistik und aktivieren Sie das Markierfeld Trennen ohne Nachfrage." #: 06030000.xhp msgctxt "" @@ -23563,7 +23563,7 @@ "17\n" "help.text" msgid "To manually enter a hyphen directly in the document, click in the word where you want to add the hyphen, and then press CommandCtrl+Minus sign (-)." -msgstr "Um ein Trennstrich manuell einzugeben, klicken Sie in dem betreffenden Wort an die gewünschte Trennstelle und drücken dann BefehlStrg+Minus (-)." +msgstr "Um ein weiches Trennzeichen manuell einzugeben, klicken Sie in dem betreffenden Wort an die gewünschte Trennstelle und drücken dann BefehlStrg+Minus (-)." #: 06030000.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.0.1~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-06-19 20:54+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-06 06:36+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434747258.000000\n" +"X-POOTLE-MTIME: 1441521370.000000\n" #: anchor_object.xhp msgctxt "" @@ -7391,7 +7391,7 @@ "42\n" "help.text" msgid "In the Word box, type the word you want to exclude from hyphenation, followed by an equal sign (=), for example, \"pretentious=\"." -msgstr "Geben Sie im Feld Wort das Wort ein, das Sie von der Silbentrennung ausschließen möchten, und setzen Sie ein Gleichheitszeichen (=) an sein Ende, z. B. \"prätentiös=\"." +msgstr "Geben Sie im Feld Wort das Wort ein, das Sie von der Silbentrennung ausschließen möchten, und setzen Sie ein Gleichheitszeichen (=) an sein Ende, z.B. \"prätentiös=\"." #: hyphen_prevent.xhp msgctxt "" @@ -7417,7 +7417,7 @@ "par_id0302200910262761\n" "help.text" msgid "Some words contain special characters that %PRODUCTNAME treats as a hyphen. If you do not want such words to be hyphenated, you can insert a special code that prevents hyphenation at the position where the special code is inserted. Proceed as follows:" -msgstr "Einige Wörter enthalten Sonderzeichen, die %PRODUCTNAME wie Trennzeichen behandelt. Wenn Sie die Trennung solcher Wörter unterbinden wollen, können Sie eine besondere Marke einfügen, die das an der Einfügestelle verhindert. Gehen Sie wie folgt vor:" +msgstr "Einige Wörter enthalten Sonderzeichen, die %PRODUCTNAME wie Trennzeichen behandelt. Wenn Sie die Trennung solcher Wörter unterbinden wollen, können Sie eine besondere Marke einfügen, die das Trennen an der Einfügestelle verhindert. Gehen Sie wie folgt vor:" #: hyphen_prevent.xhp msgctxt "" @@ -7441,7 +7441,7 @@ "par_id0302200910262867\n" "help.text" msgid "Choose Insert - Formatting Mark - No-width no break." -msgstr "Wählen Sie Einfügen - Formatierungszeichen - Verbindungselement ohne Breite." +msgstr "Wählen Sie Einfügen - Formatierungszeichen - Geschütztes Verbindungszeichen ohne Breite." #: hyphen_prevent.xhp msgctxt "" @@ -17383,7 +17383,7 @@ "23\n" "help.text" msgid "You can insert a hyphen where you want on a line, or let $[officename] search for the words to hyphenate, and then offer a suggested hyphenation." -msgstr "Sie können an einer beliebigen Stelle in einer Zeile eine Trennstelle einfügen oder $[officename] nach den zu trennenden Wörtern suchen und dann Trennvorschläge anbieten lassen." +msgstr "Sie können an einer beliebigen Stelle in einer Zeile ein weiches Trennzeichen einfügen oder $[officename] nach den zu trennenden Wörtern suchen und dann Trennvorschläge anbieten lassen." #: using_hyphen.xhp msgctxt "" @@ -17400,7 +17400,7 @@ "24\n" "help.text" msgid "To quickly insert a hyphen, click in the word where you want to add the hyphen, and then press CommandCtrl+Hyphen(-)." -msgstr "Um schnell einen Trennstrich einzufügen, klicken Sie an der gewünschten Stelle in das Wort und drücken dann BefehlStrg+Minus (-)." +msgstr "Um schnell ein weiches Trennzeichen einzufügen, klicken Sie an der gewünschten Stelle in das Wort und drücken dann BefehlStrg+Minus (-)." #: using_hyphen.xhp msgctxt "" @@ -17409,7 +17409,7 @@ "37\n" "help.text" msgid "If you insert a manual hyphen in a word, the word is only hyphenated at the manual hyphen. No additional automatic hyphenation is applied for this word. A word with a manual hyphen will be hyphenated without regard to the settings on the Text Flow tab page." -msgstr "Wenn Sie ein Wort mit einer manuellen Trennstelle versehen, wird das Wort nur an dieser manuellen Trennstelle getrennt. Es wird keine zusätzliche automatische Silbentrennung für dieses Wort durchgeführt. Die Trennung von Wörtern mit manuellen Trennstellen erfolgt unabhängig von den Einstellungen auf dem Register Textfluss." +msgstr "Wenn Sie ein Wort mit einem weichen Trennzeichen versehen, wird das Wort nur an diesem weichen Trennzeichen getrennt. Es wird keine zusätzliche automatische Silbentrennung für dieses Wort durchgeführt. Die Trennung von Wörtern mit weichen Trennzeichen erfolgt unabhängig von den Einstellungen auf dem Register Textfluss." #: using_hyphen.xhp msgctxt "" @@ -17436,7 +17436,7 @@ "26\n" "help.text" msgid "Choose Tools - Language - Hyphenation." -msgstr "Menü Extras - Sprache - Silbentrennung." +msgstr "Wählen Sie im Menü Extras - Sprache - Silbentrennung...." #: using_hyphen.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.0.2~rc2/translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.0.1~rc2/translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-07-26 06:05+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2015-09-02 15:46+0000\n" +"Last-Translator: Christian Lohmaier \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437890723.000000\n" +"X-POOTLE-MTIME: 1441208787.000000\n" #: ActionTe.ulf msgctxt "" @@ -2838,7 +2838,7 @@ "OOO_ERROR_7\n" "LngText.text" msgid "Action [Time]: [1]. [2]" -msgstr "Aktion [Zeit]: [1]. [2]" +msgstr "Aktion [Time]: [1]. [2]" #: Error.ulf msgctxt "" @@ -2870,7 +2870,7 @@ "OOO_ERROR_11\n" "LngText.text" msgid "=== Logging started: [Date] [Time] ===" -msgstr "=== Erfassung gestartet: [Datum] [Zeit] ===" +msgstr "=== Erfassung gestartet: [Date] [Time] ===" #: Error.ulf msgctxt "" @@ -2878,7 +2878,7 @@ "OOO_ERROR_12\n" "LngText.text" msgid "=== Logging stopped: [Date] [Time] ===" -msgstr "=== Erfassung gestoppt: [Datum] [Zeit] ===" +msgstr "=== Erfassung gestoppt: [Date] [Time] ===" #: Error.ulf msgctxt "" @@ -2886,7 +2886,7 @@ "OOO_ERROR_13\n" "LngText.text" msgid "Action start [Time]: [1]." -msgstr "Aktion startet [Zeit]: [1]." +msgstr "Aktion startet [Time]: [1]." #: Error.ulf msgctxt "" @@ -2894,7 +2894,7 @@ "OOO_ERROR_14\n" "LngText.text" msgid "Action ended [Time]: [1]. Return value [2]." -msgstr "Aktion endet [Zeit]: [1]. Rückgabewert [2]." +msgstr "Aktion endet [Time]: [1]. Rückgabewert [2]." #: Error.ulf msgctxt "" @@ -3342,7 +3342,7 @@ "OOO_ERROR_70\n" "LngText.text" msgid "The file [2][3] is being held in use {by the following process: Name: [4], ID: [5], Window Title: [6]}. Close that application and retry." -msgstr "Die Datei [2][3] wird {durch den Prozess Name: [4], ID: [5], Fenstertitel: [6]} benutzt. Schließen Sie diese Anwendung und versuchen Sie es erneut." +msgstr "Die Datei [2][3] wird noch benutzt {durch den Prozess Name: [4], ID: [5], Fenstertitel: [6]}. Schließen Sie diese Anwendung und versuchen Sie es erneut." #: Error.ulf msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-14 12:45+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-06 06:30+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439556357.000000\n" +"X-POOTLE-MTIME: 1441521031.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3307,7 +3307,7 @@ "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Aus~füllen" #: CalcCommands.xcu @@ -15153,7 +15153,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "Bearbeit~ungsmodus" #: GenericCommands.xcu @@ -19393,7 +19393,7 @@ "Label\n" "value.text" msgid "No-~width optional break" -msgstr "Optionaler ~Umbruch ohne Breite" +msgstr "Leerzeichen ohne ~Breite" #: GenericCommands.xcu msgctxt "" @@ -19402,7 +19402,7 @@ "Label\n" "value.text" msgid "No-width no ~break" -msgstr "Verbindungselement ohne ~Breite" +msgstr "~Verbindungszeichen ohne Breite" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/de/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/de/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-26 06:43+0000\n" -"Last-Translator: Christian Kühl \n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-02 15:03+0000\n" +"Last-Translator: Christian Lohmaier \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437893004.000000\n" +"X-POOTLE-MTIME: 1441206192.000000\n" #: condformatdlg.src msgctxt "" @@ -3509,7 +3509,7 @@ "STR_UNDO_TAB_R1C1\n" "string.text" msgid "Toggle the use of R1C1 notation" -msgstr "Verwendung der R1C1-Notation umschalten" +msgstr "Verwendung der R1C1-Schreibweise umschalten" #: globstr.src msgctxt "" @@ -4923,7 +4923,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "Bereich oder Formel" @@ -4999,6 +4999,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Bereich" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/de/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/de/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-05-31 05:40+0000\n" -"Last-Translator: Christian \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-06 06:03+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401514845.000000\n" +"X-POOTLE-MTIME: 1441519429.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Standard" +msgid "According to layout" +msgstr "Je nach Anordnung" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/sw/source/ui/utlui.po libreoffice-5.0.2~rc2/translations/source/de/sw/source/ui/utlui.po --- libreoffice-5.0.1~rc2/translations/source/de/sw/source/ui/utlui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-04-19 01:45+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/de/sw/uiconfig/swriter/ui.po libreoffice-5.0.2~rc2/translations/source/de/sw/uiconfig/swriter/ui.po --- libreoffice-5.0.1~rc2/translations/source/de/sw/uiconfig/swriter/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/de/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-07 12:40+0000\n" -"Last-Translator: Christian Lohmaier \n" +"PO-Revision-Date: 2015-09-04 12:33+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: none\n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438951246.000000\n" +"X-POOTLE-MTIME: 1441370002.000000\n" #: abstractdialog.ui msgctxt "" @@ -9784,7 +9784,7 @@ "label\n" "string.text" msgid "Pa_ragraph end" -msgstr "A_bsatzende" +msgstr "A_bsatzenden" #: optformataidspage.ui msgctxt "" @@ -9793,7 +9793,7 @@ "label\n" "string.text" msgid "Soft h_yphens" -msgstr "_Weiche Trennzeichen" +msgstr "_Weichen Trennzeichen" #: optformataidspage.ui msgctxt "" @@ -9811,7 +9811,7 @@ "label\n" "string.text" msgid "Non-breaking s_paces" -msgstr "Ge_schützte Leerzeichen" +msgstr "Ge_schützten Zeichen" #: optformataidspage.ui msgctxt "" @@ -9829,7 +9829,7 @@ "label\n" "string.text" msgid "Brea_ks" -msgstr "_Umbrüche" +msgstr "_Umbrüchen" #: optformataidspage.ui msgctxt "" @@ -9838,7 +9838,7 @@ "label\n" "string.text" msgid "Hidden text" -msgstr "Versteckter Text" +msgstr "Verstecktem Text" #: optformataidspage.ui msgctxt "" @@ -9847,7 +9847,7 @@ "label\n" "string.text" msgid "Fields: Hidden te_xt" -msgstr "Feldbefehle: Verste_ckter Text" +msgstr "Feldbefehlen: Verste_ckter Text" #: optformataidspage.ui msgctxt "" @@ -9856,7 +9856,7 @@ "label\n" "string.text" msgid "Fields: Hidden p_aragraphs" -msgstr "Feldbefehle: _Versteckte Absätze" +msgstr "Feldbefehlen: _Versteckte Absätze" #: optformataidspage.ui msgctxt "" @@ -10994,7 +10994,7 @@ "1\n" "stringlist.text" msgid "Space" -msgstr "Leerezeichen" +msgstr "Leerzeichen" #: outlinepositionpage.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/dgo/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/dgo/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/dgo/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dgo/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 23:19+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 12:24+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: dgo\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435274357.000000\n" +"X-POOTLE-MTIME: 1439555087.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7999,7 +7999,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8008,7 +8008,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8017,7 +8017,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8026,7 +8026,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8035,7 +8035,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8044,7 +8044,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8053,7 +8053,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8062,7 +8062,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8071,7 +8071,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8080,7 +8080,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8089,7 +8089,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8098,7 +8098,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/dgo/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/dgo/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/dgo/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dgo/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-27 00:11+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.0.2~rc2/translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.0.1~rc2/translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-05-19 20:52+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-12 06:16+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 12:55+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: dgo\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431411403.000000\n" +"X-POOTLE-MTIME: 1439556949.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -1040,13 +1040,14 @@ msgstr "शर्त " #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ColorScaleFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Color Scale" -msgstr "" +msgstr "शर्तबद्ध रूप-रचना\t" #: CalcCommands.xcu msgctxt "" @@ -3341,12 +3342,13 @@ msgstr "सफा-खंडण (बहु0) म्हेसो\t" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "भराई\t" #: CalcCommands.xcu @@ -15247,7 +15249,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/dgo/readlicense_oo/docs.po libreoffice-5.0.2~rc2/translations/source/dgo/readlicense_oo/docs.po --- libreoffice-5.0.1~rc2/translations/source/dgo/readlicense_oo/docs.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dgo/readlicense_oo/docs.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-07-28 07:00+0000\n" -"Last-Translator: Kaniska PSS \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-01 15:09+0000\n" +"Last-Translator: Christian Lohmaier \n" "Language-Team: LANGUAGE \n" "Language: dgo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406530820.000000\n" +"X-POOTLE-MTIME: 1441120153.000000\n" #: readme.xrm msgctxt "" @@ -645,7 +645,7 @@ "pji76w1\n" "readmeitem.text" msgid "When sending a document via 'File - Send - Document as E-mail' or 'Document as PDF Attachment' problems might occur (program crashes or hangs). This is due to the Windows system file \"Mapi\" (Messaging Application Programming Interface) which causes problems in some file versions. Unfortunately, the problem cannot be narrowed down to a certain version number. For more information visit http://www.microsoft.com to search the Microsoft Knowledge Base for \"mapi dll\"." -msgstr "कुसै दस्तावेज गी वाया 'फाइल - भेजो - ई-मेल रूप च दस्तावेज़' जां 'PDF नत्थी दे रूप च दस्तावेज' भेजदे बेल्लै समस्या पैदा होई सकदी ऐ(प्रोग्राम क्रैश होंदा ऐ जां अड़की जंदा ऐ).एह् विंडो सिस्टम फाइल दे कारण ऐ\"Mapi\" (मेसेजिङ ऐप्लीकेशन प्रोग्रामिङ इंटरफेस) जेह्‌ड़ा किश फाइल सरूपें च समस्या पैदा करदा ऐ. बदकिस्मती कन्नै, समस्या गी किश इक खास सरूपें दी संख्या तगर गै सीमत नेईं कीता जाई सकदा. होर मती जानकारी आस्तै http://www.microsoft.com पर जाओ . \"mapi dll\" आस्तै माइक्रोसाफ्ट ज्ञान अधार गी तपाशने लेई\">http://www.microsoft.com पर जाओ." +msgstr "कुसै दस्तावेज गी वाया 'फाइल - भेजो - ई-मेल रूप च दस्तावेज़' जां 'PDF नत्थी दे रूप च दस्तावेज' भेजदे बेल्लै समस्या पैदा होई सकदी ऐ(प्रोग्राम क्रैश होंदा ऐ जां अड़की जंदा ऐ).एह् विंडो सिस्टम फाइल दे कारण ऐ\"Mapi\" (मेसेजिङ ऐप्लीकेशन प्रोग्रामिङ इंटरफेस) जेह्‌ड़ा किश फाइल सरूपें च समस्या पैदा करदा ऐ. बदकिस्मती कन्नै, समस्या गी किश इक खास सरूपें दी संख्या तगर गै सीमत नेईं कीता जाई सकदा. होर मती जानकारी आस्तै http://www.microsoft.com पर जाओ . \"mapi dll\" आस्तै माइक्रोसाफ्ट ज्ञान अधार गी तपाशने लेई http://www.microsoft.com पर जाओ." #: readme.xrm msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/dgo/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/dgo/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/dgo/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dgo/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-14 13:11+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" @@ -5000,7 +5000,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5073,6 +5073,16 @@ msgstr "" #: globstr.src +#, fuzzy +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "फलाऽ" + +#: globstr.src msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" @@ -14130,13 +14140,14 @@ msgstr "सेधमां_किस्म " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n" "7\n" "string.text" msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears." -msgstr "" +msgstr "जेकर किस्म = 0 ऐ तां सेधमें दी गणना सिफरे राहें होग जां नेईं ते सेधमें लेते जाङन. " #: scfuncs.src msgctxt "" @@ -14211,13 +14222,14 @@ msgstr "फंक्शन_किस्म " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n" "7\n" "string.text" msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." -msgstr "" +msgstr "जेकर किस्म = 0 ऐ तां फंक्शनें दी गणना y=m^x दे रूप च होग,जां y=b*m^x फंक्शन च बी. " #: scfuncs.src msgctxt "" @@ -14607,13 +14619,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_S\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "" +msgstr "संख्या 1; संख्या 2,..., इॕयां 1 शा 30 तगर संख्यात्मक आर्ग्युमैंट न,जेह्‌ड़े जनसंख्या दा नमूना चित्तरत करदे न." #: scfuncs.src msgctxt "" @@ -14688,13 +14701,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population." -msgstr "" +msgstr "संख्या 1; संख्या 2,..., इॕयां 1 शा 30 तगर संख्यात्मक आर्ग्युमैंट न,जेह्‌ड़े जनसंख्या नुमायंदगी करदे न." #: scfuncs.src msgctxt "" @@ -14769,13 +14783,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_S\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "" +msgstr "संख्या 1; संख्या 2,..., इॕयां 1 शा 30 तगर संख्यात्मक आर्ग्युमैंट न,जेह्‌ड़े जनसंख्या दा नमूना चित्तरत करदे न." #: scfuncs.src msgctxt "" @@ -14823,13 +14838,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." -msgstr "" +msgstr "संख्या 1; संख्या 2,..., इॕयां 1 शा 30 तगर संख्यात्मक आर्ग्युमैंट न,जेह्‌ड़े जनसंख्या नुमायंदगी करदे न." #: scfuncs.src msgctxt "" @@ -14850,13 +14866,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." -msgstr "" +msgstr "संख्या 1; संख्या 2,..., इॕयां 1 शा 30 तगर संख्यात्मक आर्ग्युमैंट न,जेह्‌ड़े जनसंख्या नुमायंदगी करदे न." #: scfuncs.src msgctxt "" @@ -15176,13 +15193,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." -msgstr "" +msgstr "संख्या 1; संख्या 2,..., इॕयां 1 शा 30 तगर संख्यात्मक आर्ग्युमैंट न,जेह्‌ड़े नमूना चित्तरत करदे न." #: scfuncs.src msgctxt "" @@ -15203,13 +15221,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MULTI\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample." -msgstr "" +msgstr "संख्या 1; संख्या 2,..., इॕयां 1 शा 30 तगर संख्यात्मक आर्ग्युमैंट न,जेह्‌ड़े नमूना चित्तरत करदे न." #: scfuncs.src msgctxt "" @@ -15910,13 +15929,14 @@ msgstr "किस्म " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_EQ\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "सीक्वेंस क्रम:0 जां नेईं देने दा मतलब ऐ-घटदा क्रम,0 दे इलावा कुसै दुए मुल्लै दा मतलब ऐ-चढ़दा क्रम " #: scfuncs.src msgctxt "" @@ -15973,13 +15993,14 @@ msgstr "किस्म " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_AVG\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "सीक्वेंस क्रम:0 जां नेईं देने दा मतलब ऐ-घटदा क्रम,0 दे इलावा कुसै दुए मुल्लै दा मतलब ऐ-चढ़दा क्रम " #: scfuncs.src msgctxt "" @@ -16451,13 +16472,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BINOM_DIST_MS\n" "9\n" "string.text" msgid "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." -msgstr "" +msgstr "जोड़े दा. C=0 व्यक्तिगत संभावना दा गणना करदा ऐ, C=1जोड़ी दी संभावना. " #: scfuncs.src msgctxt "" @@ -16596,13 +16618,14 @@ msgstr "C" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NEG_BINOM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "जोड़े दा. C=0 cघनता फंक्शन दी गणना करदा ऐ, C=1 बंडांदरा. " #: scfuncs.src msgctxt "" @@ -16850,13 +16873,14 @@ msgstr "C" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_POISSON_DIST_MS\n" "7\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." -msgstr "" +msgstr "जोड़े दा. C=0 cघनता फंक्शन दी गणना करदा ऐ, C=1 बंडांदरा. " #: scfuncs.src msgctxt "" @@ -17012,13 +17036,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "जोड़े दा. C=0 cघनता फंक्शन दी गणना करदा ऐ, C=1 बंडांदरा. " #: scfuncs.src msgctxt "" @@ -17102,13 +17127,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "" +msgstr "ओह् संभावना मुल्ल, जिसदे लेई उल्टा नार्मल बंडांदरे दी गणना होनी ऐ." #: scfuncs.src msgctxt "" @@ -17213,13 +17239,14 @@ msgstr "C" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STD_NORM_DIST_MS\n" "5\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "जोड़े दा. C=0 cघनता फंक्शन दी गणना करदा ऐ, C=1 बंडांदरा. " #: scfuncs.src msgctxt "" @@ -17267,13 +17294,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_S_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "" +msgstr "ओह् संभावना मुल्ल, जिसदे लेई उल्टा मानक नार्मल बंडांदरे दी गणना होनी ऐ." #: scfuncs.src msgctxt "" @@ -17434,13 +17462,14 @@ msgstr "C" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "जोड़े दा. C=0 cघनता फंक्शन दी गणना करदा ऐ, C=1 बंडांदरा. " #: scfuncs.src msgctxt "" @@ -17524,13 +17553,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "" +msgstr "ओह् संभावना मुल्ल, जिसदे लेई उल्टा लाग नार्मल बंडांदरे दी गणना होनी ऐ." #: scfuncs.src msgctxt "" @@ -17777,13 +17807,14 @@ msgstr "जोड़े दा. C=0 cघनता फंक्शन दी गणना करदा ऐ, C=1 बंडांदरा. " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "1\n" "string.text" msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." -msgstr "" +msgstr "गामा बंडांदरे दे मुल्ल." #: scfuncs.src msgctxt "" @@ -17850,13 +17881,14 @@ msgstr "C" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "जोड़े दा. C=0 cघनता फंक्शन दी गणना करदा ऐ, C=1 बंडांदरा. " #: scfuncs.src msgctxt "" @@ -17940,13 +17972,14 @@ msgstr "संख्या" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "" +msgstr "ओह् संभावना मुल्ल, जिसदे लेई उल्टा गामा बंडांदरे दी गणना होनी ऐ." #: scfuncs.src msgctxt "" @@ -18030,13 +18063,14 @@ msgstr "संख्या" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_LN_MS\n" "3\n" "string.text" msgid "The value for which the natural logarithm of the gamma function is to be calculated." -msgstr "" +msgstr "ओह् मुल्ल जिसदे लेई गामा फंक्शन दे कुदरती लोगरिद्‌म दी गणना होनी ऐ. " #: scfuncs.src msgctxt "" @@ -18358,13 +18392,14 @@ msgstr "C" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function." -msgstr "" +msgstr "जोड़े दा. C=0 cघनता फंक्शन दी गणना करदा ऐ, C=1 बंडांदरा. " #: scfuncs.src msgctxt "" @@ -18421,13 +18456,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse beta distribution is to be calculated." -msgstr "" +msgstr "ओह् संभावना मुल्ल, जिसदे लेई उल्टा बीटा बंडांदरे दी गणना होनी ऐ." #: scfuncs.src msgctxt "" @@ -19126,13 +19162,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "ओह् संभावना मुल्ल, जिसदे लेई उल्टा T बंडांदरे दी गणना होनी ऐ." #: scfuncs.src msgctxt "" @@ -19172,13 +19209,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_2T\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "ओह् संभावना मुल्ल, जिसदे लेई उल्टा T बंडांदरे दी गणना होनी ऐ." #: scfuncs.src msgctxt "" @@ -19491,13 +19529,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_LT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "ओह् संभावना मुल्ल, जिसदे लेई उल्टा F बंडांदरे दी गणना होनी ऐ." #: scfuncs.src msgctxt "" @@ -19555,13 +19594,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_RT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "ओह् संभावना मुल्ल, जिसदे लेई उल्टा F बंडांदरे दी गणना होनी ऐ." #: scfuncs.src msgctxt "" @@ -19756,13 +19796,14 @@ msgstr "जोड़े दा. C=0 cघनता फंक्शन दी गणना करदा ऐ, C=1 बंडांदरा. " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "1\n" "string.text" msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." -msgstr "" +msgstr "कठरोनजोग बंडांदरा फंक्शन दी लैफ्ट टेल प्राबएबिलिटी जां काइ स्क्वायर बंडांदरे दे बएबिलिटी घनत्व फंक्शन दे मुल्ल दिंदा ऐ." #: scfuncs.src msgctxt "" @@ -19774,13 +19815,14 @@ msgstr "संख्या" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "3\n" "string.text" msgid "The value for which the probability density function or cumulative distribution function is to be calculated." -msgstr "" +msgstr "ओह् मुल्ल जिस आस्तै प्राबएबिलिटी घनत्व फंक्शन जां कठरोनजोग बंडांदरा फंक्शन दी गणना कीती जानी ऐ." #: scfuncs.src msgctxt "" @@ -19812,13 +19854,14 @@ msgstr "C" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "7\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "जोड़े दा. C=0 cघनता फंक्शन दी गणना करदा ऐ, C=1 बंडांदरा. " #: scfuncs.src msgctxt "" @@ -19884,13 +19927,14 @@ msgstr "संख्या " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse chi square distribution is to be calculated." -msgstr "" +msgstr "ओह् संभावना मुल्ल, जिसदे लेई उल्टा ची वर्ग बंडांदरे दी गणना होनी ऐ. " #: scfuncs.src msgctxt "" @@ -19979,13 +20023,14 @@ msgstr "संभावना " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse of the chi square distribution is to be calculated." -msgstr "" +msgstr "ओह् संभावना मुल्ल, जिसदे लेई उल्टा ची वर्ग बंडांदरे दी गणना होनी ऐ. " #: scfuncs.src msgctxt "" @@ -20412,13 +20457,14 @@ msgstr "जनसंख्या दा मानक विचलन. " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "1\n" "string.text" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "" +msgstr "z परख दा दो-दुंबी P मुल्ल परतांदा ऐ." #: scfuncs.src msgctxt "" @@ -20466,13 +20512,14 @@ msgstr "सिग्मा " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "7\n" "string.text" msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "" +msgstr "जनसंख्या दा मानक विचलन. " #: scfuncs.src msgctxt "" @@ -20790,13 +20837,14 @@ msgstr "अवस्था " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST_MS\n" "7\n" "string.text" msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" -msgstr "" +msgstr "एह् अवस्था बंडांदरा दुंबें दी ओह् संख्या निश्चत करदी ऐ,जेह्‌ड़ी परताने लेई ऐ. 1=इक-दुंबी, 2 = दो-दुंबी बंडांदरा" #: scfuncs.src msgctxt "" @@ -26219,57 +26267,3 @@ "string.text" msgid "Collapse Formula Bar" msgstr "" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Smilies\n" -"stringlist.text" -msgid "3 Smilies" -msgstr "" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Colored Smilies\n" -"stringlist.text" -msgid "3 Colored Smilies" -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" -"1\n" -"string.text" -msgid "Returns the day of the week for the date value as an integer (1-7)." -msgstr "तरीक मुल्लै लेई हफ्ते दे दिनै गी पूर्णांक (1-7) दे रूपै च परतांदा ऐ" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n" -"7\n" -"string.text" -msgid "If given and not equal to zero then rounded down according to amount when a negative number and significance." -msgstr "जिसलै जेकर दित्ते दा ऐ ते ओह् सिफर दे बरोबर नेईं ऐ तां खॕल्ले गी रकमा दे मताबक पूरा होआ .जेकर इक नॕफी संख्या ऐ ते म्हत्तव रखदी ऐ" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MS\n" -"1\n" -"string.text" -msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance." -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ENCODEURL\n" -"3\n" -"string.text" -msgid "A string to be URL encoded" -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/dgo/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/dgo/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/dgo/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dgo/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-09-25 13:42+0000\n" -"Last-Translator: Kaniska PSS \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 13:25+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: dgo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1411652569.000000\n" +"X-POOTLE-MTIME: 1439558707.000000\n" #: DocumentRenderer.src #, fuzzy @@ -145,10 +145,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "बिलानिर्देशबिला निर्देश" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/dgo/starmath/source.po libreoffice-5.0.2~rc2/translations/source/dgo/starmath/source.po --- libreoffice-5.0.1~rc2/translations/source/dgo/starmath/source.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dgo/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-20 09:18+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/dgo/sw/source/ui/utlui.po libreoffice-5.0.2~rc2/translations/source/dgo/sw/source/ui/utlui.po --- libreoffice-5.0.1~rc2/translations/source/dgo/sw/source/ui/utlui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dgo/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-20 09:18+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/dgo/swext/mediawiki/help.po libreoffice-5.0.2~rc2/translations/source/dgo/swext/mediawiki/help.po --- libreoffice-5.0.1~rc2/translations/source/dgo/swext/mediawiki/help.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dgo/swext/mediawiki/help.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-02 00:05+0200\n" -"PO-Revision-Date: 2014-07-28 08:42+0000\n" -"Last-Translator: Kaniska PSS \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-09-01 17:43+0000\n" +"Last-Translator: Christian Lohmaier \n" "Language-Team: LANGUAGE \n" "Language: dgo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406536962.000000\n" +"X-POOTLE-MTIME: 1441129427.000000\n" #: help.tree msgctxt "" @@ -64,6 +64,7 @@ msgstr "" #: wiki.xhp +#, fuzzy msgctxt "" "wiki.xhp\n" "par_id6468703\n" @@ -93,7 +94,7 @@ "par_id7387615\n" "help.text" msgid "A Wiki account on a supported MediaWiki server" -msgstr "समर्थनशुदा मीडिया विकी MediaWikiसर्वर पर विकी खाता" +msgstr "समर्थनशुदा मीडिया विकी MediaWikiसर्वर पर विकी खाता" #: wiki.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/dz/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/dz/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/dz/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dz/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 23:18+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 12:19+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: dz\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435274334.000000\n" +"X-POOTLE-MTIME: 1439554748.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8000,7 +8000,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8009,7 +8009,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8018,7 +8018,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8027,7 +8027,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8036,7 +8036,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8045,7 +8045,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8054,7 +8054,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8063,7 +8063,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8072,7 +8072,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8081,7 +8081,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8090,7 +8090,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8099,7 +8099,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/dz/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/dz/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/dz/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dz/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-21 01:12+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-5.0.2~rc2/translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-5.0.1~rc2/translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-05-19 20:52+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-12 06:38+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 12:48+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: dz\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431412727.000000\n" +"X-POOTLE-MTIME: 1439556517.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -1039,13 +1039,14 @@ msgstr "གནས་སྟངས།" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ColorScaleFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Color Scale" -msgstr "" +msgstr "གནས་སྟངས་ཅན་གྱི་ཐོག་ལས་ རྩ་སྒྲིག་འབད་ནི།" #: CalcCommands.xcu msgctxt "" @@ -3333,12 +3334,13 @@ msgstr "ལག་ཐོག་རྒྱུན་ཆད་བཏོན་གཏང་(~B)" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "བཀང་།" #: CalcCommands.xcu @@ -15229,7 +15231,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/dz/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/dz/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/dz/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dz/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-14 13:03+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" @@ -5017,7 +5017,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5090,6 +5090,16 @@ msgstr "" #: globstr.src +#, fuzzy +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "ཁྱབ་ཚད།" + +#: globstr.src msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/dz/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/dz/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/dz/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/dz/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-12 06:43+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 13:17+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: dz\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431413004.000000\n" +"X-POOTLE-MTIME: 1439558248.000000\n" #: DocumentRenderer.src msgctxt "" @@ -131,22 +131,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" +msgid "According to layout" msgstr "" -"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n" -"སྔོན་སྒྲིག\n" -"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n" -"སྔོན་སྒྲིག(~D)\n" -"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n" -"སྔོན་སྒྲིག་\n" -"#-#-#-#-# options.po (PACKAGE VERSION) #-#-#-#-#\n" -"སྔོན་སྒྲིག(~D)\n" -"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n" -"སྔོན་སྒྲིག་\n" -"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n" -"སྔོན་སྒྲིག།" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/el/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/el/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/el/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/el/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-09 07:24+0000\n" -"Last-Translator: Dimitris Spingos \n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 12:27+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: el\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436426687.000000\n" +"X-POOTLE-MTIME: 1439555258.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7983,110 +7983,122 @@ #. 🕜 (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "Η ώρα είναι 1:30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "Η ώρα είναι 2:30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "Η ώρα είναι 3:30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "Η ώρα είναι 4:30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "Η ώρα είναι 5:30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "Η ώρα είναι 6:30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "Η ώρα είναι 7:30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "Η ώρα είναι 8:30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "Η ώρα είναι 9:30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "Η ώρα είναι 10:30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "Η ώρα είναι 11:30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "Η ώρα είναι 12:30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-05 15:46+0000\n" -"Last-Translator: Dimitris Spingos \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 12:47+0000\n" +"Last-Translator: system user <>\n" "Language-Team: team@lists.gnome.gr\n" "Language: el\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1436111195.000000\n" +"X-POOTLE-MTIME: 1439556458.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3303,12 +3303,13 @@ msgstr "Διαγραφή α~λλαγής σελίδας" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Γέμισμα" #: CalcCommands.xcu @@ -15149,12 +15150,13 @@ msgstr "~Κουκκίδες και αρίθμηση..." #: GenericCommands.xcu +#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "Κατάσταση επε~ξεργασίας" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/el/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/el/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/el/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/el/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-05 16:28+0000\n" -"Last-Translator: Dimitris Spingos \n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 12:58+0000\n" +"Last-Translator: system user <>\n" "Language-Team: team@lists.gnome.gr\n" "Language: el\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1436113691.000000\n" +"X-POOTLE-MTIME: 1439557139.000000\n" #: condformatdlg.src msgctxt "" @@ -4921,10 +4921,11 @@ msgstr "Όνομα" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "Περιοχή ή παράσταση τύπου" @@ -5000,6 +5001,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Περιοχή" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/el/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/el/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/el/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/el/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-05-28 11:58+0000\n" -"Last-Translator: Dimitris Spingos \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 13:13+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369742330.0\n" +"X-POOTLE-MTIME: 1439557990.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Προεπιλογή" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/en-GB/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/en-GB/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/en-GB/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/en-GB/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-28 14:52+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-09 11:11+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435503131.000000\n" +"X-POOTLE-MTIME: 1441797077.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7987,7 +7987,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "1:30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -7996,7 +7996,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "2:30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8005,7 +8005,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "3:30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8014,7 +8014,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "4:30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8023,7 +8023,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "5:30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8032,7 +8032,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "6:30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8041,7 +8041,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "7:30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8050,7 +8050,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "8:30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8059,7 +8059,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "9:30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8068,7 +8068,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "10:30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8077,7 +8077,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "11:30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8086,7 +8086,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "12:30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-06-28 13:24+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-09 11:11+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435497841.000000\n" +"X-POOTLE-MTIME: 1441797093.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3307,8 +3307,8 @@ "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" -msgstr "Fill" +msgid "F~ill" +msgstr "F~ill" #: CalcCommands.xcu msgctxt "" @@ -15153,8 +15153,8 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" -msgstr "Ed~it Mode" +msgid "E~dit Mode" +msgstr "E~dit Mode" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/en-GB/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/en-GB/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/en-GB/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/en-GB/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-28 13:26+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-09 11:11+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435497985.000000\n" +"X-POOTLE-MTIME: 1441797099.000000\n" #: condformatdlg.src msgctxt "" @@ -4923,7 +4923,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "Range or formula expression" @@ -4999,6 +4999,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Range" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/en-GB/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/en-GB/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/en-GB/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/en-GB/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-06-03 11:04+0000\n" -"Last-Translator: Stuart \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-09 11:11+0000\n" +"Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1370257442.0\n" +"X-POOTLE-MTIME: 1441797103.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Default" +msgid "According to layout" +msgstr "According to layout" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/en-ZA/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/en-ZA/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/en-ZA/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/en-ZA/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 23:23+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 13:18+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435274590.000000\n" +"X-POOTLE-MTIME: 1439558291.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8000,7 +8000,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8009,7 +8009,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8018,7 +8018,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8027,7 +8027,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8036,7 +8036,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8045,7 +8045,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8054,7 +8054,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8063,7 +8063,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8072,7 +8072,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8081,7 +8081,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8090,7 +8090,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8099,7 +8099,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" "PO-Revision-Date: 2015-08-14 13:45+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" @@ -1017,13 +1017,14 @@ msgstr "C~onditional Formatting..." #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ConditionalFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Condition" -msgstr "" +msgstr "C~onditional Formatting..." #: CalcCommands.xcu msgctxt "" @@ -1053,13 +1054,14 @@ msgstr "" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:DataBarFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Data Bar" -msgstr "" +msgstr "C~onditional Formatting..." #: CalcCommands.xcu msgctxt "" @@ -1071,13 +1073,14 @@ msgstr "" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:IconSetFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Icon Set" -msgstr "" +msgstr "C~onditional Formatting..." #: CalcCommands.xcu msgctxt "" @@ -3325,12 +3328,13 @@ msgstr "Delete Manual ~Break" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Fill" #: CalcCommands.xcu @@ -15200,7 +15204,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "" #: GenericCommands.xcu @@ -20955,13 +20959,14 @@ msgstr "Functions" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.ManageChangesDeck\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "~Create Names..." #: Sidebar.xcu msgctxt "" @@ -21205,13 +21210,14 @@ msgstr "Na~vigator" #: Sidebar.xcu +#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SwManageChangesPanel\n" "Title\n" "value.text" msgid "Manage Changes" -msgstr "" +msgstr "~Create Names..." #: Sidebar.xcu #, fuzzy @@ -21785,13 +21791,14 @@ msgstr "~Record Changes" #: WriterCommands.xcu +#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:ShowTrackedChanges\n" "Label\n" "value.text" msgid "~Show Changes" -msgstr "" +msgstr "Sho~w Changes..." #: WriterCommands.xcu msgctxt "" @@ -27182,48 +27189,3 @@ "value.text" msgid "Fontwork Shape" msgstr "Fontwork Shape" - -#: CalcCommands.xcu -msgctxt "" -"CalcCommands.xcu\n" -"..CalcCommands.UserInterface.Popups..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: DrawImpressCommands.xcu -msgctxt "" -"DrawImpressCommands.xcu\n" -"..DrawImpressCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" - -#: MathCommands.xcu -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ToolBox\n" -"Label\n" -"value.text" -msgid "Elements" -msgstr "Elements" - -#: MathCommands.xcu -msgctxt "" -"MathCommands.xcu\n" -"..MathCommands.UserInterface.Commands..uno:ElementsDockingWindow\n" -"Label\n" -"value.text" -msgid "Elements Dock" -msgstr "" - -#: WriterCommands.xcu -msgctxt "" -"WriterCommands.xcu\n" -"..WriterCommands.UserInterface.Commands..uno:ChangePicture\n" -"Label\n" -"value.text" -msgid "~Change Image..." -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/en-ZA/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/en-ZA/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/en-ZA/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/en-ZA/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-05-12 08:12+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 14:00+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431418373.000000\n" +"X-POOTLE-MTIME: 1439560855.000000\n" #: condformatdlg.src #, fuzzy @@ -4939,7 +4939,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5012,6 +5012,16 @@ msgstr "" #: globstr.src +#, fuzzy +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Range" + +#: globstr.src msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/en-ZA/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/en-ZA/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/en-ZA/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/en-ZA/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2011-04-19 19:56+0200\n" -"Last-Translator: dwayne \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 14:15+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: en_ZA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1439561719.000000\n" #: DocumentRenderer.src msgctxt "" @@ -100,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Default" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/eo/cui/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/eo/cui/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/eo/cui/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eo/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-06-28 05:12+0000\n" +"PO-Revision-Date: 2015-08-22 04:48+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" "Language: eo\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435468366.000000\n" +"X-POOTLE-MTIME: 1440218883.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -6926,7 +6926,8 @@ "Different sized icons will be scaled automatically." msgstr "" "Notu:\n" -"La grandeco de bildsimbolo devus esti 16x16 rastrumeroj por doni plejbonan kvaliton. Aligrandaj bildsimboloj estos skalitaj aŭtomate." +"La grandeco de bildsimbolo devus esti 16x16 rastrumeroj por doni plejbonan kvaliton.\n" +"Aligrandaj bildsimboloj estos skalitaj aŭtomate." #: insertfloatingframe.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/eo/extensions/source/propctrlr.po libreoffice-5.0.2~rc2/translations/source/eo/extensions/source/propctrlr.po --- libreoffice-5.0.1~rc2/translations/source/eo/extensions/source/propctrlr.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eo/extensions/source/propctrlr.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-06-18 23:11+0000\n" +"PO-Revision-Date: 2015-08-22 04:52+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: LANGUAGE \n" "Language: eo\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434669067.000000\n" +"X-POOTLE-MTIME: 1440219135.000000\n" #: formlinkdialog.src msgctxt "" @@ -964,7 +964,7 @@ "5\n" "string.text" msgid "Sql [Native]" -msgstr "Sql [Indiĝena]" +msgstr "Sql [indiĝena]" #: formres.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/eo/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/eo/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/eo/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eo/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-19 22:55+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-01 23:22+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: eo\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437346500.000000\n" +"X-POOTLE-MTIME: 1441149744.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1733,7 +1733,7 @@ "BLACK_TELEPHONE\n" "LngText.text" msgid "phone" -msgstr "telefono" +msgstr "diskotelefono" #. ☏ (U+0260F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1868,7 +1868,7 @@ "CAUTION_SIGN\n" "LngText.text" msgid "caution" -msgstr "averto" +msgstr "zorgu" #. ☢ (U+02622), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2399,7 +2399,7 @@ "BLACK_HEART_SUIT\n" "LngText.text" msgid "hearts" -msgstr "kero" +msgstr "keroj" #. ♦ (U+02666), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2669,7 +2669,7 @@ "FLOWER\n" "LngText.text" msgid "flower" -msgstr "floro" +msgstr "blanka floro" #. ⚙ (U+02699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3488,7 +3488,7 @@ "LATIN_SMALL_LIGATURE_FFI\n" "LngText.text" msgid "ffi" -msgstr "ffl" +msgstr "ffi" #. ffl (U+0FB04), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3947,7 +3947,7 @@ "SUN_WITH_FACE\n" "LngText.text" msgid "sun" -msgstr "suno" +msgstr "sunvizaĝo" #. 🌟 (U+1F31F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4451,7 +4451,7 @@ "SOFT_ICE_CREAM\n" "LngText.text" msgid "icecream" -msgstr "glaciaĵo" +msgstr "mola glaciaĵo" #. 🍧 (U+1F367), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6053,7 +6053,7 @@ "THUMBS_DOWN_SIGN\n" "LngText.text" msgid "no" -msgstr "ne" +msgstr "malsukceson" #. 👏 (U+1F44F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7983,110 +7983,122 @@ #. 🕜 (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "1:30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "2:30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "3:30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "4:30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "5:30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "6:30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "7:30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "8:30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "9:30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "10:30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "11:30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "12:30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji @@ -8177,7 +8189,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_SMILING_EYES\n" "LngText.text" msgid "smile" -msgstr "rideto" +msgstr "rideto3" #. 😅 (U+1F605), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8483,7 +8495,7 @@ "FROWNING_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "frowning" -msgstr "brovkuntira" +msgstr "grimaco" #. 😧 (U+1F627), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8789,7 +8801,7 @@ "PERSON_RAISING_BOTH_HANDS_IN_CELEBRATION\n" "LngText.text" msgid "celebration" -msgstr "festo" +msgstr "hura" #. 🙍 (U+1F64D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-5.0.1~rc2/translations/source/eo/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/eo/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/eo/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eo/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-07-09 23:27+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: LibreOffice 3.5.x\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-03 22:04+0000\n" -"Last-Translator: Donald Rogers \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 13:55+0000\n" +"Last-Translator: system user <>\n" "Language-Team: Esperanto \n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438639459.000000\n" +"X-POOTLE-MTIME: 1439560533.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3302,12 +3302,13 @@ msgstr "Forigi manan paĝosalton" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Plenigi" #: CalcCommands.xcu @@ -15148,12 +15149,13 @@ msgstr "Buloj kaj numerado..." #: GenericCommands.xcu +#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "Redakta reĝimo" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/eo/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.0.2~rc2/translations/source/eo/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.0.1~rc2/translations/source/eo/officecfg/registry/data/org/openoffice/Office.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eo/officecfg/registry/data/org/openoffice/Office.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibreOffice 3.5.x\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-14 13:42+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-08-22 04:56+0000\n" +"Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439559773.000000\n" +"X-POOTLE-MTIME: 1440219370.000000\n" #: Addons.xcu msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/eo/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/eo/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/eo/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eo/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: LibreOffice 3.5.x\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-28 23:14+0000\n" -"Last-Translator: Donald Rogers \n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 14:09+0000\n" +"Last-Translator: system user <>\n" "Language-Team: Esperanto \n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435533247.000000\n" +"X-POOTLE-MTIME: 1439561372.000000\n" #: condformatdlg.src msgctxt "" @@ -4920,10 +4920,11 @@ msgstr "Nomo" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "Ĉelaro aŭ formula esprimo" @@ -4999,6 +5000,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Amplekso" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/eo/sc/uiconfig/scalc/ui.po libreoffice-5.0.2~rc2/translations/source/eo/sc/uiconfig/scalc/ui.po --- libreoffice-5.0.1~rc2/translations/source/eo/sc/uiconfig/scalc/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eo/sc/uiconfig/scalc/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-28 23:35+0000\n" +"PO-Revision-Date: 2015-08-22 04:57+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" "Language: eo\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435534530.000000\n" +"X-POOTLE-MTIME: 1440219438.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -7148,7 +7148,7 @@ "3\n" "stringlist.text" msgid "Sql [Native]" -msgstr "Sql [Indiĝena]" +msgstr "Sql [indiĝena]" #: selectdatasource.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/eo/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/eo/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/eo/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eo/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-06-06 23:40+0000\n" -"Last-Translator: Donald \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 14:24+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1370562042.0\n" +"X-POOTLE-MTIME: 1439562260.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Apriora" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/eo/sfx2/source/dialog.po libreoffice-5.0.2~rc2/translations/source/eo/sfx2/source/dialog.po --- libreoffice-5.0.1~rc2/translations/source/eo/sfx2/source/dialog.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eo/sfx2/source/dialog.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-06-18 23:38+0000\n" +"PO-Revision-Date: 2015-08-22 04:58+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" "Language: eo\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434670691.000000\n" +"X-POOTLE-MTIME: 1440219492.000000\n" #: dialog.src msgctxt "" @@ -81,7 +81,10 @@ "One or more of the selected styles is in use in this document.\n" "If you delete these styles, text will revert to the parent style.\n" "Do you still wish to delete these styles?\n" -msgstr "Almenaŭ unu el la elektitaj stiloj estas uzata en ĉi tiu dokumento.Se vi forigos ĉi tiujn stilojn, teksto ŝanĝiĝos al la patra stilo.Ĉu vi vere volas forigi tiujn stilojn?" +msgstr "" +"Almenaŭ unu el la elektitaj stiloj estas uzata en ĉi tiu dokumento.\n" +"Se vi forigos ĉi tiujn stilojn, teksto ŝanĝiĝos al la patra stilo.\n" +"Ĉu vi vere volas forigi tiujn stilojn?\n" #: dialog.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/eo/sw/uiconfig/swriter/ui.po libreoffice-5.0.2~rc2/translations/source/eo/sw/uiconfig/swriter/ui.po --- libreoffice-5.0.1~rc2/translations/source/eo/sw/uiconfig/swriter/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eo/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-14 15:03+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-08-22 05:02+0000\n" +"Last-Translator: Donald Rogers \n" "Language-Team: LibreOffice Esperanto\n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1439564634.000000\n" +"X-POOTLE-MTIME: 1440219756.000000\n" #: abstractdialog.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/eo/xmlsecurity/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/eo/xmlsecurity/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/eo/xmlsecurity/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eo/xmlsecurity/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-22 23:47+0000\n" -"Last-Translator: Donald \n" +"PO-Revision-Date: 2015-08-22 05:07+0000\n" +"Last-Translator: Donald Rogers \n" "Language-Team: LANGUAGE \n" "Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1432338457.000000\n" +"X-POOTLE-MTIME: 1440220035.000000\n" #: certgeneral.ui msgctxt "" @@ -330,7 +330,7 @@ "All other macros, regardless whether signed or not, are disabled." msgstr "" "Tre alta.\n" -"Estas permesite ruli nur makroojn el fidataj dosierlokoj. Ĉiuj aliaj makrooj, senkonsidere ĉu subskribitaj ĉu ne, estas malŝaltitaj." +"Estas permesite ruli nur makroojn el fidataj dosierlokoj. Ĉiuj aliaj makrooj, senkonsidere ĉu subskribitaj ĉu ne, estos malŝaltitaj." #: securitytrustpage.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/basctl/source/basicide.po libreoffice-5.0.2~rc2/translations/source/es/basctl/source/basicide.po --- libreoffice-5.0.1~rc2/translations/source/es/basctl/source/basicide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/basctl/source/basicide.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:08+0200\n" -"PO-Revision-Date: 2014-09-12 06:05+0000\n" -"Last-Translator: Adolfo \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-11 18:53+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1410501937.000000\n" +"X-POOTLE-MTIME: 1441997610.000000\n" #: basicprint.src msgctxt "" @@ -23,7 +23,7 @@ "Print range\n" "itemlist.text" msgid "Print range" -msgstr "Área de impresión" +msgstr "Intervalo de impresión" #: basicprint.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/cui/source/tabpages.po libreoffice-5.0.2~rc2/translations/source/es/cui/source/tabpages.po --- libreoffice-5.0.1~rc2/translations/source/es/cui/source/tabpages.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/cui/source/tabpages.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-06-26 22:13+0000\n" +"PO-Revision-Date: 2015-09-12 09:59+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435356816.000000\n" +"X-POOTLE-MTIME: 1442051969.000000\n" #: border.src msgctxt "" @@ -422,7 +422,7 @@ "#6¾ Envelope\n" "itemlist.text" msgid "#6¾ Envelope" -msgstr "Sobre 6 ¾" +msgstr "Sobre del n.º 6 ¾" #: page.src msgctxt "" @@ -431,7 +431,7 @@ "#7¾ (Monarch) Envelope\n" "itemlist.text" msgid "#7¾ (Monarch) Envelope" -msgstr "Sobre 7 ¾ (monarca)" +msgstr "Sobre del n.º 7 ¾ (Monarch)" #: page.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/cui/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/es/cui/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/es/cui/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-14 22:10+0000\n" +"PO-Revision-Date: 2015-09-03 22:59+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439590255.000000\n" +"X-POOTLE-MTIME: 1441321178.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -10522,7 +10522,7 @@ "label\n" "string.text" msgid "_Printing sets \"document modified\" status" -msgstr "Considerar como modificado el documento al _imprimir" +msgstr "Considerar como _modificado el documento al imprimirlo" #: optgeneralpage.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/dbaccess/source/ui/uno.po libreoffice-5.0.2~rc2/translations/source/es/dbaccess/source/ui/uno.po --- libreoffice-5.0.1~rc2/translations/source/es/dbaccess/source/ui/uno.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/dbaccess/source/ui/uno.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2014-03-22 12:09+0000\n" -"Last-Translator: Adolfo \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-14 04:27+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \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-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1395490172.000000\n" +"X-POOTLE-MTIME: 1442204831.000000\n" #: copytablewizard.src msgctxt "" @@ -54,7 +54,7 @@ "STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS\n" "string.text" msgid "The copy source's result set must support bookmarks." -msgstr "El conjunto de resultados de la fuente de copia debe soportar marcadores." +msgstr "El conjunto de resultados del origen de la copia debe permitir el uso de marcadores." #: copytablewizard.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/extensions/source/bibliography.po libreoffice-5.0.2~rc2/translations/source/es/extensions/source/bibliography.po --- libreoffice-5.0.1~rc2/translations/source/es/extensions/source/bibliography.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/extensions/source/bibliography.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-26 19:56+0100\n" -"PO-Revision-Date: 2014-11-28 03:03+0000\n" -"Last-Translator: Adolfo \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-08-25 12:45+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1417143822.000000\n" +"X-POOTLE-MTIME: 1440506743.000000\n" #: bib.src msgctxt "" @@ -273,7 +273,7 @@ "TBC_BT_AUTOFILTER\n" "toolboxitem.text" msgid "AutoFilter" -msgstr "AutoFiltro" +msgstr "Filtro automático" #: toolbar.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/es/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/es/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-18 07:16+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" @@ -68,7 +68,7 @@ "NOT_SIGN\n" "LngText.text" msgid "not" -msgstr "no" +msgstr "negación" #. ® (U+000AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1733,7 +1733,7 @@ "BLACK_TELEPHONE\n" "LngText.text" msgid "phone" -msgstr "teléfono" +msgstr "teléfono de disco" #. ☏ (U+0260F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2687,7 +2687,7 @@ "STAFF_OF_HERMES\n" "LngText.text" msgid "staff" -msgstr "caduceo" +msgstr "vara de Hermes" #. ⚛ (U+0269B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2885,7 +2885,7 @@ "NO_ENTRY\n" "LngText.text" msgid "no entry" -msgstr "entrada prohibida" +msgstr "prohibido entrar" #. ⛟ (U+026DF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3470,7 +3470,7 @@ "LATIN_SMALL_LIGATURE_FI\n" "LngText.text" msgid "fi" -msgstr "fi" +msgstr "f_i" #. fl (U+0FB02), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3587,7 +3587,7 @@ "MUSICAL_SYMBOL_QUARTER_NOTE\n" "LngText.text" msgid "quarter note" -msgstr "negra" +msgstr "negra1" #. 𝅘𝅥𝅮 (U+1D160), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3596,7 +3596,7 @@ "MUSICAL_SYMBOL_EIGHTH_NOTE\n" "LngText.text" msgid "eighth note" -msgstr "corchea" +msgstr "corchea1" #. 𝅘𝅥𝅯 (U+1D161), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3794,7 +3794,7 @@ "EARTH_GLOBE_EUROPE-AFRICA\n" "LngText.text" msgid "globe" -msgstr "Tierra" +msgstr "Tierra1" #. 🌎 (U+1F30E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4464,12 +4464,13 @@ #. 🍨 (U+1F368), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "ICE_CREAM\n" "LngText.text" msgid "ice cream" -msgstr "" +msgstr "helado" #. 🍩 (U+1F369), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4478,7 +4479,7 @@ "DOUGHNUT\n" "LngText.text" msgid "doughnut" -msgstr "" +msgstr "dónut" #. 🍪 (U+1F36A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4505,7 +4506,7 @@ "CANDY\n" "LngText.text" msgid "candy" -msgstr "" +msgstr "caramelo" #. 🍭 (U+1F36D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4514,7 +4515,7 @@ "LOLLIPOP\n" "LngText.text" msgid "lollipop" -msgstr "" +msgstr "piruleta" #. 🍮 (U+1F36E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5342,7 +5343,7 @@ "IZAKAYA_LANTERN\n" "LngText.text" msgid "lantern" -msgstr "linterna" +msgstr "farol" #. 🏯 (U+1F3EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6602,7 +6603,7 @@ "KISS_MARK\n" "LngText.text" msgid "kiss mark" -msgstr "" +msgstr "marca de labial" #. 💌 (U+1F48C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7115,7 +7116,7 @@ "CHART_WITH_UPWARDS_TREND\n" "LngText.text" msgid "char" -msgstr "" +msgstr "gráfico1" #. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7124,7 +7125,7 @@ "CHART_WITH_DOWNWARDS_TREND\n" "LngText.text" msgid "chart2" -msgstr "" +msgstr "gráfico2" #. 📊 (U+1F4CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7133,7 +7134,7 @@ "BAR_CHART\n" "LngText.text" msgid "chart3" -msgstr "" +msgstr "gráfico3" #. 📋 (U+1F4CB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7493,7 +7494,7 @@ "NO_MOBILE_PHONES\n" "LngText.text" msgid "no mobile" -msgstr "prohibido usar teléfono" +msgstr "prohibido móviles" #. 📶 (U+1F4F6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7844,7 +7845,7 @@ "JAPANESE_SYMBOL_FOR_BEGINNER\n" "LngText.text" msgid "beginner" -msgstr "" +msgstr "principiante" #. 🔱 (U+1F531), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7987,7 +7988,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "1.30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -7996,7 +7997,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "2.30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8005,7 +8006,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "3.30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8014,7 +8015,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "4.30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8023,7 +8024,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "5.30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8032,7 +8033,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "6.30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8041,7 +8042,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "7.30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8050,7 +8051,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "8.30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8059,7 +8060,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "9.30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8068,7 +8069,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "10.30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8077,7 +8078,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "11.30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8086,7 +8087,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "12.30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji @@ -8168,7 +8169,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "smiley" -msgstr "" +msgstr "emoticono" #. 😄 (U+1F604), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8213,7 +8214,7 @@ "SMILING_FACE_WITH_HORNS\n" "LngText.text" msgid "smiling imp" -msgstr "" +msgstr "demonio sonriente" #. 😉 (U+1F609), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8240,7 +8241,7 @@ "FACE_SAVOURING_DELICIOUS_FOOD\n" "LngText.text" msgid "yum" -msgstr "" +msgstr "rico" #. 😌 (U+1F60C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8267,7 +8268,7 @@ "SMILING_FACE_WITH_SUNGLASSES\n" "LngText.text" msgid "sunglasses" -msgstr "" +msgstr "gafas de sol" #. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8276,7 +8277,7 @@ "SMIRKING_FACE\n" "LngText.text" msgid "smirk" -msgstr "" +msgstr "sonrisita" #. 😐 (U+1F610), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8285,7 +8286,7 @@ "NEUTRAL_FACE\n" "LngText.text" msgid "neutral face" -msgstr "" +msgstr "cara neutra" #. 😑 (U+1F611), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8294,7 +8295,7 @@ "EXPRESSIONLESS_FACE\n" "LngText.text" msgid "expressionless" -msgstr "" +msgstr "sin expresión" #. 😒 (U+1F612), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8312,7 +8313,7 @@ "FACE_WITH_COLD_SWEAT\n" "LngText.text" msgid "sweat" -msgstr "" +msgstr "sudor" #. 😔 (U+1F614), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8321,7 +8322,7 @@ "PENSIVE_FACE\n" "LngText.text" msgid "pensive" -msgstr "" +msgstr "pensativo" #. 😕 (U+1F615), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8348,7 +8349,7 @@ "KISSING_FACE\n" "LngText.text" msgid "kissing" -msgstr "" +msgstr "tirando un beso" #. 😘 (U+1F618), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8357,7 +8358,7 @@ "FACE_THROWING_A_KISS\n" "LngText.text" msgid "kiss2" -msgstr "" +msgstr "beso2" #. 😙 (U+1F619), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8366,7 +8367,7 @@ "KISSING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "kiss3" -msgstr "" +msgstr "beso3" #. 😚 (U+1F61A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8375,7 +8376,7 @@ "KISSING_FACE_WITH_CLOSED_EYES\n" "LngText.text" msgid "kiss4" -msgstr "" +msgstr "beso4" #. 😛 (U+1F61B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8393,7 +8394,7 @@ "FACE_WITH_STUCK-OUT_TONGUE_AND_WINKING_EYE\n" "LngText.text" msgid "tongue3" -msgstr "" +msgstr "lengua3" #. 😝 (U+1F61D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8402,7 +8403,7 @@ "FACE_WITH_STUCK-OUT_TONGUE_AND_TIGHTLY-CLOSED_EYES\n" "LngText.text" msgid "tongue4" -msgstr "" +msgstr "lengua4" #. 😞 (U+1F61E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8411,7 +8412,7 @@ "DISAPPOINTED_FACE\n" "LngText.text" msgid "disappointed" -msgstr "" +msgstr "decepción" #. 😟 (U+1F61F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8420,7 +8421,7 @@ "WORRIED_FACE\n" "LngText.text" msgid "worried" -msgstr "" +msgstr "preocupación" #. 😠 (U+1F620), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8429,7 +8430,7 @@ "ANGRY_FACE\n" "LngText.text" msgid "angry" -msgstr "" +msgstr "cólera" #. 😡 (U+1F621), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8474,7 +8475,7 @@ "DISAPPOINTED_BUT_RELIEVED_FACE\n" "LngText.text" msgid "disappointed relieved" -msgstr "" +msgstr "decepción y alivio" #. 😦 (U+1F626), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8492,7 +8493,7 @@ "ANGUISHED_FACE\n" "LngText.text" msgid "anguished" -msgstr "" +msgstr "angustia" #. 😨 (U+1F628), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8519,7 +8520,7 @@ "SLEEPY_FACE\n" "LngText.text" msgid "sleepy" -msgstr "" +msgstr "somnolencia" #. 😫 (U+1F62B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8528,7 +8529,7 @@ "TIRED_FACE\n" "LngText.text" msgid "tired face" -msgstr "" +msgstr "cansancio" #. 😬 (U+1F62C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8546,7 +8547,7 @@ "LOUDLY_CRYING_FACE\n" "LngText.text" msgid "sob" -msgstr "" +msgstr "sollozo" #. 😮 (U+1F62E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8582,7 +8583,7 @@ "FACE_SCREAMING_IN_FEAR\n" "LngText.text" msgid "scream" -msgstr "" +msgstr "grito" #. 😲 (U+1F632), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8591,7 +8592,7 @@ "ASTONISHED_FACE\n" "LngText.text" msgid "astonished" -msgstr "" +msgstr "estupefacción" #. 😳 (U+1F633), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8618,7 +8619,7 @@ "DIZZY_FACE\n" "LngText.text" msgid "dizzy face" -msgstr "" +msgstr "cara de mareo" #. 😶 (U+1F636), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8627,7 +8628,7 @@ "FACE_WITHOUT_MOUTH\n" "LngText.text" msgid "no mouth" -msgstr "" +msgstr "sin boca" #. 😷 (U+1F637), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8640,12 +8641,13 @@ #. 😸 (U+1F638), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "GRINNING_CAT_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "smile cat" -msgstr "" +msgstr "gato sonriente" #. 😹 (U+1F639), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8654,7 +8656,7 @@ "CAT_FACE_WITH_TEARS_OF_JOY\n" "LngText.text" msgid "joy cat" -msgstr "" +msgstr "gato jubiloso" #. 😺 (U+1F63A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8663,7 +8665,7 @@ "SMILING_CAT_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "smiley cat" -msgstr "gato sonriente" +msgstr "gato sonriente2" #. 😻 (U+1F63B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8672,7 +8674,7 @@ "SMILING_CAT_FACE_WITH_HEART-SHAPED_EYES\n" "LngText.text" msgid "heart eyes cat" -msgstr "" +msgstr "gato con ojos de corazón" #. 😼 (U+1F63C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8681,7 +8683,7 @@ "CAT_FACE_WITH_WRY_SMILE\n" "LngText.text" msgid "smirk cat" -msgstr "" +msgstr "gato socarrón" #. 😽 (U+1F63D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8690,7 +8692,7 @@ "KISSING_CAT_FACE_WITH_CLOSED_EYES\n" "LngText.text" msgid "kissing cat" -msgstr "" +msgstr "gato tirando un beso" #. 😾 (U+1F63E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8744,7 +8746,7 @@ "PERSON_BOWING_DEEPLY\n" "LngText.text" msgid "bow" -msgstr "" +msgstr "reverencia" #. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8798,7 +8800,7 @@ "PERSON_FROWNING\n" "LngText.text" msgid "person frowning" -msgstr "" +msgstr "persona ceñuda" #. 🙎 (U+1F64E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8807,7 +8809,7 @@ "PERSON_WITH_POUTING_FACE\n" "LngText.text" msgid "person pouting" -msgstr "" +msgstr "pucheros" #. 🙏 (U+1F64F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8816,7 +8818,7 @@ "PERSON_WITH_FOLDED_HANDS\n" "LngText.text" msgid "pray" -msgstr "" +msgstr "rezar" #. 🚀 (U+1F680), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9095,7 +9097,7 @@ "MOUNTAIN_RAILWAY\n" "LngText.text" msgid "mountain railway" -msgstr "" +msgstr "funicular" #. 🚟 (U+1F69F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9104,7 +9106,7 @@ "SUSPENSION_RAILWAY\n" "LngText.text" msgid "suspension railway" -msgstr "" +msgstr "ferrocarril colgante" #. 🚠 (U+1F6A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9122,7 +9124,7 @@ "AERIAL_TRAMWAY\n" "LngText.text" msgid "aerial tramway" -msgstr "" +msgstr "telesilla" #. 🚢 (U+1F6A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9185,7 +9187,7 @@ "POLICE_CARS_REVOLVING_LIGHT\n" "LngText.text" msgid "rotating light" -msgstr "" +msgstr "faro giratorio" #. 🚩 (U+1F6A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9212,7 +9214,7 @@ "NO_ENTRY_SIGN\n" "LngText.text" msgid "no entry sign" -msgstr "" +msgstr "prohibición" #. 🚬 (U+1F6AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9221,7 +9223,7 @@ "SMOKING_SYMBOL\n" "LngText.text" msgid "smoking" -msgstr "" +msgstr "fumar" #. 🚭 (U+1F6AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9230,7 +9232,7 @@ "NO_SMOKING_SYMBOL\n" "LngText.text" msgid "no smoking" -msgstr "" +msgstr "prohibido fumar" #. 🚮 (U+1F6AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9239,7 +9241,7 @@ "PUT_LITTER_IN_ITS_PLACE_SYMBOL\n" "LngText.text" msgid "litter" -msgstr "" +msgstr "basura" #. 🚯 (U+1F6AF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9248,7 +9250,7 @@ "DO_NOT_LITTER_SYMBOL\n" "LngText.text" msgid "do not litter" -msgstr "" +msgstr "no tire basura" #. 🚰 (U+1F6B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9284,7 +9286,7 @@ "NO_BICYCLES\n" "LngText.text" msgid "no bicycles" -msgstr "" +msgstr "prohibido bicicletas" #. 🚴 (U+1F6B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9320,7 +9322,7 @@ "NO_PEDESTRIANS\n" "LngText.text" msgid "no pedestrians" -msgstr "" +msgstr "prohibido peatones" #. 🚸 (U+1F6B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-5.0.1~rc2/translations/source/es/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/es/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/es/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-21 01:12+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/auxiliary.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/auxiliary.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/auxiliary.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/auxiliary.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-02 00:14+0200\n" -"PO-Revision-Date: 2014-09-15 03:48+0000\n" -"Last-Translator: Adolfo \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-11 16:05+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \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-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1410752934.000000\n" +"X-POOTLE-MTIME: 1441987554.000000\n" #: sbasic.tree msgctxt "" @@ -150,7 +150,7 @@ "0808\n" "node.text" msgid "Data Ranges" -msgstr "Áreas de datos" +msgstr "Intervalos de datos" #: scalc.tree msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-16 23:27+0000\n" +"PO-Revision-Date: 2015-09-14 14:25+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439767675.000000\n" +"X-POOTLE-MTIME: 1442240700.000000\n" #: 00000002.xhp msgctxt "" @@ -2124,7 +2124,7 @@ "46\n" "help.text" msgid "Long integer variables range from -2147483648 to 2147483647. If you assign a floating-point value to a long integer variable, the decimal places are rounded to the next integer. Long integer variables are rapidly calculated in procedures and are suitable for counter variables in loops for large values. A long integer variable requires four bytes of memory. \"&\" is the type-declaration character." -msgstr "El rango de las variables enteras largas va de -2147483648 a 2147483647. Si asigna un valor de coma flotante a una variable entera larga, los valores decimales se redondean al entero más próximo. Las variables enteras largas se calculan rápidamente en los procedimientos y su uso muy conveniente como variables contador en bucles de valor muy grande. Una variable entera larga requiere cuatro bytes de memoria. El carácter de declaración de tipo es \"&\"." +msgstr "Las variables de entero largo van de −2147483648 a 2147483647. Si asigna un valor de coma flotante a una variable de entero largo, los valores decimales se redondean al entero más próximo. Las variables de entero largo se calculan rápidamente en los procedimientos y su uso muy conveniente como variables contadoras en bucles de valor elevado. Una variable de entero largo necesita cuatro bytes de memoria. El carácter de declaración de tipo es «&»." #: 01020100.xhp msgctxt "" @@ -2210,7 +2210,7 @@ "96\n" "help.text" msgid "Currency variables are internally stored as 64-bit numbers (8 Bytes) and displayed as a fixed-decimal number with 15 non-decimal and 4 decimal places. The values range from -922337203685477.5808 to +922337203685477.5807. Currency variables are used to calculate currency values with a high precision. The type-declaration character is \"@\"." -msgstr "Las variables de moneda se almacenan internamente como números de 64 bits (8 bytes) y se muestran como números con cantidad de decimales fija con 15 posiciones no decimales y 4 decimales. El rango de valores va de -922337203685477,5808 a +922337203685477,5807. Las variables de moneda se usan para calcular valores de divisas con una precisión elevada. El carácter de declaración de tipo es \"@\"." +msgstr "Las variables de moneda se almacenan internamente como números de 64 bits (8 bytes) y se muestran como números con cantidad de decimales fija con 15 posiciones no decimales y 4 decimales. Los valores van de −922337203685477,5808 a +922337203685477,5807. Las variables de moneda se usan para calcular valores de divisas con una precisión elevada. El carácter de declaración de tipo es «@»." #: 01020100.xhp msgctxt "" @@ -2336,7 +2336,7 @@ "85\n" "help.text" msgid "Arrays must be declared with the Dim statement. There are several ways to define the index range of an array:" -msgstr "Las matrices deben declararse con la instrucción Dim.Hay varias maneras de definir el rango de índices de una matriz:" +msgstr "Las matrices deben declararse con la instrucción Dim.Hay varias maneras de definir el intervalo de índices de una matriz:" #: 01020100.xhp msgctxt "" @@ -7820,7 +7820,7 @@ "10\n" "help.text" msgid "Positive numeric expressions are printed with a leading space. Negative expressions are printed with a leading minus sign. If a certain range is exceeded for floating-point values, the respective numeric expression is printed in exponential notation." -msgstr "Las expresiones numéricas positivas se imprimen precedidas por un espacio. Las expresiones negativas se imprimen precedidas por un signo menos. Si se excede un rango determinado para valores de coma flotante, la expresión numérica respectiva se imprime en notación exponencial." +msgstr "Las expresiones numéricas positivas se imprimen precedidas por un espacio. Las expresiones negativas se imprimen precedidas por un signo de resta. Si un intervalo determinado se supera con valores de coma flotante, la expresión numérica respectiva se imprime en notación exponencial." #: 03010103.xhp msgctxt "" @@ -9195,7 +9195,7 @@ "6\n" "help.text" msgid "FileName: Name and path of the file that you wan to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created." -msgstr "FileName: Nombre y ruta del archivo que quieres abrir. Si quieres leer un archivo que no exista (Access = Read), aparecera un mensaje de error. Si intentas abrir un archivo que no existe (Access = Write), un nuevo archivo será creado." +msgstr "FileName: Nombre y ruta del archivo que quiere abrir. Si intenta leer un archivo que no existe (Acceso = Lectura), aparecerá un mensaje de error. Si intenta escribir un archivo que no existe (Acceso = Escritura), se creará un archivo nuevo." #: 03020103.xhp msgctxt "" @@ -12847,7 +12847,7 @@ "8\n" "help.text" msgid "Year: Integer expression that indicates a year. All values between 0 and 99 are interpreted as the years 1900-1999. For years that fall outside this range, you must enter all four digits." -msgstr "Año: Expresión entera que indica un año. Todos los valores entre 0 y 99 se interpretan como los años 1900-1999. Para años que se encuentren fuera de este rango, deben especificarse los cuatro dígitos." +msgstr "Año: expresión entera que indica un año. Todos los valores entre 0 y 99 se interpretan como los años 1900-1999. Para años que se encuentren fuera de este intervalo, deben especificarse los cuatro dígitos." #: 03030101.xhp msgctxt "" @@ -12856,7 +12856,7 @@ "9\n" "help.text" msgid "Month: Integer expression that indicates the month of the specified year. The accepted range is from 1-12." -msgstr "Mes: Expresión entera que indica el mes del año especificado. El rango aceptable va de 1 a 12." +msgstr "Mes: expresión entera que indica el mes del año especificado. El intervalo aceptado va de 1 a 12." #: 03030101.xhp msgctxt "" @@ -12865,7 +12865,7 @@ "10\n" "help.text" msgid "Day: Integer expression that indicates the day of the specified month. The accepted range is from 1-31. No error is returned when you enter a non-existing day for a month shorter than 31 days." -msgstr "Día: Expresión entera que indica el día del mes especificado. El rango aceptado es de 1-31. No se devuelve error cuando se introduce un día no existente para un mes más corto que 31 días." +msgstr "Día: expresión entera que indica el día del mes especificado. El intervalo aceptado es de 1 a 31. No se devuelve ningún error si se introduce un día no existente para un mes de menos de 31 días." #: 03030101.xhp msgctxt "" @@ -12892,7 +12892,7 @@ "13\n" "help.text" msgid "If a date is defined that lies outside of the accepted range, $[officename] Basic returns an error message." -msgstr "Si se define una fecha que se encuentra fuera del rango aceptable, $[officename] Basic devuelve un mensaje de error." +msgstr "Si se define una fecha que se encuentra fuera del intervalo aceptado, $[officename] Basic devuelve un mensaje de error." #: 03030101.xhp msgctxt "" @@ -13023,7 +13023,7 @@ "22\n" "help.text" msgid "You can use this function to convert a date that occurs between December 1, 1582 and December 31, 9999 into a single integer value. You can then use this value to calculate the difference between two dates. If the date argument lies outside the acceptable range, $[officename] Basic returns an error message." -msgstr "Esta función puede utilizarse para convertir una fecha entre el 1 de diciembre de 1582 y el 31 de diciembre de 9999 en un valor entero simple. También se puede usar este valor para calcular la diferencia entre dos fechas. Si el argumento de fecha se encuentra fuera del rango aceptable, $[officename] Basic devuelve un mensaje de error." +msgstr "Esta función puede utilizarse para convertir una fecha entre el 1 de diciembre de 1582 y el 31 de diciembre de 9999 en un valor entero simple. También se puede usar este valor para calcular la diferencia entre dos fechas. Si el argumento de fecha se encuentra fuera del intervalo aceptable, $[officename] Basic devuelve un mensaje de error." #: 03030102.xhp msgctxt "" @@ -15761,7 +15761,7 @@ "10\n" "help.text" msgid "minute: Any integer expression that indicates the minute of the time that is used to determine the serial time value. In general, use values between 0 and 59. However, you can also use values that lie outside of this range, where the number of minutes influence the hour value." -msgstr "minuto: Cualquier expresión entera que indique el minuto de la hora utilizada para determinar el valor de hora serie. En general, se usan valores entre 0 y 59. Sin embargo, también se pueden usar valores que excedan este rango, en que el número de minutos afecta al valor de hora." +msgstr "minuto: cualquier expresión entera que indique el minuto de la hora utilizada para determinar el valor de hora serie. En general, se usan valores entre 0 y 59. Sin embargo, también se pueden usar valores fuera de este intervalo, en que el número de minutos afecta al valor de hora." #: 03030205.xhp msgctxt "" @@ -15770,7 +15770,7 @@ "11\n" "help.text" msgid "second: Any integer expression that indicates the second of the time that is used to determine the serial time value. In general, you can use values between 0 and 59. However, you can also use values that lie outside of this range, where the number seconds influences the minute value." -msgstr "segundo: Cualquier expresión entera que indique el segundo de la hora utilizada para determinar el valor de hora serie. En general, se usan valores entre 0 y 59. Sin embargo, también se pueden usar valores que excedan este rango, en que el número de segundos afecta al valor de minuto." +msgstr "segundo: cualquier expresión entera que indique el segundo de la hora utilizada para determinar el valor de hora en serie. En general, se usan valores entre 0 y 59. Sin embargo, también se pueden usar valores fuera de este intervalo, en que el número de segundos afecta al valor de minuto." #: 03030205.xhp msgctxt "" @@ -18485,7 +18485,7 @@ "2\n" "help.text" msgid "Trigonometric function that returns the arctangent of a numeric expression. The return value is in the range -Pi/2 to +Pi/2." -msgstr "Función trigonométrica que devuelve la arcotangente de una expresión numérica. El valor de retorno está en el rango de -Pi/2 a +Pi/2." +msgstr "Función trigonométrica que devuelve la arcotangente de una expresión numérica. El valor de retorno está en el intervalo de −Pi/2 a +Pi/2." #: 03080101.xhp msgctxt "" @@ -24763,7 +24763,7 @@ "14\n" "help.text" msgid "sText = InputBox(\"Please enter a short sentence:\")" -msgstr "sTexto = InputBox(\"Por favor, escriba una frase corta:\")" +msgstr "sTexto = InputBox(\"Escriba una frase breve:\")" #: 03100100.xhp msgctxt "" @@ -25108,7 +25108,7 @@ "8\n" "help.text" msgid "Expression: Any numeric expression that you want to convert. If the Expression exceeds the value range between -32768 and 32767, $[officename] Basic reports an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system." -msgstr "Expresión: Cualquier expresión numérica que desee convertir. Si Expresión excede el rango de valores entre -32768 y 32767, $[officename] Basic informa de un error de desbordamiento. Para convertir una expresión de cadena, el número debe introducirse como texto normal (\"123,5\") usando el formato numérico predeterminado del sistema operativo." +msgstr "Expresión: cualquier expresión numérica que quiera convertir. Si Expresión excede el intervalo de valores entre −32768 y 32767, $[officename] Basic informa de un error de desbordamiento. Para convertir una expresión de cadena, el número debe introducirse como texto normal («123,5») usando el formato numérico predeterminado del sistema operativo." #: 03100500.xhp msgctxt "" @@ -25214,7 +25214,7 @@ "8\n" "help.text" msgid "Expression: Any numerical expression that you want to convert. If the Expression lies outside the valid long integer range between -2.147.483.648 and 2.147.483.647, $[officename] Basic returns an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system." -msgstr "Expresión: Cualquier expresión numérica que desee convertir. Si Expresión está fuera del rango de enteros largos válido de -2.147.483.648 y 2.147.483.647, $[officename] Basic devuelve un error de desbordamiento. Para convertir una expresión de cadena, el número debe introducirse como texto normal (\"123,5\") usando el formato numérico predeterminado del sistema operativo." +msgstr "Expresión: cualquier expresión numérica que quiera convertir. Si Expresión está fuera del intervalo de enteros largos válido de −2 147 483 648 y 2 147 483 647, $[officename] Basic devuelve un error de desbordamiento. Para convertir una expresión de cadena, el número debe introducirse como texto normal («123,5») usando el formato numérico predeterminado del sistema operativo." #: 03100600.xhp msgctxt "" @@ -25683,7 +25683,7 @@ "2\n" "help.text" msgid "If no type-declaration character or keyword is specified, the DefBool statement sets the default data type for variables, according to a letter range." -msgstr "Si no se especifica el carácter o la palabra clave de declaración de tipo, la instrucción DefBool establece el tipo de datos predeterminado para las variables según un rango de letras." +msgstr "Si no se especifica el carácter o la palabra clave de declaración de tipo, la instrucción DefBool establece el tipo de datos predeterminado para las variables según un intervalo de letras." #: 03101100.xhp msgctxt "" @@ -25719,7 +25719,7 @@ "6\n" "help.text" msgid "Characterrange: Letters that specify the range of variables that you want to set the default data type for." -msgstr "RangoCarácter: Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado." +msgstr "Characterrange: letras que especifican el intervalo de variables cuyo tipo de datos predeterminado quiera establecer." #: 03101100.xhp msgctxt "" @@ -26255,7 +26255,7 @@ "2\n" "help.text" msgid "If no type-declaration character or keyword is specified, the DefDate statement sets the default variable type, according to a letter range." -msgstr "Si no se especifica el carácter o la palabra clave de declaración de tipo, la instrucción DefDate establece el tipo de datos predeterminado según un rango de letras." +msgstr "Si no se especifica el carácter o la palabra clave de declaración de tipo, la instrucción DefDate establece el tipo de datos predeterminado según un intervalo de letras." #: 03101300.xhp msgctxt "" @@ -26379,7 +26379,7 @@ "2\n" "help.text" msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified." -msgstr "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo." +msgstr "Define el tipo de variable predeterminado de acuerdo con un intervalo de letras, si no se ha especificado ninguna declaración de tipo o palabra clave." #: 03101400.xhp msgctxt "" @@ -26415,7 +26415,7 @@ "6\n" "help.text" msgid "Characterrange: Letters that specify the range of variables that you want to set the default data type for." -msgstr "RangoCarácter: Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado." +msgstr "Characterrange: letras que especifican el intervalo de variables cuyo tipo de datos predeterminado quiera establecer." #: 03101400.xhp msgctxt "" @@ -26503,7 +26503,7 @@ "2\n" "help.text" msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified." -msgstr "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo." +msgstr "Define el tipo de variable predeterminado de acuerdo con un intervalo de letras, si no se ha especificado ninguna declaración de tipo o palabra clave." #: 03101500.xhp msgctxt "" @@ -26627,7 +26627,7 @@ "2\n" "help.text" msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified." -msgstr "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo." +msgstr "Define el tipo de variable predeterminado de acuerdo con un intervalo de letras, si no se ha especificado ninguna declaración de tipo o palabra clave." #: 03101600.xhp msgctxt "" @@ -26663,7 +26663,7 @@ "6\n" "help.text" msgid "Characterrange: Letters that specify the range of variables that you want to set the default data type for." -msgstr "RangoCarácter: Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado." +msgstr "Characterrange: letras que especifican el intervalo de variables cuyo tipo de datos predeterminado quiera establecer." #: 03101600.xhp msgctxt "" @@ -26751,7 +26751,7 @@ "2\n" "help.text" msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified." -msgstr "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo." +msgstr "Define el tipo de variable predeterminado de acuerdo con un intervalo de letras, si no se ha especificado ninguna declaración de tipo o palabra clave." #: 03101700.xhp msgctxt "" @@ -26787,7 +26787,7 @@ "6\n" "help.text" msgid "Characterrange: Letters that specify the range of variables that you want to set the default data type for." -msgstr "RangoCarácter: Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado." +msgstr "Characterrange: letras que especifican el intervalo de variables cuyo tipo de datos predeterminado quiera establecer." #: 03101700.xhp msgctxt "" @@ -26929,7 +26929,7 @@ "2\n" "help.text" msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified." -msgstr "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo." +msgstr "Define el tipo de variable predeterminado de acuerdo con un intervalo de letras, si no se ha especificado ninguna declaración de tipo o palabra clave." #: 03102000.xhp msgctxt "" @@ -26965,7 +26965,7 @@ "6\n" "help.text" msgid "Characterrange: Letters that specify the range of variables that you want to set the default data type for." -msgstr "RangoCarácter: Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado." +msgstr "Characterrange: letras que especifican el intervalo de variables cuyo tipo de datos predeterminado quiera establecer." #: 03102000.xhp msgctxt "" @@ -27125,7 +27125,7 @@ "12\n" "help.text" msgid "Start, End: Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range." -msgstr "Inicio, Final: Valores numéricos o constantes que definen el número de elementos (NúmeroElementos=(final-inicio)+1) y el rango del índice." +msgstr "Inicio, Final: Valores numéricos o constantes que definen el número de elementos (NúmeroElementos=(final-inicio)+1) y el intervalo del índice." #: 03102100.xhp msgctxt "" @@ -27455,7 +27455,7 @@ "7\n" "help.text" msgid "Start, End: Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range." -msgstr "Inicio, Final: Valores numéricos o constantes que definen el número de elementos (NúmeroElementos=(final-inicio)+1) y el rango del índice." +msgstr "Inicio, Final: Valores numéricos o constantes que definen el número de elementos (NúmeroElementos=(final-inicio)+1) y el intervalo del índice." #: 03102101.xhp msgctxt "" @@ -27590,7 +27590,7 @@ "22\n" "help.text" msgid "There are two ways to set the range of indices for arrays declared with the Dim statement:" -msgstr "Hay dos formas de establecer el rango de índices para matrices declaradas con la instrucción Dim:" +msgstr "Hay dos formas de establecer el intervalo de índices para matrices declaradas con la instrucción Dim:" #: 03102101.xhp msgctxt "" @@ -27635,7 +27635,7 @@ "27\n" "help.text" msgid "Variable fields, regardless of type, can be made dynamic if they are dimensioned by ReDim at the procedure level in subroutines or functions. Normally, you can only set the range of an array once and you cannot modify it. Within a procedure, you can declare an array using the ReDim statement with numeric expressions to define the range of the field sizes." -msgstr "Los campos de variables, cualquiera que sea su tipo, pueden hacerse dinámicos si los dimensiona ReDim a nivel de procedimiento en subrutinas o funciones. Normalmente sólo puede definirse el rango de una matriz una vez y no puede modificarse. Dentro de un procedimiento, pueden declararse matrices mediante la instrucción ReDim con expresiones numéricas para definir el rango de los tamaños de campo." +msgstr "Los campos de variables, cualquiera que sea su tipo, pueden hacerse dinámicos si los dimensiona ReDim a nivel de procedimiento en subrutinas o funciones. Normalmente solo puede definirse el intervalo de una matriz una vez y no puede modificarse. Dentro de un procedimiento, pueden declararse matrices mediante la instrucción ReDim con expresiones numéricas para definir el intervalo de los tamaños de campo." #: 03102101.xhp msgctxt "" @@ -37521,7 +37521,7 @@ "7\n" "help.text" msgid "Category" -msgstr "Área" +msgstr "Categoría" #: 05060700.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 13:22+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-11 16:07+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439472163.000000\n" +"X-POOTLE-MTIME: 1441987657.000000\n" #: 00000004.xhp msgctxt "" @@ -880,7 +880,7 @@ "26\n" "help.text" msgid "Choose Format - Print Ranges" -msgstr "Seleccione Formato - Áreas de impresión." +msgstr "Vaya a Formato ▸ Intervalos de impresión." #: 00000405.xhp msgctxt "" @@ -889,7 +889,7 @@ "27\n" "help.text" msgid "Choose Format - Print Ranges - Define" -msgstr "Seleccione Formato - Áreas de impresión - Definir." +msgstr "Vaya a Formato ▸ Intervalos de impresión ▸ Definir" #: 00000405.xhp msgctxt "" @@ -898,7 +898,7 @@ "35\n" "help.text" msgid "Choose Format - Print Ranges - Add" -msgstr "Seleccione Formato - Áreas de impresión - Agregar" +msgstr "Vaya a Formato ▸ Intervalos de impresión ▸ Añadir" #: 00000405.xhp msgctxt "" @@ -916,7 +916,7 @@ "29\n" "help.text" msgid "Choose Format - Print Ranges - Edit" -msgstr "Seleccione Formato - Áreas de impresión - Editar" +msgstr "Vaya a Formato ▸ Intervalos de impresión ▸ Editar" #: 00000405.xhp msgctxt "" @@ -1031,7 +1031,7 @@ "5\n" "help.text" msgid "Choose Tools - Detective - Trace Dependents" -msgstr "Menú Herramientas - Detective - Rastrear los dependientes" +msgstr "Vaya a Herramientas ▸ Detective ▸ Rastrear dependencias" #: 00000406.xhp msgctxt "" @@ -1472,7 +1472,7 @@ "21\n" "help.text" msgid "Choose Data - Filter - Hide AutoFilter" -msgstr "Menú Datos - Filtro - Ocultar AutoFiltro" +msgstr "Vaya a Datos ▸ Filtro ▸ Ocultar filtro automático" #: 00000412.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-16 02:31+0000\n" +"PO-Revision-Date: 2015-09-14 14:41+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439692298.000000\n" +"X-POOTLE-MTIME: 1442241719.000000\n" #: 01120000.xhp msgctxt "" @@ -210,7 +210,7 @@ "16\n" "help.text" msgid "Moves to the cell at the beginning of the current data range, which you can highlight using the Data Range button." -msgstr "Se desplaza a la celda situada al principio del área de datos actual, que se puede resaltar mediante el botón Área de datos." +msgstr "Se desplaza a la celda situada al principio del intervalo de datos actual, que se puede resaltar mediante el botón Intervalo de datos." #: 02110000.xhp msgctxt "" @@ -245,7 +245,7 @@ "19\n" "help.text" msgid "Moves to the cell at the end of the current data range, which you can highlight using the Data Range button." -msgstr "Se desplaza a la celda situada al final del área de datos actual, que se puede resaltar mediante el botón Área de datos." +msgstr "Se desplaza a la celda situada al final del intervalo de datos actual, que se puede resaltar mediante el botón Intervalo de datos." #: 02110000.xhp msgctxt "" @@ -4993,7 +4993,7 @@ "86\n" "help.text" msgid "DatabaseField specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. Use the number 0 to specify the whole data range. To reference a column by means of the column header name, place quotation marks around the header name. " -msgstr "Campo de Base de Datos especifica la columna en donde opera la función luego de que se aplica el criterio de búsqueda del primer parámetro y las filas son seleccionadas. Esto no se relaciona con el criterio de búsqueda por sí mismo. Use el número 0 para especificar todo un rango de datos. Para referenciar una columna por el nombre del encabezado, coloque la marca de quotation cerca del nombre del encabezado . " +msgstr "CampoDeBaseDeDatos indica la columna donde operará la función tras aplicarse los criterios de búsqueda del primer parámetro y tras haber seleccionado las filas de datos. No tiene relación con los criterios de búsqueda en sí. Utilice el número 0 para especificar todo el intervalo de datos. Para hacer referencia a una columna mediante el nombre de su encabezamiento, entrecomille el nombre." #: 04060101.xhp msgctxt "" @@ -5002,7 +5002,7 @@ "87\n" "help.text" msgid "SearchCriteria is the cell range containing search criteria. If you write several criteria in one row they are connected by AND. If you write the criteria in different rows they are connected by OR. Empty cells in the search criteria range will be ignored." -msgstr "Criterio de Búsqueda es el rango de celda que contiene un criterio de búsqueda. Si escribe varios criterios en una fila, se pueden juntar usando Y.Si escribe el criterio en filas diferentes ellos se conectan con un O. Las celdas vacías en un criterio de búsqueda se ignorarán ." +msgstr "CriteriosDeBúsqueda es el intervalo de celdas que contiene los criterios de búsqueda. Si escribe varios criterios en una fila se conectarán con la conjunción Y; si lo hace en filas diferentes, se conectarán mediante O. Se ignorarán las celdas vacías en los criterios de búsqueda." #: 04060101.xhp msgctxt "" @@ -5090,7 +5090,7 @@ "93\n" "help.text" msgid "In the example above (scroll up, please), we want to know how many children have to travel more than 600 meters to school. The result is to be stored in cell B16. Set the cursor in cell B16. Enter the formula =DCOUNT(A1:E10;0;A13:E14) in B16. The Function Wizard helps you to input ranges." -msgstr "En el ejemplo de arriba (desplácese hacia arriba por favor ), nosotros queremos saber cuantos niños deben viajar más de 600 metros a la escuela. El resultado se almacena en la celda B16. Coloque el cursor en la celda B16. Ingrese la fórmula =BDCONTA(A1:E10;0;A13:E14) en B16. El Asistente para Funciones le ayudará a ingresar los rangos ." +msgstr "En el ejemplo anterior (desplácese hacia arriba), se desea saber cuántos niños deben viajar más de 600 metros para llegar a la escuela. El resultado se debe guardar en la celda B16. Sitúe el cursor en esa celda e escriba ahí la fórmula =BDCONTAR(A1:E10;0;A13:E14). El Asistente de funciones le ayuda a introducir intervalos." #: 04060101.xhp msgctxt "" @@ -5099,7 +5099,7 @@ "94\n" "help.text" msgid "Database is the range of data to be evaluated, including its headers: in this case A1:E10. DatabaseField specifies the column for the search criteria: in this case, the whole database. SearchCriteria is the range where you can enter the search parameters: in this case, A13:E14." -msgstr "Base de Datos es el rango de datos a ser evaluado, incluyendo sus encabezados: en este caso A1:E10. CampoBasedeDatos especifique la columna para el criterio de búsqueda. : en éste caso, toda la base de datos . CriteriodeBúsqueda es el rango donde puede ingresar los parámetros de búsqueda : en este caso, A13:E14." +msgstr "BaseDeDatos es el intervalo de datos que se evaluará, incluyendo sus encabezamientos: en este caso, A1:E10. Campo de base de datos indica la columna del criterio de búsqueda; en este caso, toda la base de datos. CriteriosDeBúsqueda es el intervalo donde introducir los parámetros de búsqueda; en este caso, A13:E14." #: 04060101.xhp msgctxt "" @@ -11547,7 +11547,7 @@ "33\n" "help.text" msgid "LogicalValue1; LogicalValue2 ...LogicalValue30 are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row. The result is TRUE if the logical value in all cells within the cell range is TRUE." -msgstr "ValorLógico1; ValorLógico2 ...ValorLógico30 son condiciones que deben verificarse. Las condiciones pueden ser VERDADERO o FALSO. Si un área se especifica como parámetro, la función utiliza el valor del área que se encuentra en la columna o fila actual. El resultado es VERDADERO si el valor lógico de todas las celdas del rango es VERDADERO." +msgstr "ValorLógico1; ValorLógico2 ...ValorLógico30 son condiciones que deben verificarse. Las condiciones pueden ser VERDADERO o FALSO. Si un intervalo se especifica como parámetro, la función utiliza el valor del intervalo que se encuentre en la columna o fila actual. El resultado es VERDADERO si el valor lógico de todas las celdas del intervalo es VERDADERO." #: 04060105.xhp msgctxt "" @@ -17038,7 +17038,7 @@ "498\n" "help.text" msgid "Range is the range whose cells are included." -msgstr "Área es el área cuyas celdas están incluidas." +msgstr "Intervalo es el área cuyas celdas están incluidas." #: 04060106.xhp msgctxt "" @@ -19081,7 +19081,7 @@ "bm_id3159084\n" "help.text" msgid "FREQUENCY function" -msgstr "FRECUENCIA" +msgstr "función FRECUENCIA" #: 04060107.xhp msgctxt "" @@ -19161,7 +19161,7 @@ "219\n" "help.text" msgid "In the following table, column A lists unsorted measurement values. Column B contains the upper limit you entered for the classes into which you want to divide the data in column A. According to the limit entered in B1, the FREQUENCY function returns the number of measured values less than or equal to 5. As the limit in B2 is 10, the FREQUENCY function returns the second result as the number of measured values that are greater than 5 and less than or equal to 10. The text you entered in B6, \">25\", is only for reference purposes." -msgstr "En la siguiente tabla, la columna A lista valores de medición sin ordenar. La Columna B empuja el valor limite que se ingreso dentro de las clases que quiera dividir de los datos de la columna A. De acuerdo a los limites ingresados en B1, la función de FRECUENCIA regresa el numero de valores medidos en menos que o igual a 5, y menos ue o igual a 10. El texto que ingresaste dentro de B6, \">25\", es solo para propositos de referencia." +msgstr "En la tabla siguiente, la columna A muestra valores de medida sin ordenar. La columna B contiene el límite superior que introdujo para las clases cuyos datos quiere dividir en la columna A. Según el límite que haya especificado en B1, la función FRECUENCIA devuelve el número de valores medidos menores o iguales que 5. Como el límite de B2 es 10, la función FRECUENCIA devuelve el segundo resultado como el número de valores medidos mayores que 5 y menores o iguales que 10. El texto que introdujo en B6, «>25», se utiliza solo como una referencia." #: 04060107.xhp msgctxt "" @@ -19503,7 +19503,7 @@ "29\n" "help.text" msgid "Select a single column range in which to enter the frequency according to the class limits. You must select one field more than the class ceiling. In this example, select the range C1:C6. Call up the FREQUENCY function in the Function Wizard. Select the Data range in (A1:A11), and then the Classes range in which you entered the class limits (B1:B6). Select the Array check box and click OK. You will see the frequency count in the range C1:C6." -msgstr "Selecciona un rango de columan sencilla en el cual para ingresar la frecuencia de acuerdo los limites de clases. No debes seleccionar un campo mas que la clase. En este ejemplo, seleccionamos el rango C1:C6. Llama a la función de FRECUENCIA en elAsistente para funciones. Selecciona el rango de Datos dentro de (A1:A11), y despues los rangos de Classes en el cual insertas los limites de la clase (B1:B6). Selecciona la caja de verificacion de Arreglo y da clic en Aceptar. Veras en el cual veras la frecuencia de conteo en el rango de C1:C6." +msgstr "Seleccione un intervalo de una sola columna donde introducir la frecuencia según los límites de la clase. Debe seleccionar un campo más que el campo superior de la clase. En este ejemplo, seleccione el intervalo C1:C6. Active la función FRECUENCIA mediante el Asistente de funciones. Seleccione el intervalo Datos en (A1:A11) y, a continuación, el intervalo Clases en el que haya introducido los límites de la clase (B1:B6). Active la casilla Matriz y pulse en Aceptar. Aparecerá el conteo de la frecuencia en el intervalo C1:C6." #: 04060107.xhp msgctxt "" @@ -21839,7 +21839,7 @@ "par_id1027200802301348\n" "help.text" msgid "For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used." -msgstr "Para la interoperabilidad las funciones de DIRECCION e INDIRECTO soportan un parámetro opcional para especificar entre la notación de la dirección R1C1 en vez de la notación usual A1 que debería ser usada ." +msgstr "Por motivos de interoperabilidad, las funciones DIRECCIÓN e INDIRECTO admiten un parámetro opcional para indicar si se debe utilizar la notación de dirección R1C1 en vez de la notación A1 habitual." #: 04060109.xhp msgctxt "" @@ -22160,7 +22160,7 @@ "31\n" "help.text" msgid "DDE(\"Server\"; \"File\"; \"Range\"; Mode)" -msgstr "DDE(\"Servidor \"Archivo\"; \"Área\"; Modo)" +msgstr "DDE(\"Servidor\"; \"Archivo\"; \"Intervalo\"; Modo)" #: 04060109.xhp msgctxt "" @@ -22419,7 +22419,7 @@ "50\n" "help.text" msgid "INDEX(Reference; Row; Column; Range)" -msgstr "ÍNDICE(Referencia; Fila; Columna; Área)" +msgstr "ÍNDICE(Referencia; Fila; Columna; Intervalo)" #: 04060109.xhp msgctxt "" @@ -25572,7 +25572,7 @@ "98\n" "help.text" msgid "LEFTB(\"Text\"; Number_bytes)" -msgstr "DERECHAB(\"Texto\"; Número_bytes)" +msgstr "DERECHAB(\"Texto\"; Número_de_bytes)" #: 04060110.xhp msgctxt "" @@ -25590,7 +25590,7 @@ "100\n" "help.text" msgid "Number_bytes (optional) specifies the number of characters you want LEFTB to extract, based on bytes. If this parameter is not defined, one character is returned." -msgstr "Número_bytes (opcional) especifica la cantidad de caracteres que extraerá IZQUIERDAB, medido en bytes. Si no se define este parámetro, se devolverá un carácter." +msgstr "Número_de_bytes (opcional) especifica la cantidad de caracteres que extraerá IZQUIERDAB, medido en bytes. Si no se define este parámetro, se devolverá un carácter." #: 04060110.xhp msgctxt "" @@ -26025,7 +26025,7 @@ "151\n" "help.text" msgid "MIDB(\"Text\"; Start; Number_bytes)" -msgstr "EXTRAEB(\"Texto\"; Comienzo; Número_bytes)" +msgstr "EXTRAEB(\"Texto\"; Comienzo; Número_de_bytes)" #: 04060110.xhp msgctxt "" @@ -26052,7 +26052,7 @@ "154\n" "help.text" msgid "Number_bytes specifies the number of characters MIDB will return from text, in bytes." -msgstr "Número_bytes especifica la cantidad de caracteres que la función extraerá del texto, en bytes." +msgstr "Número_de_bytes especifica la cantidad de caracteres que EXTRAEB extraerá del texto, en bytes." #: 04060110.xhp msgctxt "" @@ -26116,7 +26116,7 @@ "par_id2958477\n" "help.text" msgid "MIDB(\"中国\";2;2) returns \" \" (byte position 2 points to the last half of the first character in the DBCS string; the 2 bytes asked for therefore constitutes the last half of the first character and the first half of the second character in the string; 2 space characters are therefore returned)." -msgstr "" +msgstr "EXTRAEB(\"中国\";2;2) devuelve « » (el byte en la posición 2 es la última mitad del primer carácter en una cadena DBCS; los dos bytes solicitados constituyen la última mitad del primer carácter y la primera mitad del segundo; por lo tanto, se devuelven dos espacios)." #: 04060110.xhp msgctxt "" @@ -26498,23 +26498,21 @@ msgstr "=DERECHA(\"Sin\";2) devuelve un." #: 04060110.xhp -#, fuzzy msgctxt "" "04060110.xhp\n" "bm_id2949805\n" "help.text" msgid "RIGHTB function" -msgstr "DERECHA" +msgstr "función DERECHAB" #: 04060110.xhp -#, fuzzy msgctxt "" "04060110.xhp\n" "hd_id2949805\n" "113\n" "help.text" msgid "RIGHTB" -msgstr "DERECHA" +msgstr "DERECHAB" #: 04060110.xhp msgctxt "" @@ -26535,14 +26533,13 @@ msgstr "Sintaxis" #: 04060110.xhp -#, fuzzy msgctxt "" "04060110.xhp\n" "par_id2954344\n" "116\n" "help.text" msgid "RIGHTB(\"Text\"; Number_bytes)" -msgstr "DERECHA(\"Texto\"; Número)" +msgstr "DERECHAB(\"Texto\"; Número_de_bytes)" #: 04060110.xhp msgctxt "" @@ -26560,7 +26557,7 @@ "118\n" "help.text" msgid "Number_bytes (optional) specifies the number of characters you want RIGHTB to extract, based on bytes." -msgstr "" +msgstr "Número_de_bytes (opcional) especifica la cantidad de caracteres que extraerá DERECHAB, medido en bytes." #: 04060110.xhp msgctxt "" @@ -52428,7 +52425,7 @@ "66\n" "help.text" msgid "Range" -msgstr "Área" +msgstr "Intervalo" #: 04060199.xhp msgctxt "" @@ -52718,7 +52715,7 @@ "17\n" "help.text" msgid "Print range" -msgstr "Área de impresión" +msgstr "Intervalo de impresión" #: 04070100.xhp msgctxt "" @@ -53072,7 +53069,7 @@ "3\n" "help.text" msgid "Range" -msgstr "Área" +msgstr "Intervalo" #: 04070400.xhp msgctxt "" @@ -53311,7 +53308,7 @@ "7\n" "help.text" msgid "Available tables/ranges" -msgstr "Hojas/Áreas disponibles" +msgstr "Tablas/intervalos disponibles" #: 04090000.xhp msgctxt "" @@ -54645,7 +54642,7 @@ "tit\n" "help.text" msgid "Print Ranges" -msgstr "Áreas de impresión" +msgstr "Intervalos de impresión" #: 05080000.xhp msgctxt "" @@ -54654,7 +54651,7 @@ "1\n" "help.text" msgid "Print Ranges" -msgstr "Áreas de impresión" +msgstr "Intervalos de impresión" #: 05080000.xhp msgctxt "" @@ -54776,7 +54773,7 @@ "3\n" "help.text" msgid "Print range" -msgstr "Área de impresión" +msgstr "Intervalo de impresión" #: 05080300.xhp msgctxt "" @@ -54803,7 +54800,7 @@ "6\n" "help.text" msgid "In the right-hand text box, you can enter a print range by reference or by name. If the cursor is in the Print range text box, you can also select the print range in the spreadsheet with your mouse." -msgstr "En el cuadro de texto de la derecha puede escribir un área de impresión por referencia o por nombre. Si el cursor se encuentra en el cuadro de texto Área de impresión se puede también seleccionar el área de impresión en la hoja de cálculo mediante el ratón." +msgstr "En el cuadro de texto de la derecha puede introducir un intervalo de impresión por referencia o por nombre. Si el cursor se encuentra en el cuadro de texto Intervalo de impresión se puede también seleccionar el intervalo de impresión de la hoja de cálculo con el ratón." #: 05080300.xhp msgctxt "" @@ -56144,7 +56141,7 @@ "tit\n" "help.text" msgid "Trace Dependents" -msgstr "Rastrear los dependientes" +msgstr "Rastrear dependencias" #: 06030300.xhp msgctxt "" @@ -56161,7 +56158,7 @@ "1\n" "help.text" msgid "Trace Dependents" -msgstr "Rastrear los dependientes" +msgstr "Rastrear dependencias" #: 06030300.xhp msgctxt "" @@ -56222,7 +56219,7 @@ "2\n" "help.text" msgid "Deletes one level of tracer arrows created with Trace Dependents." -msgstr "Borra un nivel de flechas de rastreo creado mediante Rastrear los dependientes." +msgstr "Elimina un nivel de las flechas de rastreo creadas mediante Rastrear dependencias." #: 06030500.xhp msgctxt "" @@ -57370,7 +57367,7 @@ "6\n" "help.text" msgid "Range" -msgstr "Área" +msgstr "Intervalo" #: 12010000.xhp msgctxt "" @@ -57583,7 +57580,7 @@ "3\n" "help.text" msgid "Ranges" -msgstr "Áreas" +msgstr "Intervalos" #: 12020000.xhp msgctxt "" @@ -58194,7 +58191,7 @@ "1\n" "help.text" msgid "AutoFilter" -msgstr "AutoFiltro" +msgstr "Filtro automático" #: 12040100.xhp msgctxt "" @@ -58373,7 +58370,7 @@ "36\n" "help.text" msgid "Data range" -msgstr "Área de datos" +msgstr "Intervalo de datos" #: 12040201.xhp msgctxt "" @@ -58494,7 +58491,7 @@ "1\n" "help.text" msgid "Hide AutoFilter" -msgstr "Ocultar AutoFiltro" +msgstr "Ocultar filtro automático" #: 12040500.xhp msgctxt "" @@ -59028,7 +59025,7 @@ "10\n" "help.text" msgid "Consolidation ranges" -msgstr "Áreas de consolidación" +msgstr "Intervalos de consolidación" #: 12070000.xhp msgctxt "" @@ -59046,7 +59043,7 @@ "12\n" "help.text" msgid "Source data range" -msgstr "Área de datos fuente" +msgstr "Intervalo de datos de origen" #: 12070000.xhp msgctxt "" @@ -59055,7 +59052,7 @@ "13\n" "help.text" msgid "Specifies the cell range that you want to consolidate with the cell ranges listed in the Consolidation ranges box. Select a cell range in a sheet, and then click Add. You can also select a the name of a predefined cell from the Source data range list." -msgstr "Especifica el área de datos que se desea consolidar con las áreas enumeradas en el cuadro Áreas de consolidación. Seleccione un área de celdas de una hoja y pulse Agregar. También puede seleccionar un nombre de celda predefinido en la lista Área de datos de origen." +msgstr "Especifica el intervalo de datos que se desea consolidar con los intervalos listados en el cuadro Intervalos de consolidación. Seleccione un intervalo de celdas en una hoja y pulse en Añadir. También puede seleccionar un nombre de celda predefinido en la lista Intervalo de datos de origen." #: 12070000.xhp msgctxt "" @@ -59091,7 +59088,7 @@ "18\n" "help.text" msgid "Adds the cell range specified in the Source data range box to the Consolidation ranges box." -msgstr "Agrega la celda especificada en el cuadro Área de datos de origen al cuadro Áreas de consolidación." +msgstr "Añade la celda especificada en el cuadro Intervalo de datos de origen al cuadro Intervalos de consolidación." #: 12070000.xhp msgctxt "" @@ -61989,7 +61986,7 @@ "par_idN106A0\n" "help.text" msgid "Cell range" -msgstr "Área de celdas" +msgstr "Intervalo de celdas" #: 12120100.xhp msgctxt "" @@ -66116,7 +66113,7 @@ "par_id1001040\n" "help.text" msgid "Range" -msgstr "Área" +msgstr "Intervalo" #: statistics.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/scalc/02.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/scalc/02.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/scalc/02.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/scalc/02.po 2015-09-17 13:33:11.000000000 +0000 @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439768832.000000\n" +"X-POOTLE-MTIME: 1439768834.000000\n" #: 02130000.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 14:03+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-11 17:59+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439474632.000000\n" +"X-POOTLE-MTIME: 1441994385.000000\n" #: address_auto.xhp msgctxt "" @@ -277,7 +277,7 @@ "6\n" "help.text" msgid "Applying AutoFilter" -msgstr "Aplicar el AutoFiltro" +msgstr "Aplicación del filtro automático" #: autofilter.xhp msgctxt "" @@ -304,7 +304,7 @@ "10\n" "help.text" msgid "Choose Data - Filter - AutoFilter. The combo box arrows are visible in the first row of the range selected." -msgstr "Elija Datos - Filtro - AutoFiltro . Las flechas del cuadro combinado se muestran en la primera fila del área seleccionada." +msgstr "Vaya a Datos ▸ Filtro ▸ Filtro automático. Las flechas del cuadro combinado se muestran en la primera fila del intervalo seleccionado." #: autofilter.xhp msgctxt "" @@ -356,7 +356,7 @@ "par_id4303415\n" "help.text" msgid "To assign different AutoFilters to different sheets, you must first define a database range on each sheet." -msgstr "Para asignar diferentes AutoFiltros a diferentes hojas, debes primero definir el rango de la base de datos en cada hoja." +msgstr "Para asignar diferentes filtros automáticos a hojas distintas, debe primero definir el intervalo de la base de datos en cada hoja." #: autofilter.xhp msgctxt "" @@ -374,7 +374,7 @@ "16\n" "help.text" msgid "Data - Filter - AutoFilter" -msgstr "Datos - Filtros - AutoFiltro" +msgstr "Datos ▸ Filtros ▸ Filtro automático" #: autofilter.xhp msgctxt "" @@ -3097,7 +3097,7 @@ "8\n" "help.text" msgid "From the Source data area box select a source cell range to consolidate with other areas." -msgstr "En el cuadro Área de datos fuente seleccione un área de celdas fuente para consolidar con otras áreas." +msgstr "En el cuadro Área de datos de origen seleccione un intervalo de celdas de origen para consolidarlo con otras áreas." #: consolidate.xhp msgctxt "" @@ -3106,7 +3106,7 @@ "9\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 "Si el área no tiene nombre, haga clic sobre el campo de entrada de la derecha, junto al listado Área de datos fuente. Observe que el cursor de texto parpadea. Escriba ahí la referencia del primer área de datos fuente, o bien realice la selección en la hoja con el ratón." +msgstr "Si el intervalo no tiene nombre, pulse sobre el campo de entrada de la derecha, junto al listado Área de datos de origen. Observe que el cursor de texto parpadea. Escriba ahí la referencia del primer intervalo de datos de origen, o bien realice la selección en la hoja con el ratón." #: consolidate.xhp msgctxt "" @@ -3115,7 +3115,7 @@ "10\n" "help.text" msgid "Click Add to insert the selected range in the Consolidation areas field." -msgstr "Haga clic en Agregar para insertar el área seleccionada en el campo Áreas de consolidación." +msgstr "Pulse en Añadir para insertar el intervalo seleccionado en el campo Áreas de consolidación." #: consolidate.xhp msgctxt "" @@ -5184,7 +5184,7 @@ "3\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 "Utilice la función AutoFiltro para mostrar únicamente aquellos registros de datos que coincidan con el campo de datos." +msgstr "Puede utilizar la función Filtro automático para mostrar únicamente aquellos registros de datos que coincidan con el campo de datos." #: filters.xhp msgctxt "" @@ -7208,7 +7208,7 @@ "11\n" "help.text" msgid "Format - Print ranges - Edit" -msgstr "Formato - Áreas de impresión - Editar" +msgstr "Formato ▸ Intervalos de impresión ▸ Editar" #: main.xhp msgctxt "" @@ -7269,7 +7269,7 @@ "5\n" "help.text" msgid "Database Ranges in Tables" -msgstr "Áreas de base de datos en tablas" +msgstr "Intervalos de base de datos en tablas" #: main.xhp msgctxt "" @@ -9083,7 +9083,7 @@ "13\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 "Si en Formato - Áreas de impresión ha definido una o más áreas de impresión, solamente se imprimirá el contenido de estas áreas de impresión." +msgstr "Si en Formato ▸ Intervalos de impresión ha definido uno o más intervalos de impresión, solamente se imprimirá el contenido de estos intervalos." #: print_landscape.xhp msgctxt "" @@ -9100,7 +9100,7 @@ "par_id8254646\n" "help.text" msgid "Defining Print Ranges on a Sheet" -msgstr "Definir Áreas de Impresión en una Hoja" +msgstr "Definir intervalos de impresión en una hoja" #: print_title_row.xhp msgctxt "" @@ -9152,7 +9152,7 @@ "8\n" "help.text" msgid "Choose Format - Print Ranges - Edit. The Edit Print Ranges dialog appears." -msgstr "Seleccione Formato - Áreas de impresión - Editar. Se abre el diálogo Editar áreas de impresión." +msgstr "Vaya a Formato ▸ Intervalos de impresión ▸ Editar. Se abrirá la ventana Editar intervalos de impresión." #: print_title_row.xhp msgctxt "" @@ -9251,7 +9251,7 @@ "19\n" "help.text" msgid "Format - Print ranges - Edit" -msgstr "Formato - Áreas de impresión - Editar" +msgstr "Formato ▸ Intervalos de impresión ▸ Editar" #: print_title_row.xhp msgctxt "" @@ -9332,7 +9332,7 @@ "par_idN10909\n" "help.text" msgid "Choose Format - Print Ranges - Define." -msgstr "Seleccione Formato - Áreas de impresión - Definir intervalo de impresión." +msgstr "Vaya a Formato ▸ Intervalos de impresión ▸ Definir." #: printranges.xhp msgctxt "" @@ -9356,7 +9356,7 @@ "par_idN1091B\n" "help.text" msgid "Choose Format - Print Ranges - Add." -msgstr "Seleccione Formato - Áreas de impresión - Agregar intervalo de impresión." +msgstr "Vaya a Formato ▸ Intervalos de impresión ▸ Añadir." #: printranges.xhp msgctxt "" @@ -10234,7 +10234,7 @@ "22\n" "help.text" msgid "If you want to know which values in the scenario affect other values, choose Tools - Detective - Trace Dependents. You see arrows to the cells that are directly dependent on the current cell." -msgstr "Si quieres saber cuales son los valores dentro del escenario afectado sobre los valores, escoge Herramientas - Detective - Raestrea los precedentes. Puedes ver celdas a las celdas que son directamente dependiente de l celda actual." +msgstr "Para saber cuáles son los valores en el escenario que afectan otros valores, vaya a Herramientas ▸ Detective ▸ Rastrear dependencias. Verá flechas que apuntan a las celdas que dependen directamente de la celda actual." #: scenario.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/schart/00.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/schart/00.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/schart/00.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/schart/00.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-02 00:14+0200\n" -"PO-Revision-Date: 2014-11-01 20:40+0000\n" -"Last-Translator: Adolfo \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-11 18:12+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \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-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1414874406.000000\n" +"X-POOTLE-MTIME: 1441995178.000000\n" #: 00000004.xhp msgctxt "" @@ -377,7 +377,7 @@ "38\n" "help.text" msgid "Choose Format - Chart Area(Charts)" -msgstr "Seleccione Formato - Área del gráfico (Gráficos)" +msgstr "Vaya a Formato ▸ Área del gráfico (gráficos)" #: 00000004.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/schart/01.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/schart/01.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/schart/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/schart/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-13 14:08+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-13 04:17+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439474920.000000\n" +"X-POOTLE-MTIME: 1442117834.000000\n" #: 03010000.xhp msgctxt "" @@ -4514,7 +4514,7 @@ "par_id6998809\n" "help.text" msgid "On the first page of the Chart Wizard or in the context menu of a chart you can choose a chart type. Opens a dialog to edit the properties of a three dimensional view for Column, Bar, Pie, and Area charts. For Line and XY (Scatter) charts you can see 3D lines." -msgstr "En la primera página del Asistente para gráficos o en el menú de contexto donde puede escoger el tipo de gráfico. Te permite visualizar en tercera dimensión para Columna, Barras, Círculo y Área. Para la gráfica lineal y XY (Dispersión) puede ver las lineas 3D." +msgstr "Puede elegir un tipo de gráfico en la primera página del Asistente de gráficos o en el menú contextual de un gráfico ya insertado. Abre un cuadro de diálogo en el que editar las propiedades de visualización tridimensional para gráficos de columnas, barras, sectores y áreas. Se pueden visualizar líneas en 3D para los gráficos de líneas y XY (dispersión)." #: three_d_view.xhp msgctxt "" @@ -4642,7 +4642,7 @@ "par_id7623828\n" "help.text" msgid "If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes." -msgstr "Si el eje de ángulo derecho está habilitado, puede rotar el contenido del gráfico únicamente en dirección del eje X y Y, es decir, paralelamente a los bordes del gráfico. Ejes con el ángulo derecho están habilitados por defecto para la creación de gráficos en 3D. Gráficos de círculo y anillo no soportan ejes con ángulo derecho." +msgstr "Si están activados los ejes en ángulo recto, solo podrá girar el contenido del gráfico en las direcciones X y Y, es decir, en paralelo a los bordes del gráfico. De manera predeterminada, el eje de ángulo recto está activado para los gráficos en 3D nuevos. Tenga en cuenta que los gráficos de sectores y anillos no admiten los ejes de ángulo recto." #: three_d_view.xhp msgctxt "" @@ -4922,7 +4922,7 @@ "tit\n" "help.text" msgid "Chart Type Area" -msgstr "Gráfico de Tipo Área" +msgstr "Gráfico de tipo Área" #: type_area.xhp msgctxt "" @@ -7034,7 +7034,7 @@ "par_id9969481\n" "help.text" msgid "Enter a label for the secondary x-axis. This option is only available for charts that support a secondary x-axis." -msgstr "Introduzca una etiqueta para el eje X secundario. Esta opción solo está disponible para gráficos que soportan un eje X secundario." +msgstr "Proporcione una etiqueta para el eje X secundario. Esta opción solo está disponible para gráficos que admiten un eje X secundario." #: wiz_chart_elements.xhp msgctxt "" @@ -7042,7 +7042,7 @@ "par_id816675\n" "help.text" msgid "Enter a label for the secondary y-axis. This option is only available for charts that support a secondary y-axis." -msgstr "Introduzca una etiqueta para el eje Y secundario. Esta opción sólo está disponible para gráficos que soportan un eje Y secundario." +msgstr "Proporcione una etiqueta para el eje Y secundario. Esta opción solo está disponible para gráficos que admiten un eje Y secundario." #: wiz_chart_elements.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/schart.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/schart.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/schart.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/schart.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-19 23:01+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2015-08-21 01:48+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \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-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1432076498.000000\n" +"X-POOTLE-MTIME: 1440121692.000000\n" #: main0000.xhp msgctxt "" @@ -609,7 +609,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 "Seleccionar el elemento de la gráfica que quieres dar formato. El elemento tiene la selección de una previsualización de gráfico. Haga clic en la selección de formato para abrir las propiedades de diálogo para los elementos de selección." +msgstr "Seleccione el elemento del gráfico que quiera editar. El elemento se resaltará en la previsualización del gráfico. Pulse en Formato de selección para abrir la ventana de propiedades del elemento seleccionado." #: main0202.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/sdraw.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/sdraw.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/sdraw.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/sdraw.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-07-05 08:37+0000\n" +"PO-Revision-Date: 2015-09-11 18:20+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436085420.000000\n" +"X-POOTLE-MTIME: 1441995640.000000\n" #: main0000.xhp msgctxt "" @@ -736,7 +736,7 @@ "6\n" "help.text" msgid "Area Style / Filling" -msgstr "Área Estilo/Relleno" +msgstr "Estilo/relleno de área" #: main0202.xhp msgctxt "" @@ -1005,7 +1005,7 @@ "12\n" "help.text" msgid "Select Text Area Only" -msgstr "Seleccionar Solo Área de Texto" +msgstr "Seleccionar solo área de texto" #: main0503.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/shared/00.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/00.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/shared/00.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/00.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-04 00:18+0000\n" +"PO-Revision-Date: 2015-09-11 18:51+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438647480.000000\n" +"X-POOTLE-MTIME: 1441997485.000000\n" #: 00000001.xhp msgctxt "" @@ -22,7 +22,7 @@ "tit\n" "help.text" msgid "Frequently-Used Buttons" -msgstr "Botones que se utilizan con más frecuencia" +msgstr "Botones utilizados frecuentemente" #: 00000001.xhp msgctxt "" @@ -31,7 +31,7 @@ "1\n" "help.text" msgid "Frequently-Used Buttons" -msgstr "Botones que se utilizan con más frecuencia" +msgstr "Botones utilizados frecuentemente" #: 00000001.xhp msgctxt "" @@ -49,7 +49,7 @@ "5\n" "help.text" msgid "Clicking Cancel closes a dialog without saving any changes made." -msgstr "Al hacer clic en Cancelar, el diálogo se cierra sin guardar los cambios efectuados." +msgstr "Al pulsar en Cancelar el diálogo se cierra sin guardar los cambios efectuados." #: 00000001.xhp msgctxt "" @@ -8796,7 +8796,7 @@ "31\n" "help.text" msgid "Choose Format - Area - Colors tab" -msgstr "Seleccione la pestaña Formato - Área - Colores" +msgstr "Vaya a Formato ▸ Área ▸ pestaña Colores" #: 00000406.xhp msgctxt "" @@ -8814,7 +8814,7 @@ "66\n" "help.text" msgid "Choose Format - Area - Colors tab - Edit button" -msgstr "Seleccione la pestaña Formato - Área - Colores, botón Editar" +msgstr "Vaya a Formato ▸ Área ▸ pestaña Colores y pulse en el botón Editar" #: 00000406.xhp msgctxt "" @@ -12137,7 +12137,7 @@ "14\n" "help.text" msgid "Choose Format - Chart Area - Borders tab (charts)" -msgstr "Elija la pestaña (gráfico) Formato - Área de diagrama - Bordes" +msgstr "Vaya a Formato ▸ Área de gráfico ▸ pestaña Bordes (gráficos)" #: 00040502.xhp msgctxt "" @@ -12164,7 +12164,7 @@ "17\n" "help.text" msgid "Choose Format - Object - Graphic - Area" -msgstr "Seleccione Formato - Objeto - Gráfico - Área" +msgstr "Vaya a Formato ▸ Objeto ▸ Gráfico ▸ Área" #: 00040502.xhp msgctxt "" @@ -12199,7 +12199,7 @@ "20\n" "help.text" msgid "Choose Format - Object - Graphic - Area - Area tab" -msgstr "Seleccione Formato - Objeto - Gráfico - Área, ficha Área" +msgstr "Vaya a Formato ▸ Objeto ▸ Gráfico ▸ Área ▸ pestaña Área" #: 00040502.xhp msgctxt "" @@ -12208,7 +12208,7 @@ "22\n" "help.text" msgid "Choose Format - Styles and Formatting - open context menu and choose Modify/New - Area tab (presentation documents)" -msgstr "Elija Formato - Estilo y formato -, abra el menú contextual Modificar/Nuevo -, ficha Área (documentos de presentación)" +msgstr "Vaya a Formato ▸ Estilos y formato, seleccione en el menú contextual Modificar/nuevo y elija la pestaña Área (documentos de presentación)" #: 00040502.xhp msgctxt "" @@ -12217,7 +12217,7 @@ "23\n" "help.text" msgid "Choose Format - Title - Area tab (chart documents)" -msgstr "Elija la pestaña Formato - Título - Área (documentos del gráfico)" +msgstr "Vaya a Formato ▸ Título ▸ pestaña Área (documentos con gráficos)" #: 00040502.xhp msgctxt "" @@ -12226,7 +12226,7 @@ "24\n" "help.text" msgid "Choose Format - Legend - Area tab (chart documents)" -msgstr "Elija la pestaña (gráfico)Formato - Leyenda - Área" +msgstr "Vaya a Formato ▸ Leyenda ▸ pestaña Área (documentos con gráficos)" #: 00040502.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/shared/01.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/01.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-16 02:32+0000\n" +"PO-Revision-Date: 2015-09-13 16:35+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439692329.000000\n" +"X-POOTLE-MTIME: 1442162134.000000\n" #: 01010000.xhp msgctxt "" @@ -12645,7 +12645,7 @@ "30\n" "help.text" msgid "Use the Standard Filter to refine and to combine AutoFilter search options." -msgstr "Use el Filtro Estándar para refinar y combinar las opciones de busqueda de AutoFiltro" +msgstr "Utilice el Filtro estándar para refinar y combinar las opciones de búsqueda del Filtro automático." #: 02250000.xhp msgctxt "" @@ -22941,7 +22941,7 @@ "par_id8872646\n" "help.text" msgid "Not all types of objects can be selected together. Not all modules (Writer, Calc, Impress, Draw) support all types of alignment." -msgstr "No todos los tipos de objetos se pueden seleccionar simultaneamente. No todos los módulos (Writer, Calc, Impress, Draw) soportan todos los tipos de alineación." +msgstr "No todos los tipos de objetos se pueden seleccionar simultáneamente. No todos los módulos (Writer, Calc, Impress, Draw) admiten todos los tipos de alineación." #: 05070100.xhp msgctxt "" @@ -43012,7 +43012,7 @@ "par_id4139225\n" "help.text" msgid "As an administrator, open a terminal or command shell." -msgstr "Como administrador, abra una terminal o línea de comandos." +msgstr "Con permisos administrativos, abra una consola o intérprete de órdenes." #: packagemanager.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 15:00+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-12 16:17+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439478006.000000\n" +"X-POOTLE-MTIME: 1442074657.000000\n" #: 01000000.xhp msgctxt "" @@ -2009,7 +2009,7 @@ "9\n" "help.text" msgid "Location" -msgstr "Indique por favor el lugar de su reunión" +msgstr "Ubicación" #: 01040200.xhp msgctxt "" @@ -8454,7 +8454,7 @@ "par_idN105B7\n" "help.text" msgid "Location" -msgstr "Indique por favor el lugar de su reunión" +msgstr "Ubicación" #: 01170400.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-04 00:52+0000\n" +"PO-Revision-Date: 2015-09-14 04:25+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438649558.000000\n" +"X-POOTLE-MTIME: 1442204757.000000\n" #: 02000000.xhp msgctxt "" @@ -690,7 +690,7 @@ "285\n" "help.text" msgid "Edit Join Properties. Alternatively, press Tab until the line is selected, then press Shift+F10 to display the context menu and there choose the command Edit. Some databases support only a subset of the possible join types." -msgstr "Edita Propiedades de Conexión . Como alternativa, presione Tabulador hasta que la línea se seleccione, luego presione MAYUSCULA+F10 para mostrar el menú contextual donde debe seleccionarEditar. Algunas bases de datos solo soportan un subconjunto de posibles tipos de conexión." +msgstr "Edita las propiedades de la unión. Además puede oprimir la tecla Tab hasta seleccionar la línea y, a continuación, Mayús + F10 para mostrar el menú contextual y seleccionar la orden Editar. Algunas bases de datos admiten solo algunos de los tipos de unión posibles." #: 02010100.xhp msgctxt "" @@ -7645,7 +7645,7 @@ "par_id3837397\n" "help.text" msgid "The control box is available for all data source types which support write access to their data. The control box does not exist for spreadsheets, text, csv, and the various read-only address books." -msgstr "La casilla de control esta disponible para todos los tipos de fuentes de datos los cuales soporta acceso de escribir a sus datos. La casilla de control no existe para hojas de cálculos, texto, csv, y los varios libros de direcciones de leer solamente." +msgstr "El cuadro de control está disponible para todos los tipos de orígenes de datos compatibles con el acceso de escritura a los datos, pero no para hojas de cálculo, archivos de texto, archivos CSV y libretas de direcciones de solo lectura." #: dabaadvpropdat.xhp msgctxt "" @@ -7709,7 +7709,7 @@ "par_id66841632\n" "help.text" msgid "The heuristics sometimes fails. This tri-state check box by default is set to the undetermined state, which means \"apply the heuristics\". If the check box is enabled, primary key support is assumed. If the check box is disabled, no primary key support is assumed." -msgstr "La heurística a veces falla. Esta casilla de verificación (con tres estados) de forma predeterminada se encuentra en el estado indeterminado, lo que significa \"aplicar la heurística\". Si la casilla de verificación está activada, se asume que soporta clave primaria. Si la casilla de verificación está desactivada, se supone que no hay soporte clave primaria." +msgstr "La heurística puede fallar en ocasiones. Esta casilla de tres estados está establecida de manera predeterminada en el estado indeterminado, el cual indica «aplicar la heurística». Si la casilla está activada, se presupone que se admiten claves primarias; si la casilla está desactivada, no se presupone que se admiten estas claves." #: dabaadvpropdat.xhp msgctxt "" @@ -10733,7 +10733,7 @@ "par_idN107BD\n" "help.text" msgid "In %PRODUCTNAME Base, you can access data that is stored in a wide variety of database file formats. %PRODUCTNAME Base natively supports some flat file database formats, such as the dBASE format. You can also use %PRODUCTNAME Base to connect to external relational databases, such as databases from MySQL or Oracle." -msgstr "En %PRODUCTNAME Base, puede accesar los datos almacenados en una ámplia variedad de formatos de base de datos. %PRODUCTNAME Base soporta nativamente algunos formatos de base de datos como archivos planos, como el formato dBASE. Puede tambien usar %PRODUCTNAME Base para conectarse con bases de datos relacionales externas, tales como MySQL u Oracle." +msgstr "En %PRODUCTNAME Base puede acceder a los datos almacenados en varios formatos de base de datos. %PRODUCTNAME Base admite de manera nativa algunos formatos de base de datos de archivos planos, como el formato dBASE. Puede también usar %PRODUCTNAME Base para conectarse con bases de datos relacionales externas, tales como MySQL u Oracle." #: main.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 15:17+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-14 04:26+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439479070.000000\n" +"X-POOTLE-MTIME: 1442204804.000000\n" #: aaa_start.xhp msgctxt "" @@ -6257,7 +6257,7 @@ "par_id0820200803501449\n" "help.text" msgid "The %PRODUCTNAME dialogs support file download and upload using secure https connections." -msgstr "Los diálogos de %PRODUCTNAME soportan descargas de archivos y subidas usando conexiones seguras https." +msgstr "Los cuadros de diálogo de %PRODUCTNAME admiten cargar y descargar archivos mediante conexiones seguras HTTPS." #: doc_open.xhp msgctxt "" @@ -12219,7 +12219,7 @@ "par_id130619\n" "help.text" msgid "If the listbox doesn't list the language that you want, see \"Adding More UI Languages\"." -msgstr "Si la lista no tiene el idioma que quieres, ve a \"Agregar mas idiomas a la interfaz\"." +msgstr "Si la lengua que busca no aparece en el cuadro de lista, vea «Añadir más idiomas a la interfaz»." #: language_select.xhp msgctxt "" @@ -17684,7 +17684,7 @@ "5\n" "help.text" msgid "Under Windows, select Run from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms." -msgstr "En Windows, seleccione Ejecutar en el menú Inicio, o abra un terminal en las plataformas Linux, *BSD, y Mac OS X." +msgstr "En Windows, seleccione Ejecutar en el menú Inicio, o abra un terminal en las plataformas Linux, *BSD y Mac OS X." #: start_parameters.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/shared.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/shared.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-01-18 19:13+0000\n" -"Last-Translator: Adolfo \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-09-13 16:33+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \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-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1421608421.000000\n" +"X-POOTLE-MTIME: 1442162021.000000\n" #: 3dsettings_toolbar.xhp msgctxt "" @@ -2084,7 +2084,7 @@ "2\n" "help.text" msgid "$[officename] supports the Java platform for running applications and components based on the JavaBeans architecture." -msgstr "$[officename] soporta la plataforma Java para correr aplicaciones y componentes basados en la arquitectura JavaBeans." +msgstr "$[officename] admite la plataforma Java para ejecutar aplicaciones y componentes basados en la arquitectura JavaBeans." #: main0650.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 15:32+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-08-21 01:03+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439479934.000000\n" +"X-POOTLE-MTIME: 1440119030.000000\n" #: 01170000.xhp msgctxt "" @@ -5300,7 +5300,7 @@ "29\n" "help.text" msgid "Lists sounds that can played during the slide transition." -msgstr "Muestra una lista de los sonidos que se reproducirán durante la transición de las diapositivas." +msgstr "Muestra una lista de los sonidos que pueden reproducirse durante la transición de las diapositivas." #: 06040000.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:11+0200\n" -"PO-Revision-Date: 2015-08-13 15:38+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-08-21 01:50+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439480308.000000\n" +"X-POOTLE-MTIME: 1440121854.000000\n" #: 3d_create.xhp msgctxt "" @@ -1154,7 +1154,7 @@ "par_idN10827\n" "help.text" msgid "Choose View - Master - Slide Master to change to the slide master." -msgstr "Escoger Ver - Maestro - Patrón de diapositiva para cambiar al patrón de diapositiva." +msgstr "Vaya a Ver ▸ Patrón ▸ Patrón de diapositivas para ver el patrón de diapositivas." #: background.xhp msgctxt "" @@ -1424,7 +1424,7 @@ "par_id1956236\n" "help.text" msgid "If you want to change the position and formatting of the master objects, choose View - Master - Slide Master." -msgstr "Si quieres cambiar la posición y el formato de un objeto maestro, seleccione Ver - Fondo - Patrón de diapositiva." +msgstr "Para cambiar la posición y el formato de los objetos del patrón, vaya a Ver ▸ Patrón ▸ Patrón de diapositivas." #: footer.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.0.1~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 16:16+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-12 16:20+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439482575.000000\n" +"X-POOTLE-MTIME: 1442074800.000000\n" #: anchor_object.xhp msgctxt "" @@ -7755,7 +7755,7 @@ "11\n" "help.text" msgid "To change the text that appears in the index, type the text that you want in the Entry box. The text that you type here does not replace the selected text in the document." -msgstr "Para cambiar el texto que aparece en el indice, escribe el texto que quieres en la caja de Entrada. El texto que escribes aquí no reemplaza el texto seleccionado en el documento." +msgstr "Para cambiar el texto que aparece en el índice, escriba lo que desee en el cuadro Entrada. El texto que escriba aquí no reemplazará el texto seleccionado en el documento." #: indices_enter.xhp msgctxt "" @@ -11232,7 +11232,7 @@ "par_id1449324\n" "help.text" msgid "At the end of this help page, we'll discuss the scope of page styles in detail. If you are unsure about the page style concept, please read the section at the end of this page." -msgstr "Al final de esta página de ayuda, discutiremos el alcance de los estilos de página en detalle. Si aun tiene dudas sobre el concepto de estilos de página, por favor lea la sección al final de esta página." +msgstr "Al final de esta página encontrará información detallada acerca del concepto de los estilos de página." #: pageorientation.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-07 01:59+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-05 05:27+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438912763.000000\n" +"X-POOTLE-MTIME: 1441430824.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -365,7 +365,7 @@ "Label\n" "value.text" msgid "~Trace Dependents" -msgstr "~Rastrear los dependientes" +msgstr "Rastrear ~dependencias" #: CalcCommands.xcu msgctxt "" @@ -2741,7 +2741,7 @@ "Label\n" "value.text" msgid "~Hide AutoFilter" -msgstr "~Ocultar AutoFiltro" +msgstr "~Ocultar filtro automático" #: CalcCommands.xcu msgctxt "" @@ -3307,8 +3307,8 @@ "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" -msgstr "Rellenar" +msgid "F~ill" +msgstr "~Rellenar" #: CalcCommands.xcu msgctxt "" @@ -7907,7 +7907,7 @@ "Label\n" "value.text" msgid "Close Master View" -msgstr "Cerrar vista de documento maestro" +msgstr "Cerrar vista de patrón" #: DrawImpressCommands.xcu msgctxt "" @@ -8906,7 +8906,7 @@ "UIName\n" "value.text" msgid "Master View" -msgstr "Vista de documento maestro" +msgstr "Vista de patrón" #: DrawWindowState.xcu msgctxt "" @@ -15153,8 +15153,8 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" -msgstr "Modo de edición" +msgid "E~dit Mode" +msgstr "Modo de e~dición" #: GenericCommands.xcu msgctxt "" @@ -18412,7 +18412,7 @@ "Label\n" "value.text" msgid "AutoFilter" -msgstr "AutoFiltro" +msgstr "Filtro automático" #: GenericCommands.xcu msgctxt "" @@ -19969,7 +19969,7 @@ "UIName\n" "value.text" msgid "Master View" -msgstr "Vista de documento maestro" +msgstr "Vista de patrón" #: ImpressWindowState.xcu msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/es/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/es/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-07 01:41+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-12 16:21+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438911699.000000\n" +"X-POOTLE-MTIME: 1442074907.000000\n" #: condformatdlg.src msgctxt "" @@ -1449,7 +1449,7 @@ "STR_UNDO_DETADDSUCC\n" "string.text" msgid "Trace Dependents" -msgstr "Rastrear los dependientes" +msgstr "Rastrear dependencias" #: globstr.src msgctxt "" @@ -2576,7 +2576,7 @@ "STR_PRINT_INVALID_AREA\n" "string.text" msgid "Invalid print range" -msgstr "Área de impresión no válida" +msgstr "El intervalo de impresión no es válido" #: globstr.src msgctxt "" @@ -3330,9 +3330,9 @@ "Please check your installation and install \n" "the desired language if necessary" msgstr "" -"no está disponible para la verificación.\n" -"Revise por favor su instalación\n" -"e instale, si es necesario, el idioma deseado." +"no está disponible para la revisión ortográfica.\n" +"Compruebe su instalación y, si es necesario,\n" +"instale el idioma deseado" #: globstr.src msgctxt "" @@ -3364,8 +3364,8 @@ "the desired language if necessary" msgstr "" "no está disponible para el diccionario de sinónimos.\n" -" Verifique por favor su instalación e instale en caso \n" -"necesario el idioma deseado." +"Compruebe su instalación y, si es necesario,\n" +"instale el idioma deseado" #: globstr.src msgctxt "" @@ -3581,7 +3581,7 @@ "STR_ERR_AUTOFILTER\n" "string.text" msgid "AutoFilter not possible" -msgstr "El AutoFiltro no es posible" +msgstr "No se puede aplicar el filtro automático" #: globstr.src msgctxt "" @@ -4920,10 +4920,11 @@ msgstr "Nombre" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "Intervalo o expresión de fórmula" @@ -4999,6 +5000,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Intervalo" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/sd/source/ui/app.po libreoffice-5.0.2~rc2/translations/source/es/sd/source/ui/app.po --- libreoffice-5.0.1~rc2/translations/source/es/sd/source/ui/app.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/sd/source/ui/app.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-07 01:32+0000\n" +"PO-Revision-Date: 2015-09-12 16:30+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438911147.000000\n" +"X-POOTLE-MTIME: 1442075411.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -3484,7 +3484,7 @@ "STR_UNDO_APPLY_3D_FAVOURITE\n" "string.text" msgid "Apply 3D favorite" -msgstr "Asignar favorito 3D" +msgstr "Aplicar favorito 3D" #: strings.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/sd/source/ui/dlg.po libreoffice-5.0.2~rc2/translations/source/es/sd/source/ui/dlg.po --- libreoffice-5.0.1~rc2/translations/source/es/sd/source/ui/dlg.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/sd/source/ui/dlg.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2014-09-27 16:59+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2015-08-21 02:46+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1411837196.000000\n" +"X-POOTLE-MTIME: 1440125173.000000\n" #: navigatr.src msgctxt "" @@ -77,7 +77,7 @@ "TBI_SHAPE_FILTER\n" "toolboxitem.text" msgid "Show Shapes" -msgstr "Muestra Figuras" +msgstr "Mostrar formas" #: navigatr.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/es/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/es/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-08-08 15:20+0000\n" -"Last-Translator: Adolfo \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-03 19:22+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407511218.000000\n" +"X-POOTLE-MTIME: 1441308137.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Predeterminado" +msgid "According to layout" +msgstr "Según la disposición" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/svtools/source/misc.po libreoffice-5.0.2~rc2/translations/source/es/svtools/source/misc.po --- libreoffice-5.0.1~rc2/translations/source/es/svtools/source/misc.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/svtools/source/misc.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-01 00:29+0000\n" +"PO-Revision-Date: 2015-09-12 10:17+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438388996.000000\n" +"X-POOTLE-MTIME: 1442053077.000000\n" #: imagemgr.src msgctxt "" @@ -2616,7 +2616,7 @@ "LANGUAGE_USER_TAGALOG\n" "pairedlist.text" msgid "Tagalog" -msgstr "Tagalog" +msgstr "Tagalo" #: langtab.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/svx/source/dialog.po libreoffice-5.0.2~rc2/translations/source/es/svx/source/dialog.po --- libreoffice-5.0.1~rc2/translations/source/es/svx/source/dialog.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/svx/source/dialog.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-05-12 15:36+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2015-09-12 10:18+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \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-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431445013.000000\n" +"X-POOTLE-MTIME: 1442053083.000000\n" #: bmpmask.src msgctxt "" @@ -4768,7 +4768,7 @@ "RID_SUBSETSTR_HALFW_FULLW_FORMS\n" "string.text" msgid "Half-width and Full-width Forms" -msgstr "Formas anchas y medio anchas" +msgstr "Formas de anchura media y completa" #: ucsubset.src msgctxt "" @@ -5227,7 +5227,7 @@ "RID_SUBSETSTR_TAGALOG\n" "string.text" msgid "Tagalog" -msgstr "Tagalog" +msgstr "Tagalo" #: ucsubset.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/sw/source/ui/utlui.po libreoffice-5.0.2~rc2/translations/source/es/sw/source/ui/utlui.po --- libreoffice-5.0.1~rc2/translations/source/es/sw/source/ui/utlui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-04-28 04:10+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2015-09-12 10:12+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1430194249.000000\n" +"X-POOTLE-MTIME: 1442052775.000000\n" #: poolfmt.src msgctxt "" @@ -1415,7 +1415,7 @@ "STR_POOLCHR_RUBYTEXT\n" "string.text" msgid "Rubies" -msgstr "Rubíes" +msgstr "Guías de pronunciación «ruby»" #: poolfmt.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/swext/mediawiki/help.po libreoffice-5.0.2~rc2/translations/source/es/swext/mediawiki/help.po --- libreoffice-5.0.1~rc2/translations/source/es/swext/mediawiki/help.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/swext/mediawiki/help.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-02 00:05+0200\n" -"PO-Revision-Date: 2014-10-30 07:42+0000\n" -"Last-Translator: Adolfo \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-09-14 04:31+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \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-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1414654963.000000\n" +"X-POOTLE-MTIME: 1442205079.000000\n" #: help.tree msgctxt "" @@ -614,7 +614,7 @@ "par_id8216193\n" "help.text" msgid "The charset of the transformation result is fixed to UTF-8. Depending on your system, this might not be the default charset. This might cause \"special characters\" to look broken when viewed with default settings. However, you can switch your editor to UTF-8 encoding to fix this. If your editor does not support switching the encoding, you can display the result of the transformation in the Firefox browser and switch the encoding to UTF-8 there. Now, you can cut and paste the transformation result to your program of choice." -msgstr "El conjunto de caracteres del resultado de la conversión está configurado a UTF-8. Dependiendo en su sistema, puede que no sea el conjunto de caracteres predeterminado. Que puede resultar en \"caracteres especiales\" con apariencia extraña. Sin embargo, puede cambiar el editor a utilizar codificación UTF-8 para arreglar esto. Si su editor no soporta cambiar la codificación, puede mostrar el resultado en el navegador Firefox y cambiarlo la codificación de UTF-8. Ahora, puede cortar y pegar las conversiones resultante en el programa de su selección." +msgstr "El conjunto de caracteres del resultado de la transformación está configurado a UTF-8. Según el sistema, puede que este no sea el conjunto de caracteres predeterminado. Esto puede provocar que ciertos caracteres se muestren incorrectamente al visualizarlos en la configuración predeterminada. Sin embargo, puede cambiar el editor a la codificación UTF-8 para corregirlo. Si el editor no permite cambiar la codificación, puede mostrar el resultado en el navegador Firefox y cambiar a la codificación UTF-8 ahí. Luego podrá cortar y pegar la transformación resultante en el programa de su elección." #: wikisend.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/es/vcl/source/src.po libreoffice-5.0.2~rc2/translations/source/es/vcl/source/src.po --- libreoffice-5.0.1~rc2/translations/source/es/vcl/source/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/es/vcl/source/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-11-20 04:39+0000\n" -"Last-Translator: Adolfo \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-09-12 10:06+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \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-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416458391.000000\n" +"X-POOTLE-MTIME: 1442052367.000000\n" #. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string #: btntext.src @@ -983,7 +983,7 @@ "#8 (Monarch) Envelope\n" "itemlist.text" msgid "#8 (Monarch) Envelope" -msgstr "Sobre del n.º 8 (monarca)" +msgstr "Sobre del n.º 8 (Monarch)" #: print.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/et/dbaccess/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/et/dbaccess/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/et/dbaccess/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/et/dbaccess/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-06-16 19:50+0000\n" +"PO-Revision-Date: 2015-09-13 08:33+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434484248.000000\n" +"X-POOTLE-MTIME: 1442133216.000000\n" #: admindialog.ui msgctxt "" @@ -2630,7 +2630,7 @@ "label\n" "string.text" msgid "Use Outer Join syntax '{oj }'" -msgstr "Välise ühenduse süntaksi '{OJ}' kasutamine" +msgstr "Välise ühenduse süntaksi '{oj }' kasutamine" #: specialsettingspage.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/et/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/et/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/et/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/et/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-26 00:03+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-13 08:21+0000\n" +"Last-Translator: Mihkel Tõnnov \n" "Language-Team: LANGUAGE \n" "Language: et\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435277027.000000\n" +"X-POOTLE-MTIME: 1442132514.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7987,8 +7987,8 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" -msgstr "1:30" +msgid "1.30" +msgstr "1.30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7996,8 +7996,8 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" -msgstr "2:30" +msgid "2.30" +msgstr "2.30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8005,8 +8005,8 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" -msgstr "3:30" +msgid "3.30" +msgstr "3.30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8014,8 +8014,8 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" -msgstr "4:30" +msgid "4.30" +msgstr "4.30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8023,8 +8023,8 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" -msgstr "5:30" +msgid "5.30" +msgstr "5.30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8032,8 +8032,8 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" -msgstr "6:30" +msgid "6.30" +msgstr "6.30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8041,8 +8041,8 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" -msgstr "7:30" +msgid "7.30" +msgstr "7.30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8050,8 +8050,8 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" -msgstr "8:30" +msgid "8.30" +msgstr "8.30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8059,8 +8059,8 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" -msgstr "9:30" +msgid "9.30" +msgstr "9.30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8068,8 +8068,8 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" -msgstr "10:30" +msgid "10.30" +msgstr "10.30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8077,8 +8077,8 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" -msgstr "11:30" +msgid "11.30" +msgstr "11.30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8086,8 +8086,8 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" -msgstr "12:30" +msgid "12.30" +msgstr "12.30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-5.0.1~rc2/translations/source/et/helpcontent2/source/text/shared/guide.po libreoffice-5.0.2~rc2/translations/source/et/helpcontent2/source/text/shared/guide.po --- libreoffice-5.0.1~rc2/translations/source/et/helpcontent2/source/text/shared/guide.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/et/helpcontent2/source/text/shared/guide.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-05-17 12:12+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-14 14:48+0000\n" +"Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431864739.000000\n" +"X-POOTLE-MTIME: 1442242130.000000\n" #: aaa_start.xhp msgctxt "" @@ -18524,13 +18524,12 @@ msgstr "Käivitusaken" #: startcenter.xhp -#, fuzzy msgctxt "" "startcenter.xhp\n" "bm_id0820200802500562\n" "help.text" msgid "backing window start center" -msgstr "taustaaken alustuskeskus" +msgstr "taustaaken käivitusaken alustuskeskus" #: startcenter.xhp msgctxt "" @@ -18549,13 +18548,12 @@ msgstr "Head %PRODUCTNAME'i kasutamist! Täname, et kasutad %PRODUCTNAME'i Abi. Vajuta alati F1, kui vajad abi %PRODUCTNAME'i kasutamisel." #: startcenter.xhp -#, fuzzy msgctxt "" "startcenter.xhp\n" "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 an icon on the left pane to open a new document or a file dialog." -msgstr "Käivitusaken avaneb juhul, kui %PRODUCTNAME'is pole ühtegi avatud dokumenti. Uue dokumendi või mõne olemasoleva avamiseks klõpsa vastaval ikoonil." +msgstr "Käivitusakent näidatakse siis, kui %PRODUCTNAME'is pole ühtegi avatud dokumenti. See on jaotatud kaheks paneeliks. Uue dokumendi loomiseks või failidialoogi avamiseks klõpsa vastaval ikoonil vasakpoolsel paneelil." #: startcenter.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/et/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/et/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/et/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/et/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-24 08:27+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-13 08:25+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1432456035.000000\n" +"X-POOTLE-MTIME: 1442132716.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3307,7 +3307,7 @@ "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Täida" #: CalcCommands.xcu @@ -15153,7 +15153,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "Muutmisrežiim" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/et/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.0.2~rc2/translations/source/et/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.0.1~rc2/translations/source/et/officecfg/registry/data/org/openoffice/Office.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/et/officecfg/registry/data/org/openoffice/Office.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-06-16 19:51+0000\n" +"PO-Revision-Date: 2015-09-13 08:34+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434484296.000000\n" +"X-POOTLE-MTIME: 1442133290.000000\n" #: Addons.xcu msgctxt "" @@ -89,17 +89,15 @@ msgstr "PUHASTA_EKRAAN" #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m10\n" "Title\n" "value.text" msgid "Logo command line (press Enter for command execution or F1 for help)" -msgstr "Logo käsurida (käsu täitmiseks vajuta siin Enter, abi saamiseks F1)" +msgstr "Logo käsurida (käsu täitmiseks vajuta Enter, abi saamiseks F1)" #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m09\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/et/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/et/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/et/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/et/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-05-24 08:27+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-13 08:36+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1432456047.000000\n" +"X-POOTLE-MTIME: 1442133381.000000\n" #: condformatdlg.src msgctxt "" @@ -4921,7 +4921,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "Vahemik või valemiavaldis" @@ -4997,6 +4997,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Vahemik" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/et/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/et/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/et/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/et/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-06-06 18:52+0300\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-13 08:28+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1372248785.0\n" +"X-POOTLE-MTIME: 1442132937.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Vaikimisi" +msgid "According to layout" +msgstr "Vastavalt paigutusele" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/et/sw/uiconfig/swriter/ui.po libreoffice-5.0.2~rc2/translations/source/et/sw/uiconfig/swriter/ui.po --- libreoffice-5.0.1~rc2/translations/source/et/sw/uiconfig/swriter/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/et/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-06-16 19:56+0000\n" +"PO-Revision-Date: 2015-09-13 08:39+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434484610.000000\n" +"X-POOTLE-MTIME: 1442133587.000000\n" #: abstractdialog.ui msgctxt "" @@ -10597,7 +10597,6 @@ msgstr "Veerg:" #: opttablepage.ui -#, fuzzy msgctxt "" "opttablepage.ui\n" "label14\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/eu/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/eu/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/eu/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eu/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-26 00:00+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 13:42+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: eu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435276817.000000\n" +"X-POOTLE-MTIME: 1439559774.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8000,7 +8000,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8009,7 +8009,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8018,7 +8018,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8027,7 +8027,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8036,7 +8036,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8045,7 +8045,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8054,7 +8054,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8063,7 +8063,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8072,7 +8072,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8081,7 +8081,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8090,7 +8090,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8099,7 +8099,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/eu/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/eu/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/eu/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eu/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-27 00:11+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-12 11:05+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 14:09+0000\n" "Last-Translator: system user <>\n" "Language-Team: Librezale \n" "Language: eu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431428714.000000\n" +"X-POOTLE-MTIME: 1439561386.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3303,12 +3303,13 @@ msgstr "Ezabatu orrialde-~jauzia" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Bete" #: CalcCommands.xcu @@ -15156,12 +15157,13 @@ msgstr "~Buletak eta numerazioa..." #: GenericCommands.xcu +#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "E~dizio-modua" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/eu/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/eu/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/eu/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eu/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-14 14:20+0000\n" "Last-Translator: system user <>\n" "Language-Team: Librezale \n" @@ -4927,7 +4927,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5005,6 +5005,15 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Barrutia" + +#: globstr.src +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" "STR_HEADER_COND\n" "string.text" msgid "First Condition" @@ -7768,13 +7777,14 @@ msgstr "Diferentzia kalkulatzeko metodoa: modua = 0 amerikar metodoarentzat (NASD), Modua = 1 europar metodoarentzat." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_NETWORKDAYS\n" "1\n" "string.text" msgid "Returns the number of workdays between two dates using arguments to indicate weekenddays and holidays." -msgstr "" +msgstr "Bi dataren arteko lanegun-kopurua ematen du asteburuko egunak eta jaiegunak adierazteko argumentuak erabiliz." #: scfuncs.src msgctxt "" @@ -13088,13 +13098,14 @@ msgstr "Zein zenbakiren multiplora biribildu behar den." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CEIL_PRECISE\n" "1\n" "string.text" msgid "Rounds a number up to the nearest multiple of significance, regardless of sign of significance." -msgstr "" +msgstr "Zenbakia gora biribiltzen du, zenbaki esanguratsuaren multiplo hurbilenera, haren ikurra kontuan hartu gabe." #: scfuncs.src msgctxt "" @@ -13999,13 +14010,14 @@ msgstr "Lineal_mota" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n" "7\n" "string.text" msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears." -msgstr "" +msgstr "Mota = 0 bada, zero puntutik kalkulatuko dira linealak; bestela, lerratutako linealak." #: scfuncs.src msgctxt "" @@ -14080,13 +14092,14 @@ msgstr "Funtzio_mota" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n" "7\n" "string.text" msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." -msgstr "" +msgstr "Mota = 0 bada, orduan y=m^x moduan kalkulatuko dira funtzioak, edota y=b*m^x moduan." #: scfuncs.src msgctxt "" @@ -16465,13 +16478,14 @@ msgstr "0 edo FALSE balioak probabilitatearen dentsitate-funtzioa kalkulatzen du. Beste edozein baliok edo TRUE balioak banaketa metatuaren funtzioa kalkulatzen du." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CRIT_BINOM\n" "1\n" "string.text" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "" +msgstr "Banaketa binomial metatua irizpide-balioa baino handiagoa edo berdina duten balioetatik txikiena ematen du.>" #: scfuncs.src msgctxt "" @@ -25982,57 +25996,3 @@ "string.text" msgid "Collapse Formula Bar" msgstr "Tolestu formula-barra" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Smilies\n" -"stringlist.text" -msgid "3 Smilies" -msgstr "3 Aurpegierak" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Colored Smilies\n" -"stringlist.text" -msgid "3 Colored Smilies" -msgstr "3 Aurpegiera Koloredunak" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" -"1\n" -"string.text" -msgid "Returns the day of the week for the date value as an integer (1-7)." -msgstr "Data-balioari dagokion asteko eguna ematen du osoko zenbaki gisa (1-7)." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n" -"7\n" -"string.text" -msgid "If given and not equal to zero then rounded down according to amount when a negative number and significance." -msgstr "Adierazten bada, eta zero ez bada, zenbakia eta zenbaki esanguratsua negatiboak direnean, balio absolutuaren arabera biribilduko da behera." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MS\n" -"1\n" -"string.text" -msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance." -msgstr "Zenbakia behera biribiltzen du, zenbaki esanguratsuaren multiplo hurbilenera, haren ikurra kontuan hartu gabe." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ENCODEURL\n" -"3\n" -"string.text" -msgid "A string to be URL encoded" -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/eu/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/eu/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/eu/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eu/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-08-05 11:34+0000\n" -"Last-Translator: Asier \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 14:37+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1375702447.0\n" +"X-POOTLE-MTIME: 1439563063.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Lehenetsia" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/eu/starmath/source.po libreoffice-5.0.2~rc2/translations/source/eu/starmath/source.po --- libreoffice-5.0.1~rc2/translations/source/eu/starmath/source.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/eu/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-20 09:18+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/fa/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/fa/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/fa/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fa/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 23:54+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 14:05+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: fa\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435276446.000000\n" +"X-POOTLE-MTIME: 1439561132.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8000,7 +8000,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8009,7 +8009,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8018,7 +8018,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8027,7 +8027,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8036,7 +8036,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8045,7 +8045,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8054,7 +8054,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8063,7 +8063,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8072,7 +8072,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8081,7 +8081,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8090,7 +8090,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8099,7 +8099,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-12 11:32+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 14:22+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: fa\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431430363.000000\n" +"X-POOTLE-MTIME: 1439562152.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -1040,13 +1040,14 @@ msgstr "شرایط" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ColorScaleFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Color Scale" -msgstr "" +msgstr "قالب‌بندی ~شرطی..." #: CalcCommands.xcu msgctxt "" @@ -3344,12 +3345,13 @@ msgstr "حذف ~شکست صفحه" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "پر کردن" #: CalcCommands.xcu @@ -15266,7 +15268,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/fa/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/fa/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/fa/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fa/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-14 14:37+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" @@ -4936,7 +4936,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5009,6 +5009,16 @@ msgstr "" #: globstr.src +#, fuzzy +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "محدوده" + +#: globstr.src msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" @@ -14574,13 +14584,14 @@ msgstr "عدد " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_S\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "" +msgstr "عدد ۱، عدد ۲، ... ۱ تا ۳۰ شناسه‌ای هستند که نمونه‌ای از جامعه را ترسیم می‌کنند." #: scfuncs.src msgctxt "" @@ -14655,13 +14666,14 @@ msgstr "عدد " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population." -msgstr "" +msgstr "عدد ۱، عدد ۲، ... ۱ تا ۳۰ آرگومان عددی نمایندهٔ جامعه هستند." #: scfuncs.src msgctxt "" @@ -14736,13 +14748,14 @@ msgstr "عدد " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_S\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "" +msgstr "عدد ۱، عدد ۲، ... ۱ تا ۳۰ شناسه‌ای هستند که نمونه‌ای از جامعه را ترسیم می‌کنند." #: scfuncs.src msgctxt "" @@ -14790,13 +14803,14 @@ msgstr "عدد " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." -msgstr "" +msgstr "عدد ۱، عدد ۲، ... ۱ تا ۳۰ آرگومان عددی نمایندهٔ جامعه هستند." #: scfuncs.src msgctxt "" @@ -14817,13 +14831,14 @@ msgstr "عدد " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." -msgstr "" +msgstr "عدد ۱، عدد ۲، ... ۱ تا ۳۰ آرگومان عددی نمایندهٔ جامعه هستند." #: scfuncs.src msgctxt "" @@ -15147,13 +15162,14 @@ msgstr "عدد " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." -msgstr "" +msgstr "عدد ۱، عدد ۲، ... ۱ تا ۳۰ شناسه‌ای هستند که نمونه‌ای از جامعه را ترسیم می‌کنند." #: scfuncs.src msgctxt "" @@ -15174,13 +15190,14 @@ msgstr "عدد " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MULTI\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample." -msgstr "" +msgstr "عدد ۱، عدد ۲، ... ۱ تا ۳۰ شناسه‌ای هستند که نمونه‌ای از جامعه را ترسیم می‌کنند." #: scfuncs.src msgctxt "" @@ -15900,13 +15917,14 @@ msgstr "نوع" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_EQ\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "ترتیب دنباله: ۰ به معنی صعودی و ۱ به معنی نزولی است." #: scfuncs.src msgctxt "" @@ -15963,13 +15981,14 @@ msgstr "نوع" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK_AVG\n" "7\n" "string.text" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "" +msgstr "ترتیب دنباله: ۰ به معنی صعودی و ۱ به معنی نزولی است." #: scfuncs.src msgctxt "" @@ -16594,13 +16613,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NEG_BINOM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "مقدار صفر و یا «غلط» تابع چگالی احتمالی را محاسبه می کند. هر مقدار عددی دیگری و یا مقدار «صحیح» و یا حذف مقدار، تابع توزیع تجمعی را محاسبه می کند." #: scfuncs.src msgctxt "" @@ -16847,13 +16867,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_POISSON_DIST_MS\n" "7\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." -msgstr "" +msgstr "مقدار صفر و یا «غلط» تابع چگالی احتمالی را محاسبه می کند. هر مقدار عددی دیگری و یا مقدار «صحیح» و یا حذف مقدار، تابع توزیع تجمعی را محاسبه می کند." #: scfuncs.src msgctxt "" @@ -17018,13 +17039,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "مقدار صفر و یا «غلط» تابع چگالی احتمالی را محاسبه می کند. هر مقدار عددی دیگری و یا مقدار «صحیح» و یا حذف مقدار، تابع توزیع تجمعی را محاسبه می کند." #: scfuncs.src msgctxt "" @@ -17112,13 +17134,14 @@ msgstr "عدد" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "" +msgstr "مقدار احتمالی که توزیع نرمال وارون برای آن محاسبه خواهد شد." #: scfuncs.src msgctxt "" @@ -17226,13 +17249,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STD_NORM_DIST_MS\n" "5\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "مقدار صفر و یا «غلط» تابع چگالی احتمالی را محاسبه می کند. هر مقدار عددی دیگری و یا مقدار «صحیح» و یا حذف مقدار، تابع توزیع تجمعی را محاسبه می کند." #: scfuncs.src msgctxt "" @@ -17280,13 +17304,14 @@ msgstr "عدد" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_S_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "" +msgstr "مقدار احتمالی که توزیع نرمال استاندارد برای آن محاسبه خواهد شد." #: scfuncs.src msgctxt "" @@ -17428,13 +17453,14 @@ msgstr "STDEV" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST_MS\n" "7\n" "string.text" msgid "The standard deviation of the log normal distribution." -msgstr "" +msgstr "مقدار میانگین. مقدار میانگین توزیع نرمال لگاریتمی." #: scfuncs.src msgctxt "" @@ -17446,13 +17472,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "مقدار صفر و یا «غلط» تابع چگالی احتمالی را محاسبه می کند. هر مقدار عددی دیگری و یا مقدار «صحیح» و یا حذف مقدار، تابع توزیع تجمعی را محاسبه می کند." #: scfuncs.src msgctxt "" @@ -17536,13 +17563,14 @@ msgstr "عدد" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "" +msgstr "مقدار احتمالی که توزیع نرمال لگاریتمی وارون برای آن محاسبه می‌شود." #: scfuncs.src msgctxt "" @@ -17793,13 +17821,14 @@ msgstr "مقدار صفر و یا «غلط» تابع چگالی احتمالی را محاسبه می کند. هر مقدار عددی دیگری و یا مقدار «صحیح» و یا حذف مقدار، تابع توزیع تجمعی را محاسبه می کند." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "1\n" "string.text" msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." -msgstr "" +msgstr "مقادیر توزیع گاما." #: scfuncs.src msgctxt "" @@ -17865,13 +17894,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "مقدار صفر و یا «غلط» تابع چگالی احتمالی را محاسبه می کند. هر مقدار عددی دیگری و یا مقدار «صحیح» و یا حذف مقدار، تابع توزیع تجمعی را محاسبه می کند." #: scfuncs.src msgctxt "" @@ -17955,13 +17985,14 @@ msgstr "عدد" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "" +msgstr "مقدار احتمالی که توزیع گامای وارون آن محاسبه خواهد شد." #: scfuncs.src msgctxt "" @@ -18045,13 +18076,14 @@ msgstr "عدد" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_LN_MS\n" "3\n" "string.text" msgid "The value for which the natural logarithm of the gamma function is to be calculated." -msgstr "" +msgstr "مقداری که لگاریتم طبیعی تابع گامای آن محاسبه خواهد شد." #: scfuncs.src msgctxt "" @@ -18371,13 +18403,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST_MS\n" "9\n" "string.text" msgid "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function." -msgstr "" +msgstr "مقدار صفر و یا «غلط» تابع چگالی احتمالی را محاسبه می کند. هر مقدار عددی دیگری و یا مقدار «صحیح» و یا حذف مقدار، تابع توزیع تجمعی را محاسبه می کند." #: scfuncs.src msgctxt "" @@ -18434,13 +18467,14 @@ msgstr "عدد" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse beta distribution is to be calculated." -msgstr "" +msgstr "مقدار احتمالی که توزیع بتای وارون برای آن محاسبه خواهد شد." #: scfuncs.src msgctxt "" @@ -19145,13 +19179,14 @@ msgstr "عدد" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "مقدار احتمالی که توزیع t وارون برای آن محاسبه خواهد شد." #: scfuncs.src msgctxt "" @@ -19191,13 +19226,14 @@ msgstr "عدد" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_2T\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "مقدار احتمالی که توزیع t وارون برای آن محاسبه خواهد شد." #: scfuncs.src msgctxt "" @@ -19525,6 +19561,7 @@ msgstr "عدد" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_LT\n" @@ -19532,6 +19569,9 @@ "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." msgstr "" +"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n" +"مقدار احتمالی که توزیع t وارون برای آن محاسبه خواهد شد." #: scfuncs.src msgctxt "" @@ -19591,6 +19631,7 @@ msgstr "عدد" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_RT\n" @@ -19598,6 +19639,9 @@ "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." msgstr "" +"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n" +"مقدار احتمالی که توزیع t وارون برای آن محاسبه خواهد شد." #: scfuncs.src msgctxt "" @@ -19802,13 +19846,14 @@ msgstr "مقدار صفر و یا «غلط» تابع چگالی احتمالی را محاسبه می کند. هر مقدار عددی دیگری و یا مقدار «صحیح» و یا حذف مقدار، تابع توزیع تجمعی را محاسبه می کند." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "1\n" "string.text" msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." -msgstr "" +msgstr "بخش انتهایی سمت چپ احتمال تابع توزیع تجمعی یا مقادیر تابع چگالی احتمالی توزیع مربعی-کِی را برمی‌گرداند." #: scfuncs.src msgctxt "" @@ -19820,13 +19865,14 @@ msgstr "عدد" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "3\n" "string.text" msgid "The value for which the probability density function or cumulative distribution function is to be calculated." -msgstr "" +msgstr "مقداری که برای تابع چگالی احتمالی و یا تابع توزیع تجمعی محاسبه خواهد شد." #: scfuncs.src #, fuzzy @@ -19858,13 +19904,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST_MS\n" "7\n" "string.text" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "" +msgstr "مقدار صفر و یا «غلط» تابع چگالی احتمالی را محاسبه می کند. هر مقدار عددی دیگری و یا مقدار «صحیح» و یا حذف مقدار، تابع توزیع تجمعی را محاسبه می کند." #: scfuncs.src #, fuzzy @@ -19937,6 +19984,7 @@ msgstr "عدد" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_INV_MS\n" @@ -19944,6 +19992,9 @@ "string.text" msgid "The probability value for which the inverse chi square distribution is to be calculated." msgstr "" +"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n" +"مقدار احتمالی که توزیع بتای وارون برای آن محاسبه خواهد شد." #: scfuncs.src msgctxt "" @@ -20037,6 +20088,7 @@ msgstr "احتمال" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_INV_MS\n" @@ -20044,6 +20096,9 @@ "string.text" msgid "The probability value for which the inverse of the chi square distribution is to be calculated." msgstr "" +"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n" +"مقدار احتمالی که توزیع بتای وارون برای آن محاسبه خواهد شد." #: scfuncs.src #, fuzzy @@ -20133,13 +20188,14 @@ msgstr "انحراف معیار مورد استفاده برای مقیاس‌بندی." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PERMUT\n" "1\n" "string.text" msgid "Returns the number of permutations for a given number of elements without repetition." -msgstr "" +msgstr "تعداد جایگشت ها را برای تعداد مشخصی از عناصر بدون تکرار بر‌می‌گرداند." #: scfuncs.src msgctxt "" @@ -20178,13 +20234,14 @@ msgstr "تعداد انتخاب‌های انجام شده از عناصر." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PERMUTATION_A\n" "1\n" "string.text" msgid "Returns the number of permutations for a given number of objects (repetition allowed)." -msgstr "" +msgstr "تعداد جایگشت ها را برای تعداد داده شده‌ای شیٔ بر‌می‌گرداند ( با تکرار مجاز)." #: scfuncs.src msgctxt "" @@ -20480,13 +20537,14 @@ msgstr "انحراف استاندارد مشخصِ جامعه. اگر حذف شود، انحراف معیار نمونه داده شده مورد استفاده قرار میگیرد." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "1\n" "string.text" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "" +msgstr "محاسبه احتمال مشاهده استاتیک-صفری که بیشتر از مقداری که بر اساس نمونه محاسبه شده است باشد." #: scfuncs.src msgctxt "" @@ -20536,13 +20594,14 @@ msgstr "سیگما" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST_MS\n" "7\n" "string.text" msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "" +msgstr "انحراف استاندارد مشخصِ جامعه. اگر حذف شود، انحراف معیار نمونه داده شده مورد استفاده قرار میگیرد." #: scfuncs.src #, fuzzy @@ -20880,13 +20939,14 @@ msgstr "حالت" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST_MS\n" "7\n" "string.text" msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" -msgstr "" +msgstr "حالت، تعداد انتهایی توزیع‌ها را برای بازگشت مشخص می‌کند. یک برابر یا یک بخش انتهائی و دو برابر با دو بخش انتهائی یک توزیع می‌باشد که بازگشت داده می‌شود." #: scfuncs.src msgctxt "" @@ -21576,13 +21636,14 @@ msgstr "مقدار " #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHOOSE\n" "5\n" "string.text" msgid "Value 1, value 2,... The list of arguments from which a value is chosen." -msgstr "" +msgstr "مقدار ۱، مقدار ۲،... فهرست آرگومان‌هایی که مقداری از آنها انتخاب شده است." #: scfuncs.src msgctxt "" @@ -21658,13 +21719,14 @@ msgstr "مرجع" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SHEET\n" "3\n" "string.text" msgid "The reference to a cell or a range or the character string of a sheet name." -msgstr "" +msgstr "ارجاع به یک سلول یا یک محدوده و یا یک رشته کاراکتریِ نام برگه." #: scfuncs.src #, fuzzy @@ -26449,57 +26511,3 @@ "string.text" msgid "Collapse Formula Bar" msgstr "" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Smilies\n" -"stringlist.text" -msgid "3 Smilies" -msgstr "" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Colored Smilies\n" -"stringlist.text" -msgid "3 Colored Smilies" -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" -"1\n" -"string.text" -msgid "Returns the day of the week for the date value as an integer (1-7)." -msgstr "روز هفته را به ازای تاریخ به شکل عدد صحیح (1‐7) برمی‌گرداند." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n" -"7\n" -"string.text" -msgid "If given and not equal to zero then rounded down according to amount when a negative number and significance." -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MS\n" -"1\n" -"string.text" -msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance." -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ENCODEURL\n" -"3\n" -"string.text" -msgid "A string to be URL encoded" -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/fa/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/fa/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/fa/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fa/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2011-08-15 05:33+0200\n" -"Last-Translator: Hossein \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 14:51+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1439563874.000000\n" #: DocumentRenderer.src msgctxt "" @@ -100,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "پیش‌فرض" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/fa/starmath/source.po libreoffice-5.0.2~rc2/translations/source/fa/starmath/source.po --- libreoffice-5.0.1~rc2/translations/source/fa/starmath/source.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fa/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-20 09:18+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/fa/sw/source/ui/utlui.po libreoffice-5.0.2~rc2/translations/source/fa/sw/source/ui/utlui.po --- libreoffice-5.0.1~rc2/translations/source/fa/sw/source/ui/utlui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fa/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-20 11:58+0100\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/fi/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/fi/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/fi/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fi/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-20 13:18+0000\n" -"Last-Translator: Harri Pitkänen \n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 14:13+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: fi\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437398292.000000\n" +"X-POOTLE-MTIME: 1439561632.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7983,110 +7983,122 @@ #. 🕜 (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "1:30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "2:30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "3:30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "4:30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "5:30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "6:30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "7:30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "8:30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "9:30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "10:30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "11:30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "12:30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-06-29 07:03+0000\n" -"Last-Translator: Harri Pitkänen \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 14:37+0000\n" +"Last-Translator: system user <>\n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435561425.000000\n" +"X-POOTLE-MTIME: 1439563064.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3302,12 +3302,13 @@ msgstr "Poista sivunvaihto" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Täytä" #: CalcCommands.xcu @@ -15148,12 +15149,13 @@ msgstr "~Luettelomerkit ja numerointi..." #: GenericCommands.xcu +#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "Muokkaustila" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/fi/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/fi/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/fi/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fi/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-29 06:05+0000\n" -"Last-Translator: Harri Pitkänen \n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 14:58+0000\n" +"Last-Translator: system user <>\n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435557919.000000\n" +"X-POOTLE-MTIME: 1439564326.000000\n" #: condformatdlg.src msgctxt "" @@ -4918,10 +4918,11 @@ msgstr "Nimi" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "Alue tai lauseke" @@ -4997,6 +4998,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Alue" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/fi/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/fi/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/fi/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fi/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-06-17 18:18+0300\n" -"Last-Translator: Harri Pitkänen \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 15:25+0000\n" +"Last-Translator: system user <>\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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1439565904.000000\n" #: DocumentRenderer.src msgctxt "" @@ -100,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Oletus" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/fr/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/fr/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/fr/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fr/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-20 19:48+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-04 04:43+0000\n" +"Last-Translator: Jean-Baptiste Faure \n" "Language-Team: LANGUAGE \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437421712.000000\n" +"X-POOTLE-MTIME: 1441341808.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7987,7 +7987,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "1:30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -7996,7 +7996,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "2:30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8005,7 +8005,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "3:30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8014,7 +8014,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "4:30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8023,7 +8023,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "5:30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8032,7 +8032,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "6:30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8041,7 +8041,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "7:30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8050,7 +8050,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "8:30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8059,7 +8059,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "9:30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8068,7 +8068,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "10:30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8077,7 +8077,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "11:30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8086,7 +8086,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "12:30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/fr/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/fr/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/fr/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fr/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-07-09 23:27+0200\n" +"POT-Creation-Date: 2015-09-17 13:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -3170,7 +3170,7 @@ "SC_OPCODE_WORKDAY_MS\n" "string.text" msgid "WORKDAY.INTL" -msgstr "SERIE.JOUR.OUVRE" +msgstr "SERIE.JOUR.OUVRE.INTL" #: core_resource.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/fr/fpicker/source/office.po libreoffice-5.0.2~rc2/translations/source/fr/fpicker/source/office.po --- libreoffice-5.0.1~rc2/translations/source/fr/fpicker/source/office.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fr/fpicker/source/office.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,19 +3,19 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:22+0100\n" -"PO-Revision-Date: 2015-02-07 19:05+0200\n" -"Last-Translator: sophie \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-10 13:17+0000\n" +"Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1399554670.000000\n" +"X-POOTLE-MTIME: 1441891068.000000\n" #: OfficeFilePicker.src msgctxt "" @@ -207,7 +207,7 @@ "STR_PLACES_TITLE\n" "string.text" msgid "Places" -msgstr "Chiffres" +msgstr "Signets" #: iodlg.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/fr/framework/source/classes.po libreoffice-5.0.2~rc2/translations/source/fr/framework/source/classes.po --- libreoffice-5.0.1~rc2/translations/source/fr/framework/source/classes.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fr/framework/source/classes.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,19 +3,19 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-03-29 17:50+0000\n" -"Last-Translator: Jean-Baptiste \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-01 04:03+0000\n" +"Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\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-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1427651419.000000\n" +"X-POOTLE-MTIME: 1441080238.000000\n" #: resource.src msgctxt "" @@ -100,7 +100,7 @@ "MENUITEM_TOOLBAR_LOCKTOOLBARPOSITION\n" "menuitem.text" msgid "~Lock Toolbar Position" -msgstr "~Bloquer la position des barres d'outils" +msgstr "~Bloquer la position de la barre d'outils" #: resource.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/fr/helpcontent2/source/text/sbasic/shared.po libreoffice-5.0.2~rc2/translations/source/fr/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.0.1~rc2/translations/source/fr/helpcontent2/source/text/sbasic/shared.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fr/helpcontent2/source/text/sbasic/shared.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-06-21 09:25+0000\n" -"Last-Translator: serval2412 \n" +"PO-Revision-Date: 2015-09-01 04:43+0000\n" +"Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1434878714.000000\n" +"X-POOTLE-MTIME: 1441082627.000000\n" #: 00000002.xhp msgctxt "" @@ -9129,7 +9129,6 @@ msgstr "Print #iNumber, \"Autre ligne de texte\"" #: 03020103.xhp -#, fuzzy msgctxt "" "03020103.xhp\n" "tit\n" @@ -9146,7 +9145,6 @@ msgstr "Open, instruction" #: 03020103.xhp -#, fuzzy msgctxt "" "03020103.xhp\n" "hd_id3150791\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po libreoffice-5.0.2~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po --- libreoffice-5.0.1~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-13 14:03+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-01 04:54+0000\n" +"Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1439474597.000000\n" +"X-POOTLE-MTIME: 1441083257.000000\n" #: 01120000.xhp msgctxt "" @@ -9503,7 +9503,7 @@ "57\n" "help.text" msgid "Value is the value or expression to be returned if it is not equal or results in an error." -msgstr "" +msgstr "Valeur est la valeur ou l'expression à renvoyer si différent de ou résulte en une erreur." #: 04060104.xhp msgctxt "" @@ -9512,7 +9512,7 @@ "57\n" "help.text" msgid "Alternate_value is the value or expression to be returned if the expression or value of Value is equal or results in an error." -msgstr "" +msgstr "Valeur_alternative est la valeur ou l'expression à renvoyer si l'expression ou la valeur de Valeur est égale ou résulte en une erreur." #: 04060104.xhp msgctxt "" @@ -10170,7 +10170,7 @@ "97\n" "help.text" msgid "Value is the value or expression to be returned if it is not equal or results in an #N/A error." -msgstr "" +msgstr "Valeur est la valeur ou l'expression à renvoyer si différent de ou résulte en une erreur #N/A." #: 04060104.xhp msgctxt "" @@ -10179,7 +10179,7 @@ "97\n" "help.text" msgid "Alternate_value is the value or expression to be returned if the expression or value of Value is equal or results in an #N/A error." -msgstr "" +msgstr "Valeur_alternative est la valeur ou l'expression à renvoyer si l'expression ou la valeur de Valeur est égale ou résulte en une erreur #N/A." #: 04060104.xhp msgctxt "" @@ -66034,7 +66034,7 @@ "par_id1001260\n" "help.text" msgid "ANOVA is the acronym for ANalysis Of VAriance. Produces the analysis of variance (ANOVA) of a given data set" -msgstr "" +msgstr "ANOVA est l'acronyme de ANalysis Of VAriance. Produit l'analyse de la variance (ANOVA) d'un jeu de données." #: statistics.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/fr/helpcontent2/source/text/swriter/librelogo.po libreoffice-5.0.2~rc2/translations/source/fr/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-5.0.1~rc2/translations/source/fr/helpcontent2/source/text/swriter/librelogo.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fr/helpcontent2/source/text/swriter/librelogo.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-07-10 18:34+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-04 04:50+0000\n" +"Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1436553286.000000\n" +"X-POOTLE-MTIME: 1441342250.000000\n" #: LibreLogo.xhp msgctxt "" @@ -759,7 +759,7 @@ "par_1100\n" "help.text" msgid "FILL ; close and fill the actual line shape or points
CLOSE ; close the actual line shape or join the actual points
" -msgstr "" +msgstr "PEINS ; fermer et remplir la ligne ou les points actifs
FERME ; fermer la forme de ligne active ou joint les points actifs
" #: LibreLogo.xhp msgctxt "" @@ -767,7 +767,7 @@ "par_1102\n" "help.text" msgid "Example: filling a regular triangle:" -msgstr "" +msgstr "Exemple : remplir un triangle régulier :" #: LibreLogo.xhp msgctxt "" @@ -775,7 +775,7 @@ "par_1104\n" "help.text" msgid "FORWARD 50 LEFT 120 FORWARD 50 FILL
" -msgstr "" +msgstr "AVANCE 50 GAUCHE 120 AVANCE 50 PEINS
" #: LibreLogo.xhp msgctxt "" @@ -783,7 +783,7 @@ "par_1106\n" "help.text" msgid "Example: drawing a regular triangle:" -msgstr "" +msgstr "Exemple : dessiner un triangle régulier :" #: LibreLogo.xhp msgctxt "" @@ -791,7 +791,7 @@ "par_1108\n" "help.text" msgid "FORWARD 50 LEFT 120 FORWARD 50 CLOSE
" -msgstr "" +msgstr "AVANCE 50 GAUCHE 120 AVANCE 50 FERME
" #: LibreLogo.xhp msgctxt "" @@ -914,13 +914,12 @@ msgstr "PEINSCOULEUR/PEINSCOULEUR (pc)" #: LibreLogo.xhp -#, fuzzy msgctxt "" "LibreLogo.xhp\n" "par_1220\n" "help.text" msgid "FILLCOLOR “blue” ; fill with blue color, see also PENCOLOR
FILLCOLOR “invisible” CIRCLE 10 ; unfilled circle
FILLCOLOR [“blue”, “red”] ; gradient between red and blue
FILLCOLOR [[255, 255, 255], [255, 128, 0]] ; between white and orange
FILLCOLOR [“blue”, “red”, 1, 0, 0] ; set axial gradient (with the required rotation and border settings), possible values: 0-5 = linear, axial, radial, elliptical, square and rectangle gradients
FILLCOLOR [“red”, “blue”, 0, 90, 20] ; linear with 20% border, rotated with 90 degrees from the actual heading of the turtle
FILLCOLOR [“red”, “blue”, 0, 90, 20, 0, 0, 200, 50] ; from 200% to 50% intensity
FILLCOLOR [ANY, ANY, 2, 0, 0, 50, 50] ; radial gradient with random colors and 50-50% horizontal and vertical positions of the center
" -msgstr "PEINSCOULEUR \"bleu\" ; remplit avec la couleur bleu, voir également COULEURCRAYON
PEINSCOULEUR \"invisible \" CERCLE 10 ; cercle non rempli
PEINSCOULEUR [“bleu”, “rouge”] ; dégradé entre rouge et bleu
PEINSCOULEUR [[255, 255, 255], [255, 128, 0]] ; entre blanc et orange
PEINSCOULEUR [“bleu”, “rouge”, 1, 0, 0] ; définit l'axe du dégradé (avec la bonne rotation et la définition des bordures) valeurs possibles : 0-5 = dégradé linéaire, axial, radial, elliptique, carré et rectangulaire
PEINSCOULEUR [“rouge”, “bleu”, 0, 90, 20] ; linéaire avec une bordure de 20%, rotation de 90 degrés à partir du titre actuel de la tortue
PEINSCOULEUR [“rouge”, 'bleu”, 0, 90, 20, 0, 0, 200, 50] ; intensité de 200% à 50%
PEINCOULEUR [TOUT, TOUT, 2, 0, 0, 50, 50] ; dégradé radial avec des couleurs aléatoires et 50-50% positions horizontale et verticale du centre
" +msgstr "PEINSCOULEUR \"bleu\" ; remplit avec la couleur bleu, voir également COULEURCRAYON
PEINSCOULEUR \"invisible\" CERCLE 10 ; cercle non rempli
PEINSCOULEUR [\"bleu\", \"rouge\"] ; dégradé entre rouge et bleu
PEINSCOULEUR [[255, 255, 255], [255, 128, 0]] ; entre blanc et orange
PEINSCOULEUR [\"bleu\", \"rouge\", 1, 0, 0] ; définit l'axe du dégradé (avec la bonne rotation et la définition des bordures) valeurs possibles : 0-5 = dégradé linéaire, axial, radial, elliptique, carré et rectangulaire
PEINSCOULEUR [\"rouge\", \"bleu\", 0, 90, 20] ; linéaire avec une bordure de 20%, rotation de 90 degrés à partir du titre actuel de la tortue
PEINSCOULEUR [\"rouge\", \"bleu\", 0, 90, 20, 0, 0, 200, 50] ; intensité de 200% à 50%
PEINSCOULEUR [TOUT, TOUT, 2, 0, 0, 50, 50] ; dégradé radial avec des couleurs aléatoires et 50-50% positions horizontale et verticale du centre
" #: LibreLogo.xhp msgctxt "" @@ -1019,7 +1018,6 @@ msgstr "RECTANGLE" #: LibreLogo.xhp -#, fuzzy msgctxt "" "LibreLogo.xhp\n" "par_1330\n" @@ -1049,7 +1047,7 @@ "par_1354\n" "help.text" msgid "CLOSE can join the last points, FILL can fill the shape defined by points. For example, it’s easy to draw a “flat” star starting from its center:" -msgstr "" +msgstr "FERME peut joindre les derniers points, PEINS peut remplir la forme définie par les points. Par exemple, il est facile de dessiner une étoile \"plate\" en partant de son centre :" #: LibreLogo.xhp msgctxt "" @@ -1057,7 +1055,7 @@ "par_1357\n" "help.text" msgid "PENUP
REPEAT 5 [
FORWARD 80
POINT
BACK 80
RIGHT 36
FORWARD 50
POINT
BACK 50
RIGHT 120
] FILL
" -msgstr "" +msgstr "LEVECRAYON
REPETE 5[
AVANCE 80
POINT
RECULE 80
DROITE 36
AVANCE 50
POINT
RECULE 50
DROITE 120
DROITE120
] PEINS
" #: LibreLogo.xhp msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-17 04:53+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-04 04:17+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1437108799.000000\n" +"X-POOTLE-MTIME: 1441340228.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3308,8 +3308,8 @@ "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" -msgstr "Remplir" +msgid "F~ill" +msgstr "Rempl~ir" #: CalcCommands.xcu msgctxt "" @@ -15154,8 +15154,8 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" -msgstr "Mode É~diter" +msgid "E~dit Mode" +msgstr "Mode É~dition" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/fr/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/fr/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/fr/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fr/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-02 02:40+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-04 04:38+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1435804825.000000\n" +"X-POOTLE-MTIME: 1441341520.000000\n" #: condformatdlg.src msgctxt "" @@ -4924,10 +4924,10 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" -msgstr "Plage ou formule" +msgstr "Plage ou expression de formule" #: globstr.src msgctxt "" @@ -5002,6 +5002,15 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Plage" + +#: globstr.src +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" "STR_HEADER_COND\n" "string.text" msgid "First Condition" @@ -11091,7 +11100,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -11802,7 +11811,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -11829,7 +11838,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -11856,7 +11865,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -11883,7 +11892,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -11910,7 +11919,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -11937,7 +11946,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -11964,7 +11973,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -11991,7 +12000,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -12018,7 +12027,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -12072,7 +12081,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -12126,7 +12135,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -12180,7 +12189,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -12378,7 +12387,7 @@ "1\n" "string.text" msgid "Converts a radian to degrees" -msgstr "Convertit un radian en degrés" +msgstr "Convertit des radians en degrés" #: scfuncs.src msgctxt "" @@ -12387,7 +12396,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -12396,7 +12405,7 @@ "3\n" "string.text" msgid "The angle in a radian" -msgstr "L'angle en un radian" +msgstr "L'angle en radians" #: scfuncs.src msgctxt "" @@ -12414,7 +12423,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -12441,7 +12450,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -12450,7 +12459,7 @@ "3\n" "string.text" msgid "The exponent applied to base e." -msgstr "L'exposant de la base e." +msgstr "L'exposant appliqué à la base e." #: scfuncs.src msgctxt "" @@ -12468,7 +12477,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -12495,7 +12504,7 @@ "5\n" "string.text" msgid "The base of the logarithm. If omitted, the base is regarded as 10." -msgstr "La base du logarithme. Si absent, la base est considérée comme 10." +msgstr "La base du logarithme. Si absent, la base utilisée est 10." #: scfuncs.src msgctxt "" @@ -12513,7 +12522,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -12522,7 +12531,7 @@ "3\n" "string.text" msgid "A value greater than 0 for which the natural logarithm is to be calculated." -msgstr "Un nombre réel positif dont vous souhaitez obtenir le logarithme népérien." +msgstr "Un nombre réel strictement positif dont vous souhaitez obtenir le logarithme népérien." #: scfuncs.src msgctxt "" @@ -12540,7 +12549,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -12549,7 +12558,7 @@ "3\n" "string.text" msgid "A value greater than 0 for which the logarithm is to be calculated." -msgstr "Un nombre réel positif dont vous souhaitez obtenir le logarithme." +msgstr "Un nombre réel strictement positif dont vous souhaitez obtenir le logarithme." #: scfuncs.src msgctxt "" @@ -12567,7 +12576,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -12639,7 +12648,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -12792,7 +12801,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -12999,7 +13008,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -13026,7 +13035,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -13098,7 +13107,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -13251,7 +13260,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -13314,7 +13323,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -16077,7 +16086,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -16104,7 +16113,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -16131,7 +16140,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -16590,7 +16599,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -16716,7 +16725,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -17004,7 +17013,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -17130,7 +17139,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -17418,7 +17427,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -17544,7 +17553,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -17706,7 +17715,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -17832,7 +17841,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -17886,7 +17895,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -18345,7 +18354,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -18687,7 +18696,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -19038,7 +19047,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -19434,7 +19443,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -19524,7 +19533,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -19830,7 +19839,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -22262,7 +22271,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -23495,7 +23504,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -23946,7 +23955,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -23991,7 +24000,7 @@ "2\n" "string.text" msgid "Number" -msgstr "Numéro_série" +msgstr "Nombre" #: scfuncs.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/fr/sd/source/ui/app.po libreoffice-5.0.2~rc2/translations/source/fr/sd/source/ui/app.po --- libreoffice-5.0.1~rc2/translations/source/fr/sd/source/ui/app.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fr/sd/source/ui/app.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-18 19:52+0000\n" +"PO-Revision-Date: 2015-09-14 04:28+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1439927537.000000\n" +"X-POOTLE-MTIME: 1442204893.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -618,7 +618,7 @@ "SID_OBJECT_ALIGN\n" "menuitem.text" msgid "Al~ign" -msgstr "" +msgstr "Al~igner" #: menuids_tmpl.src msgctxt "" @@ -834,7 +834,7 @@ "SID_SET_DEFAULT\n" "menuitem.text" msgid "~Default Formatting" -msgstr "" +msgstr "Formatage par ~défaut" #: menuids_tmpl.src msgctxt "" @@ -852,17 +852,16 @@ "SID_ORIGINAL_SIZE\n" "menuitem.text" msgid "Restore ~Original Size" -msgstr "" +msgstr "Restaurer la taille d'~origine" #: menuids_tmpl.src -#, fuzzy msgctxt "" "menuids_tmpl.src\n" "MN_CROP\n" "SID_OBJECT_CROP\n" "menuitem.text" msgid "Crop I~mage" -msgstr "Rogner l'image" +msgstr "Rogner l'~image" #: menuids_tmpl.src msgctxt "" @@ -3690,7 +3689,7 @@ "STR_FIELD_PLACEHOLDER_SLIDENAME\n" "string.text" msgid "" -msgstr "" +msgstr "" #: strings.src msgctxt "" @@ -3698,7 +3697,7 @@ "STR_FIELD_PLACEHOLDER_PAGENAME\n" "string.text" msgid "" -msgstr "" +msgstr "" #: strings.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/fr/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/fr/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/fr/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fr/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,19 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-06-01 16:35+0200\n" -"Last-Translator: sophie \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-04 04:36+0000\n" +"Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" +"X-POOTLE-MTIME: 1441341400.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +102,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Par défaut" +msgid "According to layout" +msgstr "Selon la mise en page" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/fr/sw/source/ui/utlui.po libreoffice-5.0.2~rc2/translations/source/fr/sw/source/ui/utlui.po --- libreoffice-5.0.1~rc2/translations/source/fr/sw/source/ui/utlui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fr/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-04-19 01:45+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/fr/vcl/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/fr/vcl/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/fr/vcl/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/fr/vcl/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,19 +3,19 @@ msgstr "" "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: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-02-08 17:18+0200\n" -"Last-Translator: sophie \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-09-15 15:44+0000\n" +"Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\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-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1363193432.0\n" +"X-POOTLE-MTIME: 1442331899.000000\n" #: cupspassworddialog.ui msgctxt "" @@ -645,7 +645,7 @@ "1\n" "stringlist.text" msgid "top to bottom, then right" -msgstr "de bas en haut, puis à droite" +msgstr "de haut en bas, puis vers la droite" #: printdialog.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/ga/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/ga/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/ga/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ga/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-25 23:55+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 14:22+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: ga\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435276536.000000\n" +"X-POOTLE-MTIME: 1439562150.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8000,7 +8000,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8009,7 +8009,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8018,7 +8018,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8027,7 +8027,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8036,7 +8036,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8045,7 +8045,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8054,7 +8054,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8063,7 +8063,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8072,7 +8072,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8081,7 +8081,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8090,7 +8090,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8099,7 +8099,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-12 13:02+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 14:50+0000\n" "Last-Translator: system user <>\n" "Language-Team: \n" "Language: ga\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431435731.000000\n" +"X-POOTLE-MTIME: 1439563850.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3305,12 +3305,13 @@ msgstr "Scrios ~Briseadh Leathanaigh" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Líon" #: CalcCommands.xcu @@ -15158,12 +15159,13 @@ msgstr "~Urchair agus Uimhriú..." #: GenericCommands.xcu +#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "Mód Eagarthó~ireachta" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/ga/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/ga/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/ga/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ga/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-14 15:08+0000\n" "Last-Translator: system user <>\n" "Language-Team: \n" @@ -4927,7 +4927,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5005,6 +5005,15 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Raon" + +#: globstr.src +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" "STR_HEADER_COND\n" "string.text" msgid "First Condition" @@ -13792,13 +13801,14 @@ msgstr "eagar_y" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2MY2\n" "5\n" "string.text" msgid "Second array where the square of the arguments is to be subtracted." -msgstr "" +msgstr "An chéad eagar; suimeofar cearnóga na n-iontrálacha den eagar seo." #: scfuncs.src msgctxt "" @@ -14009,13 +14019,14 @@ msgstr "staitistic" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n" "9\n" "string.text" msgid "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well." -msgstr "" +msgstr "Más paraiméadar = 0, ní áireofar ach an chomhéifeacht aischéimnithe, seachas sin áireofar na luachanna eile chomh maith." #: scfuncs.src msgctxt "" @@ -14072,13 +14083,14 @@ msgstr "Cineál_feidhme" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n" "7\n" "string.text" msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." -msgstr "" +msgstr "Más cineál = 0, áireofar na feidhmeanna san fhoirm y=m^x, nó mar fheidhmeanna y=b*m^x freisin." #: scfuncs.src msgctxt "" @@ -16079,13 +16091,14 @@ msgstr "An luach a ríomhfar an dáileachán normalach caighdeánach aige." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAUSS\n" "1\n" "string.text" msgid "Returns the integral values of the standard normal cumulative distribution." -msgstr "" +msgstr "Luachanna an dáileacháin charnaigh normalaigh chaighdeánaigh." #: scfuncs.src msgctxt "" @@ -16898,13 +16911,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán lognormálta aige." #: scfuncs.src msgctxt "" @@ -16961,13 +16975,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán lognormálta aige." #: scfuncs.src msgctxt "" @@ -17097,13 +17112,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_S_NORM_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán normalach caighdeánach aige." #: scfuncs.src msgctxt "" @@ -17124,13 +17140,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_S_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán normalach caighdeánach aige." #: scfuncs.src msgctxt "" @@ -17313,13 +17330,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán lognormálta aige." #: scfuncs.src msgctxt "" @@ -17376,13 +17394,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán lognormálta aige." #: scfuncs.src msgctxt "" @@ -17727,13 +17746,14 @@ msgstr "Uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán gáma aige." #: scfuncs.src msgctxt "" @@ -17790,13 +17810,14 @@ msgstr "Uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán gáma aige." #: scfuncs.src msgctxt "" @@ -18051,13 +18072,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse beta distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán béite aige." #: scfuncs.src msgctxt "" @@ -18267,13 +18289,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse beta distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán béite aige." #: scfuncs.src msgctxt "" @@ -18924,13 +18947,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán normalach aige." #: scfuncs.src msgctxt "" @@ -18970,13 +18994,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán normalach aige." #: scfuncs.src msgctxt "" @@ -19016,13 +19041,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_2T\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán normalach aige." #: scfuncs.src msgctxt "" @@ -19270,13 +19296,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán normalach aige." #: scfuncs.src msgctxt "" @@ -19334,13 +19361,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_LT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán normalach aige." #: scfuncs.src msgctxt "" @@ -19398,13 +19426,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_RT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán normalach aige." #: scfuncs.src msgctxt "" @@ -19677,13 +19706,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse chi square distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán chi-chearnaithe aige." #: scfuncs.src msgctxt "" @@ -19722,13 +19752,14 @@ msgstr "uimhir" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse chi square distribution is to be calculated." -msgstr "" +msgstr "An luach a ríomhfar an dáileachán chi-chearnaithe aige." #: scfuncs.src msgctxt "" @@ -25991,57 +26022,3 @@ "string.text" msgid "Collapse Formula Bar" msgstr "Laghdaigh an Barra Foirmle" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Smilies\n" -"stringlist.text" -msgid "3 Smilies" -msgstr "Trí Straoiseog" - -#: condformatdlg.src -msgctxt "" -"condformatdlg.src\n" -"RID_COND_ENTRY.LB_ICONSET_TYPE\n" -"3 Colored Smilies\n" -"stringlist.text" -msgid "3 Colored Smilies" -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" -"1\n" -"string.text" -msgid "Returns the day of the week for the date value as an integer (1-7)." -msgstr "Aischuireann sé lá na seachtaine le haghaidh luacha ama mar shlánuimhir (1-7)." - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n" -"7\n" -"string.text" -msgid "If given and not equal to zero then rounded down according to amount when a negative number and significance." -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MS\n" -"1\n" -"string.text" -msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance." -msgstr "" - -#: scfuncs.src -msgctxt "" -"scfuncs.src\n" -"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ENCODEURL\n" -"3\n" -"string.text" -msgid "A string to be URL encoded" -msgstr "" diff -Nru libreoffice-5.0.1~rc2/translations/source/ga/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/ga/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/ga/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/ga/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,16 +3,18 @@ msgstr "" "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2012-11-19 16:30-0000\n" -"Last-Translator: Kevin Scannell \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 15:32+0000\n" +"Last-Translator: system user <>\n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1439566333.000000\n" #: DocumentRenderer.src msgctxt "" @@ -99,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Réamhshocrú" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gd/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/gd/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/gd/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gd/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-24 23:16+0000\n" -"Last-Translator: Michael Bauer \n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 14:22+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: gd\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437779789.000000\n" +"X-POOTLE-MTIME: 1439562121.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5994,30 +5994,33 @@ #. 👈 (U+1F448), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_LEFT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "left2" -msgstr "" +msgstr "colgag chlì" #. 👉 (U+1F449), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_RIGHT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "right2" -msgstr "" +msgstr "colgag dheas" #. 👊 (U+1F44A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "FISTED_HAND_SIGN\n" "LngText.text" msgid "fist2" -msgstr "" +msgstr "Dòrn" #. 👋 (U+1F44B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6039,12 +6042,13 @@ #. 👍 (U+1F44D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "THUMBS_UP_SIGN\n" "LngText.text" msgid "yes" -msgstr "" +msgstr "Sùilean" #. 👎 (U+1F44E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6075,12 +6079,13 @@ #. 👑 (U+1F451), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CROWN\n" "LngText.text" msgid "crown" -msgstr "" +msgstr "Drèin" #. 👒 (U+1F452), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6111,12 +6116,13 @@ #. 👕 (U+1F455), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "T-SHIRT\n" "LngText.text" msgid "shirt" -msgstr "" +msgstr "Lèine spòrs" #. 👖 (U+1F456), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6354,12 +6360,13 @@ #. 👰 (U+1F470), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BRIDE_WITH_VEIL\n" "LngText.text" msgid "bride" -msgstr "" +msgstr "Drochaid san oidhche" #. 👱 (U+1F471), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6372,12 +6379,13 @@ #. 👲 (U+1F472), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MAN_WITH_GUA_PI_MAO\n" "LngText.text" msgid "hat2" -msgstr "" +msgstr "Aodann cait" #. 👳 (U+1F473), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6507,12 +6515,13 @@ #. 💁 (U+1F481), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "INFORMATION_DESK_PERSON\n" "LngText.text" msgid "information2" -msgstr "" +msgstr "fiosrachadh" #. 💂 (U+1F482), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6525,12 +6534,13 @@ #. 💃 (U+1F483), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "DANCER\n" "LngText.text" msgid "dancer" -msgstr "" +msgstr "Am Partan" #. 💄 (U+1F484), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6615,12 +6625,13 @@ #. 💍 (U+1F48D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "RING\n" "LngText.text" msgid "ring" -msgstr "" +msgstr "Rìgh" #. 💎 (U+1F48E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6930,12 +6941,13 @@ #. 💴 (U+1F4B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BANKNOTE_WITH_YEN_SIGN\n" "LngText.text" msgid "yen2" -msgstr "" +msgstr "yen" #. 💵 (U+1F4B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6948,30 +6960,33 @@ #. 💶 (U+1F4B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BANKNOTE_WITH_EURO_SIGN\n" "LngText.text" msgid "euro2" -msgstr "" +msgstr "eòro" #. 💷 (U+1F4B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BANKNOTE_WITH_POUND_SIGN\n" "LngText.text" msgid "pound2" -msgstr "" +msgstr "not" #. 💸 (U+1F4B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MONEY_WITH_WINGS\n" "LngText.text" msgid "money" -msgstr "" +msgstr "Muncaidh" #. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6984,12 +6999,13 @@ #. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "SEAT\n" "LngText.text" msgid "seat" -msgstr "" +msgstr "Feòil air cnàmh" #. 💻 (U+1F4BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7326,12 +7342,13 @@ #. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "CHEERING_MEGAPHONE\n" "LngText.text" msgid "mega" -msgstr "" +msgstr "Omega" #. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7371,21 +7388,23 @@ #. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "INCOMING_ENVELOPE\n" "LngText.text" msgid "envelope2" -msgstr "" +msgstr "Cèiseag" #. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n" "LngText.text" msgid "envelope3" -msgstr "" +msgstr "Cèiseag" #. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7434,12 +7453,13 @@ #. 📯 (U+1F4EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "POSTAL_HORN\n" "LngText.text" msgid "horn" -msgstr "" +msgstr "Arbhar" #. 📰 (U+1F4F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7515,12 +7535,13 @@ #. 📹 (U+1F4F9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "VIDEO_CAMERA\n" "LngText.text" msgid "video camera" -msgstr "" +msgstr "Geama video" #. 📺 (U+1F4FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7587,12 +7608,13 @@ #. 🔉 (U+1F509), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "SPEAKER_WITH_ONE_SOUND_WAVE\n" "LngText.text" msgid "sound" -msgstr "" +msgstr "not" #. 🔊 (U+1F50A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7686,12 +7708,13 @@ #. 🔔 (U+1F514), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BELL\n" "LngText.text" msgid "bell" -msgstr "" +msgstr "Ball" #. 🔕 (U+1F515), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7987,7 +8010,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -7996,7 +8019,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8005,7 +8028,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8014,7 +8037,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8023,7 +8046,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8032,7 +8055,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8041,7 +8064,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8050,7 +8073,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8059,7 +8082,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8068,7 +8091,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8077,7 +8100,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8086,7 +8109,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji @@ -8379,30 +8402,33 @@ #. 😛 (U+1F61B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "FACE_WITH_STUCK-OUT_TONGUE\n" "LngText.text" msgid "tongue2" -msgstr "" +msgstr "Teanga" #. 😜 (U+1F61C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "FACE_WITH_STUCK-OUT_TONGUE_AND_WINKING_EYE\n" "LngText.text" msgid "tongue3" -msgstr "" +msgstr "Teanga" #. 😝 (U+1F61D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "FACE_WITH_STUCK-OUT_TONGUE_AND_TIGHTLY-CLOSED_EYES\n" "LngText.text" msgid "tongue4" -msgstr "" +msgstr "Teanga" #. 😞 (U+1F61E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8856,12 +8882,13 @@ #. 🚄 (U+1F684), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "HIGH-SPEED_TRAIN\n" "LngText.text" msgid "train2" -msgstr "" +msgstr "An t-uisge 2" #. 🚅 (U+1F685), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8874,12 +8901,13 @@ #. 🚆 (U+1F686), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "TRAIN\n" "LngText.text" msgid "train" -msgstr "" +msgstr "an t-uisge" #. 🚇 (U+1F687), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8910,12 +8938,13 @@ #. 🚊 (U+1F68A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "TRAM\n" "LngText.text" msgid "tram" -msgstr "" +msgstr "Reithe" #. 🚋 (U+1F68B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9036,12 +9065,13 @@ #. 🚘 (U+1F698), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "ONCOMING_AUTOMOBILE\n" "LngText.text" msgid "car2" -msgstr "" +msgstr "Aodann cait" #. 🚙 (U+1F699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9054,12 +9084,13 @@ #. 🚚 (U+1F69A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "DELIVERY_TRUCK\n" "LngText.text" msgid "truck2" -msgstr "" +msgstr "Làraidh" #. 🚛 (U+1F69B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10356,135 +10387,150 @@ #. ᵅ (U+01D45), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_ALPHA\n" "LngText.text" msgid "^alpha" -msgstr "" +msgstr "alpha" #. ᵝ (U+01D5D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_BETA\n" "LngText.text" msgid "^beta" -msgstr "" +msgstr "beta" #. ᵞ (U+01D5E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_GREEK_GAMMA\n" "LngText.text" msgid "^gamma" -msgstr "" +msgstr "gamma" #. ᵟ (U+01D5F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_DELTA\n" "LngText.text" msgid "^delta" -msgstr "" +msgstr "delta" #. ᵋ (U+01D4B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_OPEN_E\n" "LngText.text" msgid "^epsilon" -msgstr "" +msgstr "epsilon" #. ᶿ (U+01DBF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_THETA\n" "LngText.text" msgid "^theta" -msgstr "" +msgstr "theta" #. ᶥ (U+01DA5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_IOTA\n" "LngText.text" msgid "^iota" -msgstr "" +msgstr "iota" #. ᶲ (U+01DB2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_PHI\n" "LngText.text" msgid "^Phi" -msgstr "" +msgstr "Phi" #. ᵠ (U+01D60), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_GREEK_PHI\n" "LngText.text" msgid "^phi" -msgstr "" +msgstr "phi" #. ᵡ (U+01D61), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_CHI\n" "LngText.text" msgid "^chi" -msgstr "" +msgstr "chi" #. ᵦ (U+01D66), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_BETA\n" "LngText.text" msgid "_beta" -msgstr "" +msgstr "beta" #. ᵧ (U+01D67), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_GAMMA\n" "LngText.text" msgid "_gamma" -msgstr "" +msgstr "gamma" #. ᵨ (U+01D68), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_RHO\n" "LngText.text" msgid "_rho" -msgstr "" +msgstr "rho" #. ᵩ (U+01D69), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_PHI\n" "LngText.text" msgid "_phi" -msgstr "" +msgstr "phi" #. ᵪ (U+01D6A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_CHI\n" "LngText.text" msgid "_chi" -msgstr "" +msgstr "chi" diff -Nru libreoffice-5.0.1~rc2/translations/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-20 19:17+0000\n" -"Last-Translator: Michael Bauer \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 14:49+0000\n" +"Last-Translator: system user <>\n" "Language-Team: Akerbeltz\n" "Language: gd\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1432149427.000000\n" +"X-POOTLE-MTIME: 1439563751.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3303,12 +3303,13 @@ msgstr "Sguab às am ~briseadh duilleige" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "Lìon" #: CalcCommands.xcu @@ -15149,12 +15150,13 @@ msgstr "~Peilearan is àireamhachadh..." #: GenericCommands.xcu +#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "Am modh deasacha~idh" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/gd/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/gd/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/gd/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gd/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-05-26 00:09+0000\n" -"Last-Translator: Michael Bauer \n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 15:09+0000\n" +"Last-Translator: system user <>\n" "Language-Team: Akerbeltz\n" "Language: gd\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1432598941.000000\n" +"X-POOTLE-MTIME: 1439564948.000000\n" #: condformatdlg.src msgctxt "" @@ -4923,10 +4923,11 @@ msgstr "Ainm" #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "Rainse air neo eas-preisean foirmle" @@ -5002,6 +5003,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Rainse" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/gd/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/gd/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/gd/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gd/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,19 +3,19 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-18 21:43+0000\n" -"Last-Translator: Michael \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 15:37+0000\n" +"Last-Translator: system user <>\n" "Language-Team: Akerbeltz\n" "Language: gd\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 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1431985417.000000\n" +"X-POOTLE-MTIME: 1439566641.000000\n" #: DocumentRenderer.src msgctxt "" @@ -102,10 +102,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Bun-roghainn" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/cui/source/dialogs.po libreoffice-5.0.2~rc2/translations/source/gl/cui/source/dialogs.po --- libreoffice-5.0.1~rc2/translations/source/gl/cui/source/dialogs.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/cui/source/dialogs.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-21 11:57+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-02 12:52+0000\n" +"Last-Translator: Xosé \n" "Language-Team: LANGUAGE \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437479876.000000\n" +"X-POOTLE-MTIME: 1441198353.000000\n" #: cuires.src msgctxt "" @@ -687,7 +687,7 @@ "RID_SVXSTR_FRAMEWORK_ERROR_AT_LINE\n" "string.text" msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER." -msgstr "Produciuse un erro no Scripting Framework ao executar o guión de execución %SCRIPTNAME %LANGUAGENAME na liña: %LINENUMBER." +msgstr "Produciuse un erro no Scripting Framework ao executar o script de execución %SCRIPTNAME %LANGUAGENAME na liña: %LINENUMBER." #: scriptdlg.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/cui/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/gl/cui/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/gl/cui/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-21 12:20+0000\n" +"PO-Revision-Date: 2015-08-14 14:13+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437481210.000000\n" +"X-POOTLE-MTIME: 1439561610.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -3353,7 +3353,7 @@ "label\n" "string.text" msgid "_Pick…" -msgstr "" +msgstr "_Escoller..." #: colorpage.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/extensions/uiconfig/sabpilot/ui.po libreoffice-5.0.2~rc2/translations/source/gl/extensions/uiconfig/sabpilot/ui.po --- libreoffice-5.0.1~rc2/translations/source/gl/extensions/uiconfig/sabpilot/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/extensions/uiconfig/sabpilot/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-04-09 18:02+0000\n" -"Last-Translator: Antón Méixome \n" +"PO-Revision-Date: 2015-08-14 14:22+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1428602563.000000\n" +"X-POOTLE-MTIME: 1439562176.000000\n" #: contentfieldpage.ui msgctxt "" @@ -118,10 +118,9 @@ "label\n" "string.text" msgid "Embed this address book definition into the current document." -msgstr "" +msgstr "Incorporar esta definición do caderno de enderezos ao documento actual." #: datasourcepage.ui -#, fuzzy msgctxt "" "datasourcepage.ui\n" "locationft\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/gl/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/gl/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-07-21 12:28+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-03 15:46+0000\n" "Last-Translator: Xosé \n" "Language-Team: LANGUAGE \n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437481730.000000\n" +"X-POOTLE-MTIME: 1441295181.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1778,7 +1778,7 @@ "SALTIRE\n" "LngText.text" msgid "saltire" -msgstr "" +msgstr "sautor" #. ☔ (U+02614), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2003,7 +2003,7 @@ "WHITE_FROWNING_FACE\n" "LngText.text" msgid "frown" -msgstr "" +msgstr "desaprobación" #. ☺ (U+0263A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2723,7 +2723,7 @@ "HIGH_VOLTAGE_SIGN\n" "LngText.text" msgid "zap" -msgstr "" +msgstr "descarga" #. ⚪ (U+026AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2840,7 +2840,7 @@ "OPHIUCHUS\n" "LngText.text" msgid "ophiuchus" -msgstr "" +msgstr "Ofiuco" #. ⛏ (U+026CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2858,7 +2858,7 @@ "CAR_SLIDING\n" "LngText.text" msgid "sliding car" -msgstr "" +msgstr "coche esvarando" #. ⛑ (U+026D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3164,7 +3164,7 @@ "WHITE_NIB\n" "LngText.text" msgid "nib" -msgstr "" +msgstr "punta de lapis" #. ✒ (U+02712), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3173,7 +3173,7 @@ "BLACK_NIB\n" "LngText.text" msgid "nib2" -msgstr "" +msgstr "punta de lapis 2" #. ✓ (U+02713), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3200,7 +3200,7 @@ "HEAVY_MULTIPLICATION_X\n" "LngText.text" msgid "times2" -msgstr "" +msgstr "por 2" #. ✙ (U+02719), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3272,7 +3272,7 @@ "SPARKLE\n" "LngText.text" msgid "sparkle" -msgstr "" +msgstr "faísca" #. ❌ (U+0274C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3641,7 +3641,7 @@ "PLAYING_CARD_JACK_OF_SPADES\n" "LngText.text" msgid "jack" -msgstr "" +msgstr "jack" #. 🂭 (U+1F0AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3983,7 +3983,7 @@ "SEEDLING\n" "LngText.text" msgid "seedling" -msgstr "" +msgstr "agromo" #. 🌲 (U+1F332), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4001,7 +4001,7 @@ "DECIDUOUS_TREE\n" "LngText.text" msgid "tree" -msgstr "" +msgstr "árbore" #. 🌴 (U+1F334), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4037,7 +4037,7 @@ "CHERRY_BLOSSOM\n" "LngText.text" msgid "cherry blossom" -msgstr "" +msgstr "flor da cerdeira" #. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4073,7 +4073,7 @@ "BLOSSOM\n" "LngText.text" msgid "blossom" -msgstr "" +msgstr "floración" #. 🌽 (U+1F33D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4100,7 +4100,7 @@ "HERB\n" "LngText.text" msgid "herb" -msgstr "" +msgstr "herba" #. 🍀 (U+1F340), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4280,7 +4280,7 @@ "STRAWBERRY\n" "LngText.text" msgid "strawberry" -msgstr "" +msgstr "amorodo" #. 🍔 (U+1F354), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4334,7 +4334,7 @@ "RICE_BALL\n" "LngText.text" msgid "rice ball" -msgstr "" +msgstr "bolo de arroz" #. 🍚 (U+1F35A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4343,7 +4343,7 @@ "COOKED_RICE\n" "LngText.text" msgid "rice" -msgstr "" +msgstr "arroz" #. 🍛 (U+1F35B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4433,7 +4433,7 @@ "FRIED_SHRIMP\n" "LngText.text" msgid "fried shrimp" -msgstr "" +msgstr "gamba frixida" #. 🍥 (U+1F365), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4442,7 +4442,7 @@ "FISH_CAKE_WITH_SWIRL_DESIGN\n" "LngText.text" msgid "fish cake" -msgstr "" +msgstr "pastel de peixe" #. 🍦 (U+1F366), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4460,7 +4460,7 @@ "SHAVED_ICE\n" "LngText.text" msgid "shaved ice" -msgstr "" +msgstr "xeado de xeo" #. 🍨 (U+1F368), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4469,7 +4469,7 @@ "ICE_CREAM\n" "LngText.text" msgid "ice cream" -msgstr "" +msgstr "xeado" #. 🍩 (U+1F369), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4478,7 +4478,7 @@ "DOUGHNUT\n" "LngText.text" msgid "doughnut" -msgstr "" +msgstr "dónut" #. 🍪 (U+1F36A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4487,7 +4487,7 @@ "COOKIE\n" "LngText.text" msgid "cookie" -msgstr "" +msgstr "galleta" #. 🍫 (U+1F36B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4505,7 +4505,7 @@ "CANDY\n" "LngText.text" msgid "candy" -msgstr "" +msgstr "caramelo" #. 🍭 (U+1F36D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4514,7 +4514,7 @@ "LOLLIPOP\n" "LngText.text" msgid "lollipop" -msgstr "" +msgstr "chupa-chups" #. 🍮 (U+1F36E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4550,7 +4550,7 @@ "BENTO_BOX\n" "LngText.text" msgid "bento" -msgstr "" +msgstr "bento" #. 🍲 (U+1F372), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4649,7 +4649,7 @@ "BABY_BOTTLE\n" "LngText.text" msgid "baby bottle" -msgstr "" +msgstr "biberón" #. 🎀 (U+1F380), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4658,7 +4658,7 @@ "RIBBON\n" "LngText.text" msgid "ribbon" -msgstr "" +msgstr "fita" #. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4676,7 +4676,7 @@ "BIRTHDAY_CAKE\n" "LngText.text" msgid "birthday" -msgstr "" +msgstr "aniversario" #. 🎃 (U+1F383), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4721,7 +4721,7 @@ "FIREWORK_SPARKLER\n" "LngText.text" msgid "sparkler" -msgstr "" +msgstr "bengala" #. 🎈 (U+1F388), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4730,7 +4730,7 @@ "BALLOON\n" "LngText.text" msgid "balloon" -msgstr "" +msgstr "globo" #. 🎉 (U+1F389), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4748,7 +4748,7 @@ "CONFETTI_BALL\n" "LngText.text" msgid "confetti ball" -msgstr "" +msgstr "bola de confetti" #. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4757,7 +4757,7 @@ "TANABATA_TREE\n" "LngText.text" msgid "tanabata tree" -msgstr "" +msgstr "árbore tanabata" #. 🎌 (U+1F38C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4775,7 +4775,7 @@ "PINE_DECORATION\n" "LngText.text" msgid "bamboo" -msgstr "" +msgstr "bambú" #. 🎎 (U+1F38E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4802,7 +4802,7 @@ "WIND_CHIME\n" "LngText.text" msgid "wind chime" -msgstr "" +msgstr "carillón de vento" #. 🎑 (U+1F391), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4820,7 +4820,7 @@ "SCHOOL_SATCHEL\n" "LngText.text" msgid "school satchel" -msgstr "" +msgstr "mochila escolar" #. 🎓 (U+1F393), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4829,7 +4829,7 @@ "GRADUATION_CAP\n" "LngText.text" msgid "graduation" -msgstr "" +msgstr "graduación" #. 🎠 (U+1F3A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4901,7 +4901,7 @@ "HEADPHONE\n" "LngText.text" msgid "headphone" -msgstr "" +msgstr "cascos" #. 🎨 (U+1F3A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4910,7 +4910,7 @@ "ARTIST_PALETTE\n" "LngText.text" msgid "art" -msgstr "" +msgstr "paleta de pintor" #. 🎩 (U+1F3A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4919,7 +4919,7 @@ "TOP_HAT\n" "LngText.text" msgid "top hat" -msgstr "" +msgstr "chapeu de copa" #. 🎪 (U+1F3AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4928,7 +4928,7 @@ "CIRCUS_TENT\n" "LngText.text" msgid "circus tent" -msgstr "" +msgstr "tenda de circo" #. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4946,7 +4946,7 @@ "CLAPPER_BOARD\n" "LngText.text" msgid "clapper" -msgstr "" +msgstr "claqueta" #. 🎭 (U+1F3AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4982,7 +4982,7 @@ "SLOT_MACHINE\n" "LngText.text" msgid "slot machine" -msgstr "" +msgstr "máquina de moedas" #. 🎱 (U+1F3B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5099,7 +5099,7 @@ "RUNNING_SHIRT_WITH_SASH\n" "LngText.text" msgid "shirt2" -msgstr "" +msgstr "camisa 2" #. 🎾 (U+1F3BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5126,7 +5126,7 @@ "BASKETBALL_AND_HOOP\n" "LngText.text" msgid "basketball" -msgstr "" +msgstr "baloncesto" #. 🏁 (U+1F3C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5144,7 +5144,7 @@ "SNOWBOARDER\n" "LngText.text" msgid "snowboarder" -msgstr "" +msgstr "snowboard" #. 🏃 (U+1F3C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5180,7 +5180,7 @@ "HORSE_RACING\n" "LngText.text" msgid "horse racing" -msgstr "" +msgstr "carreiras de cabalos" #. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5243,7 +5243,7 @@ "JAPANESE_POST_OFFICE\n" "LngText.text" msgid "post office2" -msgstr "" +msgstr "oficina de correos 2" #. 🏤 (U+1F3E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5252,7 +5252,7 @@ "EUROPEAN_POST_OFFICE\n" "LngText.text" msgid "post office" -msgstr "" +msgstr "oficina de correos" #. 🏥 (U+1F3E5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5279,7 +5279,7 @@ "AUTOMATED_TELLER_MACHINE\n" "LngText.text" msgid "atm" -msgstr "" +msgstr "caixeiro automático" #. 🏨 (U+1F3E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5342,7 +5342,7 @@ "IZAKAYA_LANTERN\n" "LngText.text" msgid "lantern" -msgstr "" +msgstr "lanterna" #. 🏯 (U+1F3EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5396,7 +5396,7 @@ "WATER_BUFFALO\n" "LngText.text" msgid "water buffalo" -msgstr "" +msgstr "búfalo de auga" #. 🐄 (U+1F404), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5612,7 +5612,7 @@ "BUG\n" "LngText.text" msgid "bug" -msgstr "" +msgstr "bicho" #. 🐜 (U+1F41C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5639,7 +5639,7 @@ "LADY_BEETLE\n" "LngText.text" msgid "ladybug" -msgstr "" +msgstr "xoaniña" #. 🐟 (U+1F41F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5684,7 +5684,7 @@ "HATCHING_CHICK\n" "LngText.text" msgid "chick" -msgstr "" +msgstr "pito" #. 🐤 (U+1F424), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5693,7 +5693,7 @@ "BABY_CHICK\n" "LngText.text" msgid "chick2" -msgstr "" +msgstr "pito 2" #. 🐥 (U+1F425), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5702,7 +5702,7 @@ "FRONT-FACING_BABY_CHICK\n" "LngText.text" msgid "chick3" -msgstr "" +msgstr "pito 3" #. 🐦 (U+1F426), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5738,7 +5738,7 @@ "POODLE\n" "LngText.text" msgid "poodle" -msgstr "" +msgstr "can de augas" #. 🐪 (U+1F42A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5918,7 +5918,7 @@ "PIG_NOSE\n" "LngText.text" msgid "pig nose" -msgstr "" +msgstr "fociño de porco" #. 🐾 (U+1F43E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6017,7 +6017,7 @@ "FISTED_HAND_SIGN\n" "LngText.text" msgid "fist2" -msgstr "" +msgstr "puño 2" #. 👋 (U+1F44B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6035,7 +6035,7 @@ "OK_HAND_SIGN\n" "LngText.text" msgid "ok" -msgstr "" +msgstr "aceptar" #. 👍 (U+1F44D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6062,7 +6062,7 @@ "CLAPPING_HANDS_SIGN\n" "LngText.text" msgid "clap" -msgstr "" +msgstr "aplauso" #. 👐 (U+1F450), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6368,7 +6368,7 @@ "PERSON_WITH_BLOND_HAIR\n" "LngText.text" msgid "blond hair" -msgstr "" +msgstr "cabelo loiro" #. 👲 (U+1F472), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6539,7 +6539,7 @@ "LIPSTICK\n" "LngText.text" msgid "lipstick" -msgstr "" +msgstr "lapis de beizos" #. 💅 (U+1F485), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6548,7 +6548,7 @@ "NAIL_POLISH\n" "LngText.text" msgid "nail care" -msgstr "" +msgstr "manicura" #. 💆 (U+1F486), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6566,7 +6566,7 @@ "HAIRCUT\n" "LngText.text" msgid "haircut" -msgstr "" +msgstr "corte de cabelo" #. 💈 (U+1F488), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6602,7 +6602,7 @@ "KISS_MARK\n" "LngText.text" msgid "kiss mark" -msgstr "" +msgstr "marca de beixo" #. 💌 (U+1F48C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6629,7 +6629,7 @@ "GEM_STONE\n" "LngText.text" msgid "gem" -msgstr "" +msgstr "xema" #. 💏 (U+1F48F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6683,7 +6683,7 @@ "BROKEN_HEART\n" "LngText.text" msgid "broken heart" -msgstr "" +msgstr "corazón partido" #. 💕 (U+1F495), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6701,7 +6701,7 @@ "SPARKLING_HEART\n" "LngText.text" msgid "sparkling heart" -msgstr "" +msgstr "corazón brillante" #. 💗 (U+1F497), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6710,7 +6710,7 @@ "GROWING_HEART\n" "LngText.text" msgid "heartpulse" -msgstr "" +msgstr "latido" #. 💘 (U+1F498), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6728,7 +6728,7 @@ "HEART_WITH_RIBBON\n" "LngText.text" msgid "gift heart" -msgstr "" +msgstr "corazón de agasallo" #. 💞 (U+1F49E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6737,7 +6737,7 @@ "REVOLVING_HEARTS\n" "LngText.text" msgid "revolving hearts" -msgstr "" +msgstr "corazóns xirando" #. 💟 (U+1F49F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6746,7 +6746,7 @@ "HEART_DECORATION\n" "LngText.text" msgid "heart decoration" -msgstr "" +msgstr "decoración de corazóns" #. 💠 (U+1F4A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6755,7 +6755,7 @@ "DIAMOND_SHAPE_WITH_A_DOT_INSIDE\n" "LngText.text" msgid "cuteness" -msgstr "" +msgstr "xeitoso" #. 💡 (U+1F4A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6764,7 +6764,7 @@ "ELECTRIC_LIGHT_BULB\n" "LngText.text" msgid "bulb" -msgstr "" +msgstr "lámpada" #. 💢 (U+1F4A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6800,7 +6800,7 @@ "COLLISION_SYMBOL\n" "LngText.text" msgid "boom" -msgstr "" +msgstr "explosión" #. 💦 (U+1F4A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6809,7 +6809,7 @@ "SPLASHING_SWEAT_SYMBOL\n" "LngText.text" msgid "sweat drops" -msgstr "" +msgstr "pingas de suor" #. 💧 (U+1F4A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6818,7 +6818,7 @@ "DROPLET\n" "LngText.text" msgid "droplet" -msgstr "" +msgstr "pinga" #. 💨 (U+1F4A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6827,7 +6827,7 @@ "DASH_SYMBOL\n" "LngText.text" msgid "dash" -msgstr "" +msgstr "présa" #. 💩 (U+1F4A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6854,7 +6854,7 @@ "DIZZY_SYMBOL\n" "LngText.text" msgid "dizzy" -msgstr "" +msgstr "mareo" #. 💬 (U+1F4AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6863,7 +6863,7 @@ "SPEECH_BALLOON\n" "LngText.text" msgid "speech balloon" -msgstr "" +msgstr "globo de fala" #. 💭 (U+1F4AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6872,7 +6872,7 @@ "THOUGHT_BALLOON\n" "LngText.text" msgid "thought balloon" -msgstr "" +msgstr "globo de pensamento" #. 💮 (U+1F4AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6899,7 +6899,7 @@ "MONEY_BAG\n" "LngText.text" msgid "moneybag" -msgstr "" +msgstr "bolsa de diñeiro" #. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6908,7 +6908,7 @@ "CURRENCY_EXCHANGE\n" "LngText.text" msgid "currency exchange" -msgstr "" +msgstr "troco de moeda" #. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6917,7 +6917,7 @@ "HEAVY_DOLLAR_SIGN\n" "LngText.text" msgid "heavy dollar sign" -msgstr "" +msgstr "dólar realzado" #. 💳 (U+1F4B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6926,7 +6926,7 @@ "CREDIT_CARD\n" "LngText.text" msgid "credit card" -msgstr "" +msgstr "tarxeta de crédito" #. 💴 (U+1F4B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6971,7 +6971,7 @@ "MONEY_WITH_WINGS\n" "LngText.text" msgid "money" -msgstr "" +msgstr "diñeiro" #. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7016,7 +7016,7 @@ "MINIDISC\n" "LngText.text" msgid "md" -msgstr "" +msgstr "MiniDisc" #. 💾 (U+1F4BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7070,7 +7070,7 @@ "PAGE_WITH_CURL\n" "LngText.text" msgid "page with curl" -msgstr "" +msgstr "páxina con dobra" #. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7079,7 +7079,7 @@ "PAGE_FACING_UP\n" "LngText.text" msgid "page facing up" -msgstr "" +msgstr "páxina cara arriba" #. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7106,7 +7106,7 @@ "CARD_INDEX\n" "LngText.text" msgid "card index" -msgstr "" +msgstr "ficha" #. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7151,7 +7151,7 @@ "PUSHPIN\n" "LngText.text" msgid "pushpin" -msgstr "" +msgstr "chatola" #. 📍 (U+1F4CD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7160,7 +7160,7 @@ "ROUND_PUSHPIN\n" "LngText.text" msgid "round pushpin" -msgstr "" +msgstr "chatola redonda" #. 📎 (U+1F4CE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7169,7 +7169,7 @@ "PAPERCLIP\n" "LngText.text" msgid "paperclip" -msgstr "" +msgstr "clip" #. 📏 (U+1F4CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7205,7 +7205,7 @@ "LEDGER\n" "LngText.text" msgid "ledger" -msgstr "" +msgstr "libro de contas" #. 📓 (U+1F4D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7214,7 +7214,7 @@ "NOTEBOOK\n" "LngText.text" msgid "notebook" -msgstr "" +msgstr "caderno" #. 📔 (U+1F4D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7223,7 +7223,7 @@ "NOTEBOOK_WITH_DECORATIVE_COVER\n" "LngText.text" msgid "notebook2" -msgstr "" +msgstr "caderno 2" #. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7268,7 +7268,7 @@ "SCROLL\n" "LngText.text" msgid "scroll" -msgstr "" +msgstr "rolo" #. 📝 (U+1F4DD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7277,7 +7277,7 @@ "MEMO\n" "LngText.text" msgid "memo" -msgstr "" +msgstr "memorando" #. 📞 (U+1F4DE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7286,7 +7286,7 @@ "TELEPHONE_RECEIVER\n" "LngText.text" msgid "receiver" -msgstr "" +msgstr "destinatario" #. 📟 (U+1F4DF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7322,7 +7322,7 @@ "PUBLIC_ADDRESS_LOUDSPEAKER\n" "LngText.text" msgid "loudspeaker" -msgstr "" +msgstr "altofalante" #. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7466,7 +7466,7 @@ "MOBILE_PHONE_WITH_RIGHTWARDS_ARROW_AT_LEFT\n" "LngText.text" msgid "calling" -msgstr "" +msgstr "chamada" #. 📳 (U+1F4F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7475,7 +7475,7 @@ "VIBRATION_MODE\n" "LngText.text" msgid "vibration mode" -msgstr "" +msgstr "modo de vibración" #. 📴 (U+1F4F4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7484,7 +7484,7 @@ "MOBILE_PHONE_OFF\n" "LngText.text" msgid "mobile phone off" -msgstr "" +msgstr "móbil apagado" #. 📵 (U+1F4F5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7493,7 +7493,7 @@ "NO_MOBILE_PHONES\n" "LngText.text" msgid "no mobile" -msgstr "" +msgstr "prohibido o móbil" #. 📶 (U+1F4F6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7502,7 +7502,7 @@ "ANTENNA_WITH_BARS\n" "LngText.text" msgid "signal strength" -msgstr "" +msgstr "forza do sinal" #. 📷 (U+1F4F7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7520,7 +7520,7 @@ "VIDEO_CAMERA\n" "LngText.text" msgid "video camera" -msgstr "" +msgstr "cámara de vídeo" #. 📺 (U+1F4FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7529,7 +7529,7 @@ "TELEVISION\n" "LngText.text" msgid "tv" -msgstr "" +msgstr "tv" #. 📻 (U+1F4FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7547,7 +7547,7 @@ "VIDEOCASSETTE\n" "LngText.text" msgid "vhs" -msgstr "" +msgstr "vhs" #. 🔅 (U+1F505), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7583,7 +7583,7 @@ "SPEAKER\n" "LngText.text" msgid "speaker" -msgstr "" +msgstr "altofalante" #. 🔉 (U+1F509), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7601,7 +7601,7 @@ "SPEAKER_WITH_THREE_SOUND_WAVES\n" "LngText.text" msgid "loud sound" -msgstr "" +msgstr "son alto" #. 🔋 (U+1F50B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7628,7 +7628,7 @@ "LEFT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag" -msgstr "" +msgstr "lupa" #. 🔎 (U+1F50E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7637,7 +7637,7 @@ "RIGHT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag2" -msgstr "" +msgstr "lupa 2" #. 🔏 (U+1F50F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7646,7 +7646,7 @@ "LOCK_WITH_INK_PEN\n" "LngText.text" msgid "lock2" -msgstr "" +msgstr "cadeado 2" #. 🔐 (U+1F510), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7655,7 +7655,7 @@ "CLOSED_LOCK_WITH_KEY\n" "LngText.text" msgid "lock3" -msgstr "" +msgstr "cadeado 3" #. 🔑 (U+1F511), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7673,7 +7673,7 @@ "LOCK\n" "LngText.text" msgid "lock" -msgstr "" +msgstr "cadeado" #. 🔓 (U+1F513), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7691,7 +7691,7 @@ "BELL\n" "LngText.text" msgid "bell" -msgstr "" +msgstr "timbre" #. 🔕 (U+1F515), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7700,7 +7700,7 @@ "BELL_WITH_CANCELLATION_STROKE\n" "LngText.text" msgid "no bell" -msgstr "" +msgstr "sen timbre" #. 🔖 (U+1F516), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7736,7 +7736,7 @@ "NO_ONE_UNDER_EIGHTEEN_SYMBOL\n" "LngText.text" msgid "underage" -msgstr "" +msgstr "menor" #. 🔤 (U+1F524), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7772,7 +7772,7 @@ "WRENCH\n" "LngText.text" msgid "wrench" -msgstr "" +msgstr "chave inglesa" #. 🔨 (U+1F528), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7987,7 +7987,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "1:30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -7996,7 +7996,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "2:30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8005,7 +8005,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "3:30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8014,7 +8014,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "4:30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8023,7 +8023,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "5:30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8032,7 +8032,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "6:30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8041,7 +8041,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "7:30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8050,7 +8050,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "8:30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8059,7 +8059,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "9:30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8068,7 +8068,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "10:30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8077,7 +8077,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "11:30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8086,7 +8086,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "12:30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji @@ -8141,7 +8141,7 @@ "GRINNING_FACE\n" "LngText.text" msgid "grinning" -msgstr "" +msgstr "sorriso amarelo" #. 😁 (U+1F601), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8150,7 +8150,7 @@ "GRINNING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "grin" -msgstr "" +msgstr "sorriso" #. 😂 (U+1F602), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8222,7 +8222,7 @@ "WINKING_FACE\n" "LngText.text" msgid "wink" -msgstr "" +msgstr "chiscar" #. 😊 (U+1F60A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8231,7 +8231,7 @@ "SMILING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "blush" -msgstr "" +msgstr "acoramento" #. 😋 (U+1F60B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8240,7 +8240,7 @@ "FACE_SAVOURING_DELICIOUS_FOOD\n" "LngText.text" msgid "yum" -msgstr "" +msgstr "sabedeiro" #. 😌 (U+1F60C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8276,7 +8276,7 @@ "SMIRKING_FACE\n" "LngText.text" msgid "smirk" -msgstr "" +msgstr "sorriso afectado" #. 😐 (U+1F610), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8321,7 +8321,7 @@ "PENSIVE_FACE\n" "LngText.text" msgid "pensive" -msgstr "" +msgstr "pensativo" #. 😕 (U+1F615), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8339,7 +8339,7 @@ "CONFOUNDED_FACE\n" "LngText.text" msgid "confounded" -msgstr "" +msgstr "confuso" #. 😗 (U+1F617), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8411,7 +8411,7 @@ "DISAPPOINTED_FACE\n" "LngText.text" msgid "disappointed" -msgstr "" +msgstr "decepción" #. 😟 (U+1F61F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8456,7 +8456,7 @@ "PERSEVERING_FACE\n" "LngText.text" msgid "persevere" -msgstr "" +msgstr "perseveranza" #. 😤 (U+1F624), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8474,7 +8474,7 @@ "DISAPPOINTED_BUT_RELIEVED_FACE\n" "LngText.text" msgid "disappointed relieved" -msgstr "" +msgstr "alivio decepcionado" #. 😦 (U+1F626), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8483,7 +8483,7 @@ "FROWNING_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "frowning" -msgstr "" +msgstr "desaprobando" #. 😧 (U+1F627), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8663,7 +8663,7 @@ "SMILING_CAT_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "smiley cat" -msgstr "" +msgstr "gato sorrindo" #. 😻 (U+1F63B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8681,7 +8681,7 @@ "CAT_FACE_WITH_WRY_SMILE\n" "LngText.text" msgid "smirk cat" -msgstr "" +msgstr "gato sorrindo" #. 😽 (U+1F63D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8690,7 +8690,7 @@ "KISSING_CAT_FACE_WITH_CLOSED_EYES\n" "LngText.text" msgid "kissing cat" -msgstr "" +msgstr "gato bicando" #. 😾 (U+1F63E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8708,7 +8708,7 @@ "CRYING_CAT_FACE\n" "LngText.text" msgid "crying cat" -msgstr "" +msgstr "gato chorando" #. 🙀 (U+1F640), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8726,7 +8726,7 @@ "FACE_WITH_NO_GOOD_GESTURE\n" "LngText.text" msgid "no good" -msgstr "" +msgstr "nada bo" #. 🙆 (U+1F646), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8735,7 +8735,7 @@ "FACE_WITH_OK_GESTURE\n" "LngText.text" msgid "ok2" -msgstr "" +msgstr "aceptar 2" #. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8753,7 +8753,7 @@ "SEE-NO-EVIL_MONKEY\n" "LngText.text" msgid "see no evil" -msgstr "" +msgstr "non ve nada" #. 🙉 (U+1F649), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8762,7 +8762,7 @@ "HEAR-NO-EVIL_MONKEY\n" "LngText.text" msgid "hear no evil" -msgstr "" +msgstr "non ouve nada" #. 🙊 (U+1F64A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8771,7 +8771,7 @@ "SPEAK-NO-EVIL_MONKEY\n" "LngText.text" msgid "speak no evil" -msgstr "" +msgstr "non fala nada" #. 🙋 (U+1F64B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8798,7 +8798,7 @@ "PERSON_FROWNING\n" "LngText.text" msgid "person frowning" -msgstr "" +msgstr "persoa desaprobando" #. 🙎 (U+1F64E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8816,7 +8816,7 @@ "PERSON_WITH_FOLDED_HANDS\n" "LngText.text" msgid "pray" -msgstr "" +msgstr "rezar" #. 🚀 (U+1F680), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8888,7 +8888,7 @@ "METRO\n" "LngText.text" msgid "metro" -msgstr "" +msgstr "metro" #. 🚈 (U+1F688), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8897,7 +8897,7 @@ "LIGHT_RAIL\n" "LngText.text" msgid "light rail" -msgstr "" +msgstr "tren lixeiro" #. 🚉 (U+1F689), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8951,7 +8951,7 @@ "TROLLEYBUS\n" "LngText.text" msgid "trolleybus" -msgstr "" +msgstr "trolebús" #. 🚏 (U+1F68F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9086,7 +9086,7 @@ "MONORAIL\n" "LngText.text" msgid "monorail" -msgstr "" +msgstr "monorraíl" #. 🚞 (U+1F69E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9140,7 +9140,7 @@ "ROWBOAT\n" "LngText.text" msgid "rowboat" -msgstr "" +msgstr "barca de remos" #. 🚤 (U+1F6A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9149,7 +9149,7 @@ "SPEEDBOAT\n" "LngText.text" msgid "speedboat" -msgstr "" +msgstr "barca a motor" #. 🚥 (U+1F6A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9185,7 +9185,7 @@ "POLICE_CARS_REVOLVING_LIGHT\n" "LngText.text" msgid "rotating light" -msgstr "" +msgstr "luz xiratoria" #. 🚩 (U+1F6A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9194,7 +9194,7 @@ "TRIANGULAR_FLAG_ON_POST\n" "LngText.text" msgid "triangular flag" -msgstr "" +msgstr "bandeira triangular" #. 🚪 (U+1F6AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9329,7 +9329,7 @@ "CHILDREN_CROSSING\n" "LngText.text" msgid "children crossing" -msgstr "" +msgstr "rapaces cruzando" #. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9446,7 +9446,7 @@ "LEFT_LUGGAGE\n" "LngText.text" msgid "left luggage" -msgstr "" +msgstr "equipaxes perdidas" #. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/gl/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/gl/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-27 00:11+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-21 12:05+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-04 16:55+0000\n" "Last-Translator: Xosé \n" "Language-Team: LANGUAGE \n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437480321.000000\n" +"X-POOTLE-MTIME: 1441385728.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3307,8 +3307,8 @@ "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" -msgstr "Encher" +msgid "F~ill" +msgstr "~Encher" #: CalcCommands.xcu msgctxt "" @@ -15153,8 +15153,8 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" -msgstr "Modo ed~ición" +msgid "E~dit Mode" +msgstr "Modo e~dición" #: GenericCommands.xcu msgctxt "" @@ -22021,7 +22021,7 @@ "Label\n" "value.text" msgid "Mail Merge Wi~zard..." -msgstr "~Asist. combinar correo..." +msgstr "~Asistente de combinación de correo..." #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.0.2~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.0.1~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-05-05 21:32+0000\n" +"PO-Revision-Date: 2015-08-14 14:43+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1430861520.000000\n" +"X-POOTLE-MTIME: 1439563394.000000\n" #: Addons.xcu msgctxt "" @@ -89,17 +89,15 @@ msgstr "LIMPARPANTALLA" #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m10\n" "Title\n" "value.text" msgid "Logo command line (press Enter for command execution or F1 for help)" -msgstr "Liña de comandos de Logo (preme Intro para executar o comando ou F1 para a axuda)" +msgstr "Liña de ordes de Logo (preme Intro para executar a orde ou F1 para a axuda)" #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m09\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/gl/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/gl/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-05-14 20:54+0000\n" -"Last-Translator: Xosé \n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 15:14+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431636881.000000\n" +"X-POOTLE-MTIME: 1439565263.000000\n" #: condformatdlg.src msgctxt "" @@ -4923,7 +4923,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "Intervalo ou expresión de fórmula" @@ -4999,6 +4999,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Intervalo" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/sc/uiconfig/scalc/ui.po libreoffice-5.0.2~rc2/translations/source/gl/sc/uiconfig/scalc/ui.po --- libreoffice-5.0.1~rc2/translations/source/gl/sc/uiconfig/scalc/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/sc/uiconfig/scalc/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-05-14 20:47+0000\n" +"PO-Revision-Date: 2015-09-02 12:55+0000\n" "Last-Translator: Xosé \n" "Language-Team: none\n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431636450.000000\n" +"X-POOTLE-MTIME: 1441198530.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -1505,7 +1505,7 @@ "label\n" "string.text" msgid "Minimum bar length (%):" -msgstr "Lonxitude mínima das barras (%s):" +msgstr "Lonxitude mínima das barras (%):" #: databaroptions.ui msgctxt "" @@ -1514,7 +1514,7 @@ "label\n" "string.text" msgid "Maximum bar length (%):" -msgstr "Lonxitude máxima das barras (%s):" +msgstr "Lonxitude máxima das barras (%):" #: databaroptions.ui msgctxt "" @@ -8069,7 +8069,6 @@ msgstr "Introduza o número máximo de ceros que desexe que aparezan antes da coma decimal." #: sidebarnumberformat.ui -#, fuzzy msgctxt "" "sidebarnumberformat.ui\n" "negativenumbersred\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/sd/source/ui/app.po libreoffice-5.0.2~rc2/translations/source/gl/sd/source/ui/app.po --- libreoffice-5.0.1~rc2/translations/source/gl/sd/source/ui/app.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/sd/source/ui/app.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-05 21:32+0000\n" +"PO-Revision-Date: 2015-08-14 15:39+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1430861529.000000\n" +"X-POOTLE-MTIME: 1439566794.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -161,14 +161,13 @@ msgstr "~Distribución..." #: menuids_tmpl.src -#, fuzzy msgctxt "" "menuids_tmpl.src\n" "MN_INSERT_GRAPHIC\n" "SID_INSERT_GRAPHIC\n" "menuitem.text" msgid "Insert I~mage..." -msgstr "Inserir unha imaxe" +msgstr "Inserir unha i~maxe..." #: menuids_tmpl.src msgctxt "" @@ -618,7 +617,7 @@ "SID_OBJECT_ALIGN\n" "menuitem.text" msgid "Al~ign" -msgstr "" +msgstr "Al~iñamento" #: menuids_tmpl.src msgctxt "" @@ -834,7 +833,7 @@ "SID_SET_DEFAULT\n" "menuitem.text" msgid "~Default Formatting" -msgstr "" +msgstr "Formatado pre~determinado" #: menuids_tmpl.src msgctxt "" @@ -852,17 +851,16 @@ "SID_ORIGINAL_SIZE\n" "menuitem.text" msgid "Restore ~Original Size" -msgstr "" +msgstr "Restaurar o tamaño ~orixinal" #: menuids_tmpl.src -#, fuzzy msgctxt "" "menuids_tmpl.src\n" "MN_CROP\n" "SID_OBJECT_CROP\n" "menuitem.text" msgid "Crop I~mage" -msgstr "Recortar imaxe" +msgstr "Recortar a i~maxe" #: menuids_tmpl.src msgctxt "" @@ -3690,7 +3688,7 @@ "STR_FIELD_PLACEHOLDER_SLIDENAME\n" "string.text" msgid "" -msgstr "" +msgstr "" #: strings.src msgctxt "" @@ -3698,7 +3696,7 @@ "STR_FIELD_PLACEHOLDER_PAGENAME\n" "string.text" msgid "" -msgstr "" +msgstr "" #: strings.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/gl/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/gl/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-10-13 22:24+0000\n" -"Last-Translator: Antón \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 15:40+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \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-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1413239076.000000\n" +"X-POOTLE-MTIME: 1439566804.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "Predeterminado" +msgid "According to layout" +msgstr "Segundo o deseño" #: DocumentRenderer.src msgctxt "" @@ -194,7 +194,7 @@ "_STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT\n" "string.text" msgid "~Contents" -msgstr "~Contidos" +msgstr "~Contido" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/sd/uiconfig/simpress/ui.po libreoffice-5.0.2~rc2/translations/source/gl/sd/uiconfig/simpress/ui.po --- libreoffice-5.0.1~rc2/translations/source/gl/sd/uiconfig/simpress/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/sd/uiconfig/simpress/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-12 14:01+0000\n" +"PO-Revision-Date: 2015-08-14 15:45+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431439275.000000\n" +"X-POOTLE-MTIME: 1439567100.000000\n" #: assistentdialog.ui msgctxt "" @@ -3308,10 +3308,9 @@ "label\n" "string.text" msgid "Apply Transition to All Slides" -msgstr "" +msgstr "Aplicar a transición a todas as diapositivas" #: slidetransitionspanel.ui -#, fuzzy msgctxt "" "slidetransitionspanel.ui\n" "auto_preview\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/sfx2/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/gl/sfx2/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/gl/sfx2/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/sfx2/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-24 11:38+0000\n" +"PO-Revision-Date: 2015-08-14 15:49+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435145895.000000\n" +"X-POOTLE-MTIME: 1439567388.000000\n" #: alienwarndialog.ui msgctxt "" @@ -347,7 +347,7 @@ "label\n" "string.text" msgid "Reset Properties" -msgstr "" +msgstr "Restaurar as propiedades" #: documentinfopage.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/starmath/uiconfig/smath/ui.po libreoffice-5.0.2~rc2/translations/source/gl/starmath/uiconfig/smath/ui.po --- libreoffice-5.0.1~rc2/translations/source/gl/starmath/uiconfig/smath/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/starmath/uiconfig/smath/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-05-05 21:32+0000\n" +"PO-Revision-Date: 2015-08-14 15:52+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1430861542.000000\n" +"X-POOTLE-MTIME: 1439567572.000000\n" #: alignmentdialog.ui msgctxt "" @@ -125,7 +125,6 @@ msgstr "Descoñecido" #: dockingelements.ui -#, fuzzy msgctxt "" "dockingelements.ui\n" "DockingElements\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/svtools/source/control.po libreoffice-5.0.2~rc2/translations/source/gl/svtools/source/control.po --- libreoffice-5.0.1~rc2/translations/source/gl/svtools/source/control.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/svtools/source/control.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2014-07-01 10:49+0000\n" +"PO-Revision-Date: 2015-08-14 15:53+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404211758.000000\n" +"X-POOTLE-MTIME: 1439567628.000000\n" #: calendar.src msgctxt "" @@ -390,7 +390,7 @@ "STR_TABBAR_PUSHBUTTON_ADDTAB\n" "string.text" msgid "Add" -msgstr "" +msgstr "Engadir" #: ruler.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/svtools/source/misc.po libreoffice-5.0.2~rc2/translations/source/gl/svtools/source/misc.po --- libreoffice-5.0.1~rc2/translations/source/gl/svtools/source/misc.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/svtools/source/misc.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-14 20:53+0000\n" -"Last-Translator: Xosé \n" +"PO-Revision-Date: 2015-08-14 15:56+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431636784.000000\n" +"X-POOTLE-MTIME: 1439567790.000000\n" #: imagemgr.src msgctxt "" @@ -3777,7 +3777,7 @@ "LANGUAGE_USER_VENETIAN\n" "pairedlist.text" msgid "Venetian" -msgstr "" +msgstr "Veneciano" #: svtools.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/svtools/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/gl/svtools/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/gl/svtools/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/svtools/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-05 21:31+0000\n" +"PO-Revision-Date: 2015-08-14 15:56+0000\n" "Last-Translator: system user <>\n" "Language-Team: none\n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1430861508.000000\n" +"X-POOTLE-MTIME: 1439567806.000000\n" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -908,14 +908,13 @@ msgstr "Para que a bibliografía funcione correctamente, debe reiniciar o %PRODUCTNAME." #: restartdialog.ui -#, fuzzy msgctxt "" "restartdialog.ui\n" "reason_mailmerge_install\n" "label\n" "string.text" msgid "For the mail merge to work properly, %PRODUCTNAME must be restarted." -msgstr "Para que a bibliografía funcione correctamente, debe reiniciar o %PRODUCTNAME." +msgstr "Para que a fusión de correo funcione correctamente hai que reiniciar o %PRODUCTNAME." #: restartdialog.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/svx/inc.po libreoffice-5.0.2~rc2/translations/source/gl/svx/inc.po --- libreoffice-5.0.1~rc2/translations/source/gl/svx/inc.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/svx/inc.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-14 20:52+0000\n" -"Last-Translator: Xosé \n" +"PO-Revision-Date: 2015-08-14 15:56+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431636759.000000\n" +"X-POOTLE-MTIME: 1439567819.000000\n" #: globlmn_tmpl.hrc msgctxt "" @@ -406,7 +406,7 @@ "ITEM_CHANGE_PICTURE\n" "#define.text" msgid "Replace Image..." -msgstr "" +msgstr "Substituír imaxe..." #: globlmn_tmpl.hrc msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/svx/source/items.po libreoffice-5.0.2~rc2/translations/source/gl/svx/source/items.po --- libreoffice-5.0.1~rc2/translations/source/gl/svx/source/items.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/svx/source/items.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2014-10-25 21:50+0000\n" -"Last-Translator: Antón Méixome \n" +"PO-Revision-Date: 2015-08-14 16:03+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1414273803.000000\n" +"X-POOTLE-MTIME: 1439568186.000000\n" #: svxerr.src msgctxt "" @@ -442,7 +442,7 @@ "Character blinking\n" "itemlist.text" msgid "Character blinking" -msgstr "" +msgstr "Intermitencia dos caracteres" #: svxitems.src msgctxt "" @@ -541,7 +541,7 @@ "Paragraph spacing\n" "itemlist.text" msgid "Paragraph spacing" -msgstr "" +msgstr "Espazamento entre parágrafos" #: svxitems.src msgctxt "" @@ -550,7 +550,7 @@ "Paragraph indent\n" "itemlist.text" msgid "Paragraph indent" -msgstr "" +msgstr "Sangría do parágrafo" #: svxitems.src msgctxt "" @@ -775,7 +775,7 @@ "Character scaling\n" "itemlist.text" msgid "Character scaling" -msgstr "" +msgstr "Ampliación dos caracteres" #: svxitems.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/svx/source/tbxctrls.po libreoffice-5.0.2~rc2/translations/source/gl/svx/source/tbxctrls.po --- libreoffice-5.0.1~rc2/translations/source/gl/svx/source/tbxctrls.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/svx/source/tbxctrls.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-06 15:01+0000\n" +"PO-Revision-Date: 2015-08-14 16:06+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1430924479.000000\n" +"X-POOTLE-MTIME: 1439568407.000000\n" #: colrctrl.src msgctxt "" @@ -576,7 +576,7 @@ "RID_SVXSTR_CHAR_BACK_COLOR\n" "string.text" msgid "Text Background Color" -msgstr "" +msgstr "Cor de fondo do texto" #: tbcontrl.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/svx/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/gl/svx/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/gl/svx/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/svx/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-14 20:52+0000\n" +"PO-Revision-Date: 2015-08-14 16:09+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431636778.000000\n" +"X-POOTLE-MTIME: 1439568580.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -1466,7 +1466,6 @@ msgstr "Phong" #: docking3deffects.ui -#, fuzzy msgctxt "" "docking3deffects.ui\n" "mode\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/gl/sw/uiconfig/swriter/ui.po libreoffice-5.0.2~rc2/translations/source/gl/sw/uiconfig/swriter/ui.po --- libreoffice-5.0.1~rc2/translations/source/gl/sw/uiconfig/swriter/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gl/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-07-21 12:28+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-03 21:35+0000\n" +"Last-Translator: Xosé \n" "Language-Team: none\n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437481692.000000\n" +"X-POOTLE-MTIME: 1441316159.000000\n" #: abstractdialog.ui msgctxt "" @@ -10597,7 +10597,6 @@ msgstr "Colum_na:" #: opttablepage.ui -#, fuzzy msgctxt "" "opttablepage.ui\n" "label14\n" @@ -13380,7 +13379,7 @@ "label\n" "string.text" msgid "Text _orientation" -msgstr "_Orientación de texto" +msgstr "_Orientación do texto" #: tabletextflowpage.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gu/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/gu/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/gu/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gu/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-26 00:27+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 14:43+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: gu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435278421.000000\n" +"X-POOTLE-MTIME: 1439563406.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8000,7 +8000,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -8009,7 +8009,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8018,7 +8018,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8027,7 +8027,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8036,7 +8036,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8045,7 +8045,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8054,7 +8054,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8063,7 +8063,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8072,7 +8072,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8081,7 +8081,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8090,7 +8090,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8099,7 +8099,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/gu/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/gu/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/gu/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gu/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-27 00:11+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-12 14:37+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 15:16+0000\n" "Last-Translator: system user <>\n" "Language-Team: Gujarati <>\n" "Language: gu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431441434.000000\n" +"X-POOTLE-MTIME: 1439565360.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -1026,13 +1026,14 @@ msgstr "શરત..." #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ColorScaleFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Color Scale" -msgstr "" +msgstr "શરતી બંધારણ (~o)" #: CalcCommands.xcu msgctxt "" @@ -3313,12 +3314,13 @@ msgstr "માનવીય અટકણ કાઢો (~B)" #: CalcCommands.xcu +#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" +msgid "F~ill" msgstr "ભરો" #: CalcCommands.xcu @@ -15176,7 +15178,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "" #: GenericCommands.xcu diff -Nru libreoffice-5.0.1~rc2/translations/source/gu/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/gu/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/gu/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gu/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-05-12 14:40+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-08-14 15:38+0000\n" "Last-Translator: system user <>\n" "Language-Team: Gujarati <>\n" "Language: gu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431441652.000000\n" +"X-POOTLE-MTIME: 1439566726.000000\n" #: condformatdlg.src msgctxt "" @@ -4928,7 +4928,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5004,6 +5004,15 @@ #: globstr.src msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "વિસ્તાર" + +#: globstr.src +msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" "STR_HEADER_COND\n" diff -Nru libreoffice-5.0.1~rc2/translations/source/gu/sd/source/ui/view.po libreoffice-5.0.2~rc2/translations/source/gu/sd/source/ui/view.po --- libreoffice-5.0.1~rc2/translations/source/gu/sd/source/ui/view.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gu/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-06-07 10:28+0000\n" -"Last-Translator: sweta \n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-08-14 16:02+0000\n" +"Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" "Language: gu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1370600883.0\n" +"X-POOTLE-MTIME: 1439568140.000000\n" #: DocumentRenderer.src msgctxt "" @@ -101,10 +101,10 @@ msgctxt "" "DocumentRenderer.src\n" "_STR_IMPRESS_PRINT_UI_OPTIONS._STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES\n" -"Default\n" +"According to layout\n" "itemlist.text" -msgid "Default" -msgstr "મૂળભૂત" +msgid "According to layout" +msgstr "" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gu/starmath/source.po libreoffice-5.0.2~rc2/translations/source/gu/starmath/source.po --- libreoffice-5.0.1~rc2/translations/source/gu/starmath/source.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gu/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-20 09:18+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/basic/source/classes.po libreoffice-5.0.2~rc2/translations/source/gug/basic/source/classes.po --- libreoffice-5.0.1~rc2/translations/source/gug/basic/source/classes.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/basic/source/classes.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-08-06 20:34+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-06 23:19+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893269.000000\n" +"X-POOTLE-MTIME: 1441581546.000000\n" #: sb.src msgctxt "" @@ -32,7 +32,7 @@ "SbERR_NO_GOSUB & ERRCODE_RES_MASK\n" "string.text" msgid "Return without Gosub." -msgstr "Ejujey Gosub'ỹ" +msgstr "Ombo'u jey Gosub'ỹ" #: sb.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/chart2/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/gug/chart2/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/gug/chart2/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/chart2/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:34+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-16 15:30+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893281.000000\n" +"X-POOTLE-MTIME: 1442417436.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -1841,7 +1841,7 @@ "label\n" "string.text" msgid "_Line type" -msgstr "_Tipo líneagui" +msgstr "_Tipo de línea" #: tp_ChartType.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po libreoffice-5.0.2~rc2/translations/source/gug/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po --- libreoffice-5.0.1~rc2/translations/source/gug/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-02-14 00:34+0000\n" -"Last-Translator: Giovanni \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-09-16 15:27+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" -"Language: gn\n" +"Language: gug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1423874078.000000\n" +"X-POOTLE-MTIME: 1442417251.000000\n" #: Drivers.xcu msgctxt "" @@ -23,7 +23,7 @@ "DriverTypeDisplayName\n" "value.text" msgid "Evolution Local" -msgstr "" +msgstr "Evolution Local" #: Drivers.xcu msgctxt "" @@ -32,7 +32,7 @@ "DriverTypeDisplayName\n" "value.text" msgid "Evolution LDAP" -msgstr "" +msgstr "Evolution LDAP" #: Drivers.xcu msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/cui/source/customize.po libreoffice-5.0.2~rc2/translations/source/gug/cui/source/customize.po --- libreoffice-5.0.1~rc2/translations/source/gug/cui/source/customize.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/cui/source/customize.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-20 17:13+0000\n" +"PO-Revision-Date: 2015-08-27 16:31+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440090816.000000\n" +"X-POOTLE-MTIME: 1440693103.000000\n" #: acccfg.src msgctxt "" @@ -32,7 +32,7 @@ "STR_GROUP_STYLES\n" "string.text" msgid "Styles" -msgstr "Estilo" +msgstr "Estilo kuéra" #: cfg.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/cui/source/options.po libreoffice-5.0.2~rc2/translations/source/gug/cui/source/options.po --- libreoffice-5.0.1~rc2/translations/source/gug/cui/source/options.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/cui/source/options.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:34+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-08-23 04:17+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893296.000000\n" +"X-POOTLE-MTIME: 1440303453.000000\n" #: connpooloptions.src msgctxt "" @@ -970,7 +970,7 @@ "Formatting Aids\n" "itemlist.text" msgid "Formatting Aids" -msgstr "Pytyvõ formatogui" +msgstr "Pytyvõ Formátogui" #: treeopt.src msgctxt "" @@ -1096,7 +1096,7 @@ "Formatting Aids\n" "itemlist.text" msgid "Formatting Aids" -msgstr "Pytyvõ formatogui" +msgstr "Pytyvõ Formátogui" #: treeopt.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/cui/source/tabpages.po libreoffice-5.0.2~rc2/translations/source/gug/cui/source/tabpages.po --- libreoffice-5.0.1~rc2/translations/source/gug/cui/source/tabpages.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/cui/source/tabpages.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-14 14:33+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-01 00:39+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439562808.000000\n" +"X-POOTLE-MTIME: 1441067946.000000\n" #: border.src msgctxt "" @@ -198,7 +198,7 @@ "RID_SVXSTR_PAGEDIR_RTL_VERT\n" "string.text" msgid "Right-to-left (vertical)" -msgstr "Akatúa asu gotyo (vertical)" +msgstr "Akatúa asu gotyo (oñembo'ýva)" #: frmdirlbox.src msgctxt "" @@ -206,7 +206,7 @@ "RID_SVXSTR_PAGEDIR_LTR_VERT\n" "string.text" msgid "Left-to-right (vertical)" -msgstr "Asú akatúa gotyo (vertical)" +msgstr "Asú akatúa gotyo (oñembo'ýva)" #: page.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/cui/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/gug/cui/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/gug/cui/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-20 17:13+0000\n" +"PO-Revision-Date: 2015-09-16 15:31+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440090833.000000\n" +"X-POOTLE-MTIME: 1442417485.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -2201,7 +2201,7 @@ "4\n" "stringlist.text" msgid "Vertical" -msgstr "Vertical" +msgstr "Oñembo'ýva" #: cellalignment.ui msgctxt "" @@ -2309,7 +2309,7 @@ "label\n" "string.text" msgid "_Vertical" -msgstr "_Vertical" +msgstr "_Oñembo'ýva" #: cellalignment.ui msgctxt "" @@ -3236,7 +3236,7 @@ "label\n" "string.text" msgid "Color table:" -msgstr "Tabla de colores:" +msgstr "Tabla sa'y:" #: colorpage.ui msgctxt "" @@ -3731,7 +3731,7 @@ "label\n" "string.text" msgid "Connection pooling enabled" -msgstr "Mboguata conexíones ojetu'u" +msgstr "Myendy conexíones ojetu'u" #: connpooloptions.ui msgctxt "" @@ -3758,7 +3758,7 @@ "label\n" "string.text" msgid "Enable pooling for this driver" -msgstr "Mboguata conexíones ojetu'u ko driver" +msgstr "Myendy conexíones ojetu'u ko driver" #: connpooloptions.ui msgctxt "" @@ -4334,7 +4334,7 @@ "label\n" "string.text" msgid "Vertical" -msgstr "Vertical" +msgstr "Oñembo'ýva" #: editdictionarydialog.ui msgctxt "" @@ -6152,7 +6152,7 @@ "label\n" "string.text" msgid "_Line type:" -msgstr "_Tipo líneagui:" +msgstr "Tipo de _línea:" #: hatchpage.ui msgctxt "" @@ -9685,7 +9685,7 @@ "label\n" "string.text" msgid "Enable experimental features" -msgstr "Mboguata tembiapo-ojapóa experimentales" +msgstr "Myendy tembiapo-ojapóa experimentales" #: optadvancedpage.ui msgctxt "" @@ -9694,7 +9694,7 @@ "label\n" "string.text" msgid "Enable macro recording (limited)" -msgstr "Mboguata grabación de macros (limitada)" +msgstr "Myendy grabación de macros (limitada)" #: optadvancedpage.ui msgctxt "" @@ -9901,7 +9901,7 @@ "label\n" "string.text" msgid "Enable code completion" -msgstr "Mboguata ojejapopa va'ekue código" +msgstr "Myendy ojejapopa va'ekue código" #: optbasicidepage.ui msgctxt "" @@ -10000,7 +10000,7 @@ "label\n" "string.text" msgid "Color Table" -msgstr "Tabla de Colores" +msgstr "Tabla Sa'y" #: optctlpage.ui msgctxt "" @@ -10720,7 +10720,7 @@ "label\n" "string.text" msgid "_Print layout" -msgstr "Ta'angahai de _Impresión" +msgstr "Ta'angahai _Impresión" #: opthtmlpage.ui msgctxt "" @@ -13138,7 +13138,7 @@ "label\n" "string.text" msgid "_Vertical" -msgstr "_Vertical" +msgstr "_Oñembo'ýva" #: pageformatpage.ui msgctxt "" @@ -16078,7 +16078,7 @@ "label\n" "string.text" msgid "_Vertical:" -msgstr "_Vertical:" +msgstr "_Oñembo'ýva:" #: swpossizepage.ui msgctxt "" @@ -16501,7 +16501,7 @@ "label\n" "string.text" msgid "Spacing to Borders" -msgstr "Pa'ũ a los Bordes" +msgstr "Pa'ũ Borde pe" #: textattrtabpage.ui msgctxt "" @@ -17230,7 +17230,7 @@ "label\n" "string.text" msgid "Enable word _completion" -msgstr "Mboguata _ojapopa va'ekue de palabras" +msgstr "Myendy _ojapopa va'ekue palabras gui" #: wordcompletionpage.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/desktop/source/deployment/gui.po libreoffice-5.0.2~rc2/translations/source/gug/desktop/source/deployment/gui.po --- libreoffice-5.0.1~rc2/translations/source/gug/desktop/source/deployment/gui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/desktop/source/deployment/gui.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-04-11 01:36+0000\n" -"Last-Translator: Giovanni \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-16 15:14+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" -"Language: gn\n" +"Language: gug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1428716214.000000\n" +"X-POOTLE-MTIME: 1442416465.000000\n" #: dp_gui_dialog.src msgctxt "" @@ -38,7 +38,7 @@ "RID_CTX_ITEM_ENABLE\n" "string.text" msgid "~Enable" -msgstr "~Mboguata" +msgstr "~Myendy" #: dp_gui_dialog.src msgctxt "" @@ -336,7 +336,7 @@ "RID_DLG_UPDATE_ENABLE\n" "string.text" msgid "Enable Updates" -msgstr "" +msgstr "Myendy 'Oñemoĩ al día'" #: dp_gui_updatedialog.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/desktop/uiconfig/ui.po libreoffice-5.0.2~rc2/translations/source/gug/desktop/uiconfig/ui.po --- libreoffice-5.0.1~rc2/translations/source/gug/desktop/uiconfig/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/desktop/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:36+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-16 15:20+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893376.000000\n" +"X-POOTLE-MTIME: 1442416843.000000\n" #: cmdlinehelp.ui msgctxt "" @@ -68,7 +68,7 @@ "label\n" "string.text" msgid "Check for updates..." -msgstr "" +msgstr "Heka actualizaciones..." #: extensionmanager.ui msgctxt "" @@ -293,7 +293,7 @@ "label\n" "string.text" msgid "_Show all updates" -msgstr "" +msgstr "_Hecha opavave actualizaciones" #: updatedialog.ui msgctxt "" @@ -401,7 +401,7 @@ "label\n" "string.text" msgid "Check for _Updates..." -msgstr "" +msgstr "Heka _Actualizaciones..." #: updaterequireddialog.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/dictionaries/en/dialog.po libreoffice-5.0.2~rc2/translations/source/gug/dictionaries/en/dialog.po --- libreoffice-5.0.1~rc2/translations/source/gug/dictionaries/en/dialog.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/dictionaries/en/dialog.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:22+0100\n" -"PO-Revision-Date: 2015-04-13 20:55+0000\n" -"Last-Translator: Giovanni \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-03 19:40+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" -"Language: gn\n" +"Language: gug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1428958512.000000\n" +"X-POOTLE-MTIME: 1441309232.000000\n" #: en_en_US.properties msgctxt "" @@ -22,7 +22,7 @@ "spelling\n" "property.text" msgid "Grammar checking" -msgstr "" +msgstr "Comprobación gramatical" #: en_en_US.properties msgctxt "" @@ -126,7 +126,7 @@ "mdash\n" "property.text" msgid "Em dash" -msgstr "" +msgstr "Guión Em" #: en_en_US.properties msgctxt "" @@ -142,7 +142,7 @@ "ndash\n" "property.text" msgid "En dash" -msgstr "" +msgstr "Guión En" #: en_en_US.properties msgctxt "" @@ -270,7 +270,7 @@ "hlp_metric\n" "property.text" msgid "Measurement conversion from °F, mph, ft, in, lb, gal and miles." -msgstr "" +msgstr "Conversión de medidas desde °F, mph, ft, in, lb, gal y millas." #: en_en_US.properties msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po libreoffice-5.0.2~rc2/translations/source/gug/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po --- libreoffice-5.0.1~rc2/translations/source/gug/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:36+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-03 19:42+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893384.000000\n" +"X-POOTLE-MTIME: 1441309378.000000\n" #: OptionsDialog.xcu msgctxt "" @@ -32,4 +32,4 @@ "Label\n" "value.text" msgid "Grammar checking (Portuguese)" -msgstr "" +msgstr "Revisión gramatical (Portugués)" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/dictionaries/pt_BR/dialog.po libreoffice-5.0.2~rc2/translations/source/gug/dictionaries/pt_BR/dialog.po --- libreoffice-5.0.1~rc2/translations/source/gug/dictionaries/pt_BR/dialog.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/dictionaries/pt_BR/dialog.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:36+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-03 19:42+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893384.000000\n" +"X-POOTLE-MTIME: 1441309368.000000\n" #: OptionsDialog.xcu msgctxt "" @@ -32,4 +32,4 @@ "Label\n" "value.text" msgid "Grammar checking (Portuguese)" -msgstr "" +msgstr "Revisión gramatical (Portugués)" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/extensions/source/propctrlr.po libreoffice-5.0.2~rc2/translations/source/gug/extensions/source/propctrlr.po --- libreoffice-5.0.1~rc2/translations/source/gug/extensions/source/propctrlr.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/extensions/source/propctrlr.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-20 17:14+0000\n" +"PO-Revision-Date: 2015-09-16 15:15+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440090873.000000\n" +"X-POOTLE-MTIME: 1442416525.000000\n" #: formlinkdialog.src msgctxt "" @@ -71,7 +71,7 @@ "RID_STR_ENABLED\n" "string.text" msgid "Enabled" -msgstr "Mboguata" +msgstr "Myendy" #: formres.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/extensions/source/update/check/org/openoffice/Office.po libreoffice-5.0.2~rc2/translations/source/gug/extensions/source/update/check/org/openoffice/Office.po --- libreoffice-5.0.1~rc2/translations/source/gug/extensions/source/update/check/org/openoffice/Office.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/extensions/source/update/check/org/openoffice/Office.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,16 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-16 15:24+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" -"Language: gn\n" +"Language: gug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1442417080.000000\n" #: Addons.xcu msgctxt "" @@ -21,4 +23,4 @@ "Title\n" "value.text" msgid "Check for ~Updates..." -msgstr "" +msgstr "Heka ~Actualizaciones..." diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/extensions/source/update/check.po libreoffice-5.0.2~rc2/translations/source/gug/extensions/source/update/check.po --- libreoffice-5.0.1~rc2/translations/source/gug/extensions/source/update/check.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/extensions/source/update/check.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-04-11 01:37+0000\n" -"Last-Translator: Giovanni \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-16 15:25+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" -"Language: gn\n" +"Language: gug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1428716220.000000\n" +"X-POOTLE-MTIME: 1442417124.000000\n" #: updatehdl.src msgctxt "" @@ -60,7 +60,7 @@ "RID_UPDATE_STR_DLG_TITLE\n" "string.text" msgid "Check for Updates" -msgstr "" +msgstr "Heka Actualizaciones" #: updatehdl.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/extras/source/autocorr/emoji.po libreoffice-5.0.2~rc2/translations/source/gug/extras/source/autocorr/emoji.po --- libreoffice-5.0.1~rc2/translations/source/gug/extras/source/autocorr/emoji.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-17 02:15+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-16 15:41+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: none\n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439777728.000000\n" +"X-POOTLE-MTIME: 1442418072.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2057,7 +2057,7 @@ "MERCURY\n" "LngText.text" msgid "Mercury" -msgstr "" +msgstr "Mercurio" #. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4190,7 +4190,7 @@ "WATERMELON\n" "LngText.text" msgid "watermelon" -msgstr "" +msgstr "sandía" #. 🍊 (U+1F34A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7987,7 +7987,7 @@ "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" -msgid "1:30" +msgid "1.30" msgstr "" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji @@ -7996,7 +7996,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" -msgid "2:30" +msgid "2.30" msgstr "" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji @@ -8005,7 +8005,7 @@ "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" -msgid "3:30" +msgid "3.30" msgstr "" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji @@ -8014,7 +8014,7 @@ "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" -msgid "4:30" +msgid "4.30" msgstr "" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji @@ -8023,7 +8023,7 @@ "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" -msgid "5:30" +msgid "5.30" msgstr "" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji @@ -8032,7 +8032,7 @@ "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" -msgid "6:30" +msgid "6.30" msgstr "" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji @@ -8041,7 +8041,7 @@ "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" -msgid "7:30" +msgid "7.30" msgstr "" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji @@ -8050,7 +8050,7 @@ "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" -msgid "8:30" +msgid "8.30" msgstr "" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji @@ -8059,7 +8059,7 @@ "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" -msgid "9:30" +msgid "9.30" msgstr "" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji @@ -8068,7 +8068,7 @@ "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" -msgid "10:30" +msgid "10.30" msgstr "" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji @@ -8077,7 +8077,7 @@ "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" -msgid "11:30" +msgid "11.30" msgstr "" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji @@ -8086,7 +8086,7 @@ "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" -msgid "12:30" +msgid "12.30" msgstr "" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/formula/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/gug/formula/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/gug/formula/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-21 01:12+0200\n" +"POT-Creation-Date: 2015-09-03 21:40-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/framework/source/classes.po libreoffice-5.0.2~rc2/translations/source/gug/framework/source/classes.po --- libreoffice-5.0.1~rc2/translations/source/gug/framework/source/classes.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/framework/source/classes.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:37+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-06 23:19+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893448.000000\n" +"X-POOTLE-MTIME: 1441581565.000000\n" #: resource.src msgctxt "" @@ -54,7 +54,7 @@ "STR_CLOSEDOC_ANDRETURN\n" "string.text" msgid "~Close & Return to " -msgstr "~Emboty ha Ejujey a " +msgstr "~Emboty ha Ou jey a " #: resource.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.0.2~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.0.1~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-20 17:18+0000\n" +"POT-Creation-Date: 2015-09-02 14:43+0200\n" +"PO-Revision-Date: 2015-09-16 15:32+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440091131.000000\n" +"X-POOTLE-MTIME: 1442417526.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -221,7 +221,7 @@ "Label\n" "value.text" msgid "~Column Arrangement..." -msgstr "~Myatyrõ Columnasgui..." +msgstr "~Myatyrõ Columnas gui..." #: BibliographyCommands.xcu msgctxt "" @@ -1571,7 +1571,7 @@ "Label\n" "value.text" msgid "~Headers & Footers..." -msgstr "~Omoakã ha Py roguegui" +msgstr "~Omoakã ha Py roguégui..." #: CalcCommands.xcu msgctxt "" @@ -2012,7 +2012,7 @@ "Label\n" "value.text" msgid "Insert ~Rows Above" -msgstr "" +msgstr "Moĩngue ~Tysỹi Yvate" #: CalcCommands.xcu msgctxt "" @@ -2024,14 +2024,13 @@ msgstr "~Tysỹi kuéra" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:InsertColumns\n" "Label\n" "value.text" msgid "Insert Co~lumns Left" -msgstr "Moĩngue Co~lumnas" +msgstr "Moĩngue Co~lumna kuéra Asúpe" #: CalcCommands.xcu msgctxt "" @@ -3308,8 +3307,8 @@ "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" -msgid "Fill" -msgstr "Myenyhẽ" +msgid "F~ill" +msgstr "M~yenyhẽ" #: CalcCommands.xcu msgctxt "" @@ -3606,7 +3605,7 @@ "Label\n" "value.text" msgid "~Replace Image..." -msgstr "" +msgstr "~Mbyekovia Ta'anga..." #: CalcWindowState.xcu msgctxt "" @@ -6469,7 +6468,7 @@ "Label\n" "value.text" msgid "~Notes Master" -msgstr "~Master Nota" +msgstr "~Patrón de Notas" #: DrawImpressCommands.xcu msgctxt "" @@ -7765,7 +7764,7 @@ "Label\n" "value.text" msgid "~Replace Image..." -msgstr "" +msgstr "~Mbyekovia Ta'anga..." #: DrawImpressCommands.xcu msgctxt "" @@ -7783,7 +7782,7 @@ "Label\n" "value.text" msgid "E~dit Style..." -msgstr "" +msgstr "E~ditar Estilo…" #: DrawImpressCommands.xcu msgctxt "" @@ -8116,7 +8115,7 @@ "Label\n" "value.text" msgid "~Header and Footer..." -msgstr "~Omoakã ha Py roguegui" +msgstr "~Omoakã ha Py roguégui..." #: DrawImpressCommands.xcu msgctxt "" @@ -13804,7 +13803,7 @@ "Label\n" "value.text" msgid "Enable Watch" -msgstr "Mboguata Omañaha" +msgstr "Myendy Omañaha" #: GenericCommands.xcu msgctxt "" @@ -15155,7 +15154,7 @@ "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" -msgid "Ed~it Mode" +msgid "E~dit Mode" msgstr "Modo de Edi~ción" #: GenericCommands.xcu @@ -15309,7 +15308,7 @@ "Label\n" "value.text" msgid "Line Style" -msgstr "Estilo Líneagui" +msgstr "Estilo de Línea" #: GenericCommands.xcu msgctxt "" @@ -15975,7 +15974,7 @@ "Label\n" "value.text" msgid "~Spacing" -msgstr "" +msgstr "~Pa'ũ" #: GenericCommands.xcu msgctxt "" @@ -18873,7 +18872,7 @@ "Label\n" "value.text" msgid "Breakpoint Enabled/Disabled" -msgstr "Kyta-Kytĩ Mboguata/Mbogue" +msgstr "Kyta-Kytĩ Myendy/Mbogue" #: GenericCommands.xcu msgctxt "" @@ -20286,7 +20285,7 @@ "Label\n" "value.text" msgid "Page Header/Footer" -msgstr "Omoakã/Py roguegui Roguegui" +msgstr "Omoakã/Py roguégui" #: ReportCommands.xcu msgctxt "" @@ -20412,7 +20411,7 @@ "Label\n" "value.text" msgid "~Column Header/Footer" -msgstr "~Columna Omoakã/Py roguegui" +msgstr "~Columna Omoakã/Py roguégui" #: ReportCommands.xcu msgctxt "" @@ -20883,14 +20882,13 @@ msgstr "Diseño" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.StylesPropertyPanel\n" "Title\n" "value.text" msgid "Styles" -msgstr "Hái~cha kuéra" +msgstr "Estilo kuéra" #: Sidebar.xcu msgctxt "" @@ -21421,7 +21419,7 @@ "Label\n" "value.text" msgid "Insert Footer" -msgstr "Moĩngue Py roguegui" +msgstr "Moĩngue Py roguégui" #: WriterCommands.xcu msgctxt "" @@ -22483,7 +22481,7 @@ "Label\n" "value.text" msgid "~Replace Image..." -msgstr "" +msgstr "~Mbyekovia Ta'anga..." #: WriterCommands.xcu msgctxt "" @@ -23005,7 +23003,7 @@ "Label\n" "value.text" msgid "Insert Rows Above" -msgstr "" +msgstr "Moĩngue Tysỹi Yvate" #: WriterCommands.xcu msgctxt "" @@ -23059,7 +23057,7 @@ "Label\n" "value.text" msgid "Insert Columns Left" -msgstr "Moĩngue Columna kuéra" +msgstr "Moĩngue Columna kuéra Asúpe" #: WriterCommands.xcu msgctxt "" @@ -23068,7 +23066,7 @@ "ContextLabel\n" "value.text" msgid "Columns ~Left" -msgstr "" +msgstr "Columna kuéra ~Asúpe" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.0.2~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.0.1~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-17 02:20+0000\n" +"PO-Revision-Date: 2015-09-03 19:57+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439778029.000000\n" +"X-POOTLE-MTIME: 1441310266.000000\n" #: Addons.xcu msgctxt "" @@ -41,7 +41,7 @@ "Title\n" "value.text" msgid "LEFT 15°" -msgstr "" +msgstr "ASU 15°" #: Addons.xcu msgctxt "" @@ -50,7 +50,7 @@ "Title\n" "value.text" msgid "RIGHT 15°" -msgstr "" +msgstr "AKATÚA 15°" #: Addons.xcu msgctxt "" @@ -68,7 +68,7 @@ "Title\n" "value.text" msgid "STOP" -msgstr "" +msgstr "PYTA" #: Addons.xcu msgctxt "" @@ -77,7 +77,7 @@ "Title\n" "value.text" msgid "HOME" -msgstr "" +msgstr "ÓGA" #: Addons.xcu msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/reportbuilder/java/org/libreoffice/report/function/metadata.po libreoffice-5.0.2~rc2/translations/source/gug/reportbuilder/java/org/libreoffice/report/function/metadata.po --- libreoffice-5.0.1~rc2/translations/source/gug/reportbuilder/java/org/libreoffice/report/function/metadata.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/reportbuilder/java/org/libreoffice/report/function/metadata.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:39+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-06 23:20+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893583.000000\n" +"X-POOTLE-MTIME: 1441581617.000000\n" #: Author-Function_en_US.properties msgctxt "" @@ -30,7 +30,7 @@ "description\n" "property.text" msgid "Returns the author of the report." -msgstr "Ejujey apoha del informe" +msgstr "Ombo'u jey apoha informe gui." #: Title-Function_en_US.properties msgctxt "" @@ -46,7 +46,7 @@ "description\n" "property.text" msgid "Returns the title of the report." -msgstr "Ejujey título del informe" +msgstr "Ombo'u jey título del informe." #: category_en_US.properties msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/reportdesign/source/core/resource.po libreoffice-5.0.2~rc2/translations/source/gug/reportdesign/source/core/resource.po --- libreoffice-5.0.1~rc2/translations/source/gug/reportdesign/source/core/resource.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/reportdesign/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:39+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-01 00:56+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893584.000000\n" +"X-POOTLE-MTIME: 1441068967.000000\n" #: strings.src msgctxt "" @@ -38,7 +38,7 @@ "RID_STR_PAGE_FOOTER\n" "string.text" msgid "Page Footer" -msgstr "Py roguegui" +msgstr "Py roguégui" #: strings.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/reportdesign/source/ui/dlg.po libreoffice-5.0.2~rc2/translations/source/gug/reportdesign/source/ui/dlg.po --- libreoffice-5.0.1~rc2/translations/source/gug/reportdesign/source/ui/dlg.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/reportdesign/source/ui/dlg.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-20 17:19+0000\n" +"PO-Revision-Date: 2015-09-01 00:56+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440091147.000000\n" +"X-POOTLE-MTIME: 1441068977.000000\n" #: CondFormat.src msgctxt "" @@ -284,7 +284,7 @@ "SID_PAGEHEADERFOOTER\n" "menuitem.text" msgid "Page Header/Footer..." -msgstr "Omoakã ha Py roguegui" +msgstr "Omoakã ha Py roguégui..." #: Navigator.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/reportdesign/source/ui/inspection.po libreoffice-5.0.2~rc2/translations/source/gug/reportdesign/source/ui/inspection.po --- libreoffice-5.0.1~rc2/translations/source/gug/reportdesign/source/ui/inspection.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/reportdesign/source/ui/inspection.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:39+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-01 00:57+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893586.000000\n" +"X-POOTLE-MTIME: 1441069034.000000\n" #: inspection.src msgctxt "" @@ -292,7 +292,7 @@ "RID_STR_PAGEFOOTEROPTION\n" "string.text" msgid "Page footer" -msgstr "Py roguegui" +msgstr "Py roguégui" #: inspection.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/reportdesign/source/ui/report.po libreoffice-5.0.2~rc2/translations/source/gug/reportdesign/source/ui/report.po --- libreoffice-5.0.1~rc2/translations/source/gug/reportdesign/source/ui/report.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/reportdesign/source/ui/report.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-06 20:39+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-01 00:58+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893588.000000\n" +"X-POOTLE-MTIME: 1441069109.000000\n" #: report.src msgctxt "" @@ -589,7 +589,7 @@ "RID_STR_FOOTER\n" "string.text" msgid "# Footer" -msgstr "# Py roguegui" +msgstr "# Py roguégui" #: report.src msgctxt "" @@ -653,7 +653,7 @@ "RID_STR_PAGEHEADERFOOTER_INSERT\n" "string.text" msgid "Insert Page Header/Footer" -msgstr "Moĩngue Omoakã roguegui/Py roguegui" +msgstr "Moĩngue Omoakã Togue/Py roguégui" #: report.src msgctxt "" @@ -661,7 +661,7 @@ "RID_STR_PAGEHEADERFOOTER_DELETE\n" "string.text" msgid "Delete Page Header/Footer" -msgstr "Juka Omoakã roguegui/Py roguegui" +msgstr "Juka Omoakã Togue/Py roguégui" #: report.src msgctxt "" @@ -669,7 +669,7 @@ "RID_STR_COLUMNHEADERFOOTER_INSERT\n" "string.text" msgid "Insert Column Header/Footer" -msgstr "Moĩngue Columna Omoakã/Py roguegui" +msgstr "Moĩngue Columna Omoakã/Py roguégui" #: report.src msgctxt "" @@ -677,7 +677,7 @@ "RID_STR_COLUMNHEADERFOOTER_DELETE\n" "string.text" msgid "Delete Column Header/Footer" -msgstr "Juka Columna Omoakã/Py roguegui" +msgstr "Juka Columna Omoakã/Py roguégui" #: report.src msgctxt "" @@ -741,7 +741,7 @@ "RID_STR_PAGE_FOOTER\n" "string.text" msgid "Page Footer" -msgstr "Py roguegui" +msgstr "Py roguégui" #: report.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/sc/source/ui/sidebar.po libreoffice-5.0.2~rc2/translations/source/gug/sc/source/ui/sidebar.po --- libreoffice-5.0.1~rc2/translations/source/gug/sc/source/ui/sidebar.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/sc/source/ui/sidebar.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-08-14 15:29+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-16 15:32+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439566151.000000\n" +"X-POOTLE-MTIME: 1442417557.000000\n" #: CellAppearancePropertyPanel.src msgctxt "" @@ -23,7 +23,7 @@ "VS_STYLE\n" "control.text" msgid "Line Style" -msgstr "Estilo Líneagui" +msgstr "Estilo de Línea" #: CellAppearancePropertyPanel.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/sc/source/ui/src.po libreoffice-5.0.2~rc2/translations/source/gug/sc/source/ui/src.po --- libreoffice-5.0.1~rc2/translations/source/gug/sc/source/ui/src.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-20 17:19+0000\n" +"POT-Creation-Date: 2015-09-02 14:42+0200\n" +"PO-Revision-Date: 2015-09-07 00:23+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440091184.000000\n" +"X-POOTLE-MTIME: 1441585384.000000\n" #: condformatdlg.src msgctxt "" @@ -1759,7 +1759,7 @@ "Do you want the first line to be used as column header?" msgstr "" "El intervalo noguerekói omoakã kuéra de columna.\n" -"¿Reipurusépa peteĩha línea omoakãva haguã columnasgui?" +"¿Reipurusépa peteĩha línea omoakãva haguã columnas gui?" #: globstr.src msgctxt "" @@ -2603,7 +2603,7 @@ "STR_FOOTER\n" "string.text" msgid "Footer" -msgstr "Py roguegui" +msgstr "Py roguégui" #: globstr.src msgctxt "" @@ -2720,7 +2720,7 @@ "STR_PAGEFOOTER\n" "string.text" msgid "Footer" -msgstr "Py roguegui" +msgstr "Py roguégui" #: globstr.src msgctxt "" @@ -4854,7 +4854,7 @@ "STR_ERR_DATAPILOTSOURCE\n" "string.text" msgid "Pivot table source data is invalid." -msgstr "Los datos moógui ou para la tabla kyre'ỹ no valéi." +msgstr "Los datos moógui ou tabla peguarã kyre'ỹ no valéi." #: globstr.src msgctxt "" @@ -4923,7 +4923,7 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" -"STR_HEADER_RANGE\n" +"STR_HEADER_RANGE_OR_EXPR\n" "string.text" msgid "Range or formula expression" msgstr "" @@ -5001,6 +5001,15 @@ msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" +"STR_HEADER_RANGE\n" +"string.text" +msgid "Range" +msgstr "Área" + +#: globstr.src +msgctxt "" +"globstr.src\n" +"RID_GLOBSTR\n" "STR_HEADER_COND\n" "string.text" msgid "First Condition" @@ -5783,7 +5792,7 @@ "FID_INS_COLUMN\n" "menuitem.text" msgid "~Insert Columns Left" -msgstr "~Moĩngue Columnas Asúpe" +msgstr "~Moĩngue Columna kuéra Asúpe" #: hdrcont.src msgctxt "" @@ -5801,7 +5810,7 @@ "SID_DELETE\n" "menuitem.text" msgid "D~elete Column Contents..." -msgstr "J~uka Orekóva Columnasgui..." +msgstr "J~uka Orekóva Columnas gui..." #: hdrcont.src msgctxt "" @@ -6676,7 +6685,7 @@ "SCWARN_IMPORT_COLUMN_OVERFLOW & ERRCODE_RES_MASK\n" "string.text" msgid "The data could not be loaded completely because the maximum number of columns per sheet was exceeded." -msgstr "Los datos nikatúi ojehupi paite oje'rebosa haguére papapy maximo columnasgui rogue rehe." +msgstr "Los datos nikatúi ojehupi paite oje'rebosa haguére papapy maximo columnas gui rogue rehe." #: scerrors.src msgctxt "" @@ -6958,7 +6967,7 @@ "1\n" "string.text" msgid "Returns the average value of all the cells of a data range whose contents match the search criteria." -msgstr "Myengovia el promedio opavave koty'i kuéragui de un área de peteĩ base de datos que orekóva oñemoĩ de acuerdo con los criterios." +msgstr "Ombo'u jey el promedio opavave koty'i kuéragui peteĩ área de una base de datos que orekóva oñemoĩ de acuerdo con los criterios." #: scfuncs.src msgctxt "" @@ -7084,7 +7093,7 @@ "1\n" "string.text" msgid "Returns the maximum value from all of the cells of a data range which correspond to the search criteria." -msgstr "Ejujey el valor tuichaiteve opavave koty'i kuera peteĩ área cuyos orekóva ojoja con los valores ojeheka va'ekue." +msgstr "Ombo'u jey el valor tuichaiteve opavave koty'i kuera peteĩ área cuyos orekóva ojoja con los valores ojeheka va'ekue." #: scfuncs.src msgctxt "" @@ -7147,7 +7156,7 @@ "1\n" "string.text" msgid "Returns the minimum of all cells of a data range where the contents correspond to the search criteria." -msgstr "Ejujey el valor michĩvéva de la columna téra_ñugui de los registros de la base de datos ojoja criterios ojehekáguindi." +msgstr "Ombo'u jey el valor michĩvéva de la columna téra_ñugui de los registros de la base de datos ojoja criterios ojehekáguindi." #: scfuncs.src msgctxt "" @@ -7336,7 +7345,7 @@ "1\n" "string.text" msgid "Returns the standard deviation with regards to the population of all cells of a data range matching the search criteria." -msgstr "Ejujey la desviación estándar basándose távayguakuérape opavave koty'i kuéra peteĩ rangogui de datos ojoja criterios ojehekáguindi." +msgstr "Ombo'u jey la desviación estándar basándose távayguakuérape opavave koty'i kuéra peteĩ rango de datos ojoja criterios ojehekáguindi." #: scfuncs.src msgctxt "" @@ -7651,7 +7660,7 @@ "1\n" "string.text" msgid "Returns an internal number for a text having a possible date format." -msgstr "Ejujey papapy de serie ombo'áragui representada por moñe'ẽrã _arangégui." +msgstr "Ombo'u jey papapy de serie ombo'áragui representada por moñe'ẽrã _arangégui." #: scfuncs.src msgctxt "" @@ -7669,7 +7678,7 @@ "3\n" "string.text" msgid "A text enclosed in quotation marks which returns a date in a %PRODUCTNAME date format." -msgstr "Peteĩ moñe'ẽrã comillas-mbytépe que ejujey peteĩ arange peteĩ formatope de %PRODUCTNAME." +msgstr "Peteĩ moñe'ẽrã comillas-mbytépe que ombo'u jey peteĩ arange peteĩ formato pe de %PRODUCTNAME." #: scfuncs.src msgctxt "" @@ -7678,7 +7687,7 @@ "1\n" "string.text" msgid "Returns the sequential date of the month as an integer (1-31) in relation to the date value." -msgstr "Ejujey ombo'ára secuencial jasygui peteĩ oĩmbávaicha (1-31) en relación valorndi arangégui." +msgstr "Ombo'u jey ombo'ára secuencial jasygui peteĩ oĩmbávaicha (1-31) en relación valor ndi arangégui." #: scfuncs.src msgctxt "" @@ -7705,7 +7714,7 @@ "1\n" "string.text" msgid "Calculates the number of days between two dates based on a 360-day year." -msgstr "Calcúla papapy de días mokõi arange mbytépe basándose peteĩ ára de 360 días." +msgstr "Kalkúla papapy de días mokõi arange mbytépe basándose peteĩ ára de 360 días." #: scfuncs.src msgctxt "" @@ -7723,7 +7732,7 @@ "3\n" "string.text" msgid "The start date for calculating the difference in days." -msgstr "Arange ymaitéguare calcular peguarã la diferencia de días." +msgstr "Arange ymaitéguare kalkula peguarã la diferencia de días." #: scfuncs.src msgctxt "" @@ -7741,7 +7750,7 @@ "5\n" "string.text" msgid "The end date for calculating the difference in days." -msgstr "Arange ko'ãgaite guare kalcular peguarã la diferencia de días." +msgstr "Arange ko'ãgaite guare kalkula peguarã la diferencia de días." #: scfuncs.src msgctxt "" @@ -7759,7 +7768,7 @@ "7\n" "string.text" msgid "Method used to form differences: Type = 0 denotes US method (NASD), Type = 1 denotes the European method." -msgstr "Método de kálkulo ojuavýgui. Modo = 0 para el Americano (NASD) y = 1 para el Europeo." +msgstr "Método de kálkulo ojuavýgui. Modo = 0 Americano (NASD) peguarã y = 1 Europeo peguarã." #: scfuncs.src msgctxt "" @@ -7768,7 +7777,7 @@ "1\n" "string.text" msgid "Returns the number of workdays between two dates using arguments to indicate weekenddays and holidays." -msgstr "Ejujey hekatue de días oñemba'apóa mokõi arange mbytépe ojepuru argumentos ochuka haguã semana paha ha arete kuéra." +msgstr "Ombo'u jey hekatue de días oñemba'apóa mokõi arange mbytépe ojepuru argumentos ochuka haguã semana paha ha arete kuéra." #: scfuncs.src msgctxt "" @@ -7849,7 +7858,7 @@ "1\n" "string.text" msgid "Returns the number of workdays between two dates using arguments to indicate weekend days and holidays." -msgstr "Ejujey hekatue de días oñemba'apóa mokõi arange mbytépe ojepuru argumentos ochuka haguã semana paha ha arete kuéra." +msgstr "Ombo'u jey hekatue de días oñemba'apóa mokõi arange mbytépe ojepuru argumentos ochuka haguã semana paha ha arete kuéra." #: scfuncs.src msgctxt "" @@ -7930,7 +7939,7 @@ "1\n" "string.text" msgid "Returns the serial number of the date before or after a number of workdays using arguments to indicate weekend days and holidays." -msgstr "Ejujey papapy de serie peteĩ arange mboyve o upéi peteĩ mbohetágui de días ojemba'apóa ojepuru rechuka haguã semana paha ha arete kuéra." +msgstr "Ombo'u jey papapy de serie peteĩ arange mboyve o upéi peteĩ mbohetágui de días ojemba'apóa ojepuru rechuka haguã semana paha ha arete kuéra." #: scfuncs.src msgctxt "" @@ -8209,7 +8218,7 @@ "3\n" "string.text" msgid "A text enclosed in quotation marks which returns a time in a %PRODUCTNAME time format." -msgstr "Peteĩ moñe'ẽrã comillas mbytépe que ejujey peteĩ aravo peteĩpe de los formatos horarios de %PRODUCTNAME." +msgstr "Peteĩ moñe'ẽrã comillas mbytépe que ombo'u jey peteĩ aravo peteĩpe de los formatos horarios de %PRODUCTNAME." #: scfuncs.src msgctxt "" @@ -8227,7 +8236,7 @@ "1\n" "string.text" msgid "Returns the day of the week for the date value as an integer." -msgstr "Ejujey el día de la semana valor arange peguarã peteĩ oĩmbávaicha." +msgstr "Ombo'u jey el día de la semana valor arange peguarã peteĩ oĩmbávaicha." #: scfuncs.src msgctxt "" @@ -8272,7 +8281,7 @@ "1\n" "string.text" msgid "Returns the year of a date value as an integer." -msgstr "Ejujey ára peteĩ valorgui arangégui oĩmbávaicha." +msgstr "Ombo'u jey ára peteĩ valor gui arangégui oĩmbávaicha." #: scfuncs.src msgctxt "" @@ -8344,7 +8353,7 @@ "1\n" "string.text" msgid "Returns the number of whole days, months or years between 'start date' and 'end date'." -msgstr "Ejujey papapy opavave díasgui, jasy o ára 'ombo'ára ñepyrũgui' ha 'arange paha' mbytépe." +msgstr "Ombo'u jey papapy opavave días gui, jasy o ára 'ombo'ára ñepyrũgui' ha 'arange paha' mbytépe." #: scfuncs.src msgctxt "" @@ -8578,7 +8587,7 @@ "1\n" "string.text" msgid "Future value. Returns the future value of an investment based on regular payments and a constant interest rate." -msgstr "Valor rã. Ejujey valor rã peteĩ inversióngui basándose en pagos periódicos poguapy ha peteĩ tasa de interés poguapy." +msgstr "Valor rã. Ombo'u jey valor rã peteĩ inversión gui basándose en pagos periódicos poguapy ha peteĩ tasa de interés poguapy." #: scfuncs.src msgctxt "" @@ -8776,7 +8785,7 @@ "1\n" "string.text" msgid "Regular payments. Returns the periodic payment of an annuity, based on regular payments and a fixed periodic interest rate." -msgstr "Ejujey pago periódico peteĩ anualidad gui basándose peteĩ tasa de interés poguapy." +msgstr "Ombo'u jey pago periódico peteĩ anualidad gui basándose peteĩ tasa de interés poguapy." #: scfuncs.src msgctxt "" @@ -9703,7 +9712,7 @@ "1\n" "string.text" msgid "Returns the real depreciation of an asset for a specified period using the fixed-declining balance method." -msgstr "Ejujey amortización de un bien peteĩ período específico jave oipurúrõ el método de amortización de saldo pytaso." +msgstr "Ombo'u jey amortización de un bien peteĩ período específico jave oipurúrõ el método de amortización de saldo pytaso." #: scfuncs.src msgctxt "" @@ -9802,7 +9811,7 @@ "1\n" "string.text" msgid "Variable declining balance. Returns the declining balance depreciation for a particular period." -msgstr "Variable saldo oguejýa. Ejujey la depreciación saldogui oguejýa peteĩ período determinado jave." +msgstr "Variable saldo oguejýa. Ombo'u jey la depreciación saldo gui oguejýa peteĩ período determinado jave." #: scfuncs.src msgctxt "" @@ -10072,7 +10081,7 @@ "1\n" "string.text" msgid "Returns the actuarial rate of interest of an investment excluding costs or profits." -msgstr "Ejujey tasa actuarial de interés peteĩ inversión omboikẽro costos o beneficios." +msgstr "Ombo'u jey tasa actuarial de interés peteĩ inversión omboikẽro costos o beneficios." #: scfuncs.src msgctxt "" @@ -10117,7 +10126,7 @@ "1\n" "string.text" msgid "Returns the modified internal rate of return for a series of investments." -msgstr "Calcúla el tipo de interés peteĩ seriegui de inversiones." +msgstr "Kalkúla el tipo de interés peteĩ serie gui de inversiones." #: scfuncs.src msgctxt "" @@ -10180,7 +10189,7 @@ "1\n" "string.text" msgid "Returns the amount of interest for constant amortization rates." -msgstr "Ejujey los intereses peteĩ amortizaciónpe constante." +msgstr "Ombo'u jey intereses peteĩ amortización pe constante." #: scfuncs.src msgctxt "" @@ -10324,7 +10333,7 @@ "1\n" "string.text" msgid "Interest. Calculates the interest rate which represents the rate of return from an investment." -msgstr "Interés. Ejujey la tasa de interés del rendimiento peteĩ inversión gui." +msgstr "Interés. Ombo'u jey tasa de interés del rendimiento peteĩ inversión gui." #: scfuncs.src msgctxt "" @@ -10414,7 +10423,7 @@ "1\n" "string.text" msgid "Returns TRUE if the value is an error value not equal to #N/A." -msgstr "Ejujey VERDADERO si el valor ha'e oimeraẽa valor jejavýgui oikoéva de #N/D." +msgstr "Ombo'u jey VERDADERO si el valor ha'e oimeraẽa valor jejavýgui oikoéva de #N/D." #: scfuncs.src msgctxt "" @@ -10441,7 +10450,7 @@ "1\n" "string.text" msgid "Returns TRUE if the value is an error value." -msgstr "Ejujey VERDADERO si el valor ha'e peteĩ valor jejavýgui." +msgstr "Ombo'u jey VERDADERO si el valor ha'e peteĩ valor jejavýgui." #: scfuncs.src msgctxt "" @@ -10468,7 +10477,7 @@ "1\n" "string.text" msgid "Returns TRUE if value refers to an empty cell." -msgstr "Ejujey VERDADERO si el valor ha'e peteĩ koty'i nandi." +msgstr "Ombo'u jey VERDADERO si el valor ha'e peteĩ koty'i nandi." #: scfuncs.src msgctxt "" @@ -10495,7 +10504,7 @@ "1\n" "string.text" msgid "Returns TRUE if the value carries a logical number format." -msgstr "Ejujey VERDADERO si el valor ha'e peteĩ valor lógico." +msgstr "Ombo'u jey VERDADERO si el valor ha'e peteĩ valor lógico." #: scfuncs.src msgctxt "" @@ -10522,7 +10531,7 @@ "1\n" "string.text" msgid "Returns TRUE if value equals #N/A." -msgstr "Ejujey VERDADERO si el valor ha'e ha'ete a #N/A." +msgstr "Ombo'u jey VERDADERO si el valor ha'e ha'ete a #N/A." #: scfuncs.src msgctxt "" @@ -10549,7 +10558,7 @@ "1\n" "string.text" msgid "Returns TRUE if the value is not text." -msgstr "Ejujey VERDADERO si el valor ha'e peteĩ valor nahaéia moñe'ẽrã." +msgstr "Ombo'u jey VERDADERO si el valor ha'e peteĩ valor nahaéia moñe'ẽrã." #: scfuncs.src msgctxt "" @@ -10576,7 +10585,7 @@ "1\n" "string.text" msgid "Returns TRUE if value is text." -msgstr "Ejujey VERDADERO si el valor ha'e moñe'ẽrã." +msgstr "Ombo'u jey VERDADERO si el valor ha'e moñe'ẽrã." #: scfuncs.src msgctxt "" @@ -10603,7 +10612,7 @@ "1\n" "string.text" msgid "Returns TRUE if value is a number." -msgstr "Ejujey VERDADERO si el valor ha'e peteĩ papapy." +msgstr "Ombo'u jey VERDADERO si el valor ha'e peteĩ papapy." #: scfuncs.src msgctxt "" @@ -10630,7 +10639,7 @@ "1\n" "string.text" msgid "Returns TRUE if the cell is a formula cell." -msgstr "Ejujey VERDADERO si koty'i ha'e peteĩ koty'i de fórmula." +msgstr "Ombo'u jey VERDADERO si koty'i ha'e peteĩ koty'i de fórmula." #: scfuncs.src msgctxt "" @@ -10657,7 +10666,7 @@ "1\n" "string.text" msgid "Returns the formula of a formula cell." -msgstr "Ejujey la fórmula peteĩ koty'ígui de fórmula." +msgstr "Ombo'u jey la fórmula peteĩ koty'ígui de fórmula." #: scfuncs.src msgctxt "" @@ -10711,7 +10720,7 @@ "1\n" "string.text" msgid "Not available. Returns the error value #N/A." -msgstr "Jehupytyhaguã'ỹre. Ejujey el valor jejavýgui #N/D." +msgstr "Jehupytyhaguã'ỹre. Ombo'u jey el valor jejavýgui #N/D." #: scfuncs.src msgctxt "" @@ -10837,7 +10846,7 @@ "1\n" "string.text" msgid "Returns the logical value TRUE." -msgstr "Ejujey el valor lógico VERDADERO." +msgstr "Ombo'u jey el valor lógico VERDADERO." #: scfuncs.src msgctxt "" @@ -10954,7 +10963,7 @@ "1\n" "string.text" msgid "Returns value if not a #N/A error, else alternative." -msgstr "Ejujey peteĩ valor ndahaéĩrõ #N/A, o si no peteĩ alternativa." +msgstr "Ombo'u jey peteĩ valor ndahaéĩrõ #N/A, o si no peteĩ alternativa." #: scfuncs.src msgctxt "" @@ -10999,7 +11008,7 @@ "1\n" "string.text" msgid "Returns TRUE if an argument is TRUE." -msgstr "Ejujey VERDADERO si oimeraẽa de los argumentos ha'e VERDADERO." +msgstr "Ombo'u jey VERDADERO si oimeraẽa de los argumentos ha'e VERDADERO." #: scfuncs.src msgctxt "" @@ -11017,7 +11026,7 @@ "3\n" "string.text" msgid "Logical value 1, logical value 2,... are 1 to 30 conditions to be tested and which return either TRUE or FALSE." -msgstr "Valor lógico 1, valor lógico 2, ...ha'e de 1 a 30 condiciones ojeha'ã arã ha ejujey VERDADERO o FALSO." +msgstr "Valor lógico 1, valor lógico 2, ...ha'e de 1 a 30 condiciones ojeha'ã arã ha ou jey VERDADERO o FALSO." #: scfuncs.src msgctxt "" @@ -11026,7 +11035,7 @@ "1\n" "string.text" msgid "Returns TRUE if an odd number of arguments evaluates to TRUE." -msgstr "Ejujey VERDADERO si peteĩ papay impar de argumentos evalúa a VERDADERO." +msgstr "Ombo'u jey VERDADERO si peteĩ papay impar de argumentos evalúa a VERDADERO." #: scfuncs.src msgctxt "" @@ -11044,7 +11053,7 @@ "3\n" "string.text" msgid "Logical value 1, logical value 2, ... are 1 to 30 conditions to be tested and which return either TRUE or FALSE." -msgstr "Valor lógico 1, valor lógico 2, ...ha'e de 1 a 30 condiciones oñeha'ãtaha ha ejujey VERDADERO o FALSO." +msgstr "Valor lógico 1, valor lógico 2, ...ha'e de 1 a 30 condiciones oñeha'ãtaha ha ou jey VERDADERO o FALSO." #: scfuncs.src msgctxt "" @@ -11053,7 +11062,7 @@ "1\n" "string.text" msgid "Returns TRUE if all arguments are TRUE." -msgstr "Ejujey VERDADERO si opavave arguementos ha'e VERDADERO." +msgstr "Ombo'u jey VERDADERO si opavave arguementos ha'e VERDADERO." #: scfuncs.src msgctxt "" @@ -11107,7 +11116,7 @@ "1\n" "string.text" msgid "Returns a^b, base a raised to the power of exponent b." -msgstr "Ejujey a^b, elevado a la potencia del exponente b." +msgstr "Ombo'u jey a^b, elevado a la potencia del exponente b." #: scfuncs.src msgctxt "" @@ -11179,7 +11188,7 @@ "1\n" "string.text" msgid "Returns the value of the number Pi." -msgstr "Ejujey el valor papapýgui Pi." +msgstr "Ombo'u jey valor papapýgui Pi." #: scfuncs.src msgctxt "" @@ -11188,7 +11197,7 @@ "1\n" "string.text" msgid "Returns the sum of all arguments." -msgstr "Ejujey la suma de los argumentos." +msgstr "Ombo'u jey suma de los argumentos." #: scfuncs.src msgctxt "" @@ -11215,7 +11224,7 @@ "1\n" "string.text" msgid "Returns the sum of the squares of the arguments." -msgstr "Ejujey la suma de los cuadrados de los argumentos." +msgstr "Ombo'u jey suma de los cuadrados de los argumentos." #: scfuncs.src msgctxt "" @@ -11611,7 +11620,7 @@ "1\n" "string.text" msgid "Returns the square root of a number." -msgstr "Ejujey la raíz cuadrada peteĩ papapýgui." +msgstr "Ombo'u jey raíz cuadrada peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -11638,7 +11647,7 @@ "1\n" "string.text" msgid "Returns a random number between 0 and 1." -msgstr "Ejujey peteĩ papapy po'a oimeraẽa (azar) 0 ha 1 mbytepe." +msgstr "Ombo'u jey peteĩ papapy po'a oimeraẽa (azar) 0 ha 1 mbytépe." #: scfuncs.src msgctxt "" @@ -11647,7 +11656,7 @@ "1\n" "string.text" msgid "Returns TRUE if value is an even integer." -msgstr "Ejujey VERDADERO si el valor ha'e peteĩ papapy par." +msgstr "Ombo'u jey VERDADERO si el valor ha'e peteĩ papapy par." #: scfuncs.src msgctxt "" @@ -11674,7 +11683,7 @@ "1\n" "string.text" msgid "Returns TRUE if value is an odd integer." -msgstr "Ejujey VERDADERO si el valor ha'e peteĩ papapy impar." +msgstr "Ombo'u jey VERDADERO si el valor ha'e peteĩ papapy impar." #: scfuncs.src msgctxt "" @@ -11791,7 +11800,7 @@ "1\n" "string.text" msgid "Returns the arccosine of a number." -msgstr "Ejujey el arcocoseno peteĩ papapýgui." +msgstr "Ombo'u jey arcocoseno peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -11809,7 +11818,7 @@ "3\n" "string.text" msgid "A value between -1 and 1 for which the arccosine is to be returned." -msgstr "El valor -1 ha 1 mbytepe cuyo arcocoseno ojekalkulátaha." +msgstr "El valor -1 ha 1 mbytépe cuyo arcocoseno ojekalkulátaha." #: scfuncs.src msgctxt "" @@ -11818,7 +11827,7 @@ "1\n" "string.text" msgid "Returns the arcsine of a number." -msgstr "Ejujey el arcoseno peteĩ papapýgui." +msgstr "Ombo'u jey arcoseno peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -11836,7 +11845,7 @@ "3\n" "string.text" msgid "A value between -1 and 1 for which the arcsine is to be returned." -msgstr "El valor -1 ha 1 mbytepe cuyo arcocoseno ojekalkulátaha." +msgstr "El valor -1 ha 1 mbytépe cuyo arcocoseno ojekalkulátaha." #: scfuncs.src msgctxt "" @@ -11845,7 +11854,7 @@ "1\n" "string.text" msgid "Returns the inverse hyperbolic cosine of a number." -msgstr "Ejujey el coseno hiperbólico inverso peteĩ papapýgui." +msgstr "Ombo'u jey coseno hiperbólico inverso peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -11863,7 +11872,7 @@ "3\n" "string.text" msgid "A value greater than or equal to 1 for which the inverse hyperbolic cosine is to be returned." -msgstr "Peteĩ valor ha'ete o tuichave que 1 cuyo coseno hiperbólico inverso ojecalculase." +msgstr "Peteĩ valor ha'ete o tuichave que 1 cuyo coseno hiperbólico inverso ojekalkulase." #: scfuncs.src msgctxt "" @@ -11872,7 +11881,7 @@ "1\n" "string.text" msgid "Returns the inverse hyperbolic sine of a number." -msgstr "Ejujey el seno hiperbólico inverso peteĩ papapýgui." +msgstr "Ombo'u jey seno hiperbólico inverso peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -11899,7 +11908,7 @@ "1\n" "string.text" msgid "Returns the inverse cotangent of a number." -msgstr "Ejujey arco cotangente peteĩ papapýgui." +msgstr "Ombo'u jey arco cotangente peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -11926,7 +11935,7 @@ "1\n" "string.text" msgid "Returns the arctangent of a number." -msgstr "Ejujey el arco tangente peteĩ papapýgui." +msgstr "Ombo'u jey arco tangente peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -11944,7 +11953,7 @@ "3\n" "string.text" msgid "The value for which the arctangent is to be returned." -msgstr "Ha'e valor cuyo arco tangente ojecalculaséa." +msgstr "Ha'e valor cuyo arco tangente ojekalkulaséa." #: scfuncs.src msgctxt "" @@ -11953,7 +11962,7 @@ "1\n" "string.text" msgid "Returns the inverse hyperbolic cotangent of a number." -msgstr "Ejujey la cotangente hiperbólica inversa peteĩ papapýgui." +msgstr "Ombo'u jey cotangente hiperbólica inversa peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -11971,7 +11980,7 @@ "3\n" "string.text" msgid "A value smaller than -1 or greater than 1 for which the inverse hyperbolic cotangent is to be returned." -msgstr "Ha'e valor michĩvéa que -1 o tuichavéa que 1, cuyas cotangentes hiperbólicas inversas ojecalculáse." +msgstr "Ha'e valor michĩvéa que -1 o tuichavéa que 1, cuyas cotangentes hiperbólicas inversas ojekalkuláse." #: scfuncs.src msgctxt "" @@ -11980,7 +11989,7 @@ "1\n" "string.text" msgid "Returns the inverse hyperbolic tangent of a number." -msgstr "Ejujey la tangente de área (tangente hiperbólica inversa) peteĩ papapýgui." +msgstr "Ombo'u jey tangente de área (tangente hiperbólica inversa) peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -11998,7 +12007,7 @@ "3\n" "string.text" msgid "A value between -1 and 1 for which the inverse hyperbolic tangent is to be returned." -msgstr "Ha'e valor -1 ha 1 mbytépe, cuya tangente hiperbólica inversa ojecalculáse." +msgstr "Ha'e valor -1 ha 1 mbytépe, cuya tangente hiperbólica inversa ojekalkuláse." #: scfuncs.src msgctxt "" @@ -12007,7 +12016,7 @@ "1\n" "string.text" msgid "Returns the cosine of a number." -msgstr "Ejujey el coseno peteĩ papapýgui." +msgstr "Ombo'u jey coseno peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -12025,7 +12034,7 @@ "3\n" "string.text" msgid "The angle in the radians for which the cosine is to be returned." -msgstr "Ha'e ángulo en radianes cuyo coseno ojecalculaséa." +msgstr "Ha'e ángulo en radianes cuyo coseno ojekalkulaséa." #: scfuncs.src msgctxt "" @@ -12034,7 +12043,7 @@ "1\n" "string.text" msgid "Returns the sine of a number." -msgstr "Ejujey el seno peteĩ papapýgui." +msgstr "Ombo'u jey seno peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -12061,7 +12070,7 @@ "1\n" "string.text" msgid "Returns the cotangent of a number." -msgstr "Ejujey la cotangente peteĩ papapýgui." +msgstr "Ombo'u jey cotangente peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -12079,7 +12088,7 @@ "3\n" "string.text" msgid "The angle in radians whose cotangent value is to be returned." -msgstr "Ha'eángulo en radianes cuya cotangente ojecalculaséa." +msgstr "Ha'e ángulo en radianes cuya cotangente ojekalkulaséa." #: scfuncs.src msgctxt "" @@ -12088,7 +12097,7 @@ "1\n" "string.text" msgid "Returns the tangent of a number." -msgstr "Ejujey la tangente peteĩ papapýgui." +msgstr "Ombo'u jey tangente peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -12115,7 +12124,7 @@ "1\n" "string.text" msgid "Returns the hyperbolic cosine of a number." -msgstr "Ejujey el coseno hiperbólico peteĩ papapýgui." +msgstr "Ombo'u jey coseno hiperbólico peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -12133,7 +12142,7 @@ "3\n" "string.text" msgid "The value for which the hyperbolic cosine is to be returned." -msgstr "Ha'e valor cuyo coseno hiperbólico ojecalculaséa." +msgstr "Ha'e valor cuyo coseno hiperbólico ojekalkulaséa." #: scfuncs.src msgctxt "" @@ -12142,7 +12151,7 @@ "1\n" "string.text" msgid "Returns the hyperbolic sine of a number." -msgstr "Ejujey el seno hiperbólico peteĩ papapýgui." +msgstr "Ombo'u jey seno hiperbólico peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -12169,7 +12178,7 @@ "1\n" "string.text" msgid "Returns the hyperbolic cotangent of a number." -msgstr "Ejujey la cotangente hiperbólica peteĩ papapýgui." +msgstr "Ombo'u jey cotangente hiperbólica peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -12196,7 +12205,7 @@ "1\n" "string.text" msgid "Returns the hyperbolic tangent of a number." -msgstr "Ejujey la tangente hiperbólica peteĩ papapýgui." +msgstr "Ombo'u jey tangente hiperbólica peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -12223,7 +12232,7 @@ "1\n" "string.text" msgid "Returns the arctangent for the specified coordinates." -msgstr "Ejujey el arco tangente de las coordenadas oje'especificá va'ekue." +msgstr "Ombo'u jey arco tangente de las coordenadas oje'especificá va'ekue." #: scfuncs.src msgctxt "" @@ -12268,7 +12277,7 @@ "1\n" "string.text" msgid "Return the cosecant of an angle. CSC(x)=1/SIN(x)" -msgstr "Ejujey la cosecante de un ángulo. CSC(x)=1/SIN(x)" +msgstr "Ombo'u jey cosecante peteĩ ángulo gui. CSC(x)=1/SIN(x)" #: scfuncs.src msgctxt "" @@ -12295,7 +12304,7 @@ "1\n" "string.text" msgid "Return the secant of an angle. SEC(x)=1/COS(x)" -msgstr "Ejujey la secante de un ángulo. SEC(x)=1/COS(x)" +msgstr "Ombo'u jey secante peteĩ ángulo gui. SEC(x)=1/COS(x)" #: scfuncs.src msgctxt "" @@ -12322,7 +12331,7 @@ "1\n" "string.text" msgid "Return the hyperbolic cosecant of a hyperbolic angle. CSCH(x)=1/SINH(x)" -msgstr "Ejujey la cosecante hiperbólica peteĩ ángulogui hiperbólico. CSCH(x)=1/SINH(x)" +msgstr "Ombo'u jey cosecante hiperbólica peteĩ ángulo gui hiperbólico. CSCH(x)=1/SINH(x)" #: scfuncs.src msgctxt "" @@ -12349,7 +12358,7 @@ "1\n" "string.text" msgid "Return the hyperbolic secant of a hyperbolic angle. SECH(x)=1/COSH(x)" -msgstr "Ejujey la secante hiperbólica de un ángulo hiperbólico. SECH(x)=1/COSH(x)" +msgstr "Ombo'u jey secante hiperbólica de un ángulo hiperbólico. SECH(x)=1/COSH(x)" #: scfuncs.src msgctxt "" @@ -12628,7 +12637,7 @@ "1\n" "string.text" msgid "Returns the algebraic sign of a number." -msgstr "Ejujey el signo algebraico peteĩ papapýgui." +msgstr "Ombo'u jey signo algebraico peteĩ papapýgui." #: scfuncs.src msgctxt "" @@ -13600,7 +13609,7 @@ "1\n" "string.text" msgid "Array multiplication. Returns the product of two arrays." -msgstr "Ejujey la matriz producto mokõi matricesgui." +msgstr "Ombo'u jey matriz producto mokõi matriz kuéra." #: scfuncs.src msgctxt "" @@ -13645,7 +13654,7 @@ "1\n" "string.text" msgid "Returns the array determinant." -msgstr "Ejujey la matriz determinante." +msgstr "Ombo'u jey matriz determinante." #: scfuncs.src msgctxt "" @@ -13672,7 +13681,7 @@ "1\n" "string.text" msgid "Returns the inverse of an array." -msgstr "Ejujey la inversa peteĩ matrizgui." +msgstr "Ombo'u jey inversa peteĩ matriz." #: scfuncs.src msgctxt "" @@ -13699,7 +13708,7 @@ "1\n" "string.text" msgid "Returns the unitary square array of a certain size." -msgstr "Ejujey la matriz cuadrada unitaria peteĩ tamaño gui." +msgstr "Ombo'u jey matriz cuadrada unitaria peteĩ tamaño gui." #: scfuncs.src msgctxt "" @@ -13726,7 +13735,7 @@ "1\n" "string.text" msgid "(Inner products) Returns the sum of the products of array arguments." -msgstr "(Productos hyepype) Ejujey la suma de productos de la matriz." +msgstr "(Productos hyepype) Ombo'u jey suma de productos de la matriz." #: scfuncs.src msgctxt "" @@ -13753,7 +13762,7 @@ "1\n" "string.text" msgid "Returns the sum of the difference of squares of two arrays." -msgstr "Ejujey la suma ojuavýgui de cuadrados mokõi matricesgui." +msgstr "Ombo'u jey suma ojuavýgui de cuadrados mokõi matriz kuéra." #: scfuncs.src msgctxt "" @@ -13798,7 +13807,7 @@ "1\n" "string.text" msgid "Returns the total of the square sum of two arrays." -msgstr "Ejujey el total de la suma de los cuadrados mokõi matricesgui." +msgstr "Ombo'u jey total de la suma de los cuadrados mokõi matriz kuéra." #: scfuncs.src msgctxt "" @@ -13843,7 +13852,7 @@ "1\n" "string.text" msgid "Returns the sum of squares of differences of two arrays." -msgstr "Ejujey la suma del cuadrado ojuavýgui mokõi matrices mbytegui." +msgstr "Ombo'u jey suma del cuadrado ojuavýgui mokõi matriz mbytégui." #: scfuncs.src msgctxt "" @@ -13888,7 +13897,7 @@ "1\n" "string.text" msgid "Returns a frequency distribution as a vertical array." -msgstr "Ejujey peteĩ distribución de frecuencia peteĩ matriz verticálcha." +msgstr "Ombo'u jey peteĩ distribución de frecuencia peteĩ matriz oñembo'ýva." #: scfuncs.src msgctxt "" @@ -14311,7 +14320,7 @@ "1\n" "string.text" msgid "Returns the maximum value in a list of arguments." -msgstr "Ejujey el valor tuichaiteve peteĩ listagui de argumentos." +msgstr "Ombo'u jey valor tuichaiteve peteĩ lista gui de argumentos." #: scfuncs.src msgctxt "" @@ -14338,7 +14347,7 @@ "1\n" "string.text" msgid "Returns the maximum value in a list of arguments. Text is evaluated as Zero." -msgstr "Ejujey el valor tuichaiteve peteĩ listagui de argumentos. Moñe'ẽrã se valorará céroicha ( 0 )." +msgstr "Ombo'u jey valor tuichaiteve peteĩ lista gui de argumentos. Moñe'ẽrã se valorará céroicha ( 0 )." #: scfuncs.src msgctxt "" @@ -14365,7 +14374,7 @@ "1\n" "string.text" msgid "Returns the minimum value in a list of arguments." -msgstr "Ejujey el valor michĩvéva peteĩ listagui de argumentos." +msgstr "Ombo'u jey valor michĩvéva peteĩ lista gui de argumentos." #: scfuncs.src msgctxt "" @@ -14392,7 +14401,7 @@ "1\n" "string.text" msgid "Returns the smallest value in a list of arguments. Text is evaluated as zero." -msgstr "Ejujey el valor michĩvéva peteĩ listagui de argumentos. Moñe'ẽrã se valorará ceroicha ( 0 )." +msgstr "Ombo'u jey valor michĩvéva peteĩ listagui de argumentos. Moñe'ẽrã se valorará ceroicha ( 0 )." #: scfuncs.src msgctxt "" @@ -14473,7 +14482,7 @@ "1\n" "string.text" msgid "Returns the variance based on a sample. Text is evaluated as zero." -msgstr "Ejujey la variancia basado peteĩ techapyrã. Moñe'ẽrã se valorará ceroicha ( 0 )." +msgstr "Ombo'u jey variancia basado peteĩ techapyrã. Moñe'ẽrã se valorará ceroicha ( 0 )." #: scfuncs.src msgctxt "" @@ -14554,7 +14563,7 @@ "1\n" "string.text" msgid "Returns the variance based on the entire population. Text is evaluated as zero." -msgstr "Calcúla la variancia basada távayguakuérape total. Moñe'ẽrã se valorará ceroicha ( 0 )." +msgstr "Kalkúla la variancia basada távayguakuérape total. Moñe'ẽrã se valorará ceroicha ( 0 )." #: scfuncs.src msgctxt "" @@ -14635,7 +14644,7 @@ "1\n" "string.text" msgid "Returns the standard deviation based on a sample. Text is evaluated as zero." -msgstr "Ejujey la desviación estándar basándose peteĩ techapyrã. Moñe'ẽrã ojevaluá céroicha ( 0 )." +msgstr "Ombo'u jey desviación estándar basándose peteĩ techapyrã. Moñe'ẽrã ojevaluá céroicha ( 0 )." #: scfuncs.src msgctxt "" @@ -14716,7 +14725,7 @@ "1\n" "string.text" msgid "Returns the standard deviation based on the entire population. Text is evaluated as zero." -msgstr "Ejujey desviación estándar basándose opavave távayguakuérape. Moñe'ẽrã ojevaluá céroicha ( 0 )." +msgstr "Ombo'u jey desviación estándar basándose opavave távayguakuérape. Moñe'ẽrã ojevaluá céroicha ( 0 )." #: scfuncs.src msgctxt "" @@ -14743,7 +14752,7 @@ "1\n" "string.text" msgid "Returns the average of a sample." -msgstr "Ejujey el promedio peteĩ techapyrãgui." +msgstr "Ombo'u jey promedio peteĩ techapyrãgui." #: scfuncs.src msgctxt "" @@ -14770,7 +14779,7 @@ "1\n" "string.text" msgid "Returns the average value for a sample. Text is evaluated as zero." -msgstr "Calcúla el promedio peteĩ techapyrãgui. Moñe'ẽrã oje'evalua céroicha ( 0 )." +msgstr "Kalkúla el promedio peteĩ techapyrãgui. Moñe'ẽrã oje'evalua céroicha ( 0 )." #: scfuncs.src msgctxt "" @@ -14797,7 +14806,7 @@ "1\n" "string.text" msgid "Returns the sum of squares of deviations from the sample mean value" -msgstr "Ejujey la suma de los cuadros de las desviaciones promedio ha techapyrã mbytépe." +msgstr "Ombo'u jey suma de los cuadros de las desviaciones promedio ha techapyrã mbytépe." #: scfuncs.src msgctxt "" @@ -14824,7 +14833,7 @@ "1\n" "string.text" msgid "Returns the average of the absolute deviations of a sample from the mean." -msgstr "Ejujey el promedio de las desviaciones absolutas peteĩ techapyrãpe mbytépegui." +msgstr "Ombo'u jey promedio de las desviaciones absolutas peteĩ techapyrãpe mbytépegui." #: scfuncs.src msgctxt "" @@ -14851,7 +14860,7 @@ "1\n" "string.text" msgid "Returns the skewness of a distribution." -msgstr "Ejujey asimetría peteĩ distribución gui." +msgstr "Ombo'u jey asimetría peteĩ distribución gui." #: scfuncs.src msgctxt "" @@ -14878,7 +14887,7 @@ "1\n" "string.text" msgid "Returns the skewness of a distribution using the population of a random variable." -msgstr "Ejujey la asimetría peteĩ distribucióngui ojepuru távaygua kuéra peteĩ variáblegui po'a oimeraẽa (azar)." +msgstr "Ombo'u jey asimetría peteĩ distribución gui ojepuru távaygua kuéra peteĩ variáble gui po'a oimeraẽa (azar)." #: scfuncs.src msgctxt "" @@ -14905,7 +14914,7 @@ "1\n" "string.text" msgid "Returns the kurtosis of a distribution." -msgstr "Ejujey la curtosis peteĩ atýgui de datos." +msgstr "Ombo'u jey curtosis peteĩ atýgui de datos." #: scfuncs.src msgctxt "" @@ -14932,7 +14941,7 @@ "1\n" "string.text" msgid "Returns the geometric mean of a sample." -msgstr "Ejujey mbytépe geométrica peteĩ techapyrãgui." +msgstr "Ombo'u jey mbytépe geométrica peteĩ techapyrãgui." #: scfuncs.src msgctxt "" @@ -14959,7 +14968,7 @@ "1\n" "string.text" msgid "Returns the harmonic mean of a sample." -msgstr "Ejujey mbytépe armónica peteĩ atýgui de datos." +msgstr "Ombo'u jey mbytépe armónica peteĩ atýgui de datos." #: scfuncs.src msgctxt "" @@ -14986,7 +14995,7 @@ "1\n" "string.text" msgid "Returns the most common value in a sample." -msgstr "Ejujey valor comunve peteĩ techapyrã." +msgstr "Ombo'u jey valor comúnve peteĩ techapyrã." #: scfuncs.src msgctxt "" @@ -15013,7 +15022,7 @@ "1\n" "string.text" msgid "Returns the most common value in a sample." -msgstr "Ejujey valor comunve peteĩ techapyrã." +msgstr "Ombo'u jey valor comúnve peteĩ techapyrã." #: scfuncs.src msgctxt "" @@ -15040,7 +15049,7 @@ "1\n" "string.text" msgid "Returns the most common value in a sample." -msgstr "Ejujey valor comunve peteĩ techapyrã." +msgstr "Ombo'u jey valor comúnve peteĩ techapyrã." #: scfuncs.src msgctxt "" @@ -15067,7 +15076,7 @@ "1\n" "string.text" msgid "Returns the median of a given sample." -msgstr "Ejujey la mediana papapýgui." +msgstr "Ombo'u jey mediana papapýgui." #: scfuncs.src msgctxt "" @@ -15094,7 +15103,7 @@ "1\n" "string.text" msgid "Returns the alpha quantile of a sample." -msgstr "Ejujey el cuantil alfa peteĩ techapyrãgui." +msgstr "Ombo'u jey cuantil alfa peteĩ techapyrãgui." #: scfuncs.src msgctxt "" @@ -15139,7 +15148,7 @@ "1\n" "string.text" msgid "Returns the alpha percentile of a sample." -msgstr "Myengovia el perecentil alfa peteĩ techapyrãgui." +msgstr "Ombo'u jey perecentil alfa peteĩ techapyrãgui." #: scfuncs.src msgctxt "" @@ -15184,7 +15193,7 @@ "1\n" "string.text" msgid "Returns the alpha percentile of a sample." -msgstr "Myengovia el perecentil alfa peteĩ techapyrãgui." +msgstr "Ombo'u jey perecentil alfa peteĩ techapyrãgui." #: scfuncs.src msgctxt "" @@ -15229,7 +15238,7 @@ "1\n" "string.text" msgid "Returns the quartile of a sample." -msgstr "Myengovia el cuartil peteĩ atýgui de datos." +msgstr "Ombo'u jey cuartil peteĩ atýgui de datos." #: scfuncs.src msgctxt "" @@ -15274,7 +15283,7 @@ "1\n" "string.text" msgid "Returns the quartile of a sample." -msgstr "Myengovia el cuartil atýgui de datos." +msgstr "Ombo'u jey cuartil atýgui de datos." #: scfuncs.src msgctxt "" @@ -15319,7 +15328,7 @@ "1\n" "string.text" msgid "Returns the quartile of a sample." -msgstr "Ejujey el cuartil peteĩ atýgui de datos." +msgstr "Ombo'u jey cuartil peteĩ atýgui de datos." #: scfuncs.src msgctxt "" @@ -15364,7 +15373,7 @@ "1\n" "string.text" msgid "Returns the k-th largest value of a sample." -msgstr "Ejujey el k-ésimo valor guasuve peteĩ techapyrãgui." +msgstr "Ombo'u jey k-ésimo valor guasuve peteĩ techapyrãgui." #: scfuncs.src msgctxt "" @@ -15409,7 +15418,7 @@ "1\n" "string.text" msgid "Returns the k-th smallest value of a sample." -msgstr "Ejujey el k-ésimo valor michĩve peteĩ techapyrãgui." +msgstr "Ombo'u jey k-ésimo valor michĩve peteĩ techapyrãgui." #: scfuncs.src msgctxt "" @@ -15454,7 +15463,7 @@ "1\n" "string.text" msgid "Returns the percentage rank of a value in a sample." -msgstr "Ejujey el rango de porcentage peteĩ valórgui peteĩ techapyrãpe." +msgstr "Ombo'u jey rango de porcentage peteĩ valórgui peteĩ techapyrãpe." #: scfuncs.src msgctxt "" @@ -15517,7 +15526,7 @@ "1\n" "string.text" msgid "Returns the percentage rank (0..1, exclusive) of a value in a sample." -msgstr "Ejujey la jerarquía porcentual (0... 1, exclusivo) peteĩ valórgui peteĩ techapyrãpe." +msgstr "Ombo'u jey jerarquía porcentual (0... 1, exclusivo) peteĩ valórgui peteĩ techapyrãpe." #: scfuncs.src msgctxt "" @@ -15580,7 +15589,7 @@ "1\n" "string.text" msgid "Returns the percentage rank (0..1, inclusive) of a value in a sample." -msgstr "Ejujey la jerarquía porcentual (0... 1, exclusivo) peteĩ valórgui peteĩ techapyrãpe." +msgstr "Ombo'u jey jerarquía porcentual (0... 1, exclusivo) peteĩ valórgui peteĩ techapyrãpe." #: scfuncs.src msgctxt "" @@ -15643,7 +15652,7 @@ "1\n" "string.text" msgid "Returns the ranking of a value in a sample." -msgstr "Ejujey la posición peteĩ valorgui peteĩ techapyrãpe." +msgstr "Ombo'u jey posición peteĩ valorgui peteĩ techapyrãpe." #: scfuncs.src msgctxt "" @@ -15706,7 +15715,7 @@ "1\n" "string.text" msgid "Returns the ranking of a value in a sample; if more than one value has the same rank, the top rank of that set of values is returned." -msgstr "Ejujey la jerarquia peteĩ valórgui peteĩ techapyrãpe; oĩrõ peteĩve valor eténdi rango, ojujeytaha tuichateve posición atýgui de valores." +msgstr "Ombo'u jey jerarquia peteĩ valórgui peteĩ techapyrãpe; oĩrõ peteĩve valor eténdi rango, ojujeytaha tuichateve posición atýgui de valores." #: scfuncs.src msgctxt "" @@ -15769,7 +15778,7 @@ "1\n" "string.text" msgid "Returns the ranking of a value in a sample; if more than one value has the same rank, the average rank is returned." -msgstr "Ejujey la jerarquia peteĩ valórgui peteĩ techapyrãpe; oĩrõ peteĩve valor eténdi rango, ojujeytaha tuichateve posición atýgui de valores." +msgstr "Ombo'u jey jerarquia peteĩ valor gui peteĩ techapyrãpe; oĩrõ peteĩve valor eténdi rango, ojujeytaha tuichateve posición atýgui de valores." #: scfuncs.src msgctxt "" @@ -15832,7 +15841,7 @@ "1\n" "string.text" msgid "Returns the mean of a sample without including the marginal values." -msgstr "Ejujey la media peteĩ techapyrãgui ojeincludí'ỹrõ valores marginales." +msgstr "Ombo'u jey media peteĩ techapyrãgui ojeincludí'ỹrõ valores marginales." #: scfuncs.src msgctxt "" @@ -15877,7 +15886,7 @@ "1\n" "string.text" msgid "Returns the discrete probability of an interval." -msgstr "Ejujey la probabilidad discreta de un intervalo." +msgstr "Ombo'u jey probabilidad discreta de un intervalo." #: scfuncs.src msgctxt "" @@ -15958,7 +15967,7 @@ "1\n" "string.text" msgid "Returns the probability of a trial result using binomial distribution." -msgstr "Ejujey la probabilidad peteĩ resultadogui ha'ãgui reipuru jave la distribución binomial." +msgstr "Ombo'u jey probabilidad peteĩ resultadogui ha'ãgui reipuru jave la distribución binomial." #: scfuncs.src msgctxt "" @@ -16066,7 +16075,7 @@ "1\n" "string.text" msgid "Returns the integral values of the standard normal cumulative distribution." -msgstr "Ejujey el valor de la integral de la distribución estándar normal." +msgstr "Ombo'u jey valor de la integral de la distribución estándar normal." #: scfuncs.src msgctxt "" @@ -16093,7 +16102,7 @@ "1\n" "string.text" msgid "Returns the Fisher transformation." -msgstr "Ejujey la transformación Fisher." +msgstr "Ombo'u jey transformación Fisher." #: scfuncs.src msgctxt "" @@ -16120,7 +16129,7 @@ "1\n" "string.text" msgid "Returns the inverse of the Fisher transformation." -msgstr "Ejujey la función inversa de la transformación Fisher." +msgstr "Ombo'u jey función inversa de la transformación Fisher." #: scfuncs.src msgctxt "" @@ -16453,7 +16462,7 @@ "1\n" "string.text" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "Jejujey valor michĩvéva ikatu haguãicha distribución binomial acumulada ha'e tuichave o ha'ete peteĩ valor de criterio." +msgstr "Ombo'u jey valor michĩvéva ikatu haguãicha distribución binomial acumulada ha'e tuichave o ha'ete peteĩ valor de criterio." #: scfuncs.src msgctxt "" @@ -16516,7 +16525,7 @@ "1\n" "string.text" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "Ejujey michĩvéva valor para el que la distribución binomial acumulativa ha'e tuichave o ha'ete peteĩ valor de criterio." +msgstr "Ombo'u jey michĩvéva valor para el que la distribución binomial acumulativa ha'e tuichave o ha'ete peteĩ valor de criterio." #: scfuncs.src msgctxt "" @@ -16579,7 +16588,7 @@ "1\n" "string.text" msgid "Returns the Poisson distribution." -msgstr "Ejujey distribución de Poisson." +msgstr "Ombo'u jey distribución de Poisson." #: scfuncs.src msgctxt "" @@ -16642,7 +16651,7 @@ "1\n" "string.text" msgid "Returns the Poisson distribution." -msgstr "Ejujey de la distribución Poisson." +msgstr "Ombo'u jey distribución Poisson." #: scfuncs.src msgctxt "" @@ -17614,7 +17623,7 @@ "1\n" "string.text" msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." -msgstr "Ejujey el valor de la función de densidad de probabilidad o la de distribución acumulada para la distribución Gamma." +msgstr "Ombo'u jey el valor de la función de densidad de probabilidad o la de distribución acumulada para la distribución Gamma." #: scfuncs.src msgctxt "" @@ -17821,7 +17830,7 @@ "1\n" "string.text" msgid "Returns the natural logarithm of the gamma function." -msgstr "Ejujey el logaritmo natural de la función gamma." +msgstr "Ombo'u jey logaritmo natural de la función gamma." #: scfuncs.src msgctxt "" @@ -17848,7 +17857,7 @@ "1\n" "string.text" msgid "Returns the natural logarithm of the gamma function." -msgstr "Ejujey el logaritmo natural de la función gamma." +msgstr "Ombo'u jey logaritmo natural de la función gamma." #: scfuncs.src msgctxt "" @@ -17875,7 +17884,7 @@ "1\n" "string.text" msgid "Returns the value of the Gamma function." -msgstr "Ejujey el valor de la función Gamma." +msgstr "Ombo'u jey valor de la función Gamma." #: scfuncs.src msgctxt "" @@ -18334,7 +18343,7 @@ "1\n" "string.text" msgid "Returns the values of the Weibull distribution." -msgstr "Ejujey valores de la distribución de Weibull." +msgstr "Ombo'u jey valores de la distribución de Weibull." #: scfuncs.src msgctxt "" @@ -18415,7 +18424,7 @@ "1\n" "string.text" msgid "Returns the values of the Weibull distribution." -msgstr "Ejujey valores de la distribución de Weibull." +msgstr "Ombo'u jey valores de la distribución de Weibull." #: scfuncs.src msgctxt "" @@ -18676,7 +18685,7 @@ "1\n" "string.text" msgid "Returns the t-distribution." -msgstr "Ejujey la distribución t." +msgstr "Ombo'u jey distribución t." #: scfuncs.src msgctxt "" @@ -18739,7 +18748,7 @@ "1\n" "string.text" msgid "Returns the two-tailed t-distribution." -msgstr "Ejujey la distribución T bilateral." +msgstr "Ombo'u jey distribución T bilateral." #: scfuncs.src msgctxt "" @@ -18784,7 +18793,7 @@ "1\n" "string.text" msgid "Returns the t-distribution." -msgstr "Ejujey la distribución t." +msgstr "Ombo'u jey distribución t." #: scfuncs.src msgctxt "" @@ -18847,7 +18856,7 @@ "1\n" "string.text" msgid "Returns the right-tailed t-distribution." -msgstr "Ejujey la distribución t de lateral-akatúa." +msgstr "Ombo'u jey distribución t de lateral-akatúa." #: scfuncs.src msgctxt "" @@ -19045,7 +19054,7 @@ "3\n" "string.text" msgid "The value for which the F distribution is to be calculated." -msgstr "El valor para calcular la distribución F." +msgstr "Valor kalkula peguarã distribución F." #: scfuncs.src msgctxt "" @@ -19423,7 +19432,7 @@ "1\n" "string.text" msgid "Returns the right-tail probability of the chi-square distribution." -msgstr "Ejujey huguái akatúa de probabilidad de la distribución ji cuadrado (χ²)." +msgstr "Ombo'u jey huguái akatúa de probabilidad de la distribución ji cuadrado (χ²)." #: scfuncs.src msgctxt "" @@ -19468,7 +19477,7 @@ "1\n" "string.text" msgid "Returns the right-tail probability of the chi-square distribution." -msgstr "Ejujey huguái akatúa de probabilidad de la distribución ji cuadrado (χ²)." +msgstr "Ombo'u jey huguái akatúa de probabilidad de la distribución ji cuadrado (χ²)." #: scfuncs.src msgctxt "" @@ -19513,7 +19522,7 @@ "1\n" "string.text" msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." -msgstr "Ejujey huguágui asúpe de probabilidad de la función de distribución acumulada o los valores de la función de densidad de probabilidad de la distribución χ²." +msgstr "Ombo'u jey huguágui asúpe de probabilidad de la función de distribución acumulada o los valores de la función de densidad de probabilidad de la distribución χ²." #: scfuncs.src msgctxt "" @@ -19576,7 +19585,7 @@ "1\n" "string.text" msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." -msgstr "Ejujey huguái asúpe de probabilidad de la función de distribución acumulada o los valores de la función de densidad de probabilidad de la distribución χ²." +msgstr "Ombo'u jey huguái asúpe de probabilidad de la función de distribución acumulada o los valores de la función de densidad de probabilidad de la distribución χ²." #: scfuncs.src msgctxt "" @@ -19882,7 +19891,7 @@ "1\n" "string.text" msgid "Returns the number of permutations for a given number of elements without repetition." -msgstr "Ejujey papapy de permutaciones peteĩ papapy haguã determinados elemento kuéra." +msgstr "Ombo'u jey papapy de permutaciones peteĩ papapy haguã determinados elemento kuéra." #: scfuncs.src msgctxt "" @@ -19927,7 +19936,7 @@ "1\n" "string.text" msgid "Returns the number of permutations for a given number of objects (repetition allowed)." -msgstr "Ejujey mboheta de permutaciones peteĩ papapy determinado peguarã mba'égui kuéra repeticiónes ndi." +msgstr "Ombo'u jey mboheta de permutaciones peteĩ papapy determinado peguarã mba'égui kuéra repeticiónes ndi." #: scfuncs.src msgctxt "" @@ -19972,7 +19981,7 @@ "1\n" "string.text" msgid "Returns a (1 alpha) confidence interval for a normal distribution." -msgstr "Ejujey el intervalo de confianza (1 alfa) peteĩ distribución normal peguarã." +msgstr "Ombo'u jey intervalo de confianza (1 alfa) peteĩ distribución normal peguarã." #: scfuncs.src msgctxt "" @@ -20035,7 +20044,7 @@ "1\n" "string.text" msgid "Returns a (1 alpha) confidence interval for a normal distribution." -msgstr "Ejujey el intervalo de confianza (1 alfa) peteĩ distribución normal peguarã." +msgstr "Ombo'u jey intervalo de confianza (1 alfa) peteĩ distribución normal peguarã." #: scfuncs.src msgctxt "" @@ -20098,7 +20107,7 @@ "1\n" "string.text" msgid "Returns a (1 alpha) confidence interval for a Student's t distribution." -msgstr "Ejujey peteĩ intervalo de confianza (alfa 1) distribución t de Student peguarã." +msgstr "Ombo'u jey peteĩ intervalo de confianza (alfa 1) distribución t de Student peguarã." #: scfuncs.src msgctxt "" @@ -20287,7 +20296,7 @@ "1\n" "string.text" msgid "Returns the chi square independence test." -msgstr "Ejujey ha'ã de independencia." +msgstr "Ombo'u jey ha'ã de independencia." #: scfuncs.src msgctxt "" @@ -20332,7 +20341,7 @@ "1\n" "string.text" msgid "Returns the chi square independence test." -msgstr "Ejujey ha'ã de independencia." +msgstr "Ombo'u jey ha'ã de independencia." #: scfuncs.src msgctxt "" @@ -20674,7 +20683,7 @@ "1\n" "string.text" msgid "Returns the intercept of the linear regression line and the Y axis." -msgstr "Ejujey la intersección del eje de ordenadas con la recta de regresión lineal." +msgstr "Ombo'u jey intersección del eje de ordenadas con la recta de regresión lineal." #: scfuncs.src msgctxt "" @@ -20719,7 +20728,7 @@ "1\n" "string.text" msgid "Returns the slope of the linear regression line." -msgstr "Ejujey la pendiente peteĩ línegui de regresión lineal." +msgstr "Ombo'u jey pendiente peteĩ línegui de regresión lineal." #: scfuncs.src msgctxt "" @@ -20764,7 +20773,7 @@ "1\n" "string.text" msgid "Returns the standard error of the linear regression." -msgstr "Ejujey jejajvy típico del valor a la regresión lineal." +msgstr "Ombo'u jey jejajvy típico del valor a la regresión lineal." #: scfuncs.src msgctxt "" @@ -20809,7 +20818,7 @@ "1\n" "string.text" msgid "Returns the Pearson product moment correlation coefficient." -msgstr "Ejujey el coeficiente de correlación producto o momento de Pearson..." +msgstr "Ombo'u jey coeficiente de correlación producto o momento de Pearson..." #: scfuncs.src msgctxt "" @@ -20854,7 +20863,7 @@ "1\n" "string.text" msgid "Returns the correlation coefficient." -msgstr "Ejujey el coeficiente de correlación mokõi conjuntos mbytépe de datos." +msgstr "Ombo'u jey coeficiente de correlación mokõi conjuntos mbytépe de datos." #: scfuncs.src msgctxt "" @@ -21034,7 +21043,7 @@ "1\n" "string.text" msgid "Returns a value along a linear regression" -msgstr "Ejujey peteĩ valor basándose peteĩ regresiónpe lineal." +msgstr "Ombo'u jey peteĩ valor basándose peteĩ regresión pe lineal." #: scfuncs.src msgctxt "" @@ -21097,7 +21106,7 @@ "1\n" "string.text" msgid "Returns the reference to a cell as text." -msgstr "Ejujey peteĩ referencia koty'ígui con formato moñe'ẽrãgui." +msgstr "Ombo'u jey peteĩ referencia koty'ígui formato ndi moñe'ẽrãgui." #: scfuncs.src msgctxt "" @@ -21198,7 +21207,7 @@ "1\n" "string.text" msgid "Returns the number of individual ranges that belong to a (multiple) range." -msgstr "Ejujey papapy de áreas ocorrespondehá peteĩ área koty'ígui." +msgstr "Ombo'u jey papapy de áreas ocorrespondehá peteĩ área koty'ígui." #: scfuncs.src msgctxt "" @@ -21270,7 +21279,7 @@ "1\n" "string.text" msgid "Returns the internal column number of a reference." -msgstr "Ejujey papapy hyepypegua colúmnagui peteĩ referenciagui oñeme'ẽ va'ekue." +msgstr "Ombo'u jey papapy hyepypegua columna gui peteĩ referencia gui oñeme'ẽ va'ekue." #: scfuncs.src msgctxt "" @@ -21324,7 +21333,7 @@ "1\n" "string.text" msgid "Returns the internal sheet number of a reference or a string." -msgstr "Ejujey papapy hyepypegua roguégui peteĩ referencia gui o itasã caracteres." +msgstr "Ombo'u jey papapy hyepypegua roguégui peteĩ referencia gui o itasã caracter kuéra." #: scfuncs.src msgctxt "" @@ -21351,7 +21360,7 @@ "1\n" "string.text" msgid "Returns the number of columns in an array or reference." -msgstr "Ejujey papapy de columnas peteĩ referenciagui o peteĩ matriz." +msgstr "Ombo'u jey papapy de columnas peteĩ referencia gui o peteĩ matriz." #: scfuncs.src msgctxt "" @@ -21369,7 +21378,7 @@ "3\n" "string.text" msgid "The array (reference) for which the number of columns is to be determined." -msgstr "La matriz (referencia), cuyo papapy columnasgui ojedeterminase." +msgstr "La matriz (referencia), cuyo papapy columnas gui ojedeterminase." #: scfuncs.src msgctxt "" @@ -21378,7 +21387,7 @@ "1\n" "string.text" msgid "Returns the number of rows in a reference or array." -msgstr "Ejujey papapy tysỹigui peteĩ referénciagui o matriz." +msgstr "Ombo'u jey papapy tysỹigui peteĩ referéncia gui o matriz." #: scfuncs.src msgctxt "" @@ -21405,7 +21414,7 @@ "1\n" "string.text" msgid "Returns the number of sheets of a given reference. If no parameter has been entered, the total number of sheets in the document is returned." -msgstr "Ojedetermina papapy roguégui peteĩ referénciagui. Naipóriramo parámetros, mboheta roguégui peteĩ documento gui ojujeytaha." +msgstr "Ojedetermina papapy roguégui peteĩ referéncia gui. Naipóriramo parámetros, mboheta roguégui peteĩ documento gui ojujeytaha." #: scfuncs.src msgctxt "" @@ -21513,7 +21522,7 @@ "1\n" "string.text" msgid "Vertical search and reference to indicated cells." -msgstr "Jeheka vertical ha referencia a koty'i kuéra indicadas." +msgstr "Jeheka oñembo'ýva ha referencia a koty'i kuéra indicadas." #: scfuncs.src msgctxt "" @@ -21594,7 +21603,7 @@ "1\n" "string.text" msgid "Returns a reference to a cell from a defined range." -msgstr "Ejujey peteĩ referencia koty'ihápe rango guive ojedefini va'ekue." +msgstr "Ombo'u jey peteĩ referencia koty'ihápe rango guive ojedefini va'ekue." #: scfuncs.src msgctxt "" @@ -21675,7 +21684,7 @@ "1\n" "string.text" msgid "Returns the contents of a cell that is referenced in text form." -msgstr "Ejujey orekóva peteĩ koty'ígui ojereferenciá fórmape moñe'ẽrãgui." +msgstr "Ombo'u jey orekóva peteĩ koty'ígui ojereferenciá forma pe moñe'ẽrãgui." #: scfuncs.src msgctxt "" @@ -21846,7 +21855,7 @@ "1\n" "string.text" msgid "Returns a reference which has been moved in relation to the starting point." -msgstr "Ejujey peteĩ referencia oñemongu'e va'ekue en relación kytándi oñepyrũhágui." +msgstr "Ombo'u jey peteĩ referencia oñemongu'e va'ekue en relación kytándi oñepyrũhágui." #: scfuncs.src msgctxt "" @@ -21945,7 +21954,7 @@ "1\n" "string.text" msgid "Returns a number corresponding to an error type" -msgstr "Ejujey peteĩ papapy que corresponde peteĩ tipo jejavýgui." +msgstr "Ombo'u jey peteĩ papapy que corresponde peteĩ tipo jejavýgui." #: scfuncs.src msgctxt "" @@ -22332,7 +22341,7 @@ "1\n" "string.text" msgid "Returns a numeric code for the first character in a text string." -msgstr "Ejujey peteĩ código numérico peteĩha peguarã carácter peteĩ itasã moñe'ẽrãgui." +msgstr "Ombo'u jey peteĩ código numérico peteĩha peguarã carácter peteĩ itasã moñe'ẽrãgui." #: scfuncs.src msgctxt "" @@ -22836,7 +22845,7 @@ "1\n" "string.text" msgid "Returns a value if it is text, otherwise an empty string." -msgstr "Ejujey peteĩ valor ha'erõ moñe'ẽrã, o peteĩ itasã nandi." +msgstr "Ombo'u jey peteĩ valor ha'erõ moñe'ẽrã, o peteĩ itasã nandi." #: scfuncs.src msgctxt "" @@ -23034,7 +23043,7 @@ "1\n" "string.text" msgid "Returns the first character or characters of a text." -msgstr "Ejujey peteĩha carácter o los caracteres peteĩ moñe'ẽrãgui." +msgstr "Ombo'u jey peteĩha carácter o los caracter kuéra peteĩ moñe'ẽrãgui." #: scfuncs.src msgctxt "" @@ -23079,7 +23088,7 @@ "1\n" "string.text" msgid "Returns the last character or characters of a text." -msgstr "Ejujey carácter paha o caractares peteĩ moñe'ẽrãgui." +msgstr "Ombo'u jey carácter paha o caractar kuéra peteĩ moñe'ẽrãgui." #: scfuncs.src msgctxt "" @@ -23124,7 +23133,7 @@ "1\n" "string.text" msgid "Returns a partial text string of a text." -msgstr "Ejujey peteĩ itasã moñe'ẽrãgui parcial peteĩ moñe'ẽrãgui." +msgstr "Ombo'u jey peteĩ itasã moñe'ẽrãgui parcial peteĩ moñe'ẽrãgui." #: scfuncs.src msgctxt "" @@ -23556,7 +23565,7 @@ "1\n" "string.text" msgid "Returns information about the environment." -msgstr "Ejujey ñemomarandu arapytu ári." +msgstr "Ombo'u jey ñemomarandu arapytu ári." #: scfuncs.src msgctxt "" @@ -23583,7 +23592,7 @@ "1\n" "string.text" msgid "Returns the numeric code for the first Unicode character in a text string." -msgstr "Ejujey el código numérico peteĩha peguarã carácter Unicode peteĩ itasãpe moñe'ẽrãgui." +msgstr "Ombo'u jey código numérico peteĩha peguarã carácter Unicode peteĩ itasãpe moñe'ẽrãgui." #: scfuncs.src msgctxt "" @@ -24052,7 +24061,7 @@ "1\n" "string.text" msgid "Returns the last character or characters of a text,with DBCS" -msgstr "Ejujey caracter paha o caracteres peteĩ moñe'ẽrãgui, con DBCS" +msgstr "Ombo'u jey caracter paha o caracteres peteĩ moñe'ẽrãgui, con DBCS" #: scfuncs.src msgctxt "" @@ -24097,7 +24106,7 @@ "1\n" "string.text" msgid "Returns the first character or characters of a text,with DBCS" -msgstr "Ejujey peteĩha caracter o caracteres peteĩ moñe'ẽrãgui, con DBCS" +msgstr "Ombo'u jey peteĩha caracter o caracteres peteĩ moñe'ẽrãgui, con DBCS" #: scfuncs.src msgctxt "" @@ -24142,7 +24151,7 @@ "1\n" "string.text" msgid "Returns a partial text string of a text, with DBCS" -msgstr "Ejujey peteĩ itasã parcial moñe'ẽrãgui, con DBCS" +msgstr "Ombo'u jey peteĩ itasã parcial moñe'ẽrãgui, con DBCS" #: scfuncs.src msgctxt "" @@ -24250,7 +24259,7 @@ "1\n" "string.text" msgid "Returns an implementation defined value representing a RGBA color" -msgstr "Ejujey peteĩ valor de implementación omyesakã va'ekue orepresentá peteĩ sa'ýpe RGBA" +msgstr "Ombo'u jey peteĩ valor de implementación omyesakã va'ekue orepresentá peteĩ sa'ýpe RGBA" #: scfuncs.src msgctxt "" @@ -24385,7 +24394,7 @@ "1\n" "string.text" msgid "Returns the error function." -msgstr "Ejujey la mba'apo jejavýgui." +msgstr "Ombo'u jey mba'apo jejavýgui." #: scfuncs.src msgctxt "" @@ -24412,7 +24421,7 @@ "1\n" "string.text" msgid "Returns the complementary error function." -msgstr "Ejujey la mba'apo jejavýgui complementaria." +msgstr "Ombo'u jey mba'apo jejavýgui complementaria." #: scfuncs.src msgctxt "" @@ -25278,7 +25287,7 @@ "STR_ACC_HEADER_NAME\n" "string.text" msgid "Header of page %1" -msgstr "Omoakã roguegui %1" +msgstr "Omoakã roguégui %1" #: scstring.src msgctxt "" @@ -25286,7 +25295,7 @@ "STR_ACC_FOOTER_NAME\n" "string.text" msgid "Footer of page %1" -msgstr "Py roguegui %1" +msgstr "Py roguégui %1" #: scstring.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/sc/uiconfig/scalc/ui.po libreoffice-5.0.2~rc2/translations/source/gug/sc/uiconfig/scalc/ui.po --- libreoffice-5.0.1~rc2/translations/source/gug/sc/uiconfig/scalc/ui.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/sc/uiconfig/scalc/ui.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-20 17:20+0000\n" +"PO-Revision-Date: 2015-09-16 15:33+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440091204.000000\n" +"X-POOTLE-MTIME: 1442417636.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -122,7 +122,7 @@ "title\n" "string.text" msgid "Headers/Footers" -msgstr "Omoakã kuéra/Py roguegui" +msgstr "Omoakã kuéra/Py roguégui" #: allheaderfooterdialog.ui msgctxt "" @@ -149,7 +149,7 @@ "label\n" "string.text" msgid "Footer (right)" -msgstr "Py roguegui (akatúa)" +msgstr "Py roguégui (akatúa)" #: allheaderfooterdialog.ui msgctxt "" @@ -158,7 +158,7 @@ "label\n" "string.text" msgid "Footer (left)" -msgstr "Py roguegui (asúpe)" +msgstr "Py roguégui (asúpe)" #: analysisofvariancedialog.ui msgctxt "" @@ -2981,7 +2981,7 @@ "title\n" "string.text" msgid "Footers" -msgstr "Py roguegui kuéra" +msgstr "Py roguégui kuéra" #: footerdialog.ui msgctxt "" @@ -2990,7 +2990,7 @@ "label\n" "string.text" msgid "Footer (right)" -msgstr "Py roguegui (akatúa)" +msgstr "Py roguégui (akatúa)" #: footerdialog.ui msgctxt "" @@ -2999,7 +2999,7 @@ "label\n" "string.text" msgid "Footer (left)" -msgstr "Py roguegui (asúpe)" +msgstr "Py roguégui (asúpe)" #: formatcellsdialog.ui msgctxt "" @@ -3116,7 +3116,7 @@ "label\n" "string.text" msgid "Reference syntax for string reference:" -msgstr "Sintaxis referenciagui para referencia itasãgui:" +msgstr "Sintaxis referencia gui referencia peguarã itasãgui:" #: formulacalculationoptions.ui msgctxt "" @@ -3593,7 +3593,7 @@ "label\n" "string.text" msgid "_Footer" -msgstr "_Py roguegui" +msgstr "_Py roguégui" #: headerfootercontent.ui msgctxt "" @@ -3845,7 +3845,7 @@ "title\n" "string.text" msgid "Headers/Footers" -msgstr "Omoakã kuéra/Py roguegui" +msgstr "Omoakã kuéra/Py roguégui" #: headerfooterdialog.ui msgctxt "" @@ -3863,7 +3863,7 @@ "label\n" "string.text" msgid "Footer" -msgstr "Py roguegui" +msgstr "Py roguégui" #: imoptdialog.ui msgctxt "" @@ -4151,7 +4151,7 @@ "title\n" "string.text" msgid "Footer (left)" -msgstr "Py roguegui (asúpe)" +msgstr "Py roguégui (asúpe)" #: leftfooterdialog.ui msgctxt "" @@ -4160,7 +4160,7 @@ "label\n" "string.text" msgid "Footer (left)" -msgstr "Py roguegui (asúpe)" +msgstr "Py roguégui (asúpe)" #: leftheaderdialog.ui msgctxt "" @@ -4538,7 +4538,7 @@ "label\n" "string.text" msgid "Contains _column labels" -msgstr "Oguereko etiqueta _columnasgui" +msgstr "Oguereko etiqueta _columnas gui" #: namerangesdialog.ui msgctxt "" @@ -4619,7 +4619,7 @@ "label\n" "string.text" msgid "_Enable regular expressions in formulas" -msgstr "_Mboguata expresiones regulares fórmulaspe" +msgstr "_Ojepermiti expresiones regulares fórmulaspe" #: optcalculatepage.ui msgctxt "" @@ -5294,7 +5294,7 @@ "label\n" "string.text" msgid "Footer" -msgstr "Py roguegui" +msgstr "Py roguégui" #: pagetemplatedialog.ui msgctxt "" @@ -6050,7 +6050,7 @@ "label\n" "string.text" msgid "Enable drill to details" -msgstr "Mboguata análisis detallado" +msgstr "Myendy análisis detallado" #: pivottablelayoutdialog.ui msgctxt "" @@ -6401,7 +6401,7 @@ "label\n" "string.text" msgid "Enable custom seed" -msgstr "Mboguata ha'ỹi myatyrõ ndegustaháicha" +msgstr "Myendy ha'ỹi myatyrõ ndegustaháicha" #: randomnumbergenerator.ui msgctxt "" @@ -6419,7 +6419,7 @@ "label\n" "string.text" msgid "Enable rounding" -msgstr "Mboguata emoapu'a" +msgstr "Myendy emoapu'a" #: randomnumbergenerator.ui msgctxt "" @@ -6635,7 +6635,7 @@ "title\n" "string.text" msgid "Footer (right)" -msgstr "Py roguegui (akatúa)" +msgstr "Py roguégui (akatúa)" #: rightfooterdialog.ui msgctxt "" @@ -6644,7 +6644,7 @@ "label\n" "string.text" msgid "Footer (right)" -msgstr "Py roguegui (akatúa)" +msgstr "Py roguégui (akatúa)" #: rightheaderdialog.ui msgctxt "" @@ -7247,7 +7247,7 @@ "title\n" "string.text" msgid "Headers/Footers" -msgstr "Omoakã kuéra/Py roguegui" +msgstr "Omoakã kuéra/Py roguégui" #: sharedfooterdialog.ui msgctxt "" @@ -7274,7 +7274,7 @@ "label\n" "string.text" msgid "Footer" -msgstr "Py roguegui" +msgstr "Py roguégui" #: sharedheaderdialog.ui msgctxt "" @@ -7283,7 +7283,7 @@ "title\n" "string.text" msgid "Headers/Footers" -msgstr "Omoakã kuéra/Py roguegui" +msgstr "Omoakã kuéra/Py roguégui" #: sharedheaderdialog.ui msgctxt "" @@ -7301,7 +7301,7 @@ "label\n" "string.text" msgid "Footer (right)" -msgstr "Py roguegui (akatúa)" +msgstr "Py roguégui (akatúa)" #: sharedheaderdialog.ui msgctxt "" @@ -7310,7 +7310,7 @@ "label\n" "string.text" msgid "Footer (left)" -msgstr "Py roguegui (asúpe)" +msgstr "Py roguégui (asúpe)" #: sharedocumentdlg.ui msgctxt "" @@ -7436,7 +7436,7 @@ "label\n" "string.text" msgid "_Column and row headers" -msgstr "Omoakã _columnasgui ha tysỹi kuéra" +msgstr "Omoakã _columnas gui ha tysỹi kuéra" #: sheetprintpage.ui msgctxt "" @@ -7859,7 +7859,7 @@ "tooltip_markup\n" "string.text" msgid "Select the line style of the borders." -msgstr "Eiporavo estilo líneagui de los bordes." +msgstr "Eiporavo estilo líneagui borde kuéragui." #: sidebarcellappearance.ui msgctxt "" @@ -7868,7 +7868,7 @@ "tooltip_text\n" "string.text" msgid "Select the line style of the borders." -msgstr "Eiporavo estilo líneagui de los bordes." +msgstr "Eiporavo estilo líneagui borde kuéragui." #: sidebarcellappearance.ui msgctxt "" @@ -7904,7 +7904,7 @@ "tooltip_text\n" "string.text" msgid "Select the line color of the borders." -msgstr "Eiporavo sa'y líneagui de los bordes." +msgstr "Eiporavo sa'y líneagui borde kuéragui." #: sidebarnumberformat.ui msgctxt "" @@ -8714,7 +8714,7 @@ "label\n" "string.text" msgid "Enable natural sort" -msgstr "Mboguata mohenda natural" +msgstr "Myendy mohenda natural" #: sortoptionspage.ui msgctxt "" @@ -10406,7 +10406,7 @@ "label\n" "string.text" msgid "A valid source can only consist of a contiguous selection of rows and columns, or a formula that results in an area or array." -msgstr "Moógui ou válido ikatu consistir'año peteĩ jeporavo ykepegua tysỹi ha columnasgui, o peteĩ fórmula que resulte en un área o peteĩ matrizpe." +msgstr "Moógui ou válido ikatu consistir'año peteĩ jeporavo ykepegua tysỹi ha columnas gui, o peteĩ fórmula que resulte en un área o peteĩ matrizpe." #: validationcriteriapage.ui msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/scaddins/source/analysis.po libreoffice-5.0.2~rc2/translations/source/gug/scaddins/source/analysis.po --- libreoffice-5.0.1~rc2/translations/source/gug/scaddins/source/analysis.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-14 15:52+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-16 15:05+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439567557.000000\n" +"X-POOTLE-MTIME: 1442415902.000000\n" #: analysis.src msgctxt "" @@ -32,7 +32,7 @@ "2\n" "string.text" msgid "Start date" -msgstr "" +msgstr "Arange ñepyrũ" #: analysis.src msgctxt "" @@ -41,7 +41,7 @@ "3\n" "string.text" msgid "The start date" -msgstr "" +msgstr "Arange ñepyrũ" #: analysis.src msgctxt "" @@ -95,7 +95,7 @@ "2\n" "string.text" msgid "Start date" -msgstr "" +msgstr "Arange ñepyrũ" #: analysis.src msgctxt "" @@ -104,7 +104,7 @@ "3\n" "string.text" msgid "The start date" -msgstr "" +msgstr "Arange ñepyrũ" #: analysis.src msgctxt "" @@ -158,7 +158,7 @@ "2\n" "string.text" msgid "Start date" -msgstr "" +msgstr "Arange ñepyrũ" #: analysis.src msgctxt "" @@ -167,7 +167,7 @@ "3\n" "string.text" msgid "The start date" -msgstr "" +msgstr "Arange ñepyrũ" #: analysis.src msgctxt "" @@ -221,7 +221,7 @@ "4\n" "string.text" msgid "Return type" -msgstr "" +msgstr "Tipo ou jey" #: analysis.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/sd/source/ui/accessibility.po libreoffice-5.0.2~rc2/translations/source/gug/sd/source/ui/accessibility.po --- libreoffice-5.0.1~rc2/translations/source/gug/sd/source/ui/accessibility.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/sd/source/ui/accessibility.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:42+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-01 01:03+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893746.000000\n" +"X-POOTLE-MTIME: 1441069404.000000\n" #: accessibility.src msgctxt "" @@ -230,7 +230,7 @@ "SID_SD_A11Y_P_FOOTER_N\n" "string.text" msgid "PresentationFooter" -msgstr "OjechaukaPy Roguegui" +msgstr "OjechaukaPy Roguégui" #: accessibility.src msgctxt "" @@ -358,7 +358,7 @@ "SID_SD_A11Y_P_FOOTER_N_STYLE\n" "string.text" msgid "Footer" -msgstr "Py roguegui" +msgstr "Py roguégui" #: accessibility.src msgctxt "" diff -Nru libreoffice-5.0.1~rc2/translations/source/gug/sd/source/ui/app.po libreoffice-5.0.2~rc2/translations/source/gug/sd/source/ui/app.po --- libreoffice-5.0.1~rc2/translations/source/gug/sd/source/ui/app.po 2015-08-22 06:35:19.000000000 +0000 +++ libreoffice-5.0.2~rc2/translations/source/gug/sd/source/ui/app.po 2015-09-17 13:33:11.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-20 17:24+0000\n" +"PO-Revision-Date: 2015-09-01 01:04+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440091478.000000\n" +"X-POOTLE-MTIME: 1441069495.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -995,7 +995,7 @@ "SID_GRID_USE\n" "menuitem.text" msgid "Snap to Grid" -msgstr "Mohenda a la Cuadrícula" +msgstr "Ojeahusta Cuadrículape" #: menuids_tmpl.src msgctxt "" @@ -3608,7 +3608,7 @@ "STR_PLACEHOLDER_DESCRIPTION_FOOTER\n" "string.text" msgid "Footer Area" -msgstr "Área Py roguegui" +msgstr "Área Py roguégui" #: strings.src msgctxt "" @@ -3656,7 +3656,7 @@ "STR_FIELD_PLACEHOLDER_FOOTER\n" "string.text" msgid "