diff -Nru libreoffice-l10n-4.3.1~rc2/accessibility/source/standard/vclxaccessiblelist.cxx libreoffice-l10n-4.3.2/accessibility/source/standard/vclxaccessiblelist.cxx --- libreoffice-l10n-4.3.1~rc2/accessibility/source/standard/vclxaccessiblelist.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/accessibility/source/standard/vclxaccessiblelist.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -300,8 +300,13 @@ } else if (m_aBoxType == LISTBOX && !b_IsDropDownList) { - if ( aNewValue.hasValue()) + if ( aNewValue.hasValue() || aOldValue.hasValue() ) { + NotifyAccessibleEvent( + AccessibleEventId::ACTIVE_DESCENDANT_CHANGED, + aOldValue, + aNewValue ); + NotifyListItem(aNewValue); } } diff -Nru libreoffice-l10n-4.3.1~rc2/avmedia/Library_avmedia.mk libreoffice-l10n-4.3.2/avmedia/Library_avmedia.mk --- libreoffice-l10n-4.3.1~rc2/avmedia/Library_avmedia.mk 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/avmedia/Library_avmedia.mk 2014-09-16 19:56:04.000000000 +0000 @@ -52,7 +52,7 @@ )) endif -ifneq (,$(filter COLLADA2GLTF,$(BUILD_TYPE))) +ifeq ($(ENABLE_COLLADA),TRUE) $(eval $(call gb_Library_set_warnings_not_errors,avmedia)) ifeq ($(OS),LINUX) @@ -68,9 +68,6 @@ png \ )) -$(eval $(call gb_Library_add_defs,avmedia,\ - -DENABLE_COLLADA2GLTF \ -)) endif $(eval $(call gb_Library_add_exception_objects,avmedia,\ diff -Nru libreoffice-l10n-4.3.1~rc2/avmedia/source/framework/modeltools.cxx libreoffice-l10n-4.3.2/avmedia/source/framework/modeltools.cxx --- libreoffice-l10n-4.3.1~rc2/avmedia/source/framework/modeltools.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/avmedia/source/framework/modeltools.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -29,7 +29,9 @@ #include #include -#ifdef ENABLE_COLLADA2GLTF +#include + +#if HAVE_FEATURE_COLLADA #include #include #endif @@ -42,7 +44,7 @@ namespace avmedia { -#ifdef ENABLE_COLLADA2GLTF +#if HAVE_FEATURE_COLLADA static void lcl_UnzipKmz(const OUString& rSourceURL, const OUString& rOutputFolderURL, OUString& o_rDaeFileURL) { @@ -242,7 +244,8 @@ const OUString& rSourceURL, OUString& o_rEmbeddedURL) { OUString sSource = rSourceURL; -#ifdef ENABLE_COLLADA2GLTF + +#if HAVE_FEATURE_COLLADA if( !rSourceURL.endsWithIgnoreAsciiCase(".json") ) KmzDae2Gltf(rSourceURL, sSource); #endif diff -Nru libreoffice-l10n-4.3.1~rc2/avmedia/source/opengl/oglplayer.cxx libreoffice-l10n-4.3.2/avmedia/source/opengl/oglplayer.cxx --- libreoffice-l10n-4.3.1~rc2/avmedia/source/opengl/oglplayer.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/avmedia/source/opengl/oglplayer.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -269,6 +269,12 @@ return uno::Reference< media::XPlayerWindow >(); } + if( !m_aContext.supportMultiSampling() ) + { + SAL_WARN("avmedia.opengl", "Context does not support multisampling!"); + return uno::Reference< media::XPlayerWindow >(); + } + if( !lcl_CheckOpenGLRequirements() ) { SAL_WARN("avmedia.opengl", "Your platform does not have the minimal OpenGL requiremenets!"); @@ -287,7 +293,7 @@ releaseInputFiles(); if( nRet != 0 ) { - SAL_WARN("avmedia.opengl", "Error occured while parsing *.json file! Error code: " << nRet); + SAL_WARN("avmedia.opengl", "Error occured while setting up the scene! Error code: " << nRet); return uno::Reference< media::XPlayerWindow >(); } // The background color is white by default, but we need to separate the @@ -309,6 +315,12 @@ return uno::Reference< media::XFrameGrabber >(); } + if( !m_aContext.supportMultiSampling() ) + { + SAL_WARN("avmedia.opengl", "Context does not support multisampling!"); + return uno::Reference< media::XFrameGrabber >(); + } + if( !lcl_CheckOpenGLRequirements() ) { SAL_WARN("avmedia.opengl", "Your platform does not have the minimal OpenGL requiremenets!"); @@ -324,7 +336,7 @@ releaseInputFiles(); if( nRet != 0 ) { - SAL_WARN("avmedia.opengl", "Error occured while parsing *.json file! Error code: " << nRet); + SAL_WARN("avmedia.opengl", "Error occured while setting up the scene! Error code: " << nRet); return uno::Reference< media::XFrameGrabber >(); } glClearColor(0.5f, 0.5f, 0.5f, 0.5f); diff -Nru libreoffice-l10n-4.3.1~rc2/avmedia/source/opengl/oglplayer.hxx libreoffice-l10n-4.3.2/avmedia/source/opengl/oglplayer.hxx --- libreoffice-l10n-4.3.1~rc2/avmedia/source/opengl/oglplayer.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/avmedia/source/opengl/oglplayer.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -14,7 +14,9 @@ #include #include #include + #include + #include #include diff -Nru libreoffice-l10n-4.3.1~rc2/avmedia/source/opengl/oglwindow.cxx libreoffice-l10n-4.3.2/avmedia/source/opengl/oglwindow.cxx --- libreoffice-l10n-4.3.1~rc2/avmedia/source/opengl/oglwindow.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/avmedia/source/opengl/oglwindow.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -23,7 +23,6 @@ , meZoomLevel( media::ZoomLevel_ORIGINAL ) , m_aLastMousePos(Point(0,0)) , m_bIsOrbitMode( false ) - , m_fCameraDistance(0.0) { } @@ -267,15 +266,15 @@ glm::vec3 vMove = vView-vEye; vMove = glm::normalize(vMove); vMove *= 25.0f; - glm::vec3 vStrafe = glm::cross(vView-vEye, vUp); + glm::vec3 vStrafe = glm::cross(vMove, vUp); vStrafe = glm::normalize(vStrafe); vStrafe *= 25.0f; - glm::vec3 vMup = glm::cross(vView-vEye,glm::vec3(1.0f,0.0f,0.0f) ); - vMup = glm::normalize(vMup); - vMup *= 25.0f; + glm::vec3 vMup = vUp * 25.0f; if( !m_bIsOrbitMode ) { + if(nCode == KEY_E)vMoveBy += vMup*(0.0005f*fModelSize); + if(nCode == KEY_Q)vMoveBy -= vMup*(0.0005f*fModelSize); if(nCode == KEY_W)vMoveBy += vMove*(0.0005f*fModelSize); if(nCode == KEY_S)vMoveBy -= vMove*(0.0005f*fModelSize); if(nCode == KEY_A)vMoveBy -= vStrafe*(0.0005f*fModelSize); @@ -283,15 +282,24 @@ } else { - if(nCode == KEY_E)vMoveBy += vMove*(0.0005f*fModelSize); - if(nCode == KEY_Q)vMoveBy -= vMove*(0.0005f*fModelSize); + bool bZoomIn = false; + bool bZoomOut = false; + if(nCode == KEY_E) + { + vMoveBy += vMove*(0.0005f*fModelSize); + bZoomIn = true; + } + if(nCode == KEY_Q) + { + vMoveBy -= vMove*(0.0005f*fModelSize); + bZoomOut = true; + } // Limit zooming in orbit mode - m_fCameraDistance += vMoveBy.z; - if ((m_fCameraDistance < 0.5 * fModelSize && vMoveBy.z < 0.0 ) || - (m_fCameraDistance > 2 * fModelSize && vMoveBy.z > 0.0 )) + float fCameraDistFromModelGlobe = glm::length(vEye + vMoveBy - vView) - fModelSize / 2.0f; + if ((fCameraDistFromModelGlobe < 0.5 * fModelSize && bZoomIn ) || + (fCameraDistFromModelGlobe > 2 * fModelSize && bZoomOut )) { - m_fCameraDistance -= vMoveBy.z; vMoveBy = glm::vec3(0.0); } } @@ -333,12 +341,6 @@ { gltf_orbit_mode_start(&m_rHandle); m_bIsOrbitMode = true; - // Set default camera distance - glm::vec3 vEye; - glm::vec3 vView; - glm::vec3 vUp; - gltf_get_camera_pos(&m_rHandle, &vEye,&vView,&vUp); - m_fCameraDistance = vEye.z - gltf_get_model_center_pos(&m_rHandle)->z - (gltf_get_model_size(&m_rHandle)/2.0); } } else if(nCode == KEY_F) diff -Nru libreoffice-l10n-4.3.1~rc2/avmedia/source/opengl/oglwindow.hxx libreoffice-l10n-4.3.2/avmedia/source/opengl/oglwindow.hxx --- libreoffice-l10n-4.3.1~rc2/avmedia/source/opengl/oglwindow.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/avmedia/source/opengl/oglwindow.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -18,6 +18,7 @@ #include #include + #include #include @@ -73,7 +74,6 @@ com::sun::star::media::ZoomLevel meZoomLevel; Point m_aLastMousePos; bool m_bIsOrbitMode; - double m_fCameraDistance; }; } // namespace ogl diff -Nru libreoffice-l10n-4.3.1~rc2/basebmp/source/bitmapdevice.cxx libreoffice-l10n-4.3.2/basebmp/source/bitmapdevice.cxx --- libreoffice-l10n-4.3.1~rc2/basebmp/source/bitmapdevice.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/basebmp/source/bitmapdevice.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1952,12 +1952,15 @@ nScanlineFormat > FORMAT_MAX ) return BitmapDeviceSharedPtr(); - - - sal_Int32 nScanlineStride(0); - + sal_uInt8 nBitsPerPixel = bitsPerPixel[nScanlineFormat]; + if (rSize.getX() > (SAL_MAX_INT32-7) / nBitsPerPixel) + { + SAL_WARN("basebmp", "suspicious bitmap width " << + rSize.getX() << " for depth " << nBitsPerPixel); + return BitmapDeviceSharedPtr(); + } // round up to full 8 bit, divide by 8 - nScanlineStride = (rSize.getX()*bitsPerPixel[nScanlineFormat] + 7) >> 3; + sal_Int32 nScanlineStride = (rSize.getX()*nBitsPerPixel + 7) >> 3; // rounded up to next full power-of-two number of bytes const sal_uInt32 bytesPerPixel = nextPow2( diff -Nru libreoffice-l10n-4.3.1~rc2/basic/source/uno/namecont.cxx libreoffice-l10n-4.3.2/basic/source/uno/namecont.cxx --- libreoffice-l10n-4.3.1~rc2/basic/source/uno/namecont.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/basic/source/uno/namecont.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1810,7 +1810,7 @@ if ( bStorage ) { // Don't write if only empty standard lib exists - if ( ( nNameCount == 1 ) && ( aNames[0] == "Standard" ) ) + if ( ( nLibsToSave == 1 ) && ( aNames[0] == "Standard" ) ) { Any aLibAny = maNameContainer.getByName( aNames[0] ); Reference< XNameAccess > xNameAccess; diff -Nru libreoffice-l10n-4.3.1~rc2/bridges/source/cpp_uno/gcc3_linux_powerpc64/cpp2uno.cxx libreoffice-l10n-4.3.2/bridges/source/cpp_uno/gcc3_linux_powerpc64/cpp2uno.cxx --- libreoffice-l10n-4.3.1~rc2/bridges/source/cpp_uno/gcc3_linux_powerpc64/cpp2uno.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/bridges/source/cpp_uno/gcc3_linux_powerpc64/cpp2uno.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -21,7 +21,7 @@ #include #include #include - +#include #include "bridges/cpp_uno/shared/bridge.hxx" #include "bridges/cpp_uno/shared/cppinterfaceproxy.hxx" #include "bridges/cpp_uno/shared/types.hxx" @@ -31,6 +31,11 @@ #include #include +#ifdef OSL_BIGENDIAN +#define IS_BIG_ENDIAN 1 +#else +#define IS_BIG_ENDIAN 0 +#endif using namespace ::com::sun::star::uno; @@ -67,7 +72,7 @@ if (pReturnTypeDescr) { - if (bridges::cpp_uno::shared::isSimpleType( pReturnTypeDescr )) + if (!ppc64::return_in_hidden_param(pReturnTypeRef)) { pUnoReturn = pRegisterReturn; // direct way for simple types } @@ -139,13 +144,13 @@ case typelib_TypeClass_BOOLEAN: if (ng < ppc64::MAX_GPR_REGS) { - pCppArgs[nPos] = pUnoArgs[nPos] = (((char *)gpreg) + (sizeof(void*)-1)); + pCppArgs[nPos] = pUnoArgs[nPos] = (((char *)gpreg) + 7*IS_BIG_ENDIAN); ng++; gpreg++; } else { - pCppArgs[nPos] = pUnoArgs[nPos] = (((char *)ovrflw) + (sizeof(void*)-1)); + pCppArgs[nPos] = pUnoArgs[nPos] = (((char *)ovrflw) + 7*IS_BIG_ENDIAN); bOverflowUsed = true; } if (bOverflowUsed) ovrflw++; @@ -155,13 +160,13 @@ case typelib_TypeClass_UNSIGNED_SHORT: if (ng < ppc64::MAX_GPR_REGS) { - pCppArgs[nPos] = pUnoArgs[nPos] = (((char *)gpreg) + (sizeof(void*)-2)); + pCppArgs[nPos] = pUnoArgs[nPos] = (((char *)gpreg) + 6*IS_BIG_ENDIAN); ng++; gpreg++; } else { - pCppArgs[nPos] = pUnoArgs[nPos] = (((char *)ovrflw) + (sizeof(void*)-2)); + pCppArgs[nPos] = pUnoArgs[nPos] = (((char *)ovrflw) + 6*IS_BIG_ENDIAN); bOverflowUsed = true; } if (bOverflowUsed) ovrflw++; @@ -171,13 +176,13 @@ case typelib_TypeClass_UNSIGNED_LONG: if (ng < ppc64::MAX_GPR_REGS) { - pCppArgs[nPos] = pUnoArgs[nPos] = (((char *)gpreg) + (sizeof(void*)-4)); + pCppArgs[nPos] = pUnoArgs[nPos] = (((char *)gpreg) + 4*IS_BIG_ENDIAN); ng++; gpreg++; } else { - pCppArgs[nPos] = pUnoArgs[nPos] = (((char *)ovrflw) + (sizeof(void*)-4)); + pCppArgs[nPos] = pUnoArgs[nPos] = (((char *)ovrflw) + 4*IS_BIG_ENDIAN); bOverflowUsed = true; } if (bOverflowUsed) ovrflw++; @@ -321,7 +326,11 @@ } } - +#if _CALL_ELF == 2 +# define PARAMSAVE 32 +#else +# define PARAMSAVE 48 +#endif static typelib_TypeClass cpp_mediate( sal_uInt64 nOffsetAndIndex, @@ -334,7 +343,7 @@ sal_Int32 nFunctionIndex = (nOffsetAndIndex & 0xFFFFFFFF); long sf = *(long*)sp; - void ** ovrflw = (void**)(sf + 112); + void ** ovrflw = (void**)(sf + PARAMSAVE + 64); // gpreg: [ret *], this, [other gpr params] // fpreg: [fpr params] @@ -540,7 +549,11 @@ "mr %0, 1\n\t" : "=r" (sp) : ); +#if _CALL_ELF == 2 + volatile long nRegReturn[2]; +#else volatile long nRegReturn[1]; +#endif typelib_TypeClass aType = cpp_mediate( nOffsetAndIndex, (void**)gpreg, (void**)fpreg, sp, (sal_Int64*)nRegReturn); @@ -583,14 +596,22 @@ default: __asm__( "ld 3,%0\n\t" : : "m" (nRegReturn[0]) ); +#if _CALL_ELF == 2 + __asm__( "ld 4,%0\n\t" + : : "m" (nRegReturn[1]) ); +#endif break; } } +#if _CALL_ELF == 2 +const int codeSnippetSize = 32; +#else const int codeSnippetSize = 24; +#endif unsigned char * codeSnippet( unsigned char * code, sal_Int32 nFunctionIndex, sal_Int32 nVtableOffset, - bool simpleRetType) + bool bHasHiddenParam) { #if OSL_DEBUG_LEVEL > 2 fprintf(stderr,"in codeSnippet functionIndex is %x\n", nFunctionIndex); @@ -599,15 +620,27 @@ sal_uInt64 nOffsetAndIndex = ( ( (sal_uInt64) nVtableOffset ) << 32 ) | ( (sal_uInt64) nFunctionIndex ); - if ( !simpleRetType ) + if ( bHasHiddenParam ) nOffsetAndIndex |= 0x80000000; +#if _CALL_ELF == 2 + unsigned int *raw = (unsigned int *)&code[0]; + raw[0] = 0xe96c0018; /* 0: ld 11,2f-0b(12) */ + raw[1] = 0xe98c0010; /* ld 12,1f-0b(12) */ + raw[2] = 0x7d8903a6; /* mtctr 12 */ + raw[3] = 0x4e800420; /* bctr */ + /* 1: .quad function_addr */ + /* 2: .quad context */ + *(void **)&raw[4] = (void *)privateSnippetExecutor; + *(void **)&raw[6] = (void*)nOffsetAndIndex; +#else void ** raw = (void **)&code[0]; memcpy(raw, (char*) privateSnippetExecutor, 16); raw[2] = (void*) nOffsetAndIndex; +#endif #if OSL_DEBUG_LEVEL > 2 fprintf(stderr, "in: offset/index is %x %x %d, %lx\n", - nFunctionIndex, nVtableOffset, !simpleRetType, raw[2]); + nFunctionIndex, nVtableOffset, bHasHiddenParam, raw[2]); #endif return (code + codeSnippetSize); } @@ -673,7 +706,7 @@ (s++)->fn = code + writetoexecdiff; code = codeSnippet( code, functionOffset++, vtableOffset, - bridges::cpp_uno::shared::isSimpleType( + ppc64::return_in_hidden_param( reinterpret_cast< typelib_InterfaceAttributeTypeDescription * >( member)->pAttributeTypeRef)); @@ -684,7 +717,7 @@ member)->bReadOnly) { (s++)->fn = code + writetoexecdiff; - code = codeSnippet(code, functionOffset++, vtableOffset, true); + code = codeSnippet(code, functionOffset++, vtableOffset, false); } break; @@ -692,7 +725,7 @@ (s++)->fn = code + writetoexecdiff; code = codeSnippet( code, functionOffset++, vtableOffset, - bridges::cpp_uno::shared::isSimpleType( + ppc64::return_in_hidden_param( reinterpret_cast< typelib_InterfaceMethodTypeDescription * >( member)->pReturnTypeRef)); diff -Nru libreoffice-l10n-4.3.1~rc2/bridges/source/cpp_uno/gcc3_linux_powerpc64/share.hxx libreoffice-l10n-4.3.2/bridges/source/cpp_uno/gcc3_linux_powerpc64/share.hxx --- libreoffice-l10n-4.3.1~rc2/bridges/source/cpp_uno/gcc3_linux_powerpc64/share.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/bridges/source/cpp_uno/gcc3_linux_powerpc64/share.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -85,6 +85,7 @@ namespace ppc64 { enum ppclimits { MAX_GPR_REGS = 8, MAX_SSE_REGS = 13 }; + bool return_in_hidden_param( typelib_TypeDescriptionReference *pTypeRef ); } #endif diff -Nru libreoffice-l10n-4.3.1~rc2/bridges/source/cpp_uno/gcc3_linux_powerpc64/uno2cpp.cxx libreoffice-l10n-4.3.2/bridges/source/cpp_uno/gcc3_linux_powerpc64/uno2cpp.cxx --- libreoffice-l10n-4.3.1~rc2/bridges/source/cpp_uno/gcc3_linux_powerpc64/uno2cpp.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/bridges/source/cpp_uno/gcc3_linux_powerpc64/uno2cpp.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -37,9 +37,59 @@ using namespace ::rtl; using namespace ::com::sun::star::uno; -void MapReturn(long r3, double dret, typelib_TypeClass eTypeClass, void *pRegisterReturn) +namespace ppc64 { - switch (eTypeClass) +#if _CALL_ELF == 2 + bool is_complex_struct(const typelib_TypeDescription * type) + { + const typelib_CompoundTypeDescription * p + = reinterpret_cast< const typelib_CompoundTypeDescription * >(type); + for (sal_Int32 i = 0; i < p->nMembers; ++i) + { + if (p->ppTypeRefs[i]->eTypeClass == typelib_TypeClass_STRUCT || + p->ppTypeRefs[i]->eTypeClass == typelib_TypeClass_EXCEPTION) + { + typelib_TypeDescription * t = 0; + TYPELIB_DANGER_GET(&t, p->ppTypeRefs[i]); + bool b = is_complex_struct(t); + TYPELIB_DANGER_RELEASE(t); + if (b) { + return true; + } + } + else if (!bridges::cpp_uno::shared::isSimpleType(p->ppTypeRefs[i]->eTypeClass)) + return true; + } + if (p->pBaseTypeDescription != 0) + return is_complex_struct(&p->pBaseTypeDescription->aBase); + return false; + } +#endif + + bool return_in_hidden_param( typelib_TypeDescriptionReference *pTypeRef ) + { + if (bridges::cpp_uno::shared::isSimpleType(pTypeRef)) + return false; +#if _CALL_ELF == 2 + else if (pTypeRef->eTypeClass == typelib_TypeClass_STRUCT || pTypeRef->eTypeClass == typelib_TypeClass_EXCEPTION) + { + typelib_TypeDescription * pTypeDescr = 0; + TYPELIB_DANGER_GET( &pTypeDescr, pTypeRef ); + + //A Composite Type not larger than 16 bytes is returned in up to two GPRs + bool bRet = pTypeDescr->nSize > 16 || is_complex_struct(pTypeDescr); + + TYPELIB_DANGER_RELEASE( pTypeDescr ); + return bRet; + } +#endif + return true; + } +} + +void MapReturn(long r3, long r4, double dret, typelib_TypeDescriptionReference* pReturnType, void *pRegisterReturn) +{ + switch (pReturnType->eTypeClass) { case typelib_TypeClass_HYPER: case typelib_TypeClass_UNSIGNED_HYPER: @@ -65,6 +115,17 @@ case typelib_TypeClass_DOUBLE: *reinterpret_cast( pRegisterReturn ) = dret; break; +#if _CALL_ELF == 2 + case typelib_TypeClass_STRUCT: + case typelib_TypeClass_EXCEPTION: + if (!ppc64::return_in_hidden_param(pReturnType)) + { + sal_uInt64 *pRegisters = reinterpret_cast(pRegisterReturn); + pRegisters[0] = r3; + if (pReturnType->pType->nSize > 8) + pRegisters[1] = r4; + } +#endif default: break; } @@ -114,7 +175,11 @@ pMethod += 8 * nVtableIndex; pMethod = *((sal_uInt64 *)pMethod); +#if _CALL_ELF == 2 + typedef void (* FunctionCall )(...); +#else typedef void (* FunctionCall )( sal_uInt64, sal_uInt64, sal_uInt64, sal_uInt64, sal_uInt64, sal_uInt64, sal_uInt64, sal_uInt64 ); +#endif FunctionCall pFunc = (FunctionCall)pMethod; volatile double dret; @@ -168,7 +233,7 @@ "fmr %0, 1\n\t" : "=f" (dret), "=r" (r3), "=r" (r4) : ); - MapReturn(r3, dret, pReturnTypeDescr->eTypeClass, pRegisterReturn); + MapReturn(r3, r4, dret, reinterpret_cast(pReturnTypeDescr), pRegisterReturn); } // Macros for easier insertion of values to registers or stack @@ -251,14 +316,18 @@ void * pCppReturn = 0; // if != 0 && != pUnoReturn, needs reconversion - bool bOverflow = false; + bool bOverflow = false; + bool bSimpleReturn = true; if (pReturnTypeDescr) { #if OSL_DEBUG_LEVEL > 2 fprintf(stderr, "return type is %d\n", pReturnTypeDescr->eTypeClass); #endif - if (bridges::cpp_uno::shared::isSimpleType( pReturnTypeDescr )) + if (ppc64::return_in_hidden_param(pReturnTypeRef)) + bSimpleReturn = false; + + if (bSimpleReturn) { pCppReturn = pUnoReturn; // direct way for simple types #if OSL_DEBUG_LEVEL > 2 diff -Nru libreoffice-l10n-4.3.1~rc2/cli_ure/source/uno_bridge/cli_environment.cxx libreoffice-l10n-4.3.2/cli_ure/source/uno_bridge/cli_environment.cxx --- libreoffice-l10n-4.3.1~rc2/cli_ure/source/uno_bridge/cli_environment.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/cli_ure/source/uno_bridge/cli_environment.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -47,13 +47,17 @@ #endif } -Cli_environment::~Cli_environment() +Cli_environment::~Cli_environment() ///< IDisposable Cli_environment::Dispose() +{ + this->!Cli_environment(); // call finalizer +} + +Cli_environment::!Cli_environment() ///< Cli_environment::Finalize() { OSL_ENSURE(_numRegisteredObjects == 0, "cli uno bridge: CLI environment contains unrevoked objects"); } - System::Object^ Cli_environment::registerInterface( System::Object^ obj, System::String^ oid) { diff -Nru libreoffice-l10n-4.3.1~rc2/cli_ure/source/uno_bridge/cli_environment.h libreoffice-l10n-4.3.2/cli_ure/source/uno_bridge/cli_environment.h --- libreoffice-l10n-4.3.1~rc2/cli_ure/source/uno_bridge/cli_environment.h 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/cli_ure/source/uno_bridge/cli_environment.h 2014-09-16 19:56:04.000000000 +0000 @@ -56,6 +56,7 @@ inline Cli_environment(); ~Cli_environment(); + !Cli_environment(); /** Registers an UNO object as being mapped by this bridge. The resulting diff -Nru libreoffice-l10n-4.3.1~rc2/cli_ure/source/uno_bridge/cli_proxy.cxx libreoffice-l10n-4.3.2/cli_ure/source/uno_bridge/cli_proxy.cxx --- libreoffice-l10n-4.3.1~rc2/cli_ure/source/uno_bridge/cli_proxy.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/cli_ure/source/uno_bridge/cli_proxy.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -87,7 +87,13 @@ } } } -UnoInterfaceInfo::~UnoInterfaceInfo() + +UnoInterfaceInfo::~UnoInterfaceInfo() ///< IDisposable UnoInterfaceInfo::Dispose() +{ + this->!UnoInterfaceInfo(); // call finalizer +} + +UnoInterfaceInfo::!UnoInterfaceInfo() ///< UnoInterfaceInfo::Finalize() { //accessing unmanaged objects is ok. m_bridge->m_uno_env->revokeInterface( @@ -124,7 +130,12 @@ } -UnoInterfaceProxy::~UnoInterfaceProxy() +UnoInterfaceProxy::~UnoInterfaceProxy() ///< IDisposable UnoInterfaceProxy::Dispose() +{ + this->!UnoInterfaceProxy(); // call finalizer +} + +UnoInterfaceProxy::!UnoInterfaceProxy() ///< UnoInterfaceProxy::Finalize() { #if OSL_DEBUG_LEVEL >= 2 sd::Trace::WriteLine(System::String::Format( @@ -140,7 +151,6 @@ m_bridge->release(); } - System::Object^ UnoInterfaceProxy::create( Bridge * bridge, uno_Interface * pUnoI, diff -Nru libreoffice-l10n-4.3.1~rc2/cli_ure/source/uno_bridge/cli_proxy.h libreoffice-l10n-4.3.2/cli_ure/source/uno_bridge/cli_proxy.h --- libreoffice-l10n-4.3.1~rc2/cli_ure/source/uno_bridge/cli_proxy.h 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/cli_ure/source/uno_bridge/cli_proxy.h 2014-09-16 19:56:04.000000000 +0000 @@ -46,6 +46,8 @@ UnoInterfaceInfo(Bridge const * bridge, uno_Interface* unoI, typelib_InterfaceTypeDescription* td); ~UnoInterfaceInfo(); + !UnoInterfaceInfo(); + uno_Interface * m_unoI; // wrapped interface System::Type ^ m_type; typelib_InterfaceTypeDescription* m_typeDesc; @@ -112,6 +114,7 @@ void addUnoInterface(uno_Interface* pUnoI, typelib_InterfaceTypeDescription* pTd); ~UnoInterfaceProxy(); + !UnoInterfaceProxy(); /** */ diff -Nru libreoffice-l10n-4.3.1~rc2/config_host/config_features.h.in libreoffice-l10n-4.3.2/config_host/config_features.h.in --- libreoffice-l10n-4.3.1~rc2/config_host/config_features.h.in 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/config_host/config_features.h.in 2014-09-16 19:56:04.000000000 +0000 @@ -142,4 +142,9 @@ */ #define HAVE_FEATURE_GLTF 0 +/* + * Whether we have COLLADA support. + */ +#define HAVE_FEATURE_COLLADA 0 + #endif diff -Nru libreoffice-l10n-4.3.1~rc2/config_host.mk.in libreoffice-l10n-4.3.2/config_host.mk.in --- libreoffice-l10n-4.3.1~rc2/config_host.mk.in 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/config_host.mk.in 2014-09-16 19:56:04.000000000 +0000 @@ -109,6 +109,7 @@ export ENABLE_CHART_TESTS=@ENABLE_CHART_TESTS@ export ENABLE_CMIS=@ENABLE_CMIS@ export ENABLE_COINMP=@ENABLE_COINMP@ +export ENABLE_COLLADA=@ENABLE_COLLADA@ export ENABLE_CRASHDUMP=@ENABLE_CRASHDUMP@ export ENABLE_CUPS=@ENABLE_CUPS@ export ENABLE_CURL=@ENABLE_CURL@ @@ -127,6 +128,9 @@ export ENABLE_ORCUS=@ENABLE_ORCUS@ export ENABLE_HARFBUZZ=@ENABLE_HARFBUZZ@ export ENABLE_GLTF=@ENABLE_GLTF@ +export SYSTEM_LIBGLTF=@SYSTEM_LIBGLTF@ +export LIBGLTF_CFLAGS=@LIBGLTF_CFLAGS@ +export LIBGLTF_LIBS=@LIBGLTF_LIBS@ export ENABLE_GSTREAMER=@ENABLE_GSTREAMER@ export ENABLE_GSTREAMER_0_10=@ENABLE_GSTREAMER_0_10@ export ENABLE_GTK3=@ENABLE_GTK3@ diff -Nru libreoffice-l10n-4.3.1~rc2/configure.ac libreoffice-l10n-4.3.2/configure.ac --- libreoffice-l10n-4.3.1~rc2/configure.ac 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/configure.ac 2014-09-16 19:56:04.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],[4.3.1.2],[],[],[http://documentfoundation.org/]) +AC_INIT([LibreOffice],[4.3.2.2],[],[],[http://documentfoundation.org/]) AC_PREREQ([2.59]) @@ -1395,6 +1395,10 @@ AS_HELP_STRING([--disable-gltf], [Determines whether to build libraries related to glTF 3D model rendering.])) +AC_ARG_ENABLE(collada, + AS_HELP_STRING([--disable-collada], + [Disable collada support (Rendering 3D models stored in *.dae and *.kmz format).])) + dnl =================================================================== dnl Optional Packages (--with/without-) dnl =================================================================== @@ -1552,6 +1556,11 @@ [Use jpeg already on system.]),, [with_system_jpeg=auto]) +AC_ARG_WITH(system-libgltf, + AS_HELP_STRING([--with-system-libgltf], + [Use libgltf already on system.]),, + [with_system_libgltf=auto]) + AC_ARG_WITH(system-clucene, AS_HELP_STRING([--with-system-clucene], [Use clucene already on system.]),, @@ -4380,6 +4389,13 @@ PLATFORMID=linux_powerpc64 OUTPATH=unxlngppc64 ;; + powerpc64le) + CPUNAME=POWERPC64 + RTL_ARCH=PowerPC_64_LE + LIB64="lib64" + PLATFORMID=linux_powerpc64_le + OUTPATH=unxlngppc64 + ;; sparc) CPUNAME=SPARC RTL_ARCH=SPARC @@ -5019,8 +5035,18 @@ if test -n "$a"; then $a --version 2> /dev/null | grep GNU 2>&1 > /dev/null if test $? -eq 0; then - GNUMAKE=`which $a` - break + if test "$build_os" = "cygwin"; then + if test -n "$($a -v | grep 'Built for Windows')" ; then + AC_MSG_NOTICE([$a is a native Win32 make, which is not supported on this old branch.]) + unset GNUMAKE + else + GNUMAKE=`which $a` + break + fi + else + GNUMAKE=`which $a` + break + fi fi fi done @@ -7227,7 +7253,7 @@ powerpc) my_java_arch=ppc ;; - powerpc64) + powerpc64*) my_java_arch=ppc64 ;; x86_64) @@ -10544,15 +10570,34 @@ ENABLE_GLTF=TRUE AC_MSG_RESULT([yes]) AC_DEFINE(HAVE_FEATURE_GLTF,1) - BUILD_TYPE="$BUILD_TYPE LIBGLTF" - # otherwise build fails in collada2gltf external because of std::shared_ptr - if test "$have_std_shared_ptr" = "yes"; then - BUILD_TYPE="$BUILD_TYPE COLLADA2GLTF" + if test "$with_system_libgltf" = "yes"; then + SYSTEM_LIBGLTF=TRUE + PKG_CHECK_MODULES( LIBGLTF, [libgltf-0.0 >= 0.0.1] ) + else + BUILD_TYPE="$BUILD_TYPE LIBGLTF" fi else AC_MSG_RESULT([no]) fi AC_SUBST(ENABLE_GLTF) +AC_SUBST(SYSTEM_LIBGLTF) +AC_SUBST(LIBGLTF_CFLAGS) +AC_SUBST(LIBGLTF_LIBS) + +dnl =================================================================== +dnl Check whether to enable COLLADA support +dnl =================================================================== +AC_MSG_CHECKING([whether to enable COLLADA support]) +ENABLE_COLLADA= +if test "$enable_collada" != "no" -a "$ENABLE_GLTF" = "TRUE" -a "$have_std_shared_ptr" = "yes"; then + AC_MSG_RESULT([yes]) + ENABLE_COLLADA=TRUE + AC_DEFINE(HAVE_FEATURE_COLLADA,1) + BUILD_TYPE="$BUILD_TYPE COLLADA2GLTF" +else + AC_MSG_RESULT([no]) +fi +AC_SUBST(ENABLE_COLLADA) # pdf import? AC_MSG_CHECKING([whether to build the PDF import feature]) diff -Nru libreoffice-l10n-4.3.1~rc2/connectivity/source/commontools/DateConversion.cxx libreoffice-l10n-4.3.2/connectivity/source/commontools/DateConversion.cxx --- libreoffice-l10n-4.3.1~rc2/connectivity/source/commontools/DateConversion.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/connectivity/source/commontools/DateConversion.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -250,7 +250,24 @@ try { double fValue = xFormatter->convertStringToNumber(nKeyToUse, rString); - sal_Int32 nRealUsedKey = xFormatter->detectNumberFormat(0, rString); + Reference< XNumberFormats > xFormats(xFormatter->getNumberFormatsSupplier()->getNumberFormats()); + Reference< XNumberFormatTypes > xFormatTypes(xFormats, UNO_QUERY); + sal_Int32 nStandardKey(0); + if(xFormatTypes.is()) + { + const Reference< XPropertySet > xFormatProps(xFormats->getByKey(nKeyToUse)); + if (xFormatProps.is()) + { + css::lang::Locale loc; + if (xFormatProps->getPropertyValue("Locale") >>= loc) + nStandardKey = xFormatTypes->getStandardIndex(loc); + } + } + // Why use nStandardKey rather than nKeyToUse here? Don't know, but "it was always like that". + // Previously had hardcoded 0 instead of nStandardKey, which led to problems with dates + // because of differences M/D/Y vs D/M/Y. This at least fixes those problems, but possibly + // nKeyToUse is an even better choice than nStandardKey. + sal_Int32 nRealUsedKey = xFormatter->detectNumberFormat(nStandardKey, rString); if (nRealUsedKey != nKeyToUse) nRealUsedTypeClass = getNumberFormatType(xFormatter, nRealUsedKey) & ~NumberFormat::DEFINED; diff -Nru libreoffice-l10n-4.3.1~rc2/connectivity/source/drivers/dbase/DTable.cxx libreoffice-l10n-4.3.2/connectivity/source/drivers/dbase/DTable.cxx --- libreoffice-l10n-4.3.1~rc2/connectivity/source/drivers/dbase/DTable.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/connectivity/source/drivers/dbase/DTable.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -799,6 +799,7 @@ (*aIter)->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_PRECISION)) >>= nLen; (*aIter)->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE)) >>= nType; } + switch(nType) { case DataType::INTEGER: @@ -875,6 +876,8 @@ else if ( DataType::INTEGER == nType ) { sal_Int32 nValue = 0; + if (static_cast(nLen) > sizeof(nValue)) + return false; memcpy(&nValue, pData, nLen); *(_rRow->get())[i] = nValue; } @@ -884,6 +887,8 @@ if (getBOOL((*aIter)->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISCURRENCY)))) // Currency is treated separately { sal_Int64 nValue = 0; + if (static_cast(nLen) > sizeof(nValue)) + return false; memcpy(&nValue, pData, nLen); if ( m_aScales[i-1] ) @@ -893,6 +898,8 @@ } else { + if (static_cast(nLen) > sizeof(d)) + return false; memcpy(&d, pData, nLen); } @@ -1852,6 +1859,8 @@ case DataType::INTEGER: { sal_Int32 nValue = thisColVal; + if (static_cast(nLen) > sizeof(nValue)) + return false; memcpy(pData,&nValue,nLen); } break; @@ -1867,10 +1876,16 @@ nValue = (sal_Int64)(d * pow(10.0,(int)m_aScales[i])); else nValue = (sal_Int64)(d); + if (static_cast(nLen) > sizeof(nValue)) + return false; memcpy(pData,&nValue,nLen); } // if (getBOOL(xCol->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISCURRENCY)))) // Currency is treated separately else + { + if (static_cast(nLen) > sizeof(d)) + return false; memcpy(pData,&d,nLen); + } } break; case DataType::DECIMAL: diff -Nru libreoffice-l10n-4.3.1~rc2/cui/source/tabpages/numfmt.cxx libreoffice-l10n-4.3.2/cui/source/tabpages/numfmt.cxx --- libreoffice-l10n-4.3.1~rc2/cui/source/tabpages/numfmt.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/cui/source/tabpages/numfmt.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -112,9 +112,21 @@ mnPos = aPrevStr.indexOf( 0x1B ); if ( mnPos != -1 ) { - mnChar = aPrevStr[ mnPos + 1 ]; - // delete placeholder and char to repeat - aPrevStr = aPrevStr.replaceAt( mnPos, 2, "" ); + // Right during user input the star symbol is the very + // last character before the user enters another one. + if (mnPos < aPrevStr.getLength() - 1) + { + mnChar = aPrevStr[ mnPos + 1 ]; + // delete placeholder and char to repeat + aPrevStr = aPrevStr.replaceAt( mnPos, 2, "" ); + } + else + { + // delete placeholder + aPrevStr = aPrevStr.replaceAt( mnPos, 1, "" ); + // do not attempt to draw a 0 fill character + mnPos = -1; + } } svtools::ColorConfig aColorConfig; Color aWindowTextColor( aColorConfig.GetColorValue( svtools::FONTCOLOR ).nColor ); @@ -531,7 +543,15 @@ pNumFmtShell->GetInitSettings( nCatLbSelPos, eLangType, nFmtLbSelPos, aFmtEntryList, aPrevString, pDummy ); - m_pLbCurrency->SelectEntryPos((sal_Int32)pNumFmtShell->GetCurrencySymbol()); + if (nCatLbSelPos==CAT_CURRENCY) + { + sal_Int32 nPos = pNumFmtShell->GetCurrencySymbol(); + if (nPos == 0) + // Enable "Automatically" if currently used so it is selectable. + m_pLbCurrency->SetEntryFlags( nPos, 0); + + m_pLbCurrency->SelectEntryPos(nPos); + } nFixedCategory=nCatLbSelPos; if(bOneAreaFlag) @@ -1680,6 +1700,11 @@ for(std::vector::iterator i = aList.begin() + 1;i != aList.end(); ++i) m_pLbCurrency->InsertEntry(*i); + // Initially disable the "Automatically" entry. First ensure that nothing + // is selected, else if the to be disabled (first) entry was selected it + // would be sticky when disabled and could not be deselected! + m_pLbCurrency->SetNoSelection(); + m_pLbCurrency->SetEntryFlags( 0, LISTBOX_ENTRY_FLAG_DISABLE_SELECTION | LISTBOX_ENTRY_FLAG_DRAW_DISABLED); m_pLbCurrency->SelectEntryPos(nSelPos); } diff -Nru libreoffice-l10n-4.3.1~rc2/dbaccess/source/core/api/CRowSetColumn.cxx libreoffice-l10n-4.3.2/dbaccess/source/core/api/CRowSetColumn.cxx --- libreoffice-l10n-4.3.1~rc2/dbaccess/source/core/api/CRowSetColumn.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/dbaccess/source/core/api/CRowSetColumn.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -36,9 +36,13 @@ namespace dbaccess { -ORowSetColumn::ORowSetColumn( const Reference < XResultSetMetaData >& _xMetaData, const Reference < XRow >& _xRow, sal_Int32 _nPos, - const Reference< XDatabaseMetaData >& _rxDBMeta, const OUString& _rDescription, const OUString& i_sLabel,ORowSetCacheIterator& _rColumnValue ) - :ORowSetDataColumn( _xMetaData, _xRow, NULL, _nPos, _rxDBMeta, _rDescription, i_sLabel,_rColumnValue ) +ORowSetColumn::ORowSetColumn( const Reference < XResultSetMetaData >& _xMetaData, + const Reference < XRow >& _xRow, sal_Int32 _nPos, + const Reference< XDatabaseMetaData >& _rxDBMeta, + const OUString& _rDescription, + const OUString& i_sLabel, + const boost::function< const ::connectivity::ORowSetValue& ( sal_Int32 ) > &_getValue ) + :ORowSetDataColumn( _xMetaData, _xRow, NULL, _nPos, _rxDBMeta, _rDescription, i_sLabel, _getValue ) { } diff -Nru libreoffice-l10n-4.3.1~rc2/dbaccess/source/core/api/CRowSetColumn.hxx libreoffice-l10n-4.3.2/dbaccess/source/core/api/CRowSetColumn.hxx --- libreoffice-l10n-4.3.1~rc2/dbaccess/source/core/api/CRowSetColumn.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/dbaccess/source/core/api/CRowSetColumn.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -38,7 +38,7 @@ const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData >& _rxDBMeta, const OUString& _rDescription, const OUString& i_sLabel, - ORowSetCacheIterator& _rColumnValue); + const boost::function< const ::connectivity::ORowSetValue& ( sal_Int32 ) > &_getValue); virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const SAL_OVERRIDE; virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper() SAL_OVERRIDE; diff -Nru libreoffice-l10n-4.3.1~rc2/dbaccess/source/core/api/CRowSetDataColumn.cxx libreoffice-l10n-4.3.2/dbaccess/source/core/api/CRowSetDataColumn.cxx --- libreoffice-l10n-4.3.1~rc2/dbaccess/source/core/api/CRowSetDataColumn.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/dbaccess/source/core/api/CRowSetDataColumn.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -24,6 +24,7 @@ #include #include #include +#include #include using namespace dbaccess; @@ -39,16 +40,16 @@ using namespace osl; -ORowSetDataColumn::ORowSetDataColumn( const Reference < XResultSetMetaData >& _xMetaData, +ORowSetDataColumn::ORowSetDataColumn( const Reference < XResultSetMetaData >& _xMetaData, const Reference < XRow >& _xRow, const Reference < XRowUpdate >& _xRowUpdate, sal_Int32 _nPos, const Reference< XDatabaseMetaData >& _rxDBMeta, const OUString& _rDescription, const OUString& i_sLabel, - const ORowSetCacheIterator& _rColumnValue) + const boost::function< const ORowSetValue& (sal_Int32)> &_getValue) :ODataColumn(_xMetaData,_xRow,_xRowUpdate,_nPos,_rxDBMeta) - ,m_aColumnValue(_rColumnValue) + ,m_pGetValue(_getValue) ,m_sLabel(i_sLabel) ,m_aDescription(_rDescription) { @@ -105,15 +106,12 @@ { if ( PROPERTY_ID_VALUE == nHandle ) { - if ( !m_aColumnValue.isNull() && m_aColumnValue->is() ) + try + { + rValue = m_pGetValue(m_nPos).makeAny(); + } + catch(const SQLException &e) { - ::osl::Mutex* pMutex = m_aColumnValue.getMutex(); - ::osl::MutexGuard aGuard( *pMutex ); -#if OSL_DEBUG_LEVEL > 0 - ORowSetRow aRow = *m_aColumnValue; -#endif - OSL_ENSURE((sal_Int32)aRow->get().size() > m_nPos,"Pos is greater than size of vector"); - rValue = ((*m_aColumnValue)->get())[m_nPos].makeAny(); } } else if ( PROPERTY_ID_LABEL == nHandle && !m_sLabel.isEmpty() ) @@ -179,19 +177,19 @@ void ORowSetDataColumn::fireValueChange(const ORowSetValue& _rOldValue) { - if ( !m_aColumnValue.isNull() && m_aColumnValue->is() && (((*m_aColumnValue)->get())[m_nPos] != _rOldValue) ) + ORowSetValue value; + try + { + value = m_pGetValue(m_nPos); + } + catch(const SQLException &e) { - sal_Int32 nHandle = PROPERTY_ID_VALUE; - m_aOldValue = _rOldValue.makeAny(); - Any aNew = ((*m_aColumnValue)->get())[m_nPos].makeAny(); - - fire(&nHandle, &aNew, &m_aOldValue, 1, sal_False ); } - else if ( !m_aColumnValue.isNull() && !_rOldValue.isNull() ) + if ( value != _rOldValue) { - sal_Int32 nHandle = PROPERTY_ID_VALUE; + sal_Int32 nHandle(PROPERTY_ID_VALUE); m_aOldValue = _rOldValue.makeAny(); - Any aNew; + Any aNew = value.makeAny(); fire(&nHandle, &aNew, &m_aOldValue, 1, sal_False ); } diff -Nru libreoffice-l10n-4.3.1~rc2/dbaccess/source/core/api/CRowSetDataColumn.hxx libreoffice-l10n-4.3.2/dbaccess/source/core/api/CRowSetDataColumn.hxx --- libreoffice-l10n-4.3.1~rc2/dbaccess/source/core/api/CRowSetDataColumn.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/dbaccess/source/core/api/CRowSetDataColumn.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -21,12 +21,13 @@ #include "datacolumn.hxx" #include "RowSetRow.hxx" -#include "RowSetCacheIterator.hxx" #include "columnsettings.hxx" #include #include +#include + namespace dbaccess { class ORowSetDataColumn; @@ -37,7 +38,7 @@ public ORowSetDataColumn_PROP { protected: - ORowSetCacheIterator m_aColumnValue; + const boost::function< const ::connectivity::ORowSetValue& ( sal_Int32 ) > m_pGetValue; ::com::sun::star::uno::Any m_aOldValue; OUString m_sLabel; @@ -52,7 +53,7 @@ const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData >& _rxDBMeta, const OUString& _rDescription, const OUString& i_sLabel, - const ORowSetCacheIterator& _rColumnValue); + const boost::function< const ::connectivity::ORowSetValue& ( sal_Int32 ) > &_getValue); // com::sun::star::lang::XTypeProvider diff -Nru libreoffice-l10n-4.3.1~rc2/dbaccess/source/core/api/RowSet.cxx libreoffice-l10n-4.3.2/dbaccess/source/core/api/RowSet.cxx --- libreoffice-l10n-4.3.1~rc2/dbaccess/source/core/api/RowSet.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/dbaccess/source/core/api/RowSet.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -21,6 +21,7 @@ #include #include +#include #include #include "RowSet.hxx" @@ -1701,6 +1702,10 @@ aComposedUpdateTableName = composeTableName( m_xActiveConnection->getMetaData(), m_aUpdateCatalogName, m_aUpdateSchemaName, m_aUpdateTableName, false, ::dbtools::eInDataManipulation ); SAL_INFO("dbaccess", "ORowSet::execute_NoApprove_NoNewConn: creating cache" ); + if(m_pCache) + { + DELETEZ(m_pCache); + } m_pCache = new ORowSetCache( xResultSet, m_xComposer.get(), m_aContext, aComposedUpdateTableName, m_bModified, m_bNew,m_aParameterValueForCache,m_aFilter,m_nMaxRows ); if ( m_nResultSetConcurrency == ResultSetConcurrency::READ_ONLY ) { @@ -1872,7 +1877,7 @@ m_xActiveConnection->getMetaData(), aDescription, OUString(), - m_aCurrentRow); + boost::bind(&ORowSet::getInsertValue, this, _1)); aColumnMap.insert(std::make_pair(sName,0)); aColumns->get().push_back(pColumn); pColumn->setName(sName); @@ -1974,7 +1979,7 @@ m_xActiveConnection->getMetaData(), aDescription, sParseLabel, - m_aCurrentRow); + boost::bind(&ORowSet::getInsertValue, this, _1)); aColumns->get().push_back(pColumn); pColumn->setFastPropertyValue_NoBroadcast(PROPERTY_ID_ISREADONLY,makeAny(rKeyColumns.find(i) != rKeyColumns.end())); @@ -2806,7 +2811,7 @@ rParent.m_xActiveConnection->getMetaData(), aDescription, sParseLabel, - m_aCurrentRow); + boost::bind(&ORowSetClone::getValue, this, _1)); aColumns->get().push_back(pColumn); pColumn->setName(*pIter); aNames.push_back(*pIter); diff -Nru libreoffice-l10n-4.3.1~rc2/dbaccess/source/ui/querydesign/querydlg.cxx libreoffice-l10n-4.3.2/dbaccess/source/ui/querydesign/querydlg.cxx --- libreoffice-l10n-4.3.1~rc2/dbaccess/source/ui/querydesign/querydlg.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/dbaccess/source/ui/querydesign/querydlg.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -55,6 +55,11 @@ , m_xConnection(_xConnection) { get(m_pML_HelpText, "helptext"); + Size aSize(LogicToPixel(Size(179, 49), MAP_APPFONT)); + //alternatively loop through the STR_QUERY_* strings with their STR_JOIN_TYPE_HINT + //suffix to find the longest entry at runtime + m_pML_HelpText->set_height_request(aSize.Height()); + m_pML_HelpText->set_width_request(aSize.Width()); get(m_pLB_JoinType, "type"); get(m_pCBNatural, "natural"); get(m_pPB_OK, "ok"); diff -Nru libreoffice-l10n-4.3.1~rc2/dbaccess/uiconfig/ui/joindialog.ui libreoffice-l10n-4.3.2/dbaccess/uiconfig/ui/joindialog.ui --- libreoffice-l10n-4.3.1~rc2/dbaccess/uiconfig/ui/joindialog.ui 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/dbaccess/uiconfig/ui/joindialog.ui 2014-09-16 19:56:04.000000000 +0000 @@ -167,6 +167,7 @@ True False 0 + 0 True 48 diff -Nru libreoffice-l10n-4.3.1~rc2/debian/changelog libreoffice-l10n-4.3.2/debian/changelog --- libreoffice-l10n-4.3.1~rc2/debian/changelog 2014-08-27 11:16:04.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/changelog 2014-09-26 16:36:53.000000000 +0000 @@ -1,3 +1,12 @@ +libreoffice-l10n (1:4.3.2-0ubuntu1) utopic; urgency=medium + + * new upstream release + * keep mergedlibs disabled (LP: #1373928) + * adding build-essential to subsequentcheckbase should fix autopkgtest issues + * we are at LTS+1, so clear the transitionals + + -- Bjoern Michaelsen Fri, 26 Sep 2014 17:44:39 +0200 + libreoffice-l10n (1:4.3.1~rc2-0ubuntu1) utopic; urgency=medium * new upstream rc diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/debian-debug.diff libreoffice-l10n-4.3.2/debian/patches/debian-debug.diff --- libreoffice-l10n-4.3.1~rc2/debian/patches/debian-debug.diff 2014-08-27 11:11:44.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/debian-debug.diff 2014-09-26 15:54:06.000000000 +0000 @@ -16,7 +16,7 @@ new mode 100755 --- a/configure.ac +++ b/configure.ac -@@ -4015,13 +4015,19 @@ dnl Check for enable symbols option +@@ -4027,13 +4027,19 @@ dnl Check for enable symbols option dnl =================================================================== AC_MSG_CHECKING([whether to include symbols while preserve optimization]) if test -n "$enable_symbols" -a "$enable_symbols" != "no"; then diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/debian-hardened-buildflags-CPPFLAGS.diff libreoffice-l10n-4.3.2/debian/patches/debian-hardened-buildflags-CPPFLAGS.diff --- libreoffice-l10n-4.3.1~rc2/debian/patches/debian-hardened-buildflags-CPPFLAGS.diff 2014-08-27 11:11:44.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/debian-hardened-buildflags-CPPFLAGS.diff 2014-09-26 15:54:06.000000000 +0000 @@ -24,7 +24,7 @@ diff --git a/configure.ac b/configure.ac --- a/configure.ac +++ b/configure.ac -@@ -10434,6 +10434,11 @@ else +@@ -10472,6 +10472,11 @@ else fi AC_SUBST(ENABLE_VLC) diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/debian-opt.diff libreoffice-l10n-4.3.2/debian/patches/debian-opt.diff --- libreoffice-l10n-4.3.1~rc2/debian/patches/debian-opt.diff 2014-08-27 11:11:44.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/debian-opt.diff 2014-09-26 15:54:06.000000000 +0000 @@ -23,7 +23,7 @@ diff --git a/configure.ac b/configure.ac --- a/configure.ac +++ b/configure.ac -@@ -12861,6 +12861,9 @@ fi +@@ -12905,6 +12905,9 @@ fi AC_SUBST(MPL_SUBSET) diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/fix-system-lpsolve-build.diff libreoffice-l10n-4.3.2/debian/patches/fix-system-lpsolve-build.diff --- libreoffice-l10n-4.3.1~rc2/debian/patches/fix-system-lpsolve-build.diff 2014-08-27 11:11:44.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/fix-system-lpsolve-build.diff 2014-09-26 15:54:06.000000000 +0000 @@ -12,7 +12,7 @@ diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk --- a/RepositoryExternal.mk +++ b/RepositoryExternal.mk -@@ -2157,7 +2157,7 @@ ifneq ($(ENABLE_LPSOLVE),) +@@ -2176,7 +2176,7 @@ ifneq ($(ENABLE_LPSOLVE),) ifneq ($(SYSTEM_LPSOLVE),) define gb_LinkTarget__use_lpsolve @@ -24,7 +24,7 @@ diff --git a/configure.ac b/configure.ac --- a/configure.ac +++ b/configure.ac -@@ -9640,8 +9640,9 @@ if test "$ENABLE_LPSOLVE" = TRUE; then +@@ -9678,8 +9678,9 @@ if test "$ENABLE_LPSOLVE" = TRUE; then # some systems need this. Like Ubuntu.... AC_CHECK_LIB(m, floor) AC_CHECK_LIB(dl, dlopen) diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/gcj-safe-jni-h-include.diff libreoffice-l10n-4.3.2/debian/patches/gcj-safe-jni-h-include.diff --- libreoffice-l10n-4.3.1~rc2/debian/patches/gcj-safe-jni-h-include.diff 2014-08-27 11:11:44.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/gcj-safe-jni-h-include.diff 2014-09-26 15:54:06.000000000 +0000 @@ -11,7 +11,7 @@ diff --git a/configure.ac b/configure.ac --- a/configure.ac +++ b/configure.ac -@@ -7274,12 +7274,18 @@ if test -n "$ENABLE_JAVA" -a -z "$JAVAINC"; then +@@ -7303,12 +7303,18 @@ if test -n "$ENABLE_JAVA" -a -z "$JAVAINC"; then k*bsd*-gnu*) JAVAINC="-I$JAVA_HOME/include" test -d "$JAVA_HOME/include/native_thread" && JAVAINC="$JAVAINC -I$JAVA_HOME/include/native_thread" diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/gtk3-hack-explicit-gmodule.diff libreoffice-l10n-4.3.2/debian/patches/gtk3-hack-explicit-gmodule.diff --- libreoffice-l10n-4.3.1~rc2/debian/patches/gtk3-hack-explicit-gmodule.diff 2014-08-27 11:11:44.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/gtk3-hack-explicit-gmodule.diff 2014-09-26 15:54:06.000000000 +0000 @@ -15,7 +15,7 @@ diff --git a/config_host.mk.in b/config_host.mk.in --- a/config_host.mk.in +++ b/config_host.mk.in -@@ -230,6 +230,8 @@ export GTHREAD_CFLAGS=$(gb_SPACE)@GTHREAD_CFLAGS@ +@@ -234,6 +234,8 @@ export GTHREAD_CFLAGS=$(gb_SPACE)@GTHREAD_CFLAGS@ export GTHREAD_LIBS=$(gb_SPACE)@GTHREAD_LIBS@ export GTK3_CFLAGS=$(gb_SPACE)@GTK3_CFLAGS@ export GTK3_LIBS=$(gb_SPACE)@GTK3_LIBS@ @@ -27,7 +27,7 @@ diff --git a/configure.ac b/configure.ac --- a/configure.ac +++ b/configure.ac -@@ -10046,11 +10046,14 @@ if test "x$enable_gtk3" = "xyes"; then +@@ -10084,11 +10084,14 @@ if test "x$enable_gtk3" = "xyes"; then else AC_MSG_ERROR([gtk3 libraries of the correct versions, not found]) fi diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/handle-symlinks-to-icon-themes-correctly.diff libreoffice-l10n-4.3.2/debian/patches/handle-symlinks-to-icon-themes-correctly.diff --- libreoffice-l10n-4.3.1~rc2/debian/patches/handle-symlinks-to-icon-themes-correctly.diff 2014-08-27 11:11:44.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/handle-symlinks-to-icon-themes-correctly.diff 2014-09-26 15:54:06.000000000 +0000 @@ -1,4 +1,3 @@ -From c796db004d463cb60a5b4489a868ae8dd377d0df Mon Sep 17 00:00:00 2001 From: Tobias Lippert Date: Sat, 19 Jul 2014 13:39:21 +0200 Subject: [PATCH] fdo#81532 Handle symlinks to icon themes correctly @@ -6,10 +5,12 @@ - added logging for icon theme scanning. Change-Id: I799c5fc09879411020142f7808da0d9f2f63dc17 + --- + vcl/source/app/IconThemeScanner.cxx | 68 +++++++++++++++++++++++-------------- + 1 file changed, 43 insertions(+), 25 deletions(-) diff --git a/vcl/source/app/IconThemeScanner.cxx b/vcl/source/app/IconThemeScanner.cxx -index 9684bb6..29d3cd7 100644 --- a/vcl/source/app/IconThemeScanner.cxx +++ b/vcl/source/app/IconThemeScanner.cxx @@ -12,6 +12,7 @@ @@ -20,7 +21,7 @@ #include #include -@@ -20,24 +21,34 @@ +@@ -20,24 +21,34 @@ namespace vcl { namespace { @@ -42,16 +43,14 @@ - osl::FileBase::RC retvalStatus = dirItem.getFileStatus(fileStatus); + osl::FileBase::RC retvalStatus = dirItem.getFileStatus(status); if (retvalStatus != osl::FileBase::E_None) { -- return false; -- } -- -- if (!fileStatus.isDirectory()) { + SAL_WARN(LOG_AREA, "Could not determine status for file '" << file << "'."); return false; } - return true; ++ return true; +} -+ + +- if (!fileStatus.isDirectory()) { +- return false; +OUString convert_to_absolute_path(const OUString& path) +{ + salhelper::LinkResolver resolver(0); @@ -59,12 +58,13 @@ + if (rc != osl::FileBase::E_None) { + SAL_WARN(LOG_AREA, "Could not resolve path '" << path << "' to search for icon themes."); + throw std::runtime_error("Provided a recursive symlink to a icon theme directory that could not be resolved."); -+ } + } +- return true; + return resolver.m_aStatus.getFileURL(); } } -@@ -48,12 +59,20 @@ +@@ -48,12 +59,20 @@ IconThemeScanner::IconThemeScanner() bool IconThemeScanner::ScanDirectoryForIconThemes(const OUString& path) { @@ -73,13 +73,13 @@ + osl::FileStatus fileStatus(osl_FileStatus_Mask_Type); + bool couldSetFileStatus = set_file_status(fileStatus, path); + if (!couldSetFileStatus) { - return false; - } ++ return false; ++ } + + if (!fileStatus.isDirectory()) { + SAL_INFO(LOG_AREA, "Cannot search for icon themes in '"<< path << "'. It is not a directory."); -+ return false; -+ } + return false; + } + std::vector iconThemePaths = ReadIconThemesFromPath(path); if (iconThemePaths.empty()) { @@ -87,7 +87,7 @@ return false; } mFoundIconThemes.clear(); -@@ -70,8 +89,11 @@ +@@ -70,8 +89,11 @@ IconThemeScanner::AddIconThemeByPath(const OUString &url) if (!IconThemeInfo::UrlCanBeParsed(url)) { return false; } @@ -99,7 +99,7 @@ return true; } -@@ -79,6 +101,7 @@ +@@ -79,6 +101,7 @@ IconThemeScanner::AddIconThemeByPath(const OUString &url) IconThemeScanner::ReadIconThemesFromPath(const OUString& dir) { std::vector found; @@ -107,19 +107,19 @@ osl::Directory dirToScan(dir); osl::FileBase::RC retvalOpen = dirToScan.open(); -@@ -93,15 +116,12 @@ +@@ -93,15 +116,12 @@ IconThemeScanner::ReadIconThemesFromPath(const OUString& dir) if (retvalStatus != osl::FileBase::E_None) { continue; } - if (!status.isRegular()) { +- continue; +- } +- if (!FileIsValidIconTheme(status.getFileURL())) { + + OUString filename = convert_to_absolute_path(status.getFileURL()); + if (!FileIsValidIconTheme(filename)) { continue; } -- if (!FileIsValidIconTheme(status.getFileURL())) { -- continue; -- } - OUString entry; - entry = status.getFileURL(); - found.push_back(entry); @@ -127,7 +127,7 @@ } return found; } -@@ -111,20 +131,16 @@ +@@ -111,20 +131,16 @@ IconThemeScanner::FileIsValidIconTheme(const OUString& filename) { // check whether we can construct a IconThemeInfo from it if (!IconThemeInfo::UrlCanBeParsed(filename)) { @@ -152,7 +152,7 @@ if (!fileStatus.isRegular()) { return false; } -@@ -178,6 +194,8 @@ +@@ -178,6 +194,8 @@ IconThemeScanner::GetIconThemeInfo(const OUString& themeId) std::vector::iterator info = std::find_if(mFoundIconThemes.begin(), mFoundIconThemes.end(), SameTheme(themeId)); if (info == mFoundIconThemes.end()) { @@ -161,3 +161,6 @@ throw std::runtime_error("Requested information on not-installed icon theme"); } return *info; +-- +1.9.1 + diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/install-fixes.diff libreoffice-l10n-4.3.2/debian/patches/install-fixes.diff --- libreoffice-l10n-4.3.1~rc2/debian/patches/install-fixes.diff 2014-08-27 11:11:44.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/install-fixes.diff 2014-09-26 15:54:06.000000000 +0000 @@ -5,8 +5,8 @@ Change-Id: Ic90eabd2cbabb9cd8f7d764288203ea01fed94b6 --- - bin/distro-install-file-lists | 149 +----------------------------------------- - 1 file changed, 2 insertions(+), 147 deletions(-) + bin/distro-install-file-lists | 150 +----------------------------------------- + 1 file changed, 2 insertions(+), 148 deletions(-) diff --git a/bin/distro-install-file-lists b/bin/distro-install-file-lists --- a/bin/distro-install-file-lists @@ -20,7 +20,7 @@ BUILDDIR=`pwd` FILELISTSDIR="$BUILDDIR/file-lists" -@@ -378,154 +378,6 @@ if test "z$OOO_VENDOR" != "zDebian" ; then +@@ -378,154 +380,6 @@ if test "z$OOO_VENDOR" != "zDebian" ; then # the British fixes can be removed after the issue #54113 is fixed remove_duplicity_from_flists common_list.txt lang_en-GB_list.txt $INSTALLDIR/presets/config/standard.sog diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/javadoc-optional.diff libreoffice-l10n-4.3.2/debian/patches/javadoc-optional.diff --- libreoffice-l10n-4.3.1~rc2/debian/patches/javadoc-optional.diff 2014-08-27 11:11:44.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/javadoc-optional.diff 2014-09-26 15:54:06.000000000 +0000 @@ -16,7 +16,7 @@ diff --git a/configure.ac b/configure.ac --- a/configure.ac +++ b/configure.ac -@@ -1945,6 +1945,18 @@ AC_ARG_WITH( +@@ -1954,6 +1954,18 @@ AC_ARG_WITH( ],, [with_doxygen=yes]) @@ -35,7 +35,7 @@ AC_ARG_WITH(visual-studio, AS_HELP_STRING([--with-visual-studio=<2012/2010/2013>], [Specify which Visual Studio version to use in case several are -@@ -7072,35 +7084,45 @@ AC_SUBST(JAVACISGCJ) +@@ -7101,35 +7113,45 @@ AC_SUBST(JAVACISGCJ) dnl =================================================================== dnl Checks for javadoc dnl =================================================================== diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/make-package-modules-not-suck.diff libreoffice-l10n-4.3.2/debian/patches/make-package-modules-not-suck.diff --- libreoffice-l10n-4.3.1~rc2/debian/patches/make-package-modules-not-suck.diff 2014-08-27 11:11:44.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/make-package-modules-not-suck.diff 2014-09-26 15:54:06.000000000 +0000 @@ -3,16 +3,16 @@ Subject: [PATCH] make-package-modules-not-suck.diff --- - Repository.mk | 48 ++++++++++++++++++++++------------------ + Repository.mk | 45 +++++++++++++++++++++++----------------- scp2/AutoInstall.mk | 1 + scp2/InstallModule_draw.mk | 2 ++ scp2/source/draw/module_draw.scp | 5 ++++- - 4 files changed, 33 insertions(+), 23 deletions(-) + 4 files changed, 33 insertions(+), 20 deletions(-) diff --git a/Repository.mk b/Repository.mk --- a/Repository.mk +++ b/Repository.mk -@@ -149,13 +146,28 @@ endif +@@ -149,13 +149,28 @@ endif $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,base, \ abp \ @@ -42,7 +42,7 @@ date \ pricing \ sc \ -@@ -169,6 +181,13 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,calc, \ +@@ -169,6 +184,13 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,calc, \ $(if $(ENABLE_TELEPATHY),tubes) \ )) @@ -56,7 +56,7 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,graphicfilter, \ svgfilter \ flash \ -@@ -186,6 +205,7 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,impress, \ +@@ -186,6 +208,7 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,impress, \ PresenterScreen \ PresentationMinimizer \ wpftimpress \ @@ -64,7 +64,7 @@ )) $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,onlineupdate, \ -@@ -239,11 +259,8 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ +@@ -239,11 +262,8 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ ctl \ cui \ $(call gb_Helper_optional,DBCONNECTIVITY, \ @@ -77,7 +77,7 @@ deploymentmisc \ $(if $(filter-out MACOSX WNT,$(OS)),desktopbe1) \ $(if $(filter unx,$(GUIBASE)),desktop_detector) \ -@@ -266,10 +283,8 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ +@@ -266,10 +286,8 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ exp \ expwrap \ $(call gb_Helper_optional,DBCONNECTIVITY, \ @@ -88,7 +88,7 @@ fps_office \ for \ forui \ -@@ -298,7 +313,6 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ +@@ -298,7 +316,6 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ ira \ itg \ iti \ @@ -96,7 +96,7 @@ $(if $(ENABLE_KAB),kab1) \ $(if $(ENABLE_KAB),kabdrv1) \ ldapbe2 \ -@@ -313,8 +327,6 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ +@@ -313,8 +330,6 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ msfilter \ $(if $(DISABLE_SCRIPTING),,msforms) \ mtfrenderer \ @@ -105,7 +105,7 @@ odfflatxml \ offacc \ oox \ -@@ -328,13 +340,8 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ +@@ -328,13 +343,8 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ sb \ $(call gb_Helper_optional,DBCONNECTIVITY,sdbt) \ scn \ @@ -119,7 +119,7 @@ sot \ spell \ $(if $(ENABLE_HEADLESS),,spl) \ -@@ -345,7 +352,6 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ +@@ -345,7 +355,6 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ svt \ svx \ svxcore \ @@ -127,7 +127,7 @@ syssh \ $(if $(ENABLE_TDEAB),tdeab1) \ $(if $(ENABLE_TDEAB),tdeabdrv1) \ -@@ -408,6 +414,7 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,writer, \ +@@ -408,6 +417,7 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,writer, \ hwp \ $(if $(ENABLE_LWP),lwpft) \ msword \ @@ -135,7 +135,7 @@ swd \ swui \ t602filter \ -@@ -516,13 +523,11 @@ $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo, \ +@@ -516,13 +526,11 @@ $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo, \ cached1 \ collator_data \ comphelper \ @@ -149,7 +149,7 @@ i18nlangtag \ i18nutil \ index_data \ -@@ -538,7 +543,6 @@ $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo, \ +@@ -538,7 +546,6 @@ $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo, \ package2 \ $(if $(and $(filter unx,$(GUIBASE)),$(filter-out MACOSX,$(OS))),recentfile) \ $(if $(DISABLE_SCRIPTING),,scriptframe) \ diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/mergedlibs-circular-deps.diff libreoffice-l10n-4.3.2/debian/patches/mergedlibs-circular-deps.diff --- libreoffice-l10n-4.3.1~rc2/debian/patches/mergedlibs-circular-deps.diff 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/mergedlibs-circular-deps.diff 2014-09-26 15:54:06.000000000 +0000 @@ -0,0 +1,24 @@ +From: Bjoern Michaelsen +Date: Tue, 23 Sep 2014 13:52:37 +0200 +Subject: [PATCH] remove circular deps on mergedlibs + +- add dbtools to mergedlibs + +--- + solenv/gbuild/extensions/pre_MergedLibsList.mk | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/solenv/gbuild/extensions/pre_MergedLibsList.mk b/solenv/gbuild/extensions/pre_MergedLibsList.mk +--- a/solenv/gbuild/extensions/pre_MergedLibsList.mk ++++ b/solenv/gbuild/extensions/pre_MergedLibsList.mk +@@ -112,6 +112,7 @@ gb_MERGEDLIBS := \ + canvastools \ + configmgr \ + cppcanvas \ ++ $(call gb_Helper_optional,DBCONNECTIVITY,dbtools) \ + deployment \ + deploymentmisc \ + $(if $(filter-out MACOSX WNT,$(OS)),desktopbe1) \ +-- +1.9.1 + diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/prefer-python3.diff libreoffice-l10n-4.3.2/debian/patches/prefer-python3.diff --- libreoffice-l10n-4.3.1~rc2/debian/patches/prefer-python3.diff 2014-08-27 11:11:44.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/prefer-python3.diff 2014-09-26 15:54:06.000000000 +0000 @@ -11,7 +11,7 @@ diff --git a/configure.ac b/configure.ac --- a/configure.ac +++ b/configure.ac -@@ -8121,7 +8121,10 @@ if test $enable_python = system; then +@@ -8159,7 +8159,10 @@ if test $enable_python = system; then # we actually do check anew. unset PYTHON am_cv_pathless_PYTHON ac_cv_path_PYTHON am_cv_python_version am_cv_python_platform am_cv_python_pythondir am_cv_python_pyexecdir # This causes an error if no python command is found diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/series libreoffice-l10n-4.3.2/debian/patches/series --- libreoffice-l10n-4.3.1~rc2/debian/patches/series 2014-08-27 11:11:44.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/series 2014-09-26 15:54:06.000000000 +0000 @@ -37,3 +37,4 @@ #lp-1219245.diff #fdo-77128-lp-1300283.diff #bsh-js-fix.diff +mergedlibs-circular-deps.diff diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/system-coinmp.diff libreoffice-l10n-4.3.2/debian/patches/system-coinmp.diff --- libreoffice-l10n-4.3.1~rc2/debian/patches/system-coinmp.diff 2014-08-27 11:11:44.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/system-coinmp.diff 2014-09-26 15:54:06.000000000 +0000 @@ -42,9 +42,9 @@ +export SYSTEM_COINMP=@SYSTEM_COINMP@ +export COINMP_CFLAGS=@COINMP_CFLAGS@ +export COINMP_LIBS=@COINMP_LIBS@ + export ENABLE_COLLADA=@ENABLE_COLLADA@ export ENABLE_CRASHDUMP=@ENABLE_CRASHDUMP@ export ENABLE_CUPS=@ENABLE_CUPS@ - export ENABLE_CURL=@ENABLE_CURL@ diff --git a/configure.ac b/configure.ac index e91773f..46d560f 100644 --- a/configure.ac diff -Nru libreoffice-l10n-4.3.1~rc2/debian/patches/wheezy-backports-python.diff libreoffice-l10n-4.3.2/debian/patches/wheezy-backports-python.diff --- libreoffice-l10n-4.3.1~rc2/debian/patches/wheezy-backports-python.diff 2014-08-27 11:11:44.000000000 +0000 +++ libreoffice-l10n-4.3.2/debian/patches/wheezy-backports-python.diff 2014-09-26 15:54:06.000000000 +0000 @@ -12,7 +12,7 @@ diff --git a/configure.ac b/configure.ac --- a/configure.ac +++ b/configure.ac -@@ -8041,7 +8041,7 @@ no|disable) +@@ -8079,7 +8079,7 @@ no|disable) # Unset variables set by the above AM_PATH_PYTHON so that # we actually do check anew. unset PYTHON am_cv_pathless_PYTHON ac_cv_path_PYTHON am_cv_python_version am_cv_python_platform am_cv_python_pythondir am_cv_python_pyexecdir @@ -21,7 +21,7 @@ if test "$PYTHON" = :; then AC_MSG_RESULT([internal]) enable_python=internal -@@ -8099,7 +8099,7 @@ if test $enable_python = system; then +@@ -8137,7 +8137,7 @@ if test $enable_python = system; then # we actually do check anew. unset PYTHON am_cv_pathless_PYTHON ac_cv_path_PYTHON am_cv_python_version am_cv_python_platform am_cv_python_pythondir am_cv_python_pyexecdir # This causes an error if no python command is found diff -Nru libreoffice-l10n-4.3.1~rc2/desktop/source/app/cmdlinehelp.cxx libreoffice-l10n-4.3.2/desktop/source/app/cmdlinehelp.cxx --- libreoffice-l10n-4.3.1~rc2/desktop/source/app/cmdlinehelp.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/desktop/source/app/cmdlinehelp.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -109,14 +109,17 @@ "--unaccept=\n"\ " Close an acceptor that was created with --accept=\n"\ " Use --unnaccept=all to close all open acceptors\n"\ - "--infilter=\n"\ + "--infilter=[:filter_options]\n"\ " Force an input filter type if possible\n"\ " Eg. --infilter=\"Calc Office Open XML\"\n"\ - "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files\n"\ + " --infilter=\"Text (encoded):UTF8,LF,,,\"\n"\ + "--convert-to output_file_extension[:output_filter_name[:output_filter_options]] [--outdir output_dir] files\n"\ " Batch convert files.\n"\ " If --outdir is not specified then current working dir is used as output_dir.\n"\ " Eg. --convert-to pdf *.doc\n"\ " --convert-to pdf:writer_pdf_Export --outdir /home/user *.doc\n"\ + " --convert-to \"html:XHTML Writer File:UTF8\" *.doc\n"\ + " --convert-to \"txt:Text (encoded):UTF8\" *.doc\n"\ "--print-to-file [-printer-name printer_name] [--outdir output_dir] files\n"\ " Batch print files to file.\n"\ " If --outdir is not specified then current working dir is used as output_dir.\n"\ diff -Nru libreoffice-l10n-4.3.1~rc2/desktop/source/app/dispatchwatcher.cxx libreoffice-l10n-4.3.2/desktop/source/app/dispatchwatcher.cxx --- libreoffice-l10n-4.3.1~rc2/desktop/source/app/dispatchwatcher.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/desktop/source/app/dispatchwatcher.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -375,7 +375,21 @@ sal_Int32 nIndex = aArgs.getLength(); aArgs.realloc(nIndex+1); aArgs[nIndex].Name = "FilterName"; - aArgs[nIndex].Value <<= aForcedInputFilter; + + sal_Int32 nFilterOptionsIndex = aForcedInputFilter.indexOf( ':' ); + if( 0 < nFilterOptionsIndex ) + { + aArgs[nIndex].Value <<= aForcedInputFilter.copy( 0, nFilterOptionsIndex ); + + nIndex = aArgs.getLength(); + aArgs.realloc(nIndex+1); + aArgs[nIndex].Name = "FilterOptions"; + aArgs[nIndex].Value <<= aForcedInputFilter.copy( nFilterOptionsIndex+1 ); + } + else + { + aArgs[nIndex].Value <<= aForcedInputFilter; + } } // This is a synchron loading of a component so we don't have to deal with our statusChanged listener mechanism. @@ -449,12 +463,23 @@ aFilter = impl_GuessFilter( aName, aOutFile ); } - Sequence conversionProperties( 2 ); + sal_Int32 nFilterOptionsIndex = aFilter.indexOf( ':' ); + Sequence conversionProperties( 0 < nFilterOptionsIndex ? 3 : 2 ); conversionProperties[0].Name = "Overwrite"; conversionProperties[0].Value <<= sal_True; conversionProperties[1].Name = "FilterName"; - conversionProperties[1].Value <<= aFilter; + if( 0 < nFilterOptionsIndex ) + { + conversionProperties[1].Value <<= aFilter.copy( 0, nFilterOptionsIndex ); + + conversionProperties[2].Name = "FilterOptions"; + conversionProperties[2].Value <<= aFilter.copy( nFilterOptionsIndex+1 ); + } + else + { + conversionProperties[1].Value <<= aFilter; + } OUString aTempName; FileBase::getSystemPathFromFileURL( aName, aTempName ); diff -Nru libreoffice-l10n-4.3.1~rc2/desktop/source/deployment/misc/dp_platform.cxx libreoffice-l10n-4.3.2/desktop/source/deployment/misc/dp_platform.cxx --- libreoffice-l10n-4.3.1~rc2/desktop/source/deployment/misc/dp_platform.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/desktop/source/deployment/misc/dp_platform.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -35,6 +35,7 @@ #define PLATFORM_LINUX_SPARC "linux_sparc" #define PLATFORM_LINUX_POWERPC "linux_powerpc" #define PLATFORM_LINUX_POWERPC64 "linux_powerpc64" +#define PLATFORM_LINUX_POWERPC64_LE "linux_powerpc64_le" #define PLATFORM_LINUX_ARM_EABI "linux_arm_eabi" #define PLATFORM_LINUX_ARM_OABI "linux_arm_oabi" #define PLATFORM_LINUX_MIPS_EL "linux_mips_el" @@ -129,6 +130,8 @@ ret = checkOSandCPU("Linux", "PowerPC"); else if (token == PLATFORM_LINUX_POWERPC64) ret = checkOSandCPU("Linux", "PowerPC_64"); + else if (token == PLATFORM_LINUX_POWERPC64_LE) + ret = checkOSandCPU("Linux", "PowerPC_64_LE"); else if (token == PLATFORM_LINUX_ARM_EABI) ret = checkOSandCPU("Linux", "ARM_EABI"); else if (token == PLATFORM_LINUX_ARM_OABI) diff -Nru libreoffice-l10n-4.3.1~rc2/download.lst libreoffice-l10n-4.3.2/download.lst --- libreoffice-l10n-4.3.1~rc2/download.lst 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/download.lst 2014-09-16 19:56:04.000000000 +0000 @@ -61,7 +61,7 @@ export HARFBUZZ_MD5SUM := a4a9b548577e2ee22f0887937da5fd6c export HARFBUZZ_TARBALL := harfbuzz-0.9.23.tar.bz2 export HSQLDB_TARBALL := 17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip -export HUNSPELL_TARBALL := 3121aaf3e13e5d88dfff13fb4a5f1ab8-hunspell-1.3.2.tar.gz +export HUNSPELL_TARBALL := 4967da60b23413604c9e563beacc63b4-hunspell-1.3.3.tar.gz export HYPHEN_TARBALL := a2f6010987e1c601274ab5d63b72c944-hyphen-2.8.4.tar.gz export ICU_TARBALL := b73baa6fbdfef197608d1f69300919b9-icu4c-53_1-src.tgz export JFREEREPORT_FLOW_ENGINE_TARBALL := ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip @@ -87,8 +87,8 @@ export LIBEOT_MD5SUM := aa24f5dd2a2992f4a116aa72af817548 export LIBEOT_TARBALL := libeot-0.01.tar.bz2 export LIBEXTTEXTCAT_TARBALL := ae330b9493bd4503ac390106ff6060d7-libexttextcat-3.4.3.tar.bz2 -export LIBGLTF_MD5SUM := ca5436e916bfe70694adfe2607782786 -export LIBGLTF_TARBALL := libgltf-0.0.0.tar.bz2 +export LIBGLTF_MD5SUM := 03821c9c827e647fb5fedb12496e0067 +export LIBGLTF_TARBALL := libgltf-0.0.1.tar.bz2 export LIBLANGTAG_TARBALL := 36271d3fa0d9dec1632029b6d7aac925-liblangtag-0.5.1.tar.bz2 export LIBXMLSEC_TARBALL := 1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz export LIBXML_TARBALL := 9c0cfef285d5c4a5c80d00904ddab380-libxml2-2.9.1.tar.gz diff -Nru libreoffice-l10n-4.3.1~rc2/embeddedobj/source/inc/oleembobj.hxx libreoffice-l10n-4.3.2/embeddedobj/source/inc/oleembobj.hxx --- libreoffice-l10n-4.3.1~rc2/embeddedobj/source/inc/oleembobj.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/embeddedobj/source/inc/oleembobj.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -191,6 +191,7 @@ // if the following member is set, the object works in wrapper mode ::com::sun::star::uno::Reference< ::com::sun::star::embed::XEmbeddedObject > m_xWrappedObject; bool m_bTriedConversion; + OUString m_aFilterName; // if m_bTriedConversion, then the filter detected by that ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > m_xParent; diff -Nru libreoffice-l10n-4.3.1~rc2/embeddedobj/source/msole/oleembed.cxx libreoffice-l10n-4.3.2/embeddedobj/source/msole/oleembed.cxx --- libreoffice-l10n-4.3.1~rc2/embeddedobj/source/msole/oleembed.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/embeddedobj/source/msole/oleembed.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -265,18 +265,18 @@ // the stream must be seekable uno::Reference< io::XSeekable > xSeekable( m_xObjectStream, uno::UNO_QUERY_THROW ); xSeekable->seek( 0 ); - OUString aFilterName = OwnView_Impl::GetFilterNameFromExtentionAndInStream( m_xFactory, OUString(), m_xObjectStream->getInputStream() ); + m_aFilterName = OwnView_Impl::GetFilterNameFromExtentionAndInStream( m_xFactory, OUString(), m_xObjectStream->getInputStream() ); // use the solution only for OOXML format currently - if ( !aFilterName.isEmpty() - && ( aFilterName == "Calc MS Excel 2007 XML" || aFilterName == "Impress MS PowerPoint 2007 XML" || aFilterName == "MS Word 2007 XML" ) ) + if ( !m_aFilterName.isEmpty() + && ( m_aFilterName == "Calc MS Excel 2007 XML" || m_aFilterName == "Impress MS PowerPoint 2007 XML" || m_aFilterName == "MS Word 2007 XML" ) ) { uno::Reference< container::XNameAccess > xFilterFactory( m_xFactory->createInstance("com.sun.star.document.FilterFactory"), uno::UNO_QUERY_THROW ); OUString aDocServiceName; - uno::Any aFilterAnyData = xFilterFactory->getByName( aFilterName ); + uno::Any aFilterAnyData = xFilterFactory->getByName( m_aFilterName ); uno::Sequence< beans::PropertyValue > aFilterData; if ( aFilterAnyData >>= aFilterData ) { @@ -309,7 +309,7 @@ aArgs[1].Name = "ReadOnly"; aArgs[1].Value <<= sal_True; aArgs[2].Name = "FilterName"; - aArgs[2].Value <<= aFilterName; + aArgs[2].Value <<= m_aFilterName; aArgs[3].Name = "URL"; aArgs[3].Value <<= OUString( "private:stream" ); aArgs[4].Name = "InputStream"; @@ -838,7 +838,7 @@ } } - if ( !m_pOwnView && m_xObjectStream.is() ) + if ( !m_pOwnView && m_xObjectStream.is() && m_aFilterName != "Text" ) { try { uno::Reference< io::XSeekable > xSeekable( m_xObjectStream, uno::UNO_QUERY ); @@ -859,7 +859,7 @@ } } - if ( !m_pOwnView || !m_pOwnView->Open() ) + if ( m_aFilterName != "Text" && (!m_pOwnView || !m_pOwnView->Open()) ) { //Make a RO copy and see if the OS can find something to at //least display the content for us diff -Nru libreoffice-l10n-4.3.1~rc2/extensions/source/bibliography/toolbar.cxx libreoffice-l10n-4.3.2/extensions/source/bibliography/toolbar.cxx --- libreoffice-l10n-4.3.1~rc2/extensions/source/bibliography/toolbar.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/extensions/source/bibliography/toolbar.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -220,15 +220,13 @@ aEdQuery.Show(); OUString aStr=GetItemText(TBC_FT_SOURCE); - Rectangle aRect=GetItemRect(TBC_FT_SOURCE); aFtSource.SetText(aStr); - aFtSource.SetSizePixel(aRect.GetSize()); + aFtSource.SetSizePixel(aFtSource.get_preferred_size()); aFtSource.SetBackground(Wallpaper( COL_TRANSPARENT )); aStr=GetItemText(TBC_FT_QUERY); - aRect=GetItemRect(TBC_FT_QUERY); aFtQuery.SetText(aStr); - aFtQuery.SetSizePixel(aRect.GetSize()); + aFtQuery.SetSizePixel(aFtQuery.get_preferred_size()); aFtQuery.SetBackground(Wallpaper( COL_TRANSPARENT )); SetItemWindow(TBC_FT_SOURCE,&aFtSource); diff -Nru libreoffice-l10n-4.3.1~rc2/external/hunspell/hunspell-1.3.2-compound.patch libreoffice-l10n-4.3.2/external/hunspell/hunspell-1.3.2-compound.patch --- libreoffice-l10n-4.3.1~rc2/external/hunspell/hunspell-1.3.2-compound.patch 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/hunspell/hunspell-1.3.2-compound.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ ---- misc/hunspell-1.3.2/src/hunspell/affixmgr.cxx 2010-02-27 12:59:53.000000000 +0100 -+++ misc/build/hunspell-1.3.2/src/hunspell/affixmgr.cxx 2012-09-18 11:50:04.535803282 +0200 -@@ -2125,7 +2125,7 @@ - } - - if (!rv) { -- if (onlycpdrule) break; -+ if (onlycpdrule && strlen(*result) > MAXLNLEN/10) break; - if (compoundflag && - !(rv = prefix_check(st, i, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN, compoundflag))) { - if (((rv = suffix_check(st, i, 0, NULL, NULL, 0, NULL, diff -Nru libreoffice-l10n-4.3.1~rc2/external/hunspell/hunspell-1.3.2-literal.patch libreoffice-l10n-4.3.2/external/hunspell/hunspell-1.3.2-literal.patch --- libreoffice-l10n-4.3.1~rc2/external/hunspell/hunspell-1.3.2-literal.patch 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/hunspell/hunspell-1.3.2-literal.patch 2014-09-16 19:56:04.000000000 +0000 @@ -7,5 +7,5 @@ -#define HUNSPELL_PIPE_HEADING "@(#) International Ispell Version 3.2.06 (but really Hunspell "VERSION")\n" +#define HUNSPELL_PIPE_HEADING "@(#) International Ispell Version 3.2.06 (but really Hunspell " VERSION ")\n" #define HUNSPELL_HEADING "Hunspell " - - //for debugging only + #define ODF_EXT "odt|ott|odp|otp|odg|otg|ods|ots" + #define ENTITY_APOS "'" diff -Nru libreoffice-l10n-4.3.1~rc2/external/hunspell/hunspell-android.patch libreoffice-l10n-4.3.2/external/hunspell/hunspell-android.patch --- libreoffice-l10n-4.3.1~rc2/external/hunspell/hunspell-android.patch 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/hunspell/hunspell-android.patch 2014-09-16 19:56:04.000000000 +0000 @@ -18,25 +18,3 @@ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ ---- misc/hunspell-1.3.2/src/tools/munch.c -+++ misc/build/hunspell-1.3.2/src/tools/munch.c -@@ -8,7 +8,7 @@ - #include - #include - #include --#ifdef __linux__ -+#if defined(__linux__) && !defined(__ANDROID__) - #include - #include - #include ---- misc/hunspell-1.3.2/src/tools/unmunch.c -+++ misc/build/hunspell-1.3.2/src/tools/unmunch.c -@@ -8,7 +8,7 @@ - #include - #include - #include --#ifdef __linux__ -+#if defined(__linux__) && !defined(__ANDROID__) - #include - #include - #include diff -Nru libreoffice-l10n-4.3.1~rc2/external/hunspell/hunspell-fdo48017-wfopen.patch libreoffice-l10n-4.3.2/external/hunspell/hunspell-fdo48017-wfopen.patch --- libreoffice-l10n-4.3.1~rc2/external/hunspell/hunspell-fdo48017-wfopen.patch 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/hunspell/hunspell-fdo48017-wfopen.patch 2014-09-16 19:56:04.000000000 +0000 @@ -1,115 +1,19 @@ diff -ru hunspell/src/hunspell/csutil.cxx build/hunspell/src/hunspell/csutil.cxx --- hunspell/src/hunspell/csutil.cxx 2011-02-02 11:35:43.000000000 +0100 +++ build/hunspell/src/hunspell/csutil.cxx 2014-04-24 19:42:01.373285409 +0200 -@@ -17,6 +17,11 @@ - unsigned short clower; - }; - -+#ifdef _WIN32 -+#include -+#include -+#endif -+ - #ifdef OPENOFFICEORG - # include - #else -@@ -51,6 +51,26 @@ - static struct unicode_info2 * utf_tbl = NULL; - static int utf_tbl_count = 0; // utf_tbl can be used by multiple Hunspell instances - -+FILE * myfopen(const char * path, const char * mode) { -+#ifdef _WIN32 -+#define WIN32_LONG_PATH_PREFIX "\\\\?\\" -+ if (strncmp(path, WIN32_LONG_PATH_PREFIX, 4) == 0) { -+ int len = MultiByteToWideChar(CP_UTF8, 0, path, -1, NULL, 0); -+ wchar_t *buff = (wchar_t *) malloc(len * sizeof(wchar_t)); +@@ -57,9 +57,14 @@ + if (strncmp(path, WIN32_LONG_PATH_PREFIX, 4) == 0) { + int len = MultiByteToWideChar(CP_UTF8, 0, path, -1, NULL, 0); + wchar_t *buff = (wchar_t *) malloc(len * sizeof(wchar_t)); + wchar_t *buff2 = (wchar_t *) malloc(len * sizeof(wchar_t)); + FILE * f = NULL; -+ MultiByteToWideChar(CP_UTF8, 0, path, -1, buff, len); + MultiByteToWideChar(CP_UTF8, 0, path, -1, buff, len); +- FILE * f = _wfopen(buff, (strcmp(mode, "r") == 0) ? L"r" : L"rb"); + if (_wfullpath( buff2, buff, len ) != NULL) { + f = _wfopen(buff2, (strcmp(mode, "r") == 0) ? L"r" : L"rb"); + } -+ free(buff); + free(buff); + free(buff2); -+ return f; -+ } -+#endif -+ return fopen(path, mode); -+} -+ - /* only UTF-16 (BMP) implementation */ - char * u16_u8(char * dest, int size, const w_char * src, int srclen) { - signed char * u8 = (signed char *)dest; -diff -ru hunspell/src/hunspell/csutil.hxx build/hunspell/src/hunspell/csutil.hxx ---- hunspell/src/hunspell/csutil.hxx 2010-09-06 09:58:53.000000000 +0200 -+++ build/hunspell/src/hunspell/csutil.hxx 2014-04-24 19:42:01.373285409 +0200 -@@ -52,6 +52,9 @@ - #define FORBIDDENWORD 65510 - #define ONLYUPCASEFLAG 65511 - -+// fopen or optional _wfopen to fix long pathname problem of WIN32 -+LIBHUNSPELL_DLL_EXPORTED FILE * myfopen(const char * path, const char * mode); -+ - // convert UTF-16 characters to UTF-8 - LIBHUNSPELL_DLL_EXPORTED char * u16_u8(char * dest, int size, const w_char * src, int srclen); - -diff -ru hunspell/src/hunspell/dictmgr.cxx build/hunspell/src/hunspell/dictmgr.cxx ---- hunspell/src/hunspell/dictmgr.cxx 2010-06-02 21:33:59.000000000 +0200 -+++ build/hunspell/src/hunspell/dictmgr.cxx 2014-04-24 19:42:01.381285408 +0200 -@@ -5,6 +5,7 @@ - #include - - #include "dictmgr.hxx" -+#include "csutil.hxx" - - DictMgr::DictMgr(const char * dictpath, const char * etype) : numdict(0) - { -@@ -57,7 +58,7 @@ - - // open the dictionary list file - FILE * dictlst; -- dictlst = fopen(dictpath,"r"); -+ dictlst = myfopen(dictpath,"r"); - if (!dictlst) { - return 1; + return f; } -diff -ru hunspell/src/hunspell/filemgr.cxx build/hunspell/src/hunspell/filemgr.cxx ---- hunspell/src/hunspell/filemgr.cxx 2010-04-14 11:42:03.000000000 +0200 -+++ build/hunspell/src/hunspell/filemgr.cxx 2014-04-25 00:44:05.049789586 +0200 -@@ -6,6 +6,7 @@ - #include - - #include "filemgr.hxx" -+#include "csutil.hxx" - - int FileMgr::fail(const char * err, const char * par) { - fprintf(stderr, err, par); -@@ -15,7 +16,7 @@ - FileMgr::FileMgr(const char * file, const char * key) { - linenum = 0; - hin = NULL; -- fin = fopen(file, "r"); -+ fin = myfopen(file, "r"); - if (!fin) { - // check hzipped file - char * st = (char *) malloc(strlen(file) + strlen(HZIP_EXTENSION) + 1); -diff -ru hunspell/src/hunspell/hunzip.cxx build/hunspell/src/hunspell/hunzip.cxx ---- hunspell/src/hunspell/hunzip.cxx 2010-04-27 16:07:14.000000000 +0200 -+++ build/hunspell/src/hunspell/hunzip.cxx 2014-04-24 19:42:01.381285408 +0200 -@@ -3,6 +3,7 @@ - #include - - #include "hunzip.hxx" -+#include "csutil.hxx" - - #define CODELEN 65536 - #define BASEBITREC 5000 -@@ -38,7 +38,7 @@ - - if (!filename) return -1; - -- fin = fopen(filename, "rb"); -+ fin = myfopen(filename, "rb"); - if (!fin) return -1; - - // read magic number + #endif diff -Nru libreoffice-l10n-4.3.1~rc2/external/hunspell/hunspell.rhbz918938.patch libreoffice-l10n-4.3.2/external/hunspell/hunspell.rhbz918938.patch --- libreoffice-l10n-4.3.1~rc2/external/hunspell/hunspell.rhbz918938.patch 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/hunspell/hunspell.rhbz918938.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,72 +0,0 @@ ---- misc/hunspell-1.3.2/src/hunspell/hunspell.cxx 2011-02-02 12:04:29.000000000 +0000 -+++ misc/build/hunspell-1.3.2/src/hunspell/hunspell.cxx 2013-03-13 16:50:50.667928521 +0000 -@@ -12,6 +12,8 @@ - #endif - #include "csutil.hxx" - -+#include -+ - Hunspell::Hunspell(const char * affpath, const char * dpath, const char * key) - { - encoding = NULL; -@@ -1710,6 +1712,19 @@ - return n; - } - -+namespace -+{ -+ void myrep(std::string& str, const std::string& search, const std::string& replace) -+ { -+ size_t pos = 0; -+ while ((pos = str.find(search, pos)) != std::string::npos) -+ { -+ str.replace(pos, search.length(), replace); -+ pos += replace.length(); -+ } -+ } -+} -+ - int Hunspell::spellml(char*** slst, const char * word) - { - char *q, *q2; -@@ -1721,26 +1736,26 @@ - q2 = strstr(q2, "'), MAXWORDUTF8LEN - 10)) n = analyze(slst, cw); - if (n == 0) return 0; - // convert the result to ana1ana2 format -- for (int i = 0; i < n; i++) s+= strlen((*slst)[i]); -- char * r = (char *) malloc(6 + 5 * s + 7 * n + 7 + 1); // XXX 5*s->&->& -- if (!r) return 0; -- strcpy(r, ""); -+ std::string r; -+ r.append(""); - for (int i = 0; i < n; i++) { -- int l = strlen(r); -- strcpy(r + l, ""); -- strcpy(r + l + 3, (*slst)[i]); -- mystrrep(r + l + 3, "\t", " "); -- mystrrep(r + l + 3, "<", "<"); -- mystrrep(r + l + 3, "&", "&"); -- strcat(r, ""); -+ r.append(""); -+ -+ std::string entry((*slst)[i]); - free((*slst)[i]); -+ myrep(entry, "\t", " "); -+ myrep(entry, "&", "&"); -+ myrep(entry, "<", "<"); -+ r.append(entry); -+ -+ r.append(""); - } -- strcat(r, ""); -- (*slst)[0] = r; -+ r.append(""); -+ (*slst)[0] = mystrdup(r.c_str()); - return 1; - } else if (check_xml_par(q, "type=", "stem")) { - if (get_xml_par(cw, strchr(q2, '>'), MAXWORDUTF8LEN - 1)) return stem(slst, cw); diff -Nru libreoffice-l10n-4.3.1~rc2/external/hunspell/hunspell-twoaffixcompound.patch libreoffice-l10n-4.3.2/external/hunspell/hunspell-twoaffixcompound.patch --- libreoffice-l10n-4.3.1~rc2/external/hunspell/hunspell-twoaffixcompound.patch 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/hunspell/hunspell-twoaffixcompound.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,80 +0,0 @@ ---- misc/hunspell-1.3.2/src/hunspell/affixmgr.cxx 2010-06-17 15:56:41.000000000 +0200 -+++ misc/build/hunspell-1.3.2/src/hunspell/affixmgr.cxx 2011-02-10 20:47:22.000000000 +0100 -@@ -48,6 +48,7 @@ - compoundroot = FLAG_NULL; // compound word signing flag - compoundpermitflag = FLAG_NULL; // compound permitting flag for suffixed word - compoundforbidflag = FLAG_NULL; // compound fordidden flag for suffixed word -+ compoundmoresuffixes = 0; // allow more suffixes within compound words - checkcompounddup = 0; // forbid double words in compounds - checkcompoundrep = 0; // forbid bad compounds (may be non compound word with a REP substitution) - checkcompoundcase = 0; // forbid upper and lowercase combinations at word bounds -@@ -404,6 +405,10 @@ - } - } - -+ if (strncmp(line,"COMPOUNDMORESUFFIXES",20) == 0) { -+ compoundmoresuffixes = 1; -+ } -+ - if (strncmp(line,"CHECKCOMPOUNDDUP",16) == 0) { - checkcompounddup = 1; - } -@@ -1626,8 +1631,9 @@ - if (onlycpdrule) break; - if (compoundflag && - !(rv = prefix_check(st, i, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN, compoundflag))) { -- if ((rv = suffix_check(st, i, 0, NULL, NULL, 0, NULL, -- FLAG_NULL, compoundflag, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN)) && !hu_mov_rule && -+ if (((rv = suffix_check(st, i, 0, NULL, NULL, 0, NULL, -+ FLAG_NULL, compoundflag, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN)) || -+ (compoundmoresuffixes && (rv = suffix_check_twosfx(st, i, 0, NULL, compoundflag)))) && !hu_mov_rule && - sfx->getCont() && - ((compoundforbidflag && TESTAFF(sfx->getCont(), compoundforbidflag, - sfx->getContLen())) || (compoundend && -@@ -1640,9 +1646,11 @@ - if (rv || - (((wordnum == 0) && compoundbegin && - ((rv = suffix_check(st, i, 0, NULL, NULL, 0, NULL, FLAG_NULL, compoundbegin, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN)) || -+ (compoundmoresuffixes && (rv = suffix_check_twosfx(st, i, 0, NULL, compoundbegin))) || // twofold suffixes + compound - (rv = prefix_check(st, i, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN, compoundbegin)))) || - ((wordnum > 0) && compoundmiddle && - ((rv = suffix_check(st, i, 0, NULL, NULL, 0, NULL, FLAG_NULL, compoundmiddle, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN)) || -+ (compoundmoresuffixes && (rv = suffix_check_twosfx(st, i, 0, NULL, compoundmiddle))) || // twofold suffixes + compound - (rv = prefix_check(st, i, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN, compoundmiddle))))) - ) checked_prefix = 1; - // else check forbiddenwords and needaffix -@@ -2118,8 +2126,9 @@ - if (onlycpdrule) break; - if (compoundflag && - !(rv = prefix_check(st, i, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN, compoundflag))) { -- if ((rv = suffix_check(st, i, 0, NULL, NULL, 0, NULL, -- FLAG_NULL, compoundflag, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN)) && !hu_mov_rule && -+ if (((rv = suffix_check(st, i, 0, NULL, NULL, 0, NULL, -+ FLAG_NULL, compoundflag, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN)) || -+ (compoundmoresuffixes && (rv = suffix_check_twosfx(st, i, 0, NULL, compoundflag)))) && !hu_mov_rule && - sfx->getCont() && - ((compoundforbidflag && TESTAFF(sfx->getCont(), compoundforbidflag, - sfx->getContLen())) || (compoundend && -@@ -2132,9 +2141,11 @@ - if (rv || - (((wordnum == 0) && compoundbegin && - ((rv = suffix_check(st, i, 0, NULL, NULL, 0, NULL, FLAG_NULL, compoundbegin, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN)) || -+ (compoundmoresuffixes && (rv = suffix_check_twosfx(st, i, 0, NULL, compoundbegin))) || // twofold suffix+compound - (rv = prefix_check(st, i, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN, compoundbegin)))) || - ((wordnum > 0) && compoundmiddle && - ((rv = suffix_check(st, i, 0, NULL, NULL, 0, NULL, FLAG_NULL, compoundmiddle, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN)) || -+ (compoundmoresuffixes && (rv = suffix_check_twosfx(st, i, 0, NULL, compoundmiddle))) || // twofold suffix+compound - (rv = prefix_check(st, i, hu_mov_rule ? IN_CPD_OTHER : IN_CPD_BEGIN, compoundmiddle))))) - ) { - // char * p = prefix_check_morph(st, i, 0, compound); ---- misc/hunspell-1.3.2/src/hunspell/affixmgr.hxx 2010-06-17 15:56:41.000000000 +0200 -+++ misc/build/hunspell-1.3.2/src/hunspell/affixmgr.hxx 2011-02-10 20:47:22.000000000 +0100 -@@ -41,6 +41,7 @@ - FLAG compoundroot; - FLAG compoundforbidflag; - FLAG compoundpermitflag; -+ int compoundmoresuffixes; - int checkcompounddup; - int checkcompoundrep; - int checkcompoundcase; - diff -Nru libreoffice-l10n-4.3.1~rc2/external/hunspell/hunspell-wundef.patch.1 libreoffice-l10n-4.3.2/external/hunspell/hunspell-wundef.patch.1 --- libreoffice-l10n-4.3.1~rc2/external/hunspell/hunspell-wundef.patch.1 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/hunspell/hunspell-wundef.patch.1 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ ---- a/src/hunspell/hunvisapi.h.in 2013-04-01 14:41:16.507546705 +0200 -+++ b/src/hunspell/hunvisapi.h.in 2013-04-01 14:41:24.537547190 +0200 -@@ -9,7 +9,7 @@ - # else - # define LIBHUNSPELL_DLL_EXPORTED __declspec(dllimport) - # endif --#elif BUILDING_LIBHUNSPELL && @HAVE_VISIBILITY@ -+#elif defined(BUILDING_LIBHUNSPELL) && @HAVE_VISIBILITY@ - # define LIBHUNSPELL_DLL_EXPORTED __attribute__((__visibility__("default"))) - #else - # define LIBHUNSPELL_DLL_EXPORTED diff -Nru libreoffice-l10n-4.3.1~rc2/external/hunspell/UnpackedTarball_hunspell.mk libreoffice-l10n-4.3.2/external/hunspell/UnpackedTarball_hunspell.mk --- libreoffice-l10n-4.3.1~rc2/external/hunspell/UnpackedTarball_hunspell.mk 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/hunspell/UnpackedTarball_hunspell.mk 2014-09-16 19:56:04.000000000 +0000 @@ -12,15 +12,11 @@ $(eval $(call gb_UnpackedTarball_set_tarball,hunspell,$(HUNSPELL_TARBALL))) $(eval $(call gb_UnpackedTarball_add_patches,hunspell,\ - external/hunspell/hunspell-twoaffixcompound.patch \ external/hunspell/hunspell-solaris.patch \ external/hunspell/hunspell-1.3.2-overflow.patch \ external/hunspell/hunspell-android.patch \ external/hunspell/hunspell-1.3.2-nullptr.patch \ external/hunspell/hunspell-1.3.2-literal.patch \ - external/hunspell/hunspell-1.3.2-compound.patch \ - external/hunspell/hunspell.rhbz918938.patch \ - external/hunspell/hunspell-wundef.patch.1 \ external/hunspell/hunspell-fdo48017-wfopen.patch \ )) diff -Nru libreoffice-l10n-4.3.1~rc2/external/icu/icu4c-icu11054.patch.1 libreoffice-l10n-4.3.2/external/icu/icu4c-icu11054.patch.1 --- libreoffice-l10n-4.3.1~rc2/external/icu/icu4c-icu11054.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/icu/icu4c-icu11054.patch.1 2014-09-16 19:56:04.000000000 +0000 @@ -0,0 +1,44 @@ +--- icu/source/common/ubidi.c.orig 2014-08-09 20:54:39.338833533 +0100 ++++ icu/source/common/ubidi.c 2014-08-09 20:55:48.625469055 +0100 +@@ -679,10 +679,10 @@ + bd->isoRuns[0].contextPos=0; + if(pBiDi->openingsMemory) { + bd->openings=pBiDi->openingsMemory; +- bd->openingsSize=pBiDi->openingsSize; ++ bd->openingsCount=pBiDi->openingsSize / sizeof(Opening); + } else { + bd->openings=bd->simpleOpenings; +- bd->openingsSize=SIMPLE_OPENINGS_SIZE; ++ bd->openingsCount=SIMPLE_OPENINGS_SIZE; + } + bd->isNumbersSpecial=bd->pBiDi->reorderingMode==UBIDI_REORDER_NUMBERS_SPECIAL || + bd->pBiDi->reorderingMode==UBIDI_REORDER_INVERSE_FOR_NUMBERS_SPECIAL; +@@ -743,7 +743,7 @@ + bracketAddOpening(BracketData *bd, UChar match, int32_t position) { + IsoRun *pLastIsoRun=&bd->isoRuns[bd->isoRunLast]; + Opening *pOpening; +- if(pLastIsoRun->limit>=bd->openingsSize) { /* no available new entry */ ++ if(pLastIsoRun->limit>=bd->openingsCount) { /* no available new entry */ + UBiDi *pBiDi=bd->pBiDi; + if(!getInitialOpeningsMemory(pBiDi, pLastIsoRun->limit * 2)) + return FALSE; +@@ -751,7 +751,7 @@ + uprv_memcpy(pBiDi->openingsMemory, bd->simpleOpenings, + SIMPLE_OPENINGS_SIZE * sizeof(Opening)); + bd->openings=pBiDi->openingsMemory; /* may have changed */ +- bd->openingsSize=pBiDi->openingsSize; ++ bd->openingsCount=pBiDi->openingsSize / sizeof(Opening); + } + pOpening=&bd->openings[pLastIsoRun->limit]; + pOpening->position=position; +--- icu/source/common/ubidiimp.h.orig 2014-08-09 20:55:15.053161192 +0100 ++++ icu/source/common/ubidiimp.h 2014-08-09 20:56:07.028637725 +0100 +@@ -173,7 +173,7 @@ + /* array of opening entries which should be enough in most cases; no malloc() */ + Opening simpleOpenings[SIMPLE_OPENINGS_SIZE]; + Opening *openings; /* pointer to current array of entries */ +- int32_t openingsSize; /* number of allocated entries */ ++ int32_t openingsCount; /* number of allocated entries */ + int32_t isoRunLast; /* index of last used entry */ + /* array of nested isolated sequence entries; can never excess UBIDI_MAX_EXPLICIT_LEVEL + + 1 for index 0, + 1 for before the first isolated sequence */ diff -Nru libreoffice-l10n-4.3.1~rc2/external/icu/icu4c-icu11100.patch.1 libreoffice-l10n-4.3.2/external/icu/icu4c-icu11100.patch.1 --- libreoffice-l10n-4.3.1~rc2/external/icu/icu4c-icu11100.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/icu/icu4c-icu11100.patch.1 2014-09-16 19:56:04.000000000 +0000 @@ -0,0 +1,26 @@ +--- icu/source/common/ubidi.c.orig 2014-08-09 20:54:39.338833533 +0100 ++++ icu/source/common/ubidi.c 2014-08-09 20:55:48.625469055 +0100 +@@ -2096,6 +2096,14 @@ + return DirProp_ON; + } + ++static int ++isolatesavailable(UBiDi *pBiDi) { ++ if (pBiDi->isolates == pBiDi->simpleIsolates) { ++ return pBiDi->isolateCount < SIMPLE_ISOLATES_SIZE-1; ++ } ++ return pBiDi->isolateCount < pBiDi->isolatesSize/sizeof(Isolate)-1; ++} ++ + static void + resolveImplicitLevels(UBiDi *pBiDi, + int32_t start, int32_t limit, +@@ -2239,7 +2247,7 @@ + /* look for the last char not a BN or LRE/RLE/LRO/RLO/PDF */ + for(i=limit-1; i>start&&(DIRPROP_FLAG(dirProps[i])&MASK_BN_EXPLICIT); i--); + dirProp=dirProps[i]; +- if((dirProp==LRI || dirProp==RLI) && limitlength) { ++ if((dirProp==LRI || dirProp==RLI) && limitlength && isolatesavailable(pBiDi)) { + pBiDi->isolateCount++; + pBiDi->isolates[pBiDi->isolateCount].stateImp=stateImp; + pBiDi->isolates[pBiDi->isolateCount].state=levState.state; diff -Nru libreoffice-l10n-4.3.1~rc2/external/icu/UnpackedTarball_icu.mk libreoffice-l10n-4.3.2/external/icu/UnpackedTarball_icu.mk --- libreoffice-l10n-4.3.1~rc2/external/icu/UnpackedTarball_icu.mk 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/icu/UnpackedTarball_icu.mk 2014-09-16 19:56:04.000000000 +0000 @@ -21,6 +21,8 @@ external/icu/icu4c-mkdir.patch \ external/icu/icu4c-buffer-overflow.patch \ external/icu/icu4c-$(if $(filter ANDROID,$(OS)),android,rpath).patch \ + external/icu/icu4c-icu11054.patch.1 \ + external/icu/icu4c-icu11100.patch.1 \ )) # vim: set noet sw=4 ts=4: diff -Nru libreoffice-l10n-4.3.1~rc2/external/libgltf/ExternalProject_libgltf.mk libreoffice-l10n-4.3.2/external/libgltf/ExternalProject_libgltf.mk --- libreoffice-l10n-4.3.1~rc2/external/libgltf/ExternalProject_libgltf.mk 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/libgltf/ExternalProject_libgltf.mk 2014-09-16 19:56:04.000000000 +0000 @@ -63,6 +63,8 @@ export CPPFLAGS='$(libgltf_CPPFLAGS)' \ && export PKG_CONFIG="" \ && ./configure \ + --disable-shared \ + --enable-static \ --with-pic \ --disable-debug \ --disable-werror \ diff -Nru libreoffice-l10n-4.3.1~rc2/external/libgltf/pathces/append_shader_version.patch libreoffice-l10n-4.3.2/external/libgltf/pathces/append_shader_version.patch --- libreoffice-l10n-4.3.1~rc2/external/libgltf/pathces/append_shader_version.patch 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/libgltf/pathces/append_shader_version.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -diff -ur libgltf.org/src/Shaders.cpp libgltf/src/Shaders.cpp ---- libgltf.org/src/Shaders.cpp 2014-08-18 09:19:48.323955939 +0200 -+++ libgltf/src/Shaders.cpp 2014-08-18 09:20:46.711953465 +0200 -@@ -11,6 +11,7 @@ - - #include - #include -+#include - - namespace libgltf - { -@@ -166,7 +167,24 @@ - unsigned int shaderId) - { - GLint iGLSize = iSize; -- glShaderSource(shaderId, 1, &pShader, &iGLSize); -+ if( strstr(pShader,"#version") == 0 ) -+ { -+ const GLchar* aSources[] = { -+ "#version 130\n", -+ pShader, -+ }; -+ -+ const GLint aSizes[] = { -+ strlen("#version 130\n"), -+ iGLSize, -+ }; -+ -+ glShaderSource(shaderId, 2, &aSources[0], &aSizes[0]); -+ } -+ else -+ { -+ glShaderSource(shaderId, 1, &pShader, &iGLSize); -+ } - glCompileShader(shaderId); - int iStatus = 0; - glGetShaderiv(shaderId, GL_COMPILE_STATUS, &iStatus); diff -Nru libreoffice-l10n-4.3.1~rc2/external/libgltf/pathces/missing_include.patch libreoffice-l10n-4.3.2/external/libgltf/pathces/missing_include.patch --- libreoffice-l10n-4.3.1~rc2/external/libgltf/pathces/missing_include.patch 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/libgltf/pathces/missing_include.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -diff -ur libgltf.org/src/Shaders.cpp libgltf/src/Shaders.cpp ---- libgltf.org/src/Shaders.cpp 2014-08-05 11:40:30.387537876 +0200 -+++ libgltf/src/Shaders.cpp 2014-08-05 11:41:13.887536123 +0200 -@@ -10,6 +10,7 @@ - #include "Shaders.h" - - #include -+#include - - namespace libgltf - { diff -Nru libreoffice-l10n-4.3.1~rc2/external/libgltf/UnpackedTarball_libgltf.mk libreoffice-l10n-4.3.2/external/libgltf/UnpackedTarball_libgltf.mk --- libreoffice-l10n-4.3.1~rc2/external/libgltf/UnpackedTarball_libgltf.mk 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/external/libgltf/UnpackedTarball_libgltf.mk 2014-09-16 19:56:04.000000000 +0000 @@ -16,8 +16,6 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,libgltf,1)) $(eval $(call gb_UnpackedTarball_add_patches,libgltf,\ - external/libgltf/pathces/missing_include.patch \ - external/libgltf/pathces/append_shader_version.patch \ )) # vim: set noet sw=4 ts=4: diff -Nru libreoffice-l10n-4.3.1~rc2/extras/CustomTarget_autocorr.mk libreoffice-l10n-4.3.2/extras/CustomTarget_autocorr.mk --- libreoffice-l10n-4.3.1~rc2/extras/CustomTarget_autocorr.mk 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/extras/CustomTarget_autocorr.mk 2014-09-16 19:56:04.000000000 +0000 @@ -15,12 +15,12 @@ ca:ca-ES \ cs:cs-CZ \ da:da-DK \ - de:de-DE \ + de:de \ en-AU:en-AU \ en-GB:en-GB \ en-US:en-US \ en-ZA:en-ZA \ - es:es-ES \ + es:es \ fa:fa-IR \ fi:fi-FI \ fr:fr \ @@ -28,7 +28,7 @@ hr:hr-HR \ hu:hu-HU \ is:is-IS \ - it:it-IT \ + it:it \ ja:ja-JP \ ko:ko-KR \ lb-LU:lb-LU \ diff -Nru libreoffice-l10n-4.3.1~rc2/extras/Package_autocorr.mk libreoffice-l10n-4.3.2/extras/Package_autocorr.mk --- libreoffice-l10n-4.3.1~rc2/extras/Package_autocorr.mk 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/extras/Package_autocorr.mk 2014-09-16 19:56:04.000000000 +0000 @@ -15,12 +15,12 @@ acor_cs-CZ.dat \ acor_ca-ES.dat \ acor_da-DK.dat \ - acor_de-DE.dat \ + acor_de.dat \ acor_en-AU.dat \ acor_en-GB.dat \ acor_en-US.dat \ acor_en-ZA.dat \ - acor_es-ES.dat \ + acor_es.dat \ acor_fa-IR.dat \ acor_fi-FI.dat \ acor_fr.dat \ @@ -28,7 +28,7 @@ acor_hr-HR.dat \ acor_hu-HU.dat \ acor_is-IS.dat \ - acor_it-IT.dat \ + acor_it.dat \ acor_ja-JP.dat \ acor_ko-KR.dat \ acor_lb-LU.dat \ diff -Nru libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Beagle_Works_Calc.xcu libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Beagle_Works_Calc.xcu --- libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Beagle_Works_Calc.xcu 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Beagle_Works_Calc.xcu 2014-09-16 19:56:04.000000000 +0000 @@ -15,7 +15,7 @@ com.sun.star.comp.Calc.MWAWCalcImportFilter - BeagleWorks/WordPerfect Works v1 Document + BeagleWorks/WordPerfect Works v1 Spreadsheet 0 diff -Nru libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Beagle_Works_Draw.xcu libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Beagle_Works_Draw.xcu --- libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Beagle_Works_Draw.xcu 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Beagle_Works_Draw.xcu 2014-09-16 19:56:04.000000000 +0000 @@ -15,7 +15,7 @@ com.sun.star.comp.Draw.MWAWDrawImportFilter - BeagleWorks/WordPerfect Works v1 Document + BeagleWorks/WordPerfect Works v1 Drawing 0 diff -Nru libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Beagle_Works.xcu libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Beagle_Works.xcu --- libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Beagle_Works.xcu 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Beagle_Works.xcu 2014-09-16 19:56:04.000000000 +0000 @@ -15,7 +15,7 @@ com.sun.star.comp.Writer.MWAWImportFilter - BeagleWorks/WordPerfect Works v1 Document + BeagleWorks/WordPerfect Works v1 Text Document 0 diff -Nru libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/ClarisWorks_Calc.xcu libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/ClarisWorks_Calc.xcu --- libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/ClarisWorks_Calc.xcu 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/ClarisWorks_Calc.xcu 2014-09-16 19:56:04.000000000 +0000 @@ -21,7 +21,7 @@ com.sun.star.comp.Calc.MWAWCalcImportFilter - ClarisWorks/AppleWorks Document + ClarisWorks/AppleWorks Spreadsheet 0 calc_ClarisWorks diff -Nru libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/ClarisWorks_Draw.xcu libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/ClarisWorks_Draw.xcu --- libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/ClarisWorks_Draw.xcu 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/ClarisWorks_Draw.xcu 2014-09-16 19:56:04.000000000 +0000 @@ -21,7 +21,7 @@ com.sun.star.comp.Draw.MWAWDrawImportFilter - ClarisWorks/AppleWorks Document + ClarisWorks/AppleWorks Drawing 0 draw_ClarisWorks diff -Nru libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/ClarisWorks.xcu libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/ClarisWorks.xcu --- libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/ClarisWorks.xcu 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/ClarisWorks.xcu 2014-09-16 19:56:04.000000000 +0000 @@ -21,7 +21,7 @@ com.sun.star.comp.Writer.MWAWImportFilter - ClarisWorks/AppleWorks Document + ClarisWorks/AppleWorks Text Document 0 writer_ClarisWorks diff -Nru libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Great_Works_Calc.xcu libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Great_Works_Calc.xcu --- libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Great_Works_Calc.xcu 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Great_Works_Calc.xcu 2014-09-16 19:56:04.000000000 +0000 @@ -15,7 +15,7 @@ com.sun.star.comp.Calc.MWAWCalcImportFilter - GreatWorks Document + GreatWorks Spreadsheet 0 diff -Nru libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Great_Works_Draw.xcu libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Great_Works_Draw.xcu --- libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Great_Works_Draw.xcu 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Great_Works_Draw.xcu 2014-09-16 19:56:04.000000000 +0000 @@ -15,7 +15,7 @@ com.sun.star.comp.Draw.MWAWDrawImportFilter - GreatWorks Document + GreatWorks Drawing 0 diff -Nru libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Great_Works.xcu libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Great_Works.xcu --- libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Great_Works.xcu 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Great_Works.xcu 2014-09-16 19:56:04.000000000 +0000 @@ -15,7 +15,7 @@ com.sun.star.comp.Writer.MWAWImportFilter - GreatWorks Document + GreatWorks Text Document 0 diff -Nru libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Mac_Works_Calc.xcu libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Mac_Works_Calc.xcu --- libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Mac_Works_Calc.xcu 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Mac_Works_Calc.xcu 2014-09-16 19:56:04.000000000 +0000 @@ -21,7 +21,7 @@ com.sun.star.comp.Calc.MWAWCalcImportFilter - Microsoft Works for Mac Document (v1 - v4) + Microsoft Works for Mac Spreadsheet (v1 - v4) 0 calc_Mac_Works diff -Nru libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Mac_Works_Draw.xcu libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Mac_Works_Draw.xcu --- libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Mac_Works_Draw.xcu 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Mac_Works_Draw.xcu 2014-09-16 19:56:04.000000000 +0000 @@ -21,7 +21,7 @@ com.sun.star.comp.Draw.MWAWDrawImportFilter - Microsoft Works for Mac Document (v1 - v4) + Microsoft Works for Mac Drawing (v1 - v4) 0 draw_Mac_Works diff -Nru libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Mac_Works.xcu libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Mac_Works.xcu --- libreoffice-l10n-4.3.1~rc2/filter/source/config/fragments/filters/Mac_Works.xcu 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/filter/source/config/fragments/filters/Mac_Works.xcu 2014-09-16 19:56:04.000000000 +0000 @@ -21,7 +21,7 @@ com.sun.star.comp.Writer.MWAWImportFilter - Microsoft Works for Mac Document (v1 - v4) + Microsoft Works for Mac Text Document (v1 - v4) 0 writer_Mac_Works diff -Nru libreoffice-l10n-4.3.1~rc2/filter/source/graphicfilter/itiff/itiff.cxx libreoffice-l10n-4.3.2/filter/source/graphicfilter/itiff/itiff.cxx --- libreoffice-l10n-4.3.1~rc2/filter/source/graphicfilter/itiff/itiff.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/filter/source/graphicfilter/itiff/itiff.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -176,6 +176,19 @@ delete pAlphaMask; } + sal_uLong GetRowsPerStrip() const + { + //Rows Per Strip: + // + //(TIFF format only) The number of rows of pixels per strip to use for + //encoding the TIFF image. A value greater than zero specifies the + //number of rows per strip. A value of 0 sets the rows per strip equal + //to the image length, resulting in a single strip. A value of -1 (the + //default) sets the rows per strip equal to infinity, resulting in a + //single strip. + return nRowsPerStrip == 0 ? nImageLength : nRowsPerStrip; + } + bool ReadTIFF( SvStream & rTIFF, Graphic & rGraphic ); }; @@ -539,10 +552,10 @@ { for ( np = 0; np < nPlanes; np++ ) { - nStrip = ny / nRowsPerStrip + np * nStripsPerPlane; + nStrip = ny / GetRowsPerStrip() + np * nStripsPerPlane; if ( nStrip >= nNumStripOffsets ) return false; - pTIFF->Seek( pStripOffsets[ nStrip ] + ( ny % nRowsPerStrip ) * nStripBytesPerRow ); + pTIFF->Seek( pStripOffsets[ nStrip ] + ( ny % GetRowsPerStrip() ) * nStripBytesPerRow ); pTIFF->Read( pMap[ np ], nBytesPerRow ); if ( pTIFF->GetError() ) return false; @@ -593,9 +606,9 @@ { for ( np = 0; np < nPlanes; np++ ) { - if ( ny / nRowsPerStrip + np * nStripsPerPlane > nStrip ) + if ( ny / GetRowsPerStrip() + np * nStripsPerPlane > nStrip ) { - nStrip=ny/nRowsPerStrip+np*nStripsPerPlane; + nStrip=ny/GetRowsPerStrip()+np*nStripsPerPlane; if ( nStrip >= nNumStripOffsets ) return false; pTIFF->Seek( pStripOffsets[ nStrip ] ); @@ -624,9 +637,9 @@ { for ( np = 0; np < nPlanes; np++ ) { - if ( ny / nRowsPerStrip + np * nStripsPerPlane > nStrip ) + if ( ny / GetRowsPerStrip() + np * nStripsPerPlane > nStrip ) { - nStrip = ny / nRowsPerStrip + np * nStripsPerPlane; + nStrip = ny / GetRowsPerStrip() + np * nStripsPerPlane; if ( nStrip >= nNumStripOffsets ) return false; pTIFF->Seek(pStripOffsets[nStrip]); @@ -652,9 +665,9 @@ { for ( np = 0; np < nPlanes; np++ ) { - if ( ny / nRowsPerStrip + np * nStripsPerPlane > nStrip ) + if ( ny / GetRowsPerStrip() + np * nStripsPerPlane > nStrip ) { - nStrip=ny/nRowsPerStrip+np*nStripsPerPlane; + nStrip=ny/GetRowsPerStrip()+np*nStripsPerPlane; if ( nStrip >= nNumStripOffsets ) return false; pTIFF->Seek(pStripOffsets[nStrip]); @@ -1310,30 +1323,35 @@ if ( ( nFillOrder == 2 ) && ( nCompression != 5 ) ) // in the LZW mode bits are already being inverted bByteSwap = true; - nStripsPerPlane = ( nImageLength - 1 ) / nRowsPerStrip + 1; - nBytesPerRow = ( nImageWidth * nSamplesPerPixel / nPlanes * nBitsPerSample + 7 ) >> 3; + nStripsPerPlane = ( nImageLength - 1 ) / GetRowsPerStrip() + 1; + bStatus = nPlanes != 0; - for ( sal_uLong j = 0; j < 4; j++ ) + if (bStatus) { - try - { - pMap[ j ] = new sal_uInt8[ nBytesPerRow ]; - } - catch (const std::bad_alloc &) + nBytesPerRow = ( nImageWidth * nSamplesPerPixel / nPlanes * nBitsPerSample + 7 ) >> 3; + + for ( sal_uLong j = 0; j < 4; j++ ) { - pMap[ j ] = NULL; - bStatus = false; - break; + try + { + pMap[ j ] = new sal_uInt8[ nBytesPerRow ]; + } + catch (const std::bad_alloc &) + { + pMap[ j ] = NULL; + bStatus = false; + break; + } } } - if (HasAlphaChannel()) + if (bStatus && HasAlphaChannel()) { pAlphaMask = new AlphaMask( aTargetSize ); pMaskAcc = pAlphaMask->AcquireWriteAccess(); } - if ( bStatus && ReadMap( 10, 60 ) ) + if (bStatus && ReadMap(10, 60)) { nMaxPos = std::max( pTIFF->Tell(), nMaxPos ); MakePalCol(); diff -Nru libreoffice-l10n-4.3.1~rc2/formula/source/core/resource/core_resource.src libreoffice-l10n-4.3.2/formula/source/core/resource/core_resource.src --- libreoffice-l10n-4.3.1~rc2/formula/source/core/resource/core_resource.src 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/formula/source/core/resource/core_resource.src 2014-09-16 19:56:04.000000000 +0000 @@ -423,7 +423,7 @@ /* END defined ERROR.TYPE() values. */ String SC_OPCODE_FILTERXML { Text = "COM.MICROSOFT.FILTERXML";}; String SC_OPCODE_WEBSERVICE { Text = "COM.MICROSOFT.WEBSERVICE"; }; - String SC_OPCODE_COLOR { Text = "COLOR"; }; + String SC_OPCODE_COLOR { Text = "ORG.LIBREOFFICE.COLOR"; }; String SC_OPCODE_ERF_MS { Text = "COM.MICROSOFT.ERF.PRECISE" ; }; String SC_OPCODE_ERFC_MS { Text = "COM.MICROSOFT.ERFC.PRECISE" ; }; }; @@ -830,6 +830,7 @@ /* END defined ERROR.TYPE() values. */ String SC_OPCODE_FILTERXML { Text = "_xlfn.FILTERXML";}; String SC_OPCODE_WEBSERVICE { Text = "_xlfn.WEBSERVICE"; }; + String SC_OPCODE_COLOR { Text = "_xlfn.ORG.LIBREOFFICE.COLOR"; }; String SC_OPCODE_ERF_MS { Text = "_xlfn.ERF.PRECISE" ; }; String SC_OPCODE_ERFC_MS { Text = "_xlfn.ERFC.PRECISE" ; }; }; diff -Nru libreoffice-l10n-4.3.1~rc2/formula/source/ui/dlg/FormulaHelper.cxx libreoffice-l10n-4.3.2/formula/source/ui/dlg/FormulaHelper.cxx --- libreoffice-l10n-4.3.1~rc2/formula/source/ui/dlg/FormulaHelper.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/formula/source/ui/dlg/FormulaHelper.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -21,6 +21,8 @@ #include #include +#include + namespace formula { @@ -91,7 +93,7 @@ const sal_uInt32 nCategoryCount = m_pFunctionManager->getCount(); for(sal_uInt32 j= 0; j < nCategoryCount && !*ppFDesc; ++j) { - const IFunctionCategory* pCategory = m_pFunctionManager->getCategory(j); + boost::scoped_ptr pCategory(m_pFunctionManager->getCategory(j)); const sal_uInt32 nCount = pCategory->getCount(); for(sal_uInt32 i = 0 ; i < nCount; ++i) { diff -Nru libreoffice-l10n-4.3.1~rc2/framework/source/services/autorecovery.cxx libreoffice-l10n-4.3.2/framework/source/services/autorecovery.cxx --- libreoffice-l10n-4.3.1~rc2/framework/source/services/autorecovery.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/framework/source/services/autorecovery.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -3114,6 +3114,23 @@ rInfo.DocumentState |= AutoRecovery::E_TRY_SAVE; implts_flushConfigItem(rInfo); + // If userautosave is enabled, first try to save the original file. + // Note that we must do it *before* calling storeToRecoveryFile, so in case of failure here + // we won't remain with the modified flag set to true, even though the autorecovery save succeeded. + try + { + // We must check here for an empty URL to avoid a "This operation is not supported on this operating system." + // message during autosave. + if ((m_eJob & AutoRecovery::E_USER_AUTO_SAVE) == AutoRecovery::E_USER_AUTO_SAVE && !rInfo.OrgURL.isEmpty()) + { + Reference< XStorable > xDocSave(rInfo.Document, css::uno::UNO_QUERY_THROW); + xDocSave->store(); + } + } + catch(const css::uno::Exception&) + { + } + sal_Int32 nRetry = RETRY_STORE_ON_FULL_DISC_FOREVER; bool bError = false; do @@ -3122,13 +3139,6 @@ { xDocRecover->storeToRecoveryFile( rInfo.NewTempURL, lNewArgs.getAsConstPropertyValueList() ); - // if userautosave is enabled, also save to the original file - if((m_eJob & AutoRecovery::E_USER_AUTO_SAVE) == AutoRecovery::E_USER_AUTO_SAVE) - { - Reference< XStorable > xDocSave(rInfo.Document, css::uno::UNO_QUERY_THROW); - xDocSave->store(); - } - #ifdef TRIGGER_FULL_DISC_CHECK throw css::uno::Exception(); #else // TRIGGER_FULL_DISC_CHECK diff -Nru libreoffice-l10n-4.3.1~rc2/framework/source/services/pathsettings.cxx libreoffice-l10n-4.3.2/framework/source/services/pathsettings.cxx --- libreoffice-l10n-4.3.1~rc2/framework/source/services/pathsettings.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/framework/source/services/pathsettings.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -402,8 +402,8 @@ So real user defined paths can be extracted from the list of fix internal paths ! */ - void impl_purgeKnownPaths(const PathSettings::PathInfo& rPath, - OUStringList& lList); + void impl_purgeKnownPaths(PathSettings::PathInfo& rPath, + OUStringList& lList); /** rebuild the member m_lPropDesc using the path list m_lPaths. */ void impl_rebuildPropertyDescriptor(); @@ -1042,10 +1042,13 @@ return lList; } -void PathSettings::impl_purgeKnownPaths(const PathSettings::PathInfo& rPath, - OUStringList& lList) +void PathSettings::impl_purgeKnownPaths(PathSettings::PathInfo& rPath, + OUStringList& lList) { - OUStringList::const_iterator pIt; + OUStringList::iterator pIt; + + // Erase items in the internal path list from lList. + // Also erase items in the internal path list from the user path list. for ( pIt = rPath.lInternalPaths.begin(); pIt != rPath.lInternalPaths.end(); ++pIt ) @@ -1054,7 +1057,29 @@ OUStringList::iterator pItem = lList.find(rItem); if (pItem != lList.end()) lList.erase(pItem); + pItem = rPath.lUserPaths.find(rItem); + if (pItem != rPath.lUserPaths.end()) + rPath.lUserPaths.erase(pItem); + } + + // Erase itsems not in lList from the user path list. + pIt = rPath.lUserPaths.begin(); + while ( pIt != rPath.lUserPaths.end() ) + { + const OUString& rItem = *pIt; + OUStringList::iterator pItem = lList.find(rItem); + if ( pItem == lList.end() ) + { + rPath.lUserPaths.erase(pIt); + pIt = rPath.lUserPaths.begin(); + } + else + { + ++pIt; + } } + + // Erase items in the user path list from lList. for ( pIt = rPath.lUserPaths.begin(); pIt != rPath.lUserPaths.end(); ++pIt ) @@ -1065,6 +1090,7 @@ lList.erase(pItem); } + // Erase the write path from lList OUStringList::iterator pItem = lList.find(rPath.sWritePath); if (pItem != lList.end()) lList.erase(pItem); diff -Nru libreoffice-l10n-4.3.1~rc2/.gitreview libreoffice-l10n-4.3.2/.gitreview --- libreoffice-l10n-4.3.1~rc2/.gitreview 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/.gitreview 2014-09-16 19:56:04.000000000 +0000 @@ -3,5 +3,5 @@ port=29418 project=core defaultremote=logerrit -defaultbranch=libreoffice-4-3-1 +defaultbranch=libreoffice-4-3-2 diff -Nru libreoffice-l10n-4.3.1~rc2/helpcontent2/source/text/shared/guide/macro_recording.xhp libreoffice-l10n-4.3.2/helpcontent2/source/text/shared/guide/macro_recording.xhp --- libreoffice-l10n-4.3.1~rc2/helpcontent2/source/text/shared/guide/macro_recording.xhp 2014-08-26 04:07:39.000000000 +0000 +++ libreoffice-l10n-4.3.2/helpcontent2/source/text/shared/guide/macro_recording.xhp 2014-09-16 19:55:40.000000000 +0000 @@ -35,8 +35,6 @@ Recording a Macro - -
Open the document for which you want to record a macro. @@ -92,14 +90,6 @@ Macro -Programming in %PRODUCTNAMEhow-to running a macrohow-to testing and debugging a macro
-
- - - - - -The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc. - -
+Programming in %PRODUCTNAME + diff -Nru libreoffice-l10n-4.3.1~rc2/include/avmedia/modeltools.hxx libreoffice-l10n-4.3.2/include/avmedia/modeltools.hxx --- libreoffice-l10n-4.3.1~rc2/include/avmedia/modeltools.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/include/avmedia/modeltools.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -11,9 +11,13 @@ #include #include +#include + namespace avmedia { +#if HAVE_FEATURE_COLLADA bool KmzDae2Gltf(const OUString& rSourceURL, OUString& o_rOutput); +#endif bool AVMEDIA_DLLPUBLIC Embed3DModel( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel>& xModel, diff -Nru libreoffice-l10n-4.3.1~rc2/include/formula/IFunctionDescription.hxx libreoffice-l10n-4.3.2/include/formula/IFunctionDescription.hxx --- libreoffice-l10n-4.3.1~rc2/include/formula/IFunctionDescription.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/include/formula/IFunctionDescription.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -60,7 +60,7 @@ ~IFunctionManager() {} }; - class SAL_NO_VTABLE IFunctionCategory + class IFunctionCategory { public: IFunctionCategory(){} @@ -70,8 +70,7 @@ virtual sal_uInt32 getNumber() const = 0; virtual OUString getName() const = 0; - protected: - ~IFunctionCategory() {} + virtual ~IFunctionCategory() {} }; class SAL_NO_VTABLE IFunctionDescription diff -Nru libreoffice-l10n-4.3.1~rc2/include/oox/drawingml/shape.hxx libreoffice-l10n-4.3.2/include/oox/drawingml/shape.hxx --- libreoffice-l10n-4.3.1~rc2/include/oox/drawingml/shape.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/include/oox/drawingml/shape.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -50,6 +50,7 @@ { Color maPhClr; sal_Int32 mnThemedIdx; + ShapeStyleRef() : mnThemedIdx(0) {} }; typedef ::std::map< sal_Int32, ShapeStyleRef > ShapeStyleRefMap; diff -Nru libreoffice-l10n-4.3.1~rc2/include/oox/export/utils.hxx libreoffice-l10n-4.3.2/include/oox/export/utils.hxx --- libreoffice-l10n-4.3.1~rc2/include/oox/export/utils.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/include/oox/export/utils.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -50,9 +50,9 @@ } template -OString writePercentage(T number) +OString write1000thOfAPercent(T number) { - return OString::number(number) + "%"; + return OString::number( number * 1000 ); } #endif diff -Nru libreoffice-l10n-4.3.1~rc2/include/oox/ppt/pptshape.hxx libreoffice-l10n-4.3.2/include/oox/ppt/pptshape.hxx --- libreoffice-l10n-4.3.1~rc2/include/oox/ppt/pptshape.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/include/oox/ppt/pptshape.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -58,8 +58,11 @@ void setPlaceholder( oox::drawingml::ShapePtr pPlaceholder ) { mpPlaceholder = pPlaceholder; } void setModelId( const OUString& rId ) { msModelId = rId; } - static oox::drawingml::ShapePtr findPlaceholder( const sal_Int32 nMasterPlaceholder, std::vector< oox::drawingml::ShapePtr >& rShapes, bool bMasterOnly = false ); - static oox::drawingml::ShapePtr findPlaceholderByIndex( const sal_Int32 nIdx, std::vector< oox::drawingml::ShapePtr >& rShapes, bool bMasterOnly = false ); + static oox::drawingml::ShapePtr findPlaceholder( const sal_Int32 nFirstSubType, + const sal_Int32 nSecondSubType, const OptValue< sal_Int32 >& oSubTypeIndex, + std::vector< oox::drawingml::ShapePtr >& rShapes, bool bMasterOnly = false ); + static oox::drawingml::ShapePtr findPlaceholderByIndex( const sal_Int32 nIdx, + std::vector< oox::drawingml::ShapePtr >& rShapes, bool bMasterOnly = false ); static oox::drawingml::TextListStylePtr getSubTypeTextListStyle( const SlidePersist& rSlidePersist, sal_Int32 nSubType ); diff -Nru libreoffice-l10n-4.3.1~rc2/include/sal/log-areas.dox libreoffice-l10n-4.3.2/include/sal/log-areas.dox --- libreoffice-l10n-4.3.1~rc2/include/sal/log-areas.dox 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/include/sal/log-areas.dox 2014-09-16 19:56:04.000000000 +0000 @@ -415,6 +415,7 @@ @li @c sw.uno - Writer UNO interfaces @li @c sw.ww8 - .doc/.docx export filter, .doc import filter (not writerfilter) @li @c sw.ww8.level2 - further info for sw.ww8 +@li @c sw.html - Writer HTML import/export @section writerfilter diff -Nru libreoffice-l10n-4.3.1~rc2/include/sfx2/shell.hxx libreoffice-l10n-4.3.2/include/sfx2/shell.hxx --- libreoffice-l10n-4.3.1~rc2/include/sfx2/shell.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/include/sfx2/shell.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -160,7 +160,7 @@ SfxShell(); SfxShell( SfxViewShell *pViewSh ); - SAL_DLLPRIVATE void SetViewShell_Impl( SfxViewShell* pView ); + void SetViewShell_Impl( SfxViewShell* pView ); SAL_DLLPRIVATE void Invalidate_Impl( SfxBindings& rBindings, sal_uInt16 nId ); SAL_DLLPRIVATE SfxShellObject* GetShellObj_Impl() const; SAL_DLLPRIVATE void SetShellObj_Impl( SfxShellObject* pObj ); @@ -202,6 +202,8 @@ virtual void Invalidate(sal_uInt16 nId = 0); + virtual bool IsDesignMode() const { return false; }; + bool IsActive() const; virtual void Activate(bool bMDI); virtual void Deactivate(bool bMDI); diff -Nru libreoffice-l10n-4.3.1~rc2/include/sfx2/viewsh.hxx libreoffice-l10n-4.3.2/include/sfx2/viewsh.hxx --- libreoffice-l10n-4.3.1~rc2/include/sfx2/viewsh.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/include/sfx2/viewsh.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -207,6 +207,9 @@ void RemoveSubShell( SfxShell *pShell=NULL ); SfxShell* GetSubShell( sal_uInt16 ); + virtual SfxShell* GetFormShell() { return 0; }; + virtual const SfxShell* GetFormShell() const { return 0; }; + // Focus, KeyInput, Cursor void GotFocus() const; inline void LostFocus() const; diff -Nru libreoffice-l10n-4.3.1~rc2/include/svx/fmshell.hxx libreoffice-l10n-4.3.2/include/svx/fmshell.hxx --- libreoffice-l10n-4.3.1~rc2/include/svx/fmshell.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/include/svx/fmshell.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -166,8 +166,8 @@ const OutputDevice& i_rDevice ) const; - bool IsDesignMode() const { return m_bDesignMode; } - void SetDesignMode( bool _bDesignMode ); + virtual bool IsDesignMode() const { return m_bDesignMode; } + void SetDesignMode( bool _bDesignMode ); protected: void GetFormState(SfxItemSet &rSet, sal_uInt16 nWhich); diff -Nru libreoffice-l10n-4.3.1~rc2/include/vcl/ctrl.hxx libreoffice-l10n-4.3.2/include/vcl/ctrl.hxx --- libreoffice-l10n-4.3.1~rc2/include/vcl/ctrl.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/include/vcl/ctrl.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -136,7 +136,6 @@ virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE; virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE; virtual void Resize() SAL_OVERRIDE; - virtual void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE; // invalidates layout data virtual void SetText( const OUString& rStr ) SAL_OVERRIDE; diff -Nru libreoffice-l10n-4.3.1~rc2/include/vcl/opengl/OpenGLContext.hxx libreoffice-l10n-4.3.2/include/vcl/opengl/OpenGLContext.hxx --- libreoffice-l10n-4.3.1~rc2/include/vcl/opengl/OpenGLContext.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/include/vcl/opengl/OpenGLContext.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -166,6 +166,8 @@ return mbInitialized; } + bool supportMultiSampling() const; + static SystemWindowData generateWinData(Window* pParent); private: SAL_DLLPRIVATE bool initWindow(); diff -Nru libreoffice-l10n-4.3.1~rc2/instsetoo_native/util/openoffice.lst.in libreoffice-l10n-4.3.2/instsetoo_native/util/openoffice.lst.in --- libreoffice-l10n-4.3.1~rc2/instsetoo_native/util/openoffice.lst.in 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/instsetoo_native/util/openoffice.lst.in 2014-09-16 19:56:04.000000000 +0000 @@ -71,7 +71,6 @@ STARTCENTER_TEMPLREP_URL http://templates.libreoffice.org/ DICT_REPO_URL http://extensions.libreoffice.org/dictionaries/ STARTCENTER_HIDE_EXTERNAL_LINKS 0 - CABFILENUMBER 2 } active 1 compression 5 @@ -125,7 +124,6 @@ STARTCENTER_TEMPLREP_URL http://templates.libreoffice.org/ DICT_REPO_URL http://extensions.libreoffice.org/dictionaries/ STARTCENTER_HIDE_EXTERNAL_LINKS 0 - CABFILENUMBER 2 } active 1 compression 5 diff -Nru libreoffice-l10n-4.3.1~rc2/l10ntools/source/export.cxx libreoffice-l10n-4.3.2/l10ntools/source/export.cxx --- libreoffice-l10n-4.3.1~rc2/l10ntools/source/export.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/l10ntools/source/export.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -275,7 +275,7 @@ if ( bMergeMode ) { if ( !pMergeDataFile ) - pMergeDataFile = new MergeDataFile(sMergeSrc, global::inputPathname, false); + pMergeDataFile = new MergeDataFile(sMergeSrc, global::inputPathname, true); delete pMergeDataFile; } @@ -1062,14 +1062,14 @@ void Export::MergeRest( ResData *pResData ) { if ( !pMergeDataFile ){ - pMergeDataFile = new MergeDataFile( sMergeSrc, global::inputPathname, false ); + pMergeDataFile = new MergeDataFile( sMergeSrc, global::inputPathname, true ); aLanguages = pMergeDataFile->GetLanguages(); } MergeEntrys *pEntry = 0; if( pResData->bText || pResData->bQuickHelpText || pResData->bTitle ) - pEntry = pMergeDataFile->GetMergeEntrys( pResData ); + pEntry = pMergeDataFile->GetMergeEntrysCaseSensitive( pResData ); if ( pEntry ) { @@ -1154,7 +1154,7 @@ ConvertExportContent( pResData->sId ); } - MergeEntrys* pEntrys = pMergeDataFile->GetMergeEntrys( pResData ); + MergeEntrys* pEntrys = pMergeDataFile->GetMergeEntrysCaseSensitive( pResData ); OString sText; bool bText = pEntrys && pEntrys->GetText( sText, STRING_TYP_TEXT, sCur, true ); diff -Nru libreoffice-l10n-4.3.1~rc2/m4/ax_boost_base.m4 libreoffice-l10n-4.3.2/m4/ax_boost_base.m4 --- libreoffice-l10n-4.3.1~rc2/m4/ax_boost_base.m4 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/m4/ax_boost_base.m4 2014-09-16 19:56:04.000000000 +0000 @@ -91,7 +91,7 @@ dnl are found, e.g. when only header-only libraries are installed! libsubdirs="lib" ax_arch=`uname -m` - if test $ax_arch = x86_64 -o $ax_arch = ppc64 -o $ax_arch = s390x -o $ax_arch = sparc64 -o $ax_arch = aarch64; then + if test $ax_arch = x86_64 -o $ax_arch = ppc64 -o $ax_arch = ppc64le -o $ax_arch = s390x -o $ax_arch = sparc64 -o $ax_arch = aarch64; then libsubdirs="lib64 lib lib64" fi diff -Nru libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/chart/modelbase.cxx libreoffice-l10n-4.3.2/oox/source/drawingml/chart/modelbase.cxx --- libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/chart/modelbase.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/oox/source/drawingml/chart/modelbase.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -34,8 +34,7 @@ void NumberFormat::setAttributes( const AttributeList& rAttribs ) { maFormatCode = rAttribs.getString( XML_formatCode, OUString() ); - // default is 'false', not 'true' as specified - mbSourceLinked = rAttribs.getBool( XML_sourceLinked, false ); + // TODO: if XML_sourceLinked is true, should be used instead. } diff -Nru libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/chart/objectformatter.cxx libreoffice-l10n-4.3.2/oox/source/drawingml/chart/objectformatter.cxx --- libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/chart/objectformatter.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/oox/source/drawingml/chart/objectformatter.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1135,9 +1135,12 @@ sal_Int32 nPropId = bPercentFormat ? PROP_PercentageNumberFormat : PROP_NumberFormat; try { - sal_Int32 nIndex = rNumberFormat.maFormatCode.equalsIgnoreAsciiCase("general") ? + bool bGeneral = rNumberFormat.maFormatCode.equalsIgnoreAsciiCase("general"); + sal_Int32 nIndex = bGeneral && !bPercentFormat ? mxData->mxNumTypes->getStandardIndex( mxData->maFromLocale ) : - mxData->mxNumFmts->addNewConverted( rNumberFormat.maFormatCode, mxData->maEnUsLocale, mxData->maFromLocale ); + mxData->mxNumFmts->addNewConverted( + bGeneral ? OUString("0%") : rNumberFormat.maFormatCode, + mxData->maEnUsLocale, mxData->maFromLocale ); if( nIndex >= 0 ) rPropSet.setProperty( nPropId, nIndex ); } @@ -1147,7 +1150,9 @@ append( OUStringToOString( rNumberFormat.maFormatCode, osl_getThreadTextEncoding() ) ).append( '\'' ).getStr() ); } - rPropSet.setProperty(PROP_LinkNumberFormatToSource, makeAny(rNumberFormat.mbSourceLinked)); + // Format code is ignored if "LinkNumberFormatToSource" is set to "true" :-/ + // See AxisHelper::getExplicitNumberFormatKeyForAxis() + rPropSet.setProperty(PROP_LinkNumberFormatToSource, makeAny(rNumberFormat.maFormatCode.isEmpty())); } } diff -Nru libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/chart/seriesconverter.cxx libreoffice-l10n-4.3.2/oox/source/drawingml/chart/seriesconverter.cxx --- libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/chart/seriesconverter.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/oox/source/drawingml/chart/seriesconverter.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -253,9 +253,8 @@ // data point label settings for( DataLabelsModel::DataLabelVector::iterator aIt = mrModel.maPointLabels.begin(), aEnd = mrModel.maPointLabels.end(); aIt != aEnd; ++aIt ) { - (*aIt)->maNumberFormat.maFormatCode = mrModel.maNumberFormat.maFormatCode; - if( !mrModel.maNumberFormat.maFormatCode.isEmpty() ) - (*aIt)->maNumberFormat.mbSourceLinked = false; + if ((*aIt)->maNumberFormat.maFormatCode.isEmpty()) + (*aIt)->maNumberFormat = mrModel.maNumberFormat; DataLabelConverter aLabelConv( *this, **aIt ); aLabelConv.convertFromModel( rxDataSeries, rTypeGroup ); diff -Nru libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/colorchoicecontext.cxx libreoffice-l10n-4.3.2/oox/source/drawingml/colorchoicecontext.cxx --- libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/colorchoicecontext.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/oox/source/drawingml/colorchoicecontext.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -111,7 +111,17 @@ case A_TOKEN( satOff ): case A_TOKEN( shade ): case A_TOKEN( tint ): - mrColor.addTransformation( nElement, rAttribs.getInteger( XML_val, 0 ) ); + { + OUString aValue = rAttribs.getString( XML_val, OUString() ); + sal_Int32 nVal = 0; + if (aValue.endsWith("%")) + { + nVal = aValue.toDouble() * PER_PERCENT; + } + else + nVal = rAttribs.getInteger(XML_val, 0); + mrColor.addTransformation( nElement, nVal ); + } break; case A_TOKEN( comp ): case A_TOKEN( gamma ): diff -Nru libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/fillproperties.cxx libreoffice-l10n-4.3.2/oox/source/drawingml/fillproperties.cxx --- libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/fillproperties.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/oox/source/drawingml/fillproperties.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -233,7 +233,13 @@ break; case XML_gradFill: if( !maGradientProps.maGradientStops.empty() ) - aSolidColor = maGradientProps.maGradientStops.begin()->second; + { + GradientFillProperties::GradientStopMap::const_iterator aGradientStop = + maGradientProps.maGradientStops.begin(); + if (maGradientProps.maGradientStops.size() > 2) + ++aGradientStop; + aSolidColor = aGradientStop->second; + } break; case XML_pattFill: aSolidColor = maPatternProps.maPattBgColor.isUsed() ? maPatternProps.maPattBgColor : maPatternProps.maPattFgColor; diff -Nru libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/linepropertiescontext.cxx libreoffice-l10n-4.3.2/oox/source/drawingml/linepropertiescontext.cxx --- libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/linepropertiescontext.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/oox/source/drawingml/linepropertiescontext.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -66,8 +66,50 @@ return this; break; case A_TOKEN( ds ): - mrLineProperties.maCustomDash.push_back( LineProperties::DashStop( - rAttribs.getInteger( XML_d, 0 ), rAttribs.getInteger( XML_sp, 0 ) ) ); + { + // 'a:ds' has 2 attributes : 'd' and 'sp' + // both are of type 'a:ST_PositivePercentage' + // according to the specs Office will read percentages formatted with a trailing percent sign + // or formatted as 1000th of a percent without a trailing percent sign, but only write percentages + // as 1000th's of a percent without a trailing percent sign. + // The code below takes care of both scenarios by converting to '1000th of a percent' always + OUString aStr; + sal_Int32 nDash = 0; + aStr = rAttribs.getString( XML_d, "" ); + if ( aStr.endsWith("%") ) + { + // Ends with a '%' + aStr = aStr.copy(0, aStr.getLength() - 1); + aStr = aStr.trim(); + nDash = aStr.toInt32(); + + // Convert to 1000th of a percent + nDash *= 1000; + } + else + { + nDash = rAttribs.getInteger( XML_d, 0 ); + } + + sal_Int32 nSp = 0; + aStr = rAttribs.getString( XML_sp, "" ); + if ( aStr.endsWith("%") ) + { + // Ends with a '%' + aStr = aStr.copy(0, aStr.getLength() - 1); + aStr = aStr.trim(); + nSp = aStr.toInt32(); + + // Convert to 1000th of a percent + nSp *= 1000; + } + else + { + nSp = rAttribs.getInteger( XML_sp, 0 ); + } + + mrLineProperties.maCustomDash.push_back( LineProperties::DashStop( nDash, nSp ) ); + } break; // LineJoinPropertiesGroup diff -Nru libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/lineproperties.cxx libreoffice-l10n-4.3.2/oox/source/drawingml/lineproperties.cxx --- libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/lineproperties.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/oox/source/drawingml/lineproperties.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -107,19 +107,26 @@ sal_Int16 nDashes = 0; sal_Int32 nDashLen = 0; sal_Int32 nDistance = 0; + sal_Int32 nConvertedLen = 0; + sal_Int32 nConvertedDistance = 0; for( LineProperties::DashStopVector::const_iterator aIt = rCustomDash.begin(), aEnd = rCustomDash.end(); aIt != aEnd; ++aIt ) { - if( aIt->first <= 2 ) + // Get from "1000th of percent" ==> percent ==> multiplier + nConvertedLen = aIt->first / 1000 / 100; + nConvertedDistance = aIt->second / 1000 / 100; + + // Check if it is a dot (100% = dot) + if( nConvertedLen == 1 ) { ++nDots; - nDotLen += aIt->first; + nDotLen += nConvertedLen; } else { ++nDashes; - nDashLen += aIt->first; + nDashLen += nConvertedLen; } - nDistance += aIt->second; + nDistance += nConvertedDistance; } orLineDash.DotLen = (nDots > 0) ? ::std::max< sal_Int32 >( nDotLen / nDots, 1 ) : 0; orLineDash.Dots = nDots; diff -Nru libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/table/tablecell.cxx libreoffice-l10n-4.3.2/oox/source/drawingml/table/tablecell.cxx --- libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/table/tablecell.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/oox/source/drawingml/table/tablecell.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -21,8 +21,11 @@ #include "oox/drawingml/table/tableproperties.hxx" #include "oox/drawingml/shapepropertymap.hxx" #include "oox/drawingml/textbody.hxx" +#include "oox/drawingml/theme.hxx" #include "oox/core/xmlfilterbase.hxx" #include "oox/helper/propertyset.hxx" +#include +#include #include #include #include @@ -99,7 +102,7 @@ oox::drawingml::LineProperties& rBottomLeftToTopRightBorder, TableStylePart& rTableStylePart ) { - boost::shared_ptr< ::oox::drawingml::FillProperties >& rPartFillPropertiesPtr( rTableStylePart.getFillProperties() ); + ::oox::drawingml::FillPropertiesPtr& rPartFillPropertiesPtr( rTableStylePart.getFillProperties() ); if ( rPartFillPropertiesPtr.get() ) rFillProperties.assignUsed( *rPartFillPropertiesPtr ); @@ -168,10 +171,6 @@ oox::drawingml::LineProperties aLinePropertiesTopLeftToBottomRight; oox::drawingml::LineProperties aLinePropertiesBottomLeftToTopRight; - boost::shared_ptr< ::oox::drawingml::FillProperties >& rBackgroundFillPropertiesPtr( rTable.getBackgroundFillProperties() ); - if ( rBackgroundFillPropertiesPtr.get() ) - aFillProperties.assignUsed( *rBackgroundFillPropertiesPtr ); - applyTableStylePart( aFillProperties, aTextStyleProps, aLinePropertiesLeft, aLinePropertiesRight, @@ -352,6 +351,33 @@ aFillProperties.assignUsed( maFillProperties ); ShapePropertyMap aPropMap( rFilterBase.getModelObjectHelper() ); + + Color aBgColor; + sal_Int32 nPhClr = API_RGB_TRANSPARENT; + boost::shared_ptr< ::oox::drawingml::FillProperties >& rBackgroundFillPropertiesPtr( rTable.getBackgroundFillProperties() ); + ::oox::drawingml::ShapeStyleRef& rBackgroundFillStyle( rTable.getBackgroundFillStyleRef() ); + if (rBackgroundFillPropertiesPtr.get()) + aBgColor = rBackgroundFillPropertiesPtr->getBestSolidColor(); + else if (rBackgroundFillStyle.mnThemedIdx != 0) + { + if (const Theme* pTheme = rFilterBase.getCurrentTheme()) + { + aBgColor = pTheme->getFillStyle(rBackgroundFillStyle.mnThemedIdx)->getBestSolidColor(); + nPhClr = rBackgroundFillStyle.maPhClr.getColor(rFilterBase.getGraphicHelper()); + } + } + if (aBgColor.isUsed()) + { + const Color& rCellColor = aFillProperties.getBestSolidColor(); + const double fTransparency = rCellColor.isUsed() ? 0.01 * rCellColor.getTransparency() : 1.0; + ::Color nBgColor( aBgColor.getColor(rFilterBase.getGraphicHelper(), nPhClr) ); + ::Color nCellColor( rCellColor.getColor(rFilterBase.getGraphicHelper()) ); + ::Color aResult( basegfx::interpolate(nBgColor.getBColor(), nCellColor.getBColor(), 1.0 - fTransparency) ); + aFillProperties.maFillColor.clearTransformations(); + aFillProperties.maFillColor.setSrgbClr(aResult.GetRGBColor()); + aFillProperties.moFillType.set(XML_solidFill); + } + // TODO: phClr? aFillProperties.pushToPropMap( aPropMap, rFilterBase.getGraphicHelper() ); PropertySet( xPropSet ).setProperties( aPropMap ); diff -Nru libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/textbodypropertiescontext.cxx libreoffice-l10n-4.3.2/oox/source/drawingml/textbodypropertiescontext.cxx --- libreoffice-l10n-4.3.1~rc2/oox/source/drawingml/textbodypropertiescontext.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/oox/source/drawingml/textbodypropertiescontext.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -123,7 +123,11 @@ mrTextBodyProp.maPropertyMap.setProperty( PROP_TextAutoGrowHeight, false); break; case A_TOKEN( spAutoFit ): - mrTextBodyProp.maPropertyMap.setProperty( PROP_TextAutoGrowHeight, true); + { + const sal_Int32 tVert = mrTextBodyProp.moVert.get( XML_horz ); + if( tVert != XML_vert && tVert != XML_eaVert && tVert != XML_vert270 && tVert != XML_mongolianVert ) + mrTextBodyProp.maPropertyMap.setProperty( PROP_TextAutoGrowHeight, true); + } break; case A_TOKEN( scene3d ): // CT_Scene3D diff -Nru libreoffice-l10n-4.3.1~rc2/oox/source/export/drawingml.cxx libreoffice-l10n-4.3.2/oox/source/export/drawingml.cxx --- libreoffice-l10n-4.3.1~rc2/oox/source/export/drawingml.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/oox/source/export/drawingml.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -626,19 +626,44 @@ if( bDashSet && aStyleLineStyle != drawing::LineStyle_DASH ) { // line style is a dash and it was not set by the shape style - // TODO: the XML_d and XML_sp values seem insane + mpFS->startElementNS( XML_a, XML_custDash, FSEND ); - int i; - for( i = 0; i < aLineDash.Dots; i ++ ) - mpFS->singleElementNS( XML_a, XML_ds, - XML_d, aLineDash.DotLen ? writePercentage( aLineDash.DotLen*1000 ) : "100000%", - XML_sp, writePercentage( aLineDash.Distance*1000 ), - FSEND ); - for( i = 0; i < aLineDash.Dashes; i ++ ) - mpFS->singleElementNS( XML_a, XML_ds, - XML_d, aLineDash.DashLen ? writePercentage( aLineDash.DashLen*1000 ) : "100000%", - XML_sp, writePercentage( aLineDash.Distance*1000 ), - FSEND ); + + // Check that line-width is positive and distance between dashes\dots is positive + if ( nLineWidth > 0 && aLineDash.Distance > 0 ) + { + // Write 'dashes' first, and then 'dots' + int i; + if ( aLineDash.Dashes > 0 ) + { + for( i = 0; i < aLineDash.Dashes; i ++ ) + mpFS->singleElementNS( XML_a , XML_ds, + XML_d , write1000thOfAPercent( aLineDash.DashLen > 0 ? aLineDash.DashLen / nLineWidth * 100 : 100 ), + XML_sp, write1000thOfAPercent( aLineDash.Distance > 0 ? aLineDash.Distance / nLineWidth * 100 : 100 ), + FSEND ); + } + if ( aLineDash.Dots > 0 ) + { + for( i = 0; i < aLineDash.Dots; i ++ ) + mpFS->singleElementNS( XML_a, XML_ds, + XML_d , write1000thOfAPercent( aLineDash.DotLen > 0 ? aLineDash.DotLen / nLineWidth * 100 : 100 ), + XML_sp, write1000thOfAPercent( aLineDash.Distance > 0 ? aLineDash.Distance / nLineWidth * 100 : 100 ), + FSEND ); + } + } + + if ( nLineWidth <= 0 ) + SAL_WARN("oox", "while writing outline - custom dash - line width was < 0 : " << nLineWidth); + if ( aLineDash.Dashes < 0 ) + SAL_WARN("oox", "while writing outline - custom dash - number of dashes was < 0 : " << aLineDash.Dashes); + if ( aLineDash.Dashes > 0 && aLineDash.DashLen <= 0 ) + SAL_WARN("oox", "while writing outline - custom dash - dash length was < 0 : " << aLineDash.DashLen); + if ( aLineDash.Dots < 0 ) + SAL_WARN("oox", "while writing outline - custom dash - number of dots was < 0 : " << aLineDash.Dots); + if ( aLineDash.Dots > 0 && aLineDash.DotLen <= 0 ) + SAL_WARN("oox", "while writing outline - custom dash - dot length was < 0 : " << aLineDash.DotLen); + if ( aLineDash.Distance <= 0 ) + SAL_WARN("oox", "while writing outline - custom dash - distance was < 0 : " << aLineDash.Distance); mpFS->endElementNS( XML_a, XML_custDash ); } @@ -1458,7 +1483,7 @@ if ( nPropertyCount ) { - sal_Int16 nNumberingType = -1; + sal_Int16 nNumberingType = SVX_NUM_NUMBER_NONE; bool bSDot = false; bool bPBehind = false; bool bPBoth = false; @@ -1520,6 +1545,9 @@ } } + if (nNumberingType == SVX_NUM_NUMBER_NONE) + return; + const char* pAutoNumType = GetAutoNumType( nNumberingType, bSDot, bPBehind, bPBoth ); if( nLevel >= 0 ) { diff -Nru libreoffice-l10n-4.3.1~rc2/oox/source/ppt/pptgraphicshapecontext.cxx libreoffice-l10n-4.3.2/oox/source/ppt/pptgraphicshapecontext.cxx --- libreoffice-l10n-4.3.1~rc2/oox/source/ppt/pptgraphicshapecontext.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/oox/source/ppt/pptgraphicshapecontext.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -53,13 +53,6 @@ { } -// if nFirstPlaceholder can't be found, it will be searched for nSecondPlaceholder -static oox::drawingml::ShapePtr findPlaceholder( sal_Int32 nFirstPlaceholder, sal_Int32 nSecondPlaceholder, std::vector< oox::drawingml::ShapePtr >& rShapes ) -{ - oox::drawingml::ShapePtr pPlaceholder = PPTShape::findPlaceholder( nFirstPlaceholder, rShapes ); - return !nSecondPlaceholder || pPlaceholder.get() ? pPlaceholder : PPTShape::findPlaceholder( nSecondPlaceholder, rShapes ); -} - ContextHandlerRef PPTGraphicShapeContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) { switch( aElementToken ) @@ -135,12 +128,14 @@ if ( nFirstPlaceholder ) { if ( eShapeLocation == Layout ) // for layout objects the referenced object can be found within the same shape tree - pPlaceholder = findPlaceholder( nFirstPlaceholder, nSecondPlaceholder, mpSlidePersistPtr->getShapes()->getChildren() ); + pPlaceholder = PPTShape::findPlaceholder( nFirstPlaceholder, nSecondPlaceholder, + pPPTShapePtr->getSubTypeIndex(), mpSlidePersistPtr->getShapes()->getChildren(), true ); else if ( eShapeLocation == Slide ) // normal slide shapes have to search within the corresponding master tree for referenced objects { SlidePersistPtr pMasterPersist( mpSlidePersistPtr->getMasterPersist() ); if ( pMasterPersist.get() ) - pPlaceholder = findPlaceholder( nFirstPlaceholder, nSecondPlaceholder, pMasterPersist->getShapes()->getChildren() ); + pPlaceholder = PPTShape::findPlaceholder( nFirstPlaceholder, nSecondPlaceholder, + pPPTShapePtr->getSubTypeIndex(), pMasterPersist->getShapes()->getChildren() ); } } } diff -Nru libreoffice-l10n-4.3.1~rc2/oox/source/ppt/pptimport.cxx libreoffice-l10n-4.3.2/oox/source/ppt/pptimport.cxx --- libreoffice-l10n-4.3.1~rc2/oox/source/ppt/pptimport.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/oox/source/ppt/pptimport.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -82,6 +82,8 @@ file:////source/dump/pptxdumper.ini. */ OOX_DUMP_FILE( ::oox::dump::pptx::Dumper ); + importDocumentProperties(); + OUString aFragmentPath = getFragmentPathFromFirstTypeFromOfficeDoc( "officeDocument" ); FragmentHandlerRef xPresentationFragmentHandler( new PresentationFragmentHandler( *this, aFragmentPath ) ); maTableStyleListPath = xPresentationFragmentHandler->getFragmentPathFromFirstTypeFromOfficeDoc( "tableStyles" ); diff -Nru libreoffice-l10n-4.3.1~rc2/oox/source/ppt/pptshapecontext.cxx libreoffice-l10n-4.3.2/oox/source/ppt/pptshapecontext.cxx --- libreoffice-l10n-4.3.1~rc2/oox/source/ppt/pptshapecontext.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/oox/source/ppt/pptshapecontext.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -53,45 +53,6 @@ { } -oox::drawingml::ShapePtr findPlaceholder( const sal_Int32 nMasterPlaceholder, const OptValue< sal_Int32 >& oSubTypeIndex, std::vector< oox::drawingml::ShapePtr >& rShapes ) -{ - oox::drawingml::ShapePtr aShapePtr; - oox::drawingml::ShapePtr aChoiceShapePtr1; - oox::drawingml::ShapePtr aChoiceShapePtr2; - std::vector< oox::drawingml::ShapePtr >::reverse_iterator aRevIter( rShapes.rbegin() ); - while( aRevIter != rShapes.rend() ) - { - if ( (*aRevIter)->getSubType() == nMasterPlaceholder ) - { - if( !oSubTypeIndex.has() && aChoiceShapePtr1 == 0 ) - aChoiceShapePtr1 = *aRevIter; - else if( aChoiceShapePtr2 == 0 ) - aChoiceShapePtr2 = *aRevIter; - if( (*aRevIter)->getSubTypeIndex() == oSubTypeIndex ) - { - aShapePtr = *aRevIter; - break; - } - } - std::vector< oox::drawingml::ShapePtr >& rChildren = (*aRevIter)->getChildren(); - aShapePtr = findPlaceholder( nMasterPlaceholder, oSubTypeIndex, rChildren ); - if ( aShapePtr.get() ) - break; - ++aRevIter; - } - if( aShapePtr == 0 ) - return aChoiceShapePtr1 ? aChoiceShapePtr1 : aChoiceShapePtr2; - return aShapePtr; -} - -// if nFirstPlaceholder can't be found, it will be searched for nSecondPlaceholder -oox::drawingml::ShapePtr findPlaceholder( sal_Int32 nFirstPlaceholder, sal_Int32 nSecondPlaceholder, - const OptValue< sal_Int32 >& oSubTypeIndex, std::vector< oox::drawingml::ShapePtr >& rShapes ) -{ - oox::drawingml::ShapePtr pPlaceholder = findPlaceholder( nFirstPlaceholder, oSubTypeIndex, rShapes ); - return !nSecondPlaceholder || pPlaceholder.get() ? pPlaceholder : findPlaceholder( nSecondPlaceholder, oSubTypeIndex, rShapes ); -} - ContextHandlerRef PPTShapeContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) { if( getNamespace( aElementToken ) == NMSP_dsp ) @@ -135,7 +96,7 @@ case XML_subTitle : // slide/layout nFirstPlaceholder = XML_subTitle; - nSecondPlaceholder = XML_title; + nSecondPlaceholder = XML_body; break; case XML_obj : // slide/layout @@ -165,30 +126,22 @@ oox::drawingml::ShapePtr pPlaceholder; if ( eShapeLocation == Layout ) // for layout objects the referenced object can be found within the same shape tree { - if( pPPTShapePtr->getSubTypeIndex().has() ) - pPlaceholder = PPTShape::findPlaceholderByIndex( pPPTShapePtr->getSubTypeIndex().get(), mpSlidePersistPtr->getShapes()->getChildren() ); - if ( !pPlaceholder.get() ) - pPlaceholder = findPlaceholder( nFirstPlaceholder, nSecondPlaceholder, pPPTShapePtr->getSubTypeIndex(), - mpSlidePersistPtr->getShapes()->getChildren() ); + pPlaceholder = PPTShape::findPlaceholder( nFirstPlaceholder, nSecondPlaceholder, + pPPTShapePtr->getSubTypeIndex(), mpSlidePersistPtr->getShapes()->getChildren(), true ); } else if ( eShapeLocation == Slide ) // normal slide shapes have to search within the corresponding master tree for referenced objects { SlidePersistPtr pMasterPersist( mpSlidePersistPtr->getMasterPersist() ); - if ( pMasterPersist.get() ) { - if( pPPTShapePtr->getSubTypeIndex().has() ) - pPlaceholder = PPTShape::findPlaceholderByIndex( pPPTShapePtr->getSubTypeIndex().get(), pMasterPersist->getShapes()->getChildren() ); - // TODO: Check if this is required for non-notes pages as well... - if ( !pPlaceholder.get() || ( pMasterPersist->isNotesPage() && pPlaceholder->getSubType() != nFirstPlaceholder && - pPlaceholder->getSubType() != nSecondPlaceholder ) ) - { - pPlaceholder = findPlaceholder( nFirstPlaceholder, nSecondPlaceholder, - pPPTShapePtr->getSubTypeIndex(), pMasterPersist->getShapes()->getChildren() ); - } + if ( pMasterPersist.get() ) + { + pPlaceholder = PPTShape::findPlaceholder( nFirstPlaceholder, nSecondPlaceholder, + pPPTShapePtr->getSubTypeIndex(), pMasterPersist->getShapes()->getChildren() ); } } if ( pPlaceholder.get() ) { - OSL_TRACE("shape %s will get shape reference %s applied", OUStringToOString(mpShapePtr->getId(), RTL_TEXTENCODING_UTF8 ).getStr(), OUStringToOString(pPlaceholder->getId(), RTL_TEXTENCODING_UTF8 ).getStr()); + SAL_INFO("oox.ppt","shape " << mpShapePtr->getId() << + " will get shape reference " << pPlaceholder->getId() << " applied"); mpShapePtr->applyShapeReference( *pPlaceholder.get() ); PPTShape* pPPTShape = dynamic_cast< PPTShape* >( pPlaceholder.get() ); if ( pPPTShape ) diff -Nru libreoffice-l10n-4.3.1~rc2/oox/source/ppt/pptshape.cxx libreoffice-l10n-4.3.2/oox/source/ppt/pptshape.cxx --- libreoffice-l10n-4.3.1~rc2/oox/source/ppt/pptshape.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/oox/source/ppt/pptshape.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -90,12 +90,10 @@ { case XML_ctrTitle : case XML_title : - case XML_subTitle : pTextListStyle = rSlidePersist.getMasterPersist().get() ? rSlidePersist.getMasterPersist()->getTitleTextStyle() : rSlidePersist.getTitleTextStyle(); break; + case XML_subTitle : case XML_obj : - pTextListStyle = rSlidePersist.getMasterPersist().get() ? rSlidePersist.getMasterPersist()->getBodyTextStyle() : rSlidePersist.getBodyTextStyle(); - break; case XML_body : if ( rSlidePersist.isNotesPage() ) pTextListStyle = rSlidePersist.getMasterPersist().get() ? rSlidePersist.getMasterPersist()->getNotesTextStyle() : rSlidePersist.getNotesTextStyle(); @@ -149,7 +147,7 @@ sServiceName = OUString(); else { sServiceName = "com.sun.star.presentation.SubtitleShape"; - aMasterTextListStyle = rSlidePersist.getMasterPersist().get() ? rSlidePersist.getMasterPersist()->getTitleTextStyle() : rSlidePersist.getTitleTextStyle(); + aMasterTextListStyle = rSlidePersist.getMasterPersist().get() ? rSlidePersist.getMasterPersist()->getBodyTextStyle() : rSlidePersist.getBodyTextStyle(); } } break; @@ -228,7 +226,7 @@ if( mnSubType && getSubTypeIndex().has() && meShapeLocation == Layout ) { oox::drawingml::ShapePtr pPlaceholder = PPTShape::findPlaceholderByIndex( getSubTypeIndex().get(), rSlidePersist.getShapes()->getChildren(), true ); if (!pPlaceholder.get()) - pPlaceholder = PPTShape::findPlaceholder( mnSubType, rSlidePersist.getShapes()->getChildren(), true ); + pPlaceholder = PPTShape::findPlaceholder( mnSubType, 0, getSubTypeIndex(), rSlidePersist.getShapes()->getChildren(), true ); if (pPlaceholder.get()) { if( maSize.Width == 0 || maSize.Height == 0 ) { @@ -378,26 +376,84 @@ Shape::applyShapeReference( rReferencedShape, bUseText ); } -oox::drawingml::ShapePtr PPTShape::findPlaceholder( const sal_Int32 nMasterPlaceholder, std::vector< oox::drawingml::ShapePtr >& rShapes, bool bMasterOnly ) +namespace +{ + bool ShapeLocationIsMaster(oox::drawingml::Shape *pInShape) + { + PPTShape* pShape = dynamic_cast(pInShape); + return pShape && pShape->getShapeLocation() == Master; + } +} + +// Function to find placeholder (ph) for a shape. No idea how MSO implements this, but +// this order seems to work quite well (probably it's unnecessary complicated / wrong): +// 1. ph with nFirstSubType and the same oSubTypeIndex +// 2. ph with nFirstSubType +// 3. ph with nSecondSubType and the same oSubTypeIndex +// 4. ph with nSecondSubType +// 5. ph with the same oSubTypeIndex +oox::drawingml::ShapePtr PPTShape::findPlaceholder( sal_Int32 nFirstSubType, sal_Int32 nSecondSubType, + const OptValue< sal_Int32 >& oSubTypeIndex, std::vector< oox::drawingml::ShapePtr >& rShapes, bool bMasterOnly ) { oox::drawingml::ShapePtr aShapePtr; + oox::drawingml::ShapePtr aChoiceShapePtr1; + oox::drawingml::ShapePtr aChoiceShapePtr2; + oox::drawingml::ShapePtr aChoiceShapePtr3; + oox::drawingml::ShapePtr aChoiceShapePtr4; std::vector< oox::drawingml::ShapePtr >::reverse_iterator aRevIter( rShapes.rbegin() ); - while( aRevIter != rShapes.rend() ) + while (aRevIter != rShapes.rend()) { - if ( (*aRevIter)->getSubType() == nMasterPlaceholder && - ( !bMasterOnly || - ( dynamic_cast< PPTShape* >( (*aRevIter).get() ) && dynamic_cast< PPTShape* >( (*aRevIter).get() )->getShapeLocation() == Master ) ) ) + if (!bMasterOnly || ShapeLocationIsMaster((*aRevIter).get())) { - aShapePtr = *aRevIter; - break; + if ((*aRevIter)->getSubTypeIndex() == oSubTypeIndex) + { + if ((*aRevIter)->getSubType() == nFirstSubType) + { + aShapePtr = *aRevIter; + break; + } + else if ((*aRevIter)->getSubType() == nSecondSubType && !aChoiceShapePtr2.get()) + aChoiceShapePtr2 = *aRevIter; + else if (!aChoiceShapePtr4.get()) + aChoiceShapePtr4 = *aRevIter; + } + else if ((*aRevIter)->getSubType() == nFirstSubType && !aChoiceShapePtr1.get()) + aChoiceShapePtr1 = *aRevIter; + else if ((*aRevIter)->getSubType() == nSecondSubType && !aChoiceShapePtr3.get()) + aChoiceShapePtr3 = *aRevIter; } std::vector< oox::drawingml::ShapePtr >& rChildren = (*aRevIter)->getChildren(); - aShapePtr = findPlaceholder( nMasterPlaceholder, rChildren, bMasterOnly ); - if ( aShapePtr.get() ) + aChoiceShapePtr4 = findPlaceholder( nFirstSubType, nSecondSubType, oSubTypeIndex, rChildren, bMasterOnly ); + if (aChoiceShapePtr4.get()) + { + if (aChoiceShapePtr4->getSubType() == nFirstSubType) + { + if (aChoiceShapePtr4->getSubTypeIndex() == oSubTypeIndex) + aShapePtr = aChoiceShapePtr4; + else + aChoiceShapePtr1 = aChoiceShapePtr4; + } + else if (aChoiceShapePtr4->getSubType() == nSecondSubType) + { + if (aChoiceShapePtr4->getSubTypeIndex() == oSubTypeIndex) + aChoiceShapePtr2 = aChoiceShapePtr4; + else + aChoiceShapePtr3 = aChoiceShapePtr4; + } + } + if (aShapePtr.get()) break; ++aRevIter; } - return aShapePtr; + if (aShapePtr.get()) + return aShapePtr; + if (aChoiceShapePtr1.get()) + return aChoiceShapePtr1; + if (aChoiceShapePtr2.get()) + return aChoiceShapePtr2; + if (aChoiceShapePtr3.get()) + return aChoiceShapePtr3; + return aChoiceShapePtr4; } oox::drawingml::ShapePtr PPTShape::findPlaceholderByIndex( const sal_Int32 nIdx, std::vector< oox::drawingml::ShapePtr >& rShapes, bool bMasterOnly ) diff -Nru libreoffice-l10n-4.3.1~rc2/postprocess/Rdb_services.mk libreoffice-l10n-4.3.2/postprocess/Rdb_services.mk --- libreoffice-l10n-4.3.1~rc2/postprocess/Rdb_services.mk 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/postprocess/Rdb_services.mk 2014-09-16 19:56:04.000000000 +0000 @@ -331,7 +331,7 @@ extensions/source/update/feed/updatefeed \ xmlhelp/util/ucpchelp1 \ xmlsecurity/util/xsec_xmlsec$(if $(filter WNT,$(OS)),.windows) \ - $(if $(filter-out MACOSX WNT,$(OS)),\ + $(if $(filter-out WNT,$(OS)),\ shell/source/cmdmail/cmdmail \ ) \ $(if $(filter-out WNT,$(OS)),\ diff -Nru libreoffice-l10n-4.3.1~rc2/pyuno/source/module/pyuno_runtime.cxx libreoffice-l10n-4.3.2/pyuno/source/module/pyuno_runtime.cxx --- libreoffice-l10n-4.3.1~rc2/pyuno/source/module/pyuno_runtime.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/pyuno/source/module/pyuno_runtime.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -562,13 +562,19 @@ } case typelib_TypeClass_INTERFACE: { - Reference< XUnoTunnel > tunnel; - a >>= tunnel; - if( tunnel.is() ) + // fdo#46678 must unlock GIL because getSomething could acquire locks, + // and queryInterface too... { - sal_Int64 that = tunnel->getSomething( ::pyuno::Adapter::getUnoTunnelImplementationId() ); - if( that ) - return ((Adapter*)sal::static_int_cast< sal_IntPtr >(that))->getWrappedObject(); + PyThreadDetach d; + + Reference tunnel; + a >>= tunnel; + if (tunnel.is()) + { + sal_Int64 that = tunnel->getSomething( ::pyuno::Adapter::getUnoTunnelImplementationId() ); + if( that ) + return ((Adapter*)sal::static_int_cast< sal_IntPtr >(that))->getWrappedObject(); + } } //This is just like the struct case: return PyRef( PyUNO_new (a, getImpl()->cargo->xInvocation), SAL_NO_ACQUIRE ); diff -Nru libreoffice-l10n-4.3.1~rc2/readlicense_oo/license/CREDITS.fodt libreoffice-l10n-4.3.2/readlicense_oo/license/CREDITS.fodt --- libreoffice-l10n-4.3.1~rc2/readlicense_oo/license/CREDITS.fodt 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/readlicense_oo/license/CREDITS.fodt 2014-09-16 19:56:04.000000000 +0000 @@ -1,24 +1,24 @@ - Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/4.3.0.3$Linux_X86_64 LibreOffice_project/08ebe52789a201dd7d38ef653ef7a48925e7f9f72012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA + Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/4.2.2.1$Linux_X86_64 LibreOffice_project/3be8cda0bddd8e430d8cda1ebfd581265cca5a0f2012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA - 89004 + 63578 501 - 21724 - 15136 + 32810 + 15401 true true view2 - 5554 - 5373 + 2141 + 3471 501 - 89004 - 22223 - 104138 + 63578 + 33309 + 78976 0 0 false @@ -36,7 +36,6 @@ false false false - false false false false @@ -81,7 +80,7 @@ false 0 - 1897408 + 1779894 false true @@ -91,8 +90,8 @@ 0 false true - false true + false true false false @@ -157,18 +156,18 @@ - + - + - + @@ -176,7 +175,7 @@ - + @@ -203,7 +202,7 @@ - + @@ -300,26 +299,20 @@ - + - + - + - - - - + - - - @@ -378,24 +371,24 @@ - + - + - + - + - + - + @@ -405,47 +398,19 @@ - + - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - + - + - @@ -453,9 +418,6 @@ - - - @@ -464,230 +426,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -717,7 +455,7 @@ - + @@ -725,7 +463,7 @@ - + iVBORw0KGgoAAAANSUhEUgAAATkAAABkCAYAAAD9hkdsAAAAAXNSR0IArs4c6QAAAAZiS0dE AP8A/wD/oL2nkwAAAAlwSFlzAAAOuQAADrkBuAYXvwAAAAd0SU1FB9oMChUNCQOjP/4AADYV SURBVHja7V0HfBXF9r65N0B67yEhQIAkJEAggSQklNB7B0UELAhIFYIUReBhQewFEBREUBEQ @@ -988,14 +726,13 @@ Credits - 951 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2014-08-26 01:07:45. - * marks developers whose first contributions happened after 2010-09-28. + 884 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2014-02-18 15:23:39. + * marks developers whose first contributions happened after 2010-09-28. Developers committing code since 2010-09-28 - - + Ruediger TimmCommits: 82464Joined: 2000-10-10 @@ -1015,116 +752,116 @@ Vladimir GlazunovCommits: 25434Joined: 2000-12-04 - Caolán McNamaraCommits: 14875Joined: 2000-10-10 + Caolán McNamaraCommits: 11498Joined: 2000-10-10 Ivo HinkelmannCommits: 9480Joined: 2002-09-09 - Stephan BergmannCommits: 6915Joined: 2000-10-04 + Stephan BergmannCommits: 5614Joined: 2000-10-04 - Kohei YoshidaCommits: 5034Joined: 2009-06-19 + Frank Schoenheit [fs]Commits: 5008Joined: 2000-09-19 - Frank Schoenheit [fs]Commits: 5008Joined: 2000-09-19 + Kohei YoshidaCommits: 4493Joined: 2009-06-19 - Michael StahlCommits: 3869Joined: 2008-06-16 + Michael StahlCommits: 3369Joined: 2008-06-16 - Miklos VajnaCommits: 3356Joined: 2010-07-29 + Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 - Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 + Ocke Janssen [oj]Commits: 2850Joined: 2000-09-20 - *Noel GrandinCommits: 2873Joined: 2011-12-12 + Miklos VajnaCommits: 2604Joined: 2010-07-29 - Ocke Janssen [oj]Commits: 2850Joined: 2000-09-20 + Mathias BauerCommits: 2580Joined: 2000-09-20 - David TardonCommits: 2810Joined: 2009-11-12 + David TardonCommits: 2579Joined: 2009-11-12 - Mathias BauerCommits: 2580Joined: 2000-09-20 + Oliver SpechtCommits: 2458Joined: 2000-09-21 - Oliver SpechtCommits: 2458Joined: 2000-09-21 + *Markus MohrhardCommits: 2125Joined: 2011-03-17 - Eike RathkeCommits: 2326Joined: 2000-10-11 + Philipp Lohmann [pl]Commits: 2089Joined: 2000-09-21 - *Markus MohrhardCommits: 2258Joined: 2011-03-17 + Eike RathkeCommits: 2058Joined: 2000-10-11 - *Thomas ArnholdCommits: 2164Joined: 2011-01-16 + *Noel GrandinCommits: 2057Joined: 2011-12-12 - Philipp Lohmann [pl]Commits: 2089Joined: 2000-09-21 + Christian LippkaCommits: 1805Joined: 2000-09-25 - *Norbert ThiebaudCommits: 2001Joined: 2010-09-29 + *Norbert ThiebaudCommits: 1758Joined: 2010-09-29 - Christian LippkaCommits: 1805Joined: 2000-09-25 + *Thomas ArnholdCommits: 1556Joined: 2011-01-16 - Jan HolesovskyCommits: 1706Joined: 2009-06-23 + Jan HolesovskyCommits: 1507Joined: 2009-06-23 - *Julien NabetCommits: 1486Joined: 2010-11-04 + Michael MeeksCommits: 1393Joined: 2004-08-05 - *Matúš KukanCommits: 1484Joined: 2011-04-06 + *Andras TimarCommits: 1389Joined: 2010-10-02 - *Andras TimarCommits: 1455Joined: 2010-10-02 + Luboš LuňákCommits: 1348Joined: 2010-09-21 - Luboš LuňákCommits: 1416Joined: 2010-09-21 + Fridrich ŠtrbaCommits: 1317Joined: 2007-02-22 - Michael MeeksCommits: 1395Joined: 2004-08-05 + Thomas Lange [tl]Commits: 1310Joined: 2000-09-22 - Bjoern MichaelsenCommits: 1355Joined: 2009-10-14 + *Matúš KukanCommits: 1309Joined: 2011-04-06 - Fridrich ŠtrbaCommits: 1320Joined: 2007-02-22 + Niklas NebelCommits: 1296Joined: 2000-09-19 - Thomas Lange [tl]Commits: 1310Joined: 2000-09-22 + *Julien NabetCommits: 1280Joined: 2010-11-04 - Niklas NebelCommits: 1296Joined: 2000-09-19 + Bjoern MichaelsenCommits: 1265Joined: 2009-10-14 Daniel Rentz [dr]Commits: 1206Joined: 2000-09-28 - Armin Le GrandCommits: 1181Joined: 2000-09-25 + Armin Le GrandCommits: 1121Joined: 2000-09-25 - Thorsten BehrensCommits: 1095Joined: 2001-04-25 + Thorsten BehrensCommits: 1087Joined: 2001-04-25 Petr MladekCommits: 958Joined: 2006-10-03 @@ -1141,7 +878,7 @@ Henning BrinkmannCommits: 899Joined: 2002-08-14 - Cédric BosdonnatCommits: 882Joined: 2009-11-16 + Cédric BosdonnatCommits: 876Joined: 2009-11-16 Malte Timmermann [mt]Commits: 864Joined: 2000-10-10 @@ -1155,66 +892,52 @@ Martin GallweyCommits: 827Joined: 2000-11-08 - Herbert DürrCommits: 826Joined: 2000-10-17 + Herbert DürrCommits: 799Joined: 2000-10-17 Mikhail VoytenkoCommits: 793Joined: 2001-01-16 - *Lionel Elie MamaneCommits: 782Joined: 2011-01-15 + Carsten DriesnerCommits: 748Joined: 2000-10-06 - *Takeshi AbeCommits: 778Joined: 2010-11-08 + Joachim LingnerCommits: 745Joined: 2000-10-05 - Carsten DriesnerCommits: 748Joined: 2000-10-06 + *Lionel Elie MamaneCommits: 739Joined: 2011-01-15 - Joachim LingnerCommits: 745Joined: 2000-10-05 + Release EngineeringCommits: 728Joined: 2008-10-02 - Release EngineeringCommits: 728Joined: 2008-10-02 + Andre FischerCommits: 712Joined: 2001-02-06 - Andre FischerCommits: 719Joined: 2001-02-06 - - - *Matteo CasalinCommits: 689Joined: 2011-11-13 - - *Joseph PowersCommits: 658Joined: 2010-10-15 Kai SommerfeldCommits: 651Joined: 2000-10-10 - - - - *Markus MohrhardCommits: 644Joined: 2014-01-10 - Ingrid HalamaCommits: 639Joined: 2001-01-19 - *Rafael DominguezCommits: 606Joined: 2011-02-13 - - - *Zolnai TamásCommits: 572Joined: 2012-08-06 + *Takeshi AbeCommits: 635Joined: 2010-11-08 - Thomas Benisch [tbe]Commits: 551Joined: 2000-10-23 + *Rafael DominguezCommits: 606Joined: 2011-02-13 - *Tomaž VajngerlCommits: 540Joined: 2012-06-02 + Thomas Benisch [tbe]Commits: 551Joined: 2000-10-23 - Jürgen SchmidtCommits: 512Joined: 2000-10-09 + Jürgen SchmidtCommits: 507Joined: 2000-10-09 *Andrzej J.R. HuntCommits: 503Joined: 2012-03-27 @@ -1231,25 +954,28 @@ Dirk VoelzkeCommits: 392Joined: 2000-11-27 - Rene EngelhardCommits: 382Joined: 2005-03-14 + *Ivan TimofeevCommits: 380Joined: 2011-09-16 - *Ivan TimofeevCommits: 380Joined: 2011-09-16 + Rene EngelhardCommits: 370Joined: 2005-03-14 - Oliver-Rainer WittmannCommits: 372Joined: 2002-08-09 + Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 - *Chris SherlockCommits: 369Joined: 2013-02-25 + Oliver-Rainer WittmannCommits: 333Joined: 2002-08-09 - Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 + *Zolnai TamásCommits: 330Joined: 2012-08-06 + *Matteo CasalinCommits: 327Joined: 2011-11-13 + + *Xisco FauliCommits: 311Joined: 2011-02-06 @@ -1258,47 +984,44 @@ *August SodoraCommits: 285Joined: 2011-10-18 - - *Chr. RossmanithCommits: 280Joined: 2011-01-03 - - *Pierre-André JacquodCommits: 276Joined: 2010-11-13 + *Chr. RossmanithCommits: 278Joined: 2011-01-03 - *Olivier HallotCommits: 267Joined: 2010-10-25 + *Pierre-André JacquodCommits: 276Joined: 2010-11-13 Lars LanghansCommits: 260Joined: 2000-09-22 - Muthu SubramanianCommits: 243Joined: 2010-08-25 + *Siqi LIUCommits: 236Joined: 2013-04-13 - *Siqi LIUCommits: 236Joined: 2013-04-13 + *Olivier HallotCommits: 229Joined: 2010-10-25 - Christian LohmaierCommits: 232Joined: 2008-06-01 + *Tomaž VajngerlCommits: 229Joined: 2012-06-02 - *Khaled HosnyCommits: 222Joined: 2011-01-28 + Muthu SubramanianCommits: 222Joined: 2010-08-25 - Ingo SchmidtCommits: 202Joined: 2004-02-05 + *Khaled HosnyCommits: 217Joined: 2011-01-28 - *Robert NagyCommits: 191Joined: 2010-11-04 + Christian LohmaierCommits: 211Joined: 2008-06-01 - *Marcos Paulo de SouzaCommits: 182Joined: 2012-09-26 + Ingo SchmidtCommits: 202Joined: 2004-02-05 - *Katarina BehrensCommits: 178Joined: 2010-10-13 + *Robert NagyCommits: 191Joined: 2010-11-04 *François TigeotCommits: 176Joined: 2011-01-31 @@ -1306,16 +1029,16 @@ - *David OstrovskyCommits: 172Joined: 2012-04-01 + *Marcos Paulo de SouzaCommits: 175Joined: 2012-09-26 - *Philipp RiemerCommits: 171Joined: 2012-05-25 + *Katarina BehrensCommits: 167Joined: 2010-10-13 - *Michael MeeksCommits: 168Joined: 2013-09-10 + *Philipp RiemerCommits: 166Joined: 2012-05-25 - *Andrzej HuntCommits: 167Joined: 2013-12-04 + *David OstrovskyCommits: 164Joined: 2012-04-01 @@ -1329,14 +1052,11 @@ *Artur DordaCommits: 151Joined: 2012-04-15 - *Jacobo Aragunde PérezCommits: 143Joined: 2013-09-25 + Gregor HartmannCommits: 141Joined: 2000-10-12 - Gregor HartmannCommits: 141Joined: 2000-10-12 - - *Artur DryomovCommits: 137Joined: 2013-03-14 @@ -1345,60 +1065,63 @@ Helge Delfs [hde]Commits: 126Joined: 2009-07-28 + + Takashi OnoCommits: 122Joined: 2009-12-10 + - *haochenCommits: 125Joined: 2013-10-10 + *Sebastian SpaethCommits: 119Joined: 2010-09-28 - *Ariel Constenla-HaileCommits: 124Joined: 2012-01-16 + Kalman Szalai - KAMICommits: 116Joined: 2010-09-14 - Takashi OnoCommits: 122Joined: 2009-12-10 + *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 - *László NémethCommits: 120Joined: 2010-09-29 + *Ariel Constenla-HaileCommits: 112Joined: 2012-01-16 - *Sebastian SpaethCommits: 119Joined: 2010-09-28 + *Markus MohrhardCommits: 111Joined: 2014-01-10 - Kalman Szalai - KAMICommits: 116Joined: 2010-09-14 + *haochenCommits: 109Joined: 2013-10-10 - *Alexander WilmsCommits: 116Joined: 2013-12-22 + *Tomas ChvatalCommits: 109Joined: 2011-07-27 - *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 + *Philipp WeissenbacherCommits: 98Joined: 2011-10-28 - *Philipp WeissenbacherCommits: 111Joined: 2011-10-28 + *László NémethCommits: 98Joined: 2010-09-29 - *Tomáš ChvátalCommits: 110Joined: 2011-07-27 + *Arnaud VersiniCommits: 95Joined: 2010-10-05 - *Arnaud VersiniCommits: 103Joined: 2010-10-05 + *Stefan KnorrCommits: 91Joined: 2011-07-04 - *Maxim MonastirskyCommits: 94Joined: 2013-10-27 + *Michael MeeksCommits: 90Joined: 2013-09-10 - *Stefan KnorrCommits: 91Joined: 2011-07-04 - - *Daniel BankstonCommits: 88Joined: 2012-04-03 *Tim RetoutCommits: 88Joined: 2012-02-14 + *Chris SherlockCommits: 86Joined: 2013-02-25 + + Mihaela KedikovaCommits: 85Joined: 2009-10-30 @@ -1407,23 +1130,23 @@ *Javier FernandezCommits: 84Joined: 2013-03-06 - *Adam CoCommits: 83Joined: 2013-04-28 - - *Thomas KlausnerCommits: 83Joined: 2010-10-01 Tobias KrauseCommits: 83Joined: 2007-10-02 - - *Minh NgoCommits: 83Joined: 2013-05-02 + + *Ricardo MontaniaCommits: 82Joined: 2012-08-18 + *Adam CoCommits: 78Joined: 2013-04-28 + + *Korrawit PruegsanusakCommits: 74Joined: 2011-05-28 @@ -1441,24 +1164,13 @@ *Antonio FernandezCommits: 68Joined: 2012-07-18 - *Kevin HunterCommits: 67Joined: 2010-10-22 + *Jelle van der WaaCommits: 66Joined: 2013-06-16 - *Jelle van der WaaCommits: 66Joined: 2013-06-16 - - - *rbujCommits: 65Joined: 2014-06-11 - - - *weigaoCommits: 63Joined: 2014-05-07 - - - *Douglas MenckenCommits: 62Joined: 2013-12-11 + *Kevin HunterCommits: 64Joined: 2010-10-22 - - Wolfram Garten [wg]Commits: 61Joined: 2009-10-23 @@ -1468,13 +1180,10 @@ Marc Neumann [msc]Commits: 59Joined: 2008-06-20 - - *shiming zhangCommits: 59Joined: 2013-11-04 - - *Samuel MehrbrodtCommits: 58Joined: 2011-06-08 + *shiming zhangCommits: 59Joined: 2013-11-04 *Joren De CuyperCommits: 58Joined: 2013-01-07 @@ -1491,41 +1200,27 @@ *Pierre-Eric Pelloux-PrayerCommits: 57Joined: 2012-06-20 - *Laurent GodardCommits: 56Joined: 2011-05-06 - - - *Laurent Balland-PoirierCommits: 55Joined: 2011-08-31 - - - *Krisztian PinterCommits: 55Joined: 2013-02-18 - - - - Nikolai PretzellCommits: 54Joined: 2001-03-09 *Martin KepplingerCommits: 53Joined: 2011-02-18 - *Rob SneldersCommits: 53Joined: 2011-02-08 - - - *yangzhangCommits: 53Joined: 2013-11-04 + *Samuel MehrbrodtCommits: 53Joined: 2011-06-08 - *Matthias FreundCommits: 52Joined: 2013-02-08 + *yangzhangCommits: 53Joined: 2013-11-04 - *Faisal M. Al-OtaibiCommits: 51Joined: 2012-06-25 + *Jacobo Aragunde PérezCommits: 52Joined: 2013-09-25 - *Rachit GuptaCommits: 51Joined: 2014-01-18 + *Krisztian PinterCommits: 52Joined: 2013-02-18 - *Efe Gürkan YALAMANCommits: 51Joined: 2012-08-01 + *Matthias FreundCommits: 51Joined: 2013-02-08 @@ -1533,161 +1228,144 @@ *Will ThompsonCommits: 51Joined: 2012-03-21 - *Jan-Marek GlogowskiCommits: 51Joined: 2013-11-14 + *Rob SneldersCommits: 51Joined: 2011-02-08 *Cao Cuong NgoCommits: 51Joined: 2013-03-04 - *Ptyl DragonCommits: 49Joined: 2013-05-09 + *Albert ThuswaldnerCommits: 49Joined: 2011-01-26 - *Albert ThuswaldnerCommits: 49Joined: 2011-01-26 + *Faisal M. Al-OtaibiCommits: 48Joined: 2012-06-25 - *mingli juCommits: 48Joined: 2013-11-05 + *Urs FässlerCommits: 48Joined: 2013-02-14 - *Urs FässlerCommits: 48Joined: 2013-02-14 + *Laurent GodardCommits: 48Joined: 2011-05-06 - *Marcel MetzCommits: 48Joined: 2011-12-05 + *mingli juCommits: 48Joined: 2013-11-05 - *J. Graeme LingardCommits: 47Joined: 2010-09-29 + *Marcel MetzCommits: 48Joined: 2011-12-05 - *Lior KaplanCommits: 46Joined: 2010-10-05 + *J. Graeme LingardCommits: 47Joined: 2010-09-29 - *Alexandre VicenziCommits: 46Joined: 2014-01-15 + *Lior KaplanCommits: 46Joined: 2010-10-05 - *hongyu zhongCommits: 46Joined: 2013-11-04 + *Ptyl DragonCommits: 46Joined: 2013-05-09 - Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 - - - *Winfried DonkersCommits: 44Joined: 2013-08-06 - - - *Palenik MihályCommits: 43Joined: 2013-07-11 + *hongyu zhongCommits: 46Joined: 2013-11-04 - *matteocamCommits: 42Joined: 2014-02-25 + Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 - - *Mark WielaardCommits: 42Joined: 2013-05-13 *Peter JentschCommits: 41Joined: 2011-01-07 - - *Sébastien Le RayCommits: 41Joined: 2011-02-10 - - - *Riccardo MagliocchettiCommits: 41Joined: 2012-01-25 - - *Luc CastermansCommits: 40Joined: 2011-11-13 + *Sébastien Le RayCommits: 41Joined: 2011-02-10 *Francisco SaitoCommits: 40Joined: 2011-03-21 - *Kayo HamidCommits: 39Joined: 2010-10-09 + *Laurent Balland-PoirierCommits: 39Joined: 2011-08-31 - *Martin HoskenCommits: 39Joined: 2011-02-25 + *Riccardo MagliocchettiCommits: 39Joined: 2012-01-25 - *minwangCommits: 39Joined: 2013-11-04 + *Kayo HamidCommits: 39Joined: 2010-10-09 - *Joren De CuyperCommits: 38Joined: 2014-02-06 + *Martin HoskenCommits: 39Joined: 2011-02-25 - *Valentin KettnerCommits: 38Joined: 2014-03-17 + *minwangCommits: 39Joined: 2013-11-04 - *abdulmajeed ahmedCommits: 37Joined: 2012-07-07 + *Iain BillettCommits: 37Joined: 2012-04-11 - *Iain BillettCommits: 37Joined: 2012-04-11 + *Efe Gürkan YALAMANCommits: 37Joined: 2012-08-01 - *Christophe JAILLETCommits: 36Joined: 2012-06-14 + *abdulmajeed ahmedCommits: 36Joined: 2012-07-07 - *Winfried DonkersCommits: 36Joined: 2011-11-11 + *Christophe JAILLETCommits: 36Joined: 2012-06-14 - *Guillaume PousselCommits: 36Joined: 2010-12-22 + *Winfried DonkersCommits: 36Joined: 2011-11-11 - *Csikós TamásCommits: 36Joined: 2013-07-01 + *Alexandre VicenziCommits: 36Joined: 2014-01-15 - *Santiago MartinezCommits: 35Joined: 2012-01-20 + *Guillaume PousselCommits: 36Joined: 2010-12-22 - *dechuangCommits: 35Joined: 2013-11-04 + *Csikós TamásCommits: 36Joined: 2013-07-01 - *Szymon KłosCommits: 34Joined: 2014-03-22 + *Santiago MartinezCommits: 35Joined: 2012-01-20 - *Vinaya MandkeCommits: 34Joined: 2013-02-08 + *dechuangCommits: 35Joined: 2013-11-04 - *Steve YinCommits: 34Joined: 2013-11-14 + *Marc-André LaverdièreCommits: 34Joined: 2011-06-21 - *Marc-André LaverdièreCommits: 34Joined: 2011-06-21 + *Alexander WilmsCommits: 33Joined: 2012-05-26 - *Andreas MantkeCommits: 33Joined: 2010-09-29 + *Andreas MantkeCommits: 32Joined: 2010-09-29 - *Alexander WilmsCommits: 33Joined: 2012-05-26 + *GokulCommits: 32Joined: 2012-07-10 - *Eilidh McAdamCommits: 32Joined: 2011-03-10 + *Winfried DonkersCommits: 32Joined: 2013-08-06 - *GokulCommits: 32Joined: 2012-07-10 + *Vishv BrahmbhattCommits: 31Joined: 2013-01-28 - *Stanislav HoracekCommits: 32Joined: 2012-12-09 + *fengzengCommits: 31Joined: 2013-11-04 - *Vishv BrahmbhattCommits: 31Joined: 2013-01-28 - - - *fengzengCommits: 31Joined: 2013-11-04 + *Eilidh McAdamCommits: 31Joined: 2011-03-10 *Kenneth VenkenCommits: 30Joined: 2010-10-15 @@ -1695,16 +1373,19 @@ *Manal AlhassounCommits: 30Joined: 2012-09-10 + + *Christoph HerzogCommits: 30Joined: 2011-01-07 + - *Christoph HerzogCommits: 30Joined: 2011-01-07 + *Maxim MonastirskyCommits: 30Joined: 2013-10-27 *muleiCommits: 30Joined: 2013-11-01 - *Isamu MogiCommits: 30Joined: 2013-04-27 + *Steve YinCommits: 30Joined: 2013-11-14 *xinjiangCommits: 29Joined: 2013-11-04 @@ -1712,7 +1393,7 @@ - *Rodolfo Ribeiro GomesCommits: 29Joined: 2012-12-19 + *Luc CastermansCommits: 29Joined: 2011-11-13 *Elton ChungCommits: 29Joined: 2012-01-31 @@ -1721,14 +1402,11 @@ *Wols ListsCommits: 29Joined: 2010-11-07 - *Aurimas FišerasCommits: 28Joined: 2010-10-11 + *Rodolfo Ribeiro GomesCommits: 28Joined: 2012-12-19 - *Michaël LefèvreCommits: 28Joined: 2011-02-22 - - *Radu IoanCommits: 28Joined: 2012-08-17 @@ -1737,64 +1415,42 @@ *Szabolcs DezsiCommits: 28Joined: 2012-02-16 - - *Andres GomezCommits: 27Joined: 2013-04-09 - - *Gökçen EraslanCommits: 27Joined: 2012-04-15 - - - *Pallavi JadhavCommits: 27Joined: 2013-02-08 - - - *Harri PitkänenCommits: 27Joined: 2010-10-04 - - *Sushil ShindeCommits: 27Joined: 2013-10-21 + *Gökçen EraslanCommits: 27Joined: 2012-04-15 - *Tobias LippertCommits: 26Joined: 2014-01-02 + *Harri PitkänenCommits: 26Joined: 2010-10-04 *Josh HeidenreichCommits: 26Joined: 2011-07-20 - *Maxime de RoucyCommits: 25Joined: 2012-03-08 + *Kurosawa TakeshiCommits: 25Joined: 2011-01-04 - *Tsutomu UchinoCommits: 25Joined: 2014-01-08 - - - *Christian M. HellerCommits: 25Joined: 2013-02-24 - - - *Kurosawa TakeshiCommits: 25Joined: 2011-01-04 - - *Prashant PandeyCommits: 25Joined: 2013-02-20 - - - *Priyanka GaikwadCommits: 24Joined: 2013-11-12 + *Uray M. JánosCommits: 24Joined: 2012-07-17 - *Uray M. JánosCommits: 24Joined: 2012-07-17 + *Maxime de RoucyCommits: 24Joined: 2012-03-08 *Jack LeighCommits: 23Joined: 2012-10-03 + + *Christian DywanCommits: 23Joined: 2011-04-14 - - *Felix ZhangCommits: 23Joined: 2011-10-19 @@ -1802,13 +1458,13 @@ *Sören MöllerCommits: 23Joined: 2011-01-03 - *Yogesh BharateCommits: 23Joined: 2013-10-11 + *Aurimas FišerasCommits: 23Joined: 2010-10-11 + + *Julien ChaffraixCommits: 23Joined: 2011-04-12 - - *Lucas BaudinCommits: 23Joined: 2011-01-25 @@ -1818,9 +1474,6 @@ *José Guilherme VanzCommits: 23Joined: 2012-09-26 - - *Luke DellerCommits: 22Joined: 2012-11-26 - @@ -1844,15 +1497,15 @@ *zhenyu yuanCommits: 22Joined: 2013-11-06 - *Niklas JohanssonCommits: 22Joined: 2011-11-07 + *Nicolas ChristenerCommits: 21Joined: 2011-03-10 - *Nicolas ChristenerCommits: 21Joined: 2011-03-10 + *Michael LefevreCommits: 21Joined: 2011-02-22 - *Tushar BendeCommits: 20Joined: 2013-09-27 + *Andrzej HuntCommits: 21Joined: 2013-12-04 *Regina HenschelCommits: 20Joined: 2010-11-04 @@ -1861,88 +1514,74 @@ Eric BachardCommits: 20Joined: 2005-10-19 - *Andy HolderCommits: 20Joined: 2010-12-06 + *Petr VorelCommits: 20Joined: 2012-02-17 - *Rohit DeshmukhCommits: 20Joined: 2013-09-30 + *Jan-Marek GlogowskiCommits: 20Joined: 2013-11-14 - *Petr VorelCommits: 20Joined: 2012-02-17 + *Andy HolderCommits: 20Joined: 2010-12-06 *Brad SowdenCommits: 20Joined: 2011-12-27 - *Joel MaderoCommits: 19Joined: 2012-06-15 + *Isamu MogiCommits: 20Joined: 2013-04-27 - *Baptiste DaroussinCommits: 19Joined: 2011-01-31 + Xiaofei ZhangCommits: 19Joined: 2010-06-28 - *Peilin XiaoCommits: 19Joined: 2013-12-09 + *Sushil ShindeCommits: 19Joined: 2013-10-21 - Xiaofei ZhangCommits: 19Joined: 2010-06-28 + *Stanislav HoracekCommits: 19Joined: 2012-12-09 - *Lennard WasserthalCommits: 19Joined: 2012-08-11 + *Tsutomu UchinoCommits: 18Joined: 2014-01-08 - *xukai liuCommits: 18Joined: 2013-11-01 - - - *Laurent AlonsoCommits: 18Joined: 2011-10-23 + *Joost WezenbeekCommits: 18Joined: 2010-10-24 *Boris DušekCommits: 18Joined: 2013-07-21 - *Joost WezenbeekCommits: 18Joined: 2010-10-24 - - - - Hanno Meyer-ThurowCommits: 18Joined: 2010-09-16 *Abdulelah AlarifiCommits: 18Joined: 2012-12-12 - - *Bálint DózsaCommits: 17Joined: 2011-02-10 - - - *navin patidarCommits: 17Joined: 2013-01-06 - - *Alfonso EusebioCommits: 17Joined: 2011-01-16 + *Joel MaderoCommits: 17Joined: 2012-06-15 - *Jian Hong ChengCommits: 17Joined: 2012-06-26 + *Bálint DózsaCommits: 17Joined: 2011-02-10 - *Umesh KadamCommits: 17Joined: 2014-01-10 + *navin patidarCommits: 17Joined: 2013-01-06 - *Jens CarlCommits: 17Joined: 2014-05-28 + *Alfonso EusebioCommits: 17Joined: 2011-01-16 - *VortCommits: 17Joined: 2014-01-21 + *Jian Hong ChengCommits: 17Joined: 2012-06-26 - *Jordan AyersCommits: 16Joined: 2010-11-04 + *Lennard WasserthalCommits: 17Joined: 2012-08-11 - *Ravindra VidhateCommits: 16Joined: 2014-01-30 + *Jordan AyersCommits: 16Joined: 2010-11-04 *Luke DixonCommits: 16Joined: 2010-10-26 @@ -1953,13 +1592,13 @@ *Jean-Noël RouvignacCommits: 16Joined: 2013-01-09 - Giuseppe CastagnoCommits: 16Joined: 2007-12-09 + *Peilin XiaoCommits: 16Joined: 2013-12-09 - *Maciej RumianowskiCommits: 16Joined: 2011-07-19 + Giuseppe CastagnoCommits: 16Joined: 2007-12-09 - *tsahi glikCommits: 16Joined: 2013-06-04 + *Maciej RumianowskiCommits: 16Joined: 2011-07-19 @@ -1973,83 +1612,80 @@ *Anders JonssonCommits: 16Joined: 2010-12-11 - *Lei De BinCommits: 16Joined: 2012-07-04 + *Cosimo CecchiCommits: 15Joined: 2011-11-02 - *Nikhil WalvekarCommits: 15Joined: 2013-11-01 + *Povilas KanapickasCommits: 15Joined: 2010-10-18 - *Chris LaplanteCommits: 15Joined: 2014-04-07 + *Yifan JCommits: 15Joined: 2010-12-16 - *Cosimo CecchiCommits: 15Joined: 2011-11-02 + *Alexander BergmannCommits: 15Joined: 2012-01-13 - *Povilas KanapickasCommits: 15Joined: 2010-10-18 + *Arnaud VersiniCommits: 15Joined: 2013-08-10 - *Yifan JCommits: 15Joined: 2010-12-16 + *Joachim TremourouxCommits: 15Joined: 2010-11-19 - *Alexander BergmannCommits: 15Joined: 2012-01-13 + *Catalin IacobCommits: 15Joined: 2012-02-10 - *Arnaud VersiniCommits: 15Joined: 2013-08-10 + *Luke SymesCommits: 15Joined: 2010-10-01 - *Joachim TremourouxCommits: 15Joined: 2010-11-19 + Octavio AlvarezCommits: 15Joined: 2010-09-13 - *Catalin IacobCommits: 15Joined: 2012-02-10 + *Lei De BinCommits: 15Joined: 2012-07-04 - *Luke SymesCommits: 15Joined: 2010-10-01 + *Tim HardeckCommits: 14Joined: 2011-11-03 - Octavio AlvarezCommits: 15Joined: 2010-09-13 + *Vinaya MandkeCommits: 14Joined: 2013-02-08 - *Pedro GiffuniCommits: 15Joined: 2011-10-28 + *Sun YingCommits: 14Joined: 2012-08-16 - *Tim HardeckCommits: 14Joined: 2011-11-03 + *YogeshBharateCommits: 14Joined: 2013-10-11 - *Zhe WangCommits: 14Joined: 2012-06-20 + *tsahi glikCommits: 14Joined: 2013-06-04 - *Sun YingCommits: 14Joined: 2012-08-16 + *Nikhil WalvekarCommits: 13Joined: 2013-11-01 - *Jean-Pierre LedureCommits: 14Joined: 2013-10-12 + *Muhammad HaggagCommits: 13Joined: 2012-02-01 - *Muhammad HaggagCommits: 13Joined: 2012-02-01 - - *Mathias HasselmannCommits: 13Joined: 2013-01-14 *gerhard oettlCommits: 13Joined: 2012-08-27 - *Tomofumi YagiCommits: 13Joined: 2011-10-20 + *Pallavi JadhavCommits: 13Joined: 2013-02-08 - - - *Sven WehnerCommits: 13Joined: 2014-01-16 + *Christian M. HellerCommits: 13Joined: 2013-02-24 + + *Prashant ShahCommits: 13Joined: 2010-10-10 @@ -2057,44 +1693,61 @@ *Alia AlmusaireaeCommits: 13Joined: 2012-11-05 + *Niklas JohanssonCommits: 13Joined: 2011-11-07 + + *Jani MonosesCommits: 12Joined: 2010-10-30 + *Zhe WangCommits: 12Joined: 2012-06-20 + + + *Baptiste DaroussinCommits: 12Joined: 2011-01-31 + + *Mariusz DykierekCommits: 12Joined: 2012-01-16 *Wilhelm PfluegerCommits: 12Joined: 2011-02-05 + + *Gábor StefanikCommits: 12Joined: 2012-04-07 *Wei WeiCommits: 12Joined: 2013-11-16 - - *Greg Kroah-HartmanCommits: 12Joined: 2012-02-06 - *Jean-Baptiste FaureCommits: 12Joined: 2011-02-20 + *Sven WehnerCommits: 12Joined: 2014-01-16 + + - *Tomas HlavatyCommits: 11Joined: 2011-12-06 + *Jean-Baptiste FaureCommits: 12Joined: 2011-02-20 *LeMoyne CastleCommits: 11Joined: 2010-10-25 - - Frank PetersCommits: 11Joined: 2010-05-20 *Andre FischeCommits: 11Joined: 2011-02-10 + + + + *Priyanka GaikwadCommits: 11Joined: 2013-11-12 + + + *Tomas HlavatyCommits: 11Joined: 2011-12-06 + *David BolenCommits: 11Joined: 2012-03-07 @@ -2104,10 +1757,10 @@ - *Björgvin RagnarssonCommits: 11Joined: 2012-02-13 + *Douglas MenckenCommits: 11Joined: 2013-12-11 - *Adolfo Jayme BarrientosCommits: 11Joined: 2014-07-02 + *Björgvin RagnarssonCommits: 11Joined: 2012-02-13 *Jung-uk KimCommits: 11Joined: 2012-08-13 @@ -2121,14 +1774,14 @@ *Jonas Finnemann JensenCommits: 11Joined: 2010-10-01 - *Abdulaziz A AlayedCommits: 11Joined: 2013-01-22 - - *René KjellerupCommits: 11Joined: 2010-10-14 *Jianyuan LiCommits: 10Joined: 2012-08-16 + + *Tushar BendeCommits: 10Joined: 2013-09-27 + @@ -2138,70 +1791,73 @@ *Theo van KlaverenCommits: 10Joined: 2011-03-10 - *Timo HeinoCommits: 10Joined: 2010-11-22 + *Laurent AlonsoCommits: 10Joined: 2011-10-23 - *Cor NouwsCommits: 10Joined: 2011-11-19 + *Timo HeinoCommits: 10Joined: 2010-11-22 - *Mirek MazelCommits: 10Joined: 2012-06-05 + *Cor NouwsCommits: 10Joined: 2011-11-19 *Luke PetrolekasCommits: 10Joined: 2011-02-12 - *Surendran MahendranCommits: 9Joined: 2010-11-05 + *Abdulaziz A AlayedCommits: 10Joined: 2013-01-22 - *Steven ButlerCommits: 9Joined: 2011-01-07 + *Luke DellerCommits: 9Joined: 2012-11-26 - *David VogtCommits: 9Joined: 2012-02-05 + *Surendran MahendranCommits: 9Joined: 2010-11-05 - *Mattias JohnssonCommits: 9Joined: 2010-10-18 + *Steven ButlerCommits: 9Joined: 2011-01-07 - *Olivier RCommits: 9Joined: 2011-08-01 + *David VogtCommits: 9Joined: 2012-02-05 - *Dinesh PatilCommits: 9Joined: 2014-03-12 + *Mattias JohnssonCommits: 9Joined: 2010-10-18 - *karthCommits: 8Joined: 2013-01-07 + *Rohit DeshmukhCommits: 9Joined: 2013-09-30 - *Tomcsik BenceCommits: 8Joined: 2012-01-14 + *Tomofumi YagiCommits: 9Joined: 2011-10-20 - *Robert DargaudCommits: 8Joined: 2011-04-12 + *Pedro GiffuniCommits: 9Joined: 2011-10-28 - *Michael CallahanCommits: 8Joined: 2010-12-06 + *karthCommits: 8Joined: 2013-01-07 - *Ahmad H. Al HarthiCommits: 8Joined: 2012-12-31 + *Tomcsik BenceCommits: 8Joined: 2012-01-14 - Fong LinCommits: 8Joined: 2010-09-14 + *Robert DargaudCommits: 8Joined: 2011-04-12 - *Michael DunphyCommits: 8Joined: 2013-04-18 + *Michael CallahanCommits: 8Joined: 2010-12-06 - *Norah A. AbanumayCommits: 8Joined: 2012-07-30 + Fong LinCommits: 8Joined: 2010-09-14 + *Michael DunphyCommits: 8Joined: 2013-04-18 + + *Ádám Csaba KirályCommits: 8Joined: 2013-02-28 @@ -2210,19 +1866,16 @@ *Troy RolloCommits: 8Joined: 2011-07-11 - - Jody GoldbergCommits: 8Joined: 2010-09-15 - - *RajashriCommits: 8Joined: 2013-12-06 + Jody GoldbergCommits: 8Joined: 2010-09-15 - *SouravCommits: 8Joined: 2014-03-15 + *Jenei GáborCommits: 8Joined: 2011-07-29 - *Jenei GáborCommits: 8Joined: 2011-07-29 + *Norah A. AbanumayCommits: 8Joined: 2012-07-30 *Daisuke NishinoCommits: 8Joined: 2011-11-06 @@ -2236,17 +1889,14 @@ *Christopher CopitsCommits: 7Joined: 2012-09-19 - *Timothy PearsonCommits: 7Joined: 2012-08-18 + *Ahmad H. Al HarthiCommits: 7Joined: 2012-12-31 - *Mathias MichelCommits: 7Joined: 2012-11-19 + *Samuel CantrellCommits: 7Joined: 2011-06-11 - *Keith CurtisCommits: 7Joined: 2013-12-20 - - *Issa AlkurtassCommits: 7Joined: 2012-09-04 @@ -2255,37 +1905,29 @@ *Keith McRaeCommits: 7Joined: 2012-01-18 - - - - *AndrewCommits: 7Joined: 2014-02-26 - - - *Stefan RingCommits: 7Joined: 2014-01-09 - *Eric SeynaeveCommits: 7Joined: 2013-02-04 - - *Samuel CantrellCommits: 7Joined: 2011-06-11 - - *Sergey DavidoffCommits: 7Joined: 2011-04-11 + *Mirek MazelCommits: 7Joined: 2012-06-05 - *David DelmaCommits: 7Joined: 2014-05-13 + *Sergey DavidoffCommits: 7Joined: 2011-04-11 *Roi IllouzCommits: 7Joined: 2013-10-20 - *Brennan VincentCommits: 7Joined: 2012-04-02 + *Palenik MihályCommits: 7Joined: 2013-07-11 + *Brennan VincentCommits: 7Joined: 2012-04-02 + + *Wang LeiCommits: 7Joined: 2012-06-14 @@ -2294,11 +1936,11 @@ *Martin SrebotnjakCommits: 7Joined: 2010-12-19 + + *Gert van ValkenhoefCommits: 7Joined: 2012-02-14 - - *tianyaoCommits: 6Joined: 2013-11-09 @@ -2306,44 +1948,52 @@ *Phil BordelonCommits: 6Joined: 2010-09-30 - *Jeroen NijhofCommits: 6Joined: 2014-05-01 - - - *Daniel Di MarcoCommits: 6Joined: 2010-11-15 + *Timothy PearsonCommits: 6Joined: 2012-08-18 - *shiraharaCommits: 6Joined: 2011-01-28 + *Mathias MichelCommits: 6Joined: 2012-11-19 - *Sven WehnerCommits: 6Joined: 2014-01-11 + *Daniel Di MarcoCommits: 6Joined: 2010-11-15 - *Anurag JainCommits: 6Joined: 2011-04-05 + *shiraharaCommits: 6Joined: 2011-01-28 - *Mihai VargaCommits: 6Joined: 2014-02-27 + *Sven WehnerCommits: 6Joined: 2014-01-11 + *Anurag JainCommits: 6Joined: 2011-04-05 + + *Thomas CollertonCommits: 6Joined: 2011-11-18 *Xavier ALTCommits: 6Joined: 2011-03-06 + *Joren De CuyperCommits: 6Joined: 2014-02-06 + + + + *David VerrierCommits: 6Joined: 2013-02-26 + *Alexander WilmsCommits: 6Joined: 2013-12-22 + + *Laurent CharrièreCommits: 6Joined: 2010-10-14 - - *Ricardo MorenoCommits: 6Joined: 2010-11-03 + + *Alexander O. AnisimovCommits: 6Joined: 2010-11-06 @@ -2353,11 +2003,11 @@ *Pavel JaníkCommits: 5Joined: 2012-11-29 - - *Gustavo Buzzatti PachecoCommits: 5Joined: 2011-12-15 + + *David HobleyCommits: 5Joined: 2010-10-04 @@ -2365,81 +2015,73 @@ *Gil ForcadaCommits: 5Joined: 2010-09-28 - *anuragkanungoCommits: 5Joined: 2013-04-19 - - - - *Jeffrey ChangCommits: 5Joined: 2011-06-01 *ericb2Commits: 5Joined: 2011-10-30 + + *Kohei YoshidaCommits: 5Joined: 2013-09-07 *Ciorba EdmondCommits: 5Joined: 2013-06-11 - - *MÁTÉ GergelyCommits: 5Joined: 2013-07-19 *Wei Ming KhooCommits: 5Joined: 2012-02-17 + + *Bernhard RosenkraenzerCommits: 5Joined: 2010-11-01 *Marc-Andre LaverdiereCommits: 5Joined: 2011-07-19 - - *Lionel DricotCommits: 5Joined: 2012-06-04 *Antoine ProulxCommits: 5Joined: 2011-01-30 - - *Matthias HofmannCommits: 5Joined: 2013-03-08 - - - *Timothy MarkleCommits: 5Joined: 2014-01-31 - - *Miguel GomezCommits: 5Joined: 2013-04-02 + *umeshkadamCommits: 5Joined: 2014-01-10 - *Bence BabatiCommits: 5Joined: 2012-08-13 + *Matthias HofmannCommits: 5Joined: 2013-03-08 - *Tobias RosenbergerCommits: 5Joined: 2011-01-31 + *Miguel GomezCommits: 5Joined: 2013-04-02 - *Michael T. WhiteleyCommits: 5Joined: 2011-11-25 + *Bence BabatiCommits: 5Joined: 2012-08-13 - *Pavel KysilkaCommits: 5Joined: 2012-06-25 + *Tobias RosenbergerCommits: 5Joined: 2011-01-31 - *pje335_NLCommits: 5Joined: 2013-05-10 + *Olivier RCommits: 5Joined: 2011-08-01 - *Santiago AlessandriCommits: 4Joined: 2010-11-11 + *Michael T. WhiteleyCommits: 5Joined: 2011-11-25 - *Jeffrey StedfastCommits: 4Joined: 2014-07-26 + *Pavel KysilkaCommits: 5Joined: 2012-06-25 + *Santiago AlessandriCommits: 4Joined: 2010-11-11 + + *An LeendersCommits: 4Joined: 2011-01-25 @@ -2448,42 +2090,36 @@ *Maja DjordjevicCommits: 4Joined: 2011-01-06 - - *Alex HenrieCommits: 4Joined: 2014-03-05 - - *Ken BiondiCommits: 4Joined: 2014-03-05 - - *Michael MuenchCommits: 4Joined: 2011-02-13 - *Matthew PottageCommits: 4Joined: 2014-07-26 + *Keith CurtisCommits: 4Joined: 2013-12-20 *Wolfgang PechlanerCommits: 4Joined: 2011-09-04 - - *Andrew C. E. DentCommits: 4Joined: 2010-10-24 + + - *Samphan RaruenromCommits: 4Joined: 2011-03-24 + *anuragkanungoCommits: 4Joined: 2013-04-19 - *Bryan QuigleyCommits: 4Joined: 2013-11-10 + *Samphan RaruenromCommits: 4Joined: 2011-03-24 *Andreas BeckerCommits: 4Joined: 2011-04-04 - - *Sameer DeshmukhCommits: 4Joined: 2013-04-20 + + *André SchnabelCommits: 4Joined: 2011-05-31 @@ -2491,43 +2127,32 @@ *Florian BircherCommits: 4Joined: 2010-10-16 - *Charu TyagiCommits: 4Joined: 2014-06-25 - - - - *Tom TromeyCommits: 4Joined: 2011-08-11 *XiaoliCommits: 4Joined: 2013-03-23 + + *tinoCommits: 4Joined: 2012-12-03 *Zheng FanCommits: 4Joined: 2013-04-22 - - - *Elie RouxCommits: 4Joined: 2013-05-29 + *Timothy MarkleCommits: 4Joined: 2014-01-31 *Kate GossCommits: 4Joined: 2012-02-11 - - *Nicholas ShanksCommits: 4Joined: 2012-09-04 - - - *Simon DannerCommits: 4Joined: 2014-08-02 - - *Raimundo MouraCommits: 4Joined: 2012-06-16 + *Nicholas ShanksCommits: 4Joined: 2012-09-04 - *Honza HavlíčekCommits: 4Joined: 2013-07-27 + *Raimundo MouraCommits: 4Joined: 2012-06-16 *Jean-Tiare LE BIGOTCommits: 4Joined: 2012-08-08 @@ -2552,7 +2177,7 @@ - *José Guilherme VanzCommits: 4Joined: 2013-10-20 + *pje335_NLCommits: 4Joined: 2013-05-10 *Alan DuCommits: 3Joined: 2010-10-12 @@ -2566,9 +2191,6 @@ - *Tobias MuellerCommits: 3Joined: 2014-02-10 - - *Oliver GüntherCommits: 3Joined: 2012-08-09 @@ -2577,11 +2199,11 @@ *Robert M CampbellCommits: 3Joined: 2013-11-13 - - *Cameron PaulCommits: 3Joined: 2012-02-27 + + *Cheng-Chia TsengCommits: 3Joined: 2012-01-16 @@ -2591,95 +2213,95 @@ *Andrea PescettiCommits: 3Joined: 2013-10-07 - - *Roland BaudinCommits: 3Joined: 2011-05-16 + + *Markus MaierCommits: 3Joined: 2012-11-25 - *Peter Senna TschudinCommits: 3Joined: 2014-05-26 - - *Dávid VastagCommits: 3Joined: 2013-02-04 - - *Haidong LianCommits: 3Joined: 2013-07-24 *Dimitri DucCommits: 3Joined: 2011-04-19 + + *Jonathan AquilinaCommits: 3Joined: 2011-01-18 *Guto MaiaCommits: 3Joined: 2011-03-18 - - *Peter BaumgartenCommits: 3Joined: 2012-11-24 *vjinochCommits: 3Joined: 2013-04-09 + + - *Ulrich KitzingerCommits: 3Joined: 2013-11-30 + *Bryan QuigleyCommits: 3Joined: 2013-11-10 *Gioele BarabucciCommits: 3Joined: 2010-11-18 - - *Istvan TuriCommits: 3Joined: 2012-08-16 *Jeremy BrownCommits: 3Joined: 2012-09-19 + + *Gabor KelemenCommits: 3Joined: 2013-06-18 *Nagy AkosCommits: 3Joined: 2013-06-27 - - *David NalleyCommits: 3Joined: 2011-03-03 *Michael BauerCommits: 3Joined: 2011-11-23 + + *Anthony DurityCommits: 3Joined: 2011-04-18 *Golnaz IrannejadCommits: 3Joined: 2013-04-02 - - *Xuacu SaturioCommits: 3Joined: 2010-12-19 *Tantai TanakanokCommits: 3Joined: 2011-02-09 + + *Jan DarmochwalCommits: 3Joined: 2011-01-27 + *Stefan RingCommits: 3Joined: 2014-01-09 + + *Marina PlakalovicCommits: 3Joined: 2012-12-14 - - - *Luboš LuňákCommits: 3Joined: 2014-03-18 + *Elie RouxCommits: 3Joined: 2013-05-29 + + *Dmitry AshkadovCommits: 3Joined: 2011-08-29 @@ -2689,32 +2311,21 @@ *Sérgio MarquesCommits: 3Joined: 2011-11-25 - - *Mathieu VonlanthenCommits: 3Joined: 2012-07-19 - - *Jason HulmeCommits: 3Joined: 2013-06-05 - + + Keith StribleyCommits: 3Joined: 2010-06-29 - *Bertrand LorentzCommits: 3Joined: 2012-08-03 - - - - *Mike EberdtCommits: 3Joined: 2011-07-12 *Florian Allmann-RahnCommits: 3Joined: 2011-08-22 - *Joan MontaneCommits: 3Joined: 2013-02-22 - - *Sean YoungCommits: 3Joined: 2013-05-16 @@ -2726,43 +2337,46 @@ *Chris Carpenter(mordocai)Commits: 3Joined: 2011-02-02 - *Mihkel TõnnovCommits: 3Joined: 2012-07-02 + *Jean-Pierre LedureCommits: 3Joined: 2013-10-12 - *Alexander ThurgoodCommits: 3Joined: 2011-01-26 + *Mihkel TõnnovCommits: 3Joined: 2012-07-02 - *Benjamin DrungCommits: 3Joined: 2012-06-08 + *Alexander ThurgoodCommits: 3Joined: 2011-01-26 - *Adam MrózCommits: 2Joined: 2013-02-24 + *Benjamin DrungCommits: 3Joined: 2012-06-08 - *Ed DeanCommits: 2Joined: 2011-01-14 + *Bertrand LorentzCommits: 3Joined: 2012-08-03 - *Mark WolfCommits: 2Joined: 2012-04-04 + *José Guilherme VanzCommits: 3Joined: 2013-10-20 - *Sean McNamaraCommits: 2Joined: 2010-09-29 + *Ed DeanCommits: 2Joined: 2011-01-14 - *Greggory HernandezCommits: 2Joined: 2012-02-22 + *Mark WolfCommits: 2Joined: 2012-04-04 - *Tobias KranzCommits: 2Joined: 2011-02-17 + *Sean McNamaraCommits: 2Joined: 2010-09-29 - *Jagan LokanathaCommits: 2Joined: 2013-11-19 + *Greggory HernandezCommits: 2Joined: 2012-02-22 - *Donizete WaterkemperCommits: 2Joined: 2013-05-23 + *Tobias KranzCommits: 2Joined: 2011-02-17 + + + *Jagan LokanathaCommits: 2Joined: 2013-11-19 *Marc GarciaCommits: 2Joined: 2012-05-04 @@ -2770,11 +2384,11 @@ *Sean McMurrayCommits: 2Joined: 2010-10-20 + + *Arno TeigsethCommits: 2Joined: 2011-09-14 - - *Vicente VendrellCommits: 2Joined: 2012-04-23 @@ -2784,11 +2398,11 @@ *Seo SanghyeonCommits: 2Joined: 2010-09-29 + + *Benedikt MorbachCommits: 2Joined: 2013-03-10 - - *Ferran VidalCommits: 2Joined: 2012-04-21 @@ -2798,27 +2412,24 @@ *UrmasCommits: 2Joined: 2012-02-13 - - *Heena GuptaCommits: 2Joined: 2014-06-30 - *Anderson RobertoCommits: 2Joined: 2014-01-15 - *PKEuSCommits: 2Joined: 2012-02-05 - - *Martyn RussellCommits: 2Joined: 2012-06-07 *Sergey FarbotkaCommits: 2Joined: 2012-09-21 + + *Neil MooreCommits: 2Joined: 2013-08-09 + - *Neil MooreCommits: 2Joined: 2013-08-09 + *PKEuSCommits: 2Joined: 2012-02-05 *Ri GangHuCommits: 2Joined: 2013-07-28 @@ -2827,207 +2438,210 @@ *Dwayne BaileyCommits: 2Joined: 2010-11-03 - *Hussian AlamriCommits: 2Joined: 2014-05-14 + *Christoph NoackCommits: 2Joined: 2010-12-13 - *Deena FrancisCommits: 2Joined: 2014-07-29 - - - *Christoph NoackCommits: 2Joined: 2010-12-13 + *Jean Charles PapinCommits: 2Joined: 2011-02-11 - *Jean Charles PapinCommits: 2Joined: 2011-02-11 + *David SteeleCommits: 2Joined: 2012-04-24 *William GathoyeCommits: 2Joined: 2012-02-28 - - Loiseleur MichelCommits: 2Joined: 2010-09-14 - - *Mukhiddin YusupovCommits: 2Joined: 2014-05-19 - + + *Mohammad ElahiCommits: 2Joined: 2011-08-27 *Daniel HerdeCommits: 2Joined: 2012-08-09 - - *Andrew HigginsonCommits: 2Joined: 2012-04-10 *Jonathan CallenCommits: 2Joined: 2011-01-29 + + *Mateusz ZasuwikCommits: 2Joined: 2011-12-20 *Karsten GerloffCommits: 2Joined: 2011-02-06 - - *Maxim IorshCommits: 2Joined: 2011-10-05 *Horacio FernandesCommits: 2Joined: 2012-07-20 + + *Yury TarasievichCommits: 2Joined: 2011-11-23 *Robert SedakCommits: 2Joined: 2010-10-05 - - *Viktor VargaCommits: 2Joined: 2013-08-28 *Andras BartekCommits: 2Joined: 2012-08-06 + + *Gregg KingCommits: 2Joined: 2013-02-26 *Marcin eXine MCommits: 2Joined: 2010-11-02 - - *Matthias KloseCommits: 2Joined: 2011-03-01 *Janit AnjariaCommits: 2Joined: 2013-04-19 - - *David SteeleCommits: 2Joined: 2012-04-24 - - - *Abeer SethiCommits: 2Joined: 2012-04-12 - - *Yuri DarioCommits: 2Joined: 2012-07-18 + *Abeer SethiCommits: 2Joined: 2012-04-12 - *Clarence GuoCommits: 2Joined: 2014-05-26 + *Yuri DarioCommits: 2Joined: 2012-07-18 *Moritz KuettCommits: 2Joined: 2013-03-23 - *Robinson TryonCommits: 2Joined: 2012-06-21 + *RajashriCommits: 2Joined: 2013-12-06 + *Ulrich KitzingerCommits: 2Joined: 2013-11-30 + + + *Robinson TryonCommits: 2Joined: 2012-06-21 + + *Kelly AndersonCommits: 2Joined: 2011-05-31 *Gabriele BulfonCommits: 2Joined: 2013-07-05 + + *Rolf HemmerlingCommits: 2Joined: 2013-06-15 *Karthik A PadmanabhanCommits: 2Joined: 2012-03-31 - - *Cyril RoelandtCommits: 2Joined: 2011-04-26 *Andreas SchierlCommits: 2Joined: 2012-01-30 + + *Flex LiuCommits: 2Joined: 2012-09-04 *Christos StrubulisCommits: 2Joined: 2012-12-09 - - *Arne de BruijnCommits: 2Joined: 2012-12-11 *Chris HoppeCommits: 2Joined: 2013-06-27 + + + + *Adam MrózCommits: 2Joined: 2013-02-24 + + + *Jason HulmeCommits: 2Joined: 2013-06-05 + *Justin MalcolmCommits: 2Joined: 2010-09-29 - *Michael NattererCommits: 2Joined: 2011-04-08 + *Andreu Correa CasablancaCommits: 2Joined: 2011-09-11 - *Akash ShetyeCommits: 2Joined: 2013-03-23 + *Takashi NakamotoCommits: 2Joined: 2011-08-28 - *Janos FaragoCommits: 2Joined: 2013-09-03 + *Michael NattererCommits: 2Joined: 2011-04-08 - *Matthew J. FrancisCommits: 2Joined: 2014-08-25 + *Honza HavlíčekCommits: 2Joined: 2013-07-27 - *Emanuele FiaCommits: 2Joined: 2011-11-02 + *Akash ShetyeCommits: 2Joined: 2013-03-23 - *Pader RezsoCommits: 2Joined: 2013-07-01 + *Janos FaragoCommits: 2Joined: 2013-09-03 - *Johann MessnerCommits: 2Joined: 2012-08-28 + *VortCommits: 2Joined: 2014-01-21 - *Andreu Correa CasablancaCommits: 2Joined: 2011-09-11 + *Emanuele FiaCommits: 2Joined: 2011-11-02 - *Michal SvecCommits: 2Joined: 2011-07-12 + *Pader RezsoCommits: 2Joined: 2013-07-01 - *Jesso Clarence MuruganCommits: 2Joined: 2012-06-23 + *Johann MessnerCommits: 2Joined: 2012-08-28 - *Takashi NakamotoCommits: 2Joined: 2011-08-28 + *Michal SvecCommits: 2Joined: 2011-07-12 - *Jose Santiago Jimenez SarmientoCommits: 2Joined: 2012-04-24 + *Jesso Clarence MuruganCommits: 2Joined: 2012-06-23 - *Jing XianCommits: 2Joined: 2013-06-26 + *Jose Santiago Jimenez SarmientoCommits: 2Joined: 2012-04-24 - *Nadav VinikCommits: 2Joined: 2010-10-21 + *Jing XianCommits: 2Joined: 2013-06-26 - *Bisal NayalCommits: 2Joined: 2014-05-07 + *Nadav VinikCommits: 2Joined: 2010-10-21 *Goran RakicCommits: 1Joined: 2013-03-30 - *Dona HertelCommits: 1Joined: 2011-04-14 + *Ross BurtonCommits: 1Joined: 2012-04-18 + *Dona HertelCommits: 1Joined: 2011-04-14 + + *Chen ZuoJunCommits: 1Joined: 2012-10-08 @@ -3036,9 +2650,6 @@ *Laureano G. LindeCommits: 1Joined: 2012-04-15 - - *Tim JanikCommits: 1Joined: 2012-08-10 - @@ -3062,114 +2673,97 @@ *Da'angh KhagarothCommits: 1Joined: 2012-01-16 - *Tarun KumarCommits: 1Joined: 2014-03-07 + *Olivier PlotonCommits: 1Joined: 2012-12-12 - *Ward van WanrooijCommits: 1Joined: 2012-06-25 + *Donizete WaterkemperCommits: 1Joined: 2013-05-23 - *Olivier PlotonCommits: 1Joined: 2012-12-12 + *Joshua CogliatiCommits: 1Joined: 2012-01-06 - *Joshua CogliatiCommits: 1Joined: 2012-01-06 + *Rachit GuptaCommits: 1Joined: 2014-01-18 *Adolfo Jayme BarrientosCommits: 1Joined: 2013-06-21 - *xjclCommits: 1Joined: 2014-08-04 + *Kalman KemenczyCommits: 1Joined: 2010-10-28 - *Ross BurtonCommits: 1Joined: 2012-04-18 - - - *Kalman KemenczyCommits: 1Joined: 2010-10-28 - - *Paulo JoséCommits: 1Joined: 2011-04-01 *Gordon LackCommits: 1Joined: 2012-05-09 - - *Javier Silva SanahujaCommits: 1Joined: 2012-04-23 *Pádraig BradyCommits: 1Joined: 2011-10-21 + + *Srijan ChoudharyCommits: 1Joined: 2013-08-10 *Jaime NavarroCommits: 1Joined: 2012-04-20 - - *Florian ReisingerCommits: 1Joined: 2012-06-22 *Tzvetelina TzenevaCommits: 1Joined: 2011-12-22 + + *Kenneth BeckCommits: 1Joined: 2013-03-02 *Erik AuerswaldCommits: 1Joined: 2013-07-09 - - *Alberto RuizCommits: 1Joined: 2011-03-31 *Vincent PovirkCommits: 1Joined: 2011-12-19 + + *Alberto FerreiraCommits: 1Joined: 2012-06-08 *Martin BrownCommits: 1Joined: 2013-02-23 - - - - *Heiko ScheidtCommits: 1Joined: 2014-08-03 - *Arfrever Frehtes Taifersar ArahesisCommits: 1Joined: 2012-04-02 *Valek FilippovCommits: 1Joined: 2013-02-23 - - *James Michael DuPontCommits: 1Joined: 2013-08-30 - *Johannes WidmerCommits: 1Joined: 2013-03-23 - *Hiroto KagotaniCommits: 1Joined: 2014-08-19 - - *Ota ChasákCommits: 1Joined: 2013-04-24 *OKANO TakayoshiCommits: 1Joined: 2013-01-29 - - *Rafael CabralCommits: 1Joined: 2011-03-31 + + *Alex IvanCommits: 1Joined: 2013-04-15 @@ -3179,11 +2773,11 @@ *Jean-Yves RoyerCommits: 1Joined: 2011-03-07 - - *Jan BobisudCommits: 1Joined: 2013-04-29 + + *Rubén JáñezCommits: 1Joined: 2010-10-11 @@ -3193,26 +2787,26 @@ *Stefano FacchiniCommits: 1Joined: 2013-08-22 - - *Kevin HausmannCommits: 1Joined: 2012-08-17 - - *Milan ZelenkaCommits: 1Joined: 2014-03-26 - + + *Ashish BanerjeeCommits: 1Joined: 2013-04-04 *Andreas SliwkaCommits: 1Joined: 2011-02-06 - - *Jeff AignerCommits: 1Joined: 2011-06-09 + *Ravindra VidhateCommits: 1Joined: 2014-01-30 + + + + *Ta Duc TungCommits: 1Joined: 2011-08-08 @@ -3221,36 +2815,28 @@ *Mark WrightCommits: 1Joined: 2013-02-09 - - *Hansgerd SchneiderCommits: 1Joined: 2013-04-02 + + - *Michal HorakCommits: 1Joined: 2014-04-21 + *Raymond WellsCommits: 1Joined: 2013-09-02 *Ayantha RandikaCommits: 1Joined: 2014-01-23 - *roopak12345Commits: 1Joined: 2014-03-09 - - - - *Guillaume FillolCommits: 1Joined: 2011-01-29 *Nico WeyandCommits: 1Joined: 2012-09-02 - - *Jan HubickaCommits: 1Joined: 2014-02-18 - + + *Phil HartCommits: 1Joined: 2012-06-29 - - *Andrew WestCommits: 1Joined: 2011-10-21 @@ -3260,28 +2846,36 @@ *Juan Pablo Martínez CortésCommits: 1Joined: 2011-11-28 + + *AdrienCommits: 1Joined: 2013-08-18 - - + + *Benjamin OtteCommits: 1Joined: 2013-06-15 + *Dennis E. HamiltonCommits: 1Joined: 2013-01-19 *Wolfgang SilbermayrCommits: 1Joined: 2010-10-21 + + *Dan CorneanuCommits: 1Joined: 2010-12-29 *Christopher BackhouseCommits: 1Joined: 2010-12-06 - - + + *Hugo Beauzée-LuyssenCommits: 1Joined: 2011-09-28 + *dbarisakkurtCommits: 1Joined: 2012-02-02 + + *Andy HearnCommits: 1Joined: 2011-01-09 @@ -3291,51 +2885,43 @@ *Alexandre FournierCommits: 1Joined: 2010-11-06 - - - - *Martin OwensCommits: 1Joined: 2014-07-27 - *camilleCommits: 1Joined: 2010-12-13 + + *Douglas Rodrigues de AlmeidaCommits: 1Joined: 2012-09-15 *Jean-François Fortin TamCommits: 1Joined: 2013-06-10 - - *Brian FraserCommits: 1Joined: 2013-09-03 *Joseph BrownCommits: 1Joined: 2012-08-14 + + *Mathieu ParentCommits: 1Joined: 2013-10-14 *Jacqueline RahemipourCommits: 1Joined: 2013-03-23 - - - - *Aditya KaleCommits: 1Joined: 2014-04-01 - *Marco BiscaroCommits: 1Joined: 2012-08-27 *pkoroau pkoroauCommits: 1Joined: 2012-12-20 - - *Audrey TangCommits: 1Joined: 2014-08-05 - + *Tim JanikCommits: 1Joined: 2012-08-10 + + *Yohei YukawaCommits: 1Joined: 2013-05-06 @@ -3344,11 +2930,11 @@ *Christophe StrobbeCommits: 1Joined: 2011-08-09 + + *mb93783Commits: 1Joined: 2010-12-21 - - *Monica Ramirez ArcedaCommits: 1Joined: 2012-04-23 @@ -3356,13 +2942,13 @@ *Neil StalkerCommits: 1Joined: 2010-10-02 - *Shreyansh GandhiCommits: 1Joined: 2014-06-10 + *Juergen SteinhilberCommits: 1Joined: 2012-03-05 + + *James CCommits: 1Joined: 2011-12-20 - - *Alaa.BukhariCommits: 1Joined: 2013-07-04 @@ -3370,9 +2956,6 @@ *Fernando GovernatoreCommits: 1Joined: 2012-02-25 - *Mathias SuppCommits: 1Joined: 2014-02-25 - - *Eric S. RaymondCommits: 1Joined: 2013-06-07 @@ -3398,7 +2981,7 @@ *tinderboxCommits: 1Joined: 2013-04-11 - *Jiri BlechaCommits: 1Joined: 2013-03-02 + *pgajdosCommits: 1Joined: 2011-01-31 *Roman EiseleCommits: 1Joined: 2011-11-23 @@ -3406,9 +2989,6 @@ - *Hannah LyhneCommits: 1Joined: 2014-04-01 - - *Florent GallaireCommits: 1Joined: 2012-04-21 @@ -3417,11 +2997,11 @@ *JesseCommits: 1Joined: 2011-12-14 - - *J. Fernando LagrangeCommits: 1Joined: 2014-02-02 + + *Javier CatalaCommits: 1Joined: 2012-04-26 @@ -3431,11 +3011,11 @@ *Andrew BranchCommits: 1Joined: 2013-02-20 - - - *Manas JoshiCommits: 1Joined: 2014-03-17 + *James Michael DuPontCommits: 1Joined: 2013-08-30 + + *Honza MinarikCommits: 1Joined: 2013-04-03 @@ -3445,11 +3025,11 @@ *yjw9012Commits: 1Joined: 2013-12-30 - - *Reem.ALotaibiCommits: 1Joined: 2013-07-25 + + *Neil Voss (fourier)Commits: 1Joined: 2013-05-24 @@ -3459,11 +3039,11 @@ *Naser SharifiCommits: 1Joined: 2012-11-26 - - *armijnCommits: 1Joined: 2010-12-30 + + *DaveCommits: 1Joined: 2012-08-23 @@ -3471,14 +3051,14 @@ *Matt PrattCommits: 1Joined: 2011-11-02 + *Xukai LiuCommits: 1Joined: 2013-11-01 + + *Ondřej SmržCommits: 1Joined: 2013-03-10 - *Ryo ONODERACommits: 1Joined: 2014-04-07 - - *siqiCommits: 1Joined: 2014-01-26 @@ -3487,11 +3067,11 @@ *krishnan parthasarathiCommits: 1Joined: 2010-10-07 - - *Krunoslav ŠebetićCommits: 1Joined: 2013-07-18 + + *Nick SavageCommits: 1Joined: 2010-10-01 @@ -3501,22 +3081,14 @@ *Jose ManuelCommits: 1Joined: 2012-04-25 - - - - *Apostolos SyropoulosCommits: 1Joined: 2014-05-07 - - - *Alex GulyásCommits: 1Joined: 2014-04-27 - - *Jan KantertCommits: 1Joined: 2014-06-12 + *Kevin PengCommits: 1Joined: 2012-07-20 + + *yangzhangCommits: 1Joined: 2013-12-12 - - *Quentin PradetCommits: 1Joined: 2012-12-21 @@ -3526,16 +3098,13 @@ *Rolf KoetterCommits: 1Joined: 2013-11-05 - - *Damien ChambeCommits: 1Joined: 2014-06-15 - - *Adrià Cereto MassaguéCommits: 1Joined: 2010-10-26 + *Ward van WanrooijCommits: 1Joined: 2012-06-25 - *gdm.manmeetCommits: 1Joined: 2014-03-18 + *Adrià Cereto MassaguéCommits: 1Joined: 2010-10-26 *Jan HubickaCommits: 1Joined: 2011-09-12 @@ -3546,20 +3115,9 @@ - *Heena GuptaCommits: 1Joined: 2014-06-17 - - - *Robin KumarCommits: 1Joined: 2014-06-17 - - *Ionut BiruCommits: 1Joined: 2012-05-14 - *Juergen SteinhilberCommits: 1Joined: 2012-03-05 - - - - *Vicente Rafael Estevez VacasCommits: 1Joined: 2012-04-22 @@ -3568,11 +3126,11 @@ *Nikita OfitserovCommits: 1Joined: 2011-01-10 + + *Marcel HBCommits: 1Joined: 2011-05-03 - - *NeilBrownCommits: 1Joined: 2010-09-28 @@ -3582,11 +3140,11 @@ *Miguel FernándezCommits: 1Joined: 2012-04-26 + + *Gábor NyersCommits: 1Joined: 2013-03-02 - - *Xavi Escriche GalindoCommits: 1Joined: 2012-04-24 @@ -3594,9 +3152,6 @@ *Alexandr N. ZamaraevCommits: 1Joined: 2010-10-01 - *Tomas HlavatyCommits: 1Joined: 2014-06-03 - - *Stefan WeigelCommits: 1Joined: 2011-10-17 @@ -3611,27 +3166,24 @@ *Daniel MihalyiCommits: 1Joined: 2012-02-06 - *Kevin PengCommits: 1Joined: 2012-07-20 + *Tadele AssefaCommits: 1Joined: 2013-01-15 - *Tadele AssefaCommits: 1Joined: 2013-01-15 - - *Pavel KacerCommits: 1Joined: 2013-04-11 *Neven ĆosićCommits: 1Joined: 2012-10-08 - *Martin LiškaCommits: 1Joined: 2014-03-26 + *Jiri BlechaCommits: 1Joined: 2013-03-02 - - *Freek de KruijfCommits: 1Joined: 2010-12-19 + + *Andor ErtseyCommits: 1Joined: 2011-09-04 @@ -3641,11 +3193,11 @@ *vincentCommits: 1Joined: 2013-03-22 - - *Tim-Philipp MüllerCommits: 1Joined: 2012-07-29 + + *Siqi LIUCommits: 1Joined: 2013-08-15 @@ -3655,34 +3207,23 @@ *Trevor MurphyCommits: 1Joined: 2010-10-20 - - *Serg BormantCommits: 1Joined: 2011-11-28 - - *Hideki IkedaCommits: 1Joined: 2014-06-25 - + + *Paolo PozzanCommits: 1Joined: 2010-12-19 *Michael DuelliCommits: 1Joined: 2013-08-01 - - *Vojta KoukalCommits: 1Joined: 2013-03-03 *Udo SchuermannCommits: 1Joined: 2012-04-16 - - *pgajdosCommits: 1Joined: 2011-01-31 - - - *Benjamin OtteCommits: 1Joined: 2013-06-15 - @@ -3692,17 +3233,14 @@ *Nicolas ChristenerCommits: 1Joined: 2013-08-04 - *nrbrtx@gmail.comCommits: 1Joined: 2014-06-10 + *LesterCommits: 1Joined: 2012-10-23 - *LesterCommits: 1Joined: 2012-10-23 + *Henning DiedlerCommits: 1Joined: 2013-11-02 - *christianjuCommits: 1Joined: 2014-02-10 - - *Irányossy Knoblauch ArtúrCommits: 1Joined: 2013-04-06 @@ -3711,6 +3249,9 @@ *Caolan McNamaraCommits: 1Joined: 2013-05-15 + + *Joan MontaneCommits: 1Joined: 2013-02-22 + @@ -3720,69 +3261,44 @@ *Chris CheneyCommits: 1Joined: 2011-04-27 - *Fahad Al-SaidiCommits: 1Joined: 2014-07-16 - - *Jonathan SchultzCommits: 1Joined: 2013-05-22 - - *Christopher HotchkissCommits: 1Joined: 2013-02-15 - - *Thomas ViehmannCommits: 1Joined: 2014-08-15 - + + *Ankitkumar Rameshchandra PatelCommits: 1Joined: 2012-01-20 - *Raymond WellsCommits: 1Joined: 2013-09-02 - - - - *ricardobottoCommits: 1Joined: 2013-05-18 *Denis LackovicCommits: 1Joined: 2010-10-05 - *Trent MacAlpineCommits: 1Joined: 2014-03-06 - - - *haochenCommits: 1Joined: 2014-05-31 + *Cassio NeriCommits: 1Joined: 2011-05-01 - *Juan PiccaCommits: 1Joined: 2014-07-23 - - - *Cassio NeriCommits: 1Joined: 2011-05-01 - - *Danny BrownCommits: 1Joined: 2013-09-18 *David PenzesCommits: 1Joined: 2011-06-14 - - - - *Dushyant BhalgamiCommits: 1Joined: 2014-07-04 - *Peter TillemansCommits: 1Joined: 2012-06-26 *Lucian ConstantinCommits: 1Joined: 2013-03-24 + + *Andrey TurkinCommits: 1Joined: 2011-02-09 - - *Jakub GolebiewskiCommits: 1Joined: 2013-04-09 @@ -3792,11 +3308,11 @@ *Tomas TurekCommits: 1Joined: 2013-03-24 + + *Stephan van den AkkerCommits: 1Joined: 2012-06-07 - - *Christoph LutzCommits: 1Joined: 2013-11-05 @@ -3804,9 +3320,6 @@ *mmeofCommits: 1Joined: 2013-05-03 - *Henning DiedlerCommits: 1Joined: 2013-11-02 - - *Masataka ShinkeCommits: 1Joined: 2012-02-15 @@ -3815,42 +3328,28 @@ *Peng GaoCommits: 1Joined: 2013-06-16 - *Jason GerlowskiCommits: 1Joined: 2014-03-07 - - *Maxime CôtéCommits: 1Joined: 2011-04-19 *sagarCommits: 1Joined: 2012-09-15 - - *Evertjan GarretsenCommits: 1Joined: 2010-10-04 + + *Bryan QuigleyCommits: 1Joined: 2012-12-12 - *Michal SiedlaczekCommits: 1Joined: 2014-01-25 - - *Victor LeeCommits: 1Joined: 2011-12-24 - - - - *Hugo Beauzée-LuyssenCommits: 1Joined: 2011-09-28 - *Karan DesaiCommits: 1Joined: 2012-04-01 *Steven MeyerCommits: 1Joined: 2013-03-13 - - - Contributors to bundled templates @@ -4082,12 +3581,12 @@ Steffen GrundCommits: 45Joined: 2003-02-04 - Michael MiCommits: 45Joined: 2004-07-14 + Gerd WeissCommits: 45Joined: 2007-04-26 - Gerd WeissCommits: 45Joined: 2007-04-26 + Michael MiCommits: 45Joined: 2004-07-14 Armin TheissenCommits: 44Joined: 2000-09-22 @@ -4156,7043 +3655,6430 @@ - - mmCommits: 19Joined: 2000-09-21 - - - ghigginsCommits: 18Joined: 2002-05-19 - - - Wu YanCommits: 18Joined: 2010-04-28 - - - khzCommits: 18Joined: 2000-09-21 - - - - - Sarah SmithCommits: 18Joined: 2002-10-21 - - - Amelia WangCommits: 17Joined: 2010-09-13 - - - Csaba BorbolaCommits: 16Joined: 2000-09-22 - - - dkennyCommits: 16Joined: 2001-04-17 - - - - - Darragh SherwinCommits: 15Joined: 2002-03-21 - - - Ping LiaoCommits: 14Joined: 2000-09-21 - - - okCommits: 13Joined: 2000-11-16 - - - Mindy LiuCommits: 13Joined: 2003-03-03 - - - - - Svante SchubertCommits: 12Joined: 2001-02-08 - - - cdtCommits: 11Joined: 2000-10-16 - - - Bernd EilersCommits: 11Joined: 2001-06-03 - - - Laszlo KovacsCommits: 11Joined: 2002-09-23 - - - - - Yuan LiCommits: 10Joined: 2006-12-14 - - - hb137859Commits: 10Joined: 2009-09-17 - - - John RiceCommits: 9Joined: 2002-09-27 - - - Mox SoiniCommits: 9Joined: 2008-04-04 - - - - - Joerg SieversCommits: 8Joined: 2008-06-13 - - - maCommits: 8Joined: 2001-03-21 - - - mb93783Commits: 7Joined: 2009-11-04 - - - wvdCommits: 7Joined: 2001-07-18 - - - - - Mike HayesCommits: 7Joined: 2002-10-09 - - - mwuCommits: 7Joined: 2002-07-04 - - - lwangCommits: 7Joined: 2002-11-06 - - - niddCommits: 7Joined: 2001-12-25 - - - - - Jonathan PryorCommits: 7Joined: 2010-09-15 - - - Ilko HöppingCommits: 6Joined: 2001-05-04 - - - Uwe FischerCommits: 5Joined: 2009-11-20 - - - mathiasCommits: 5Joined: 2009-09-23 - - - - - tsCommits: 5Joined: 2000-12-11 - - - lucturCommits: 5Joined: 2003-11-05 - - - dicCommits: 5Joined: 2001-02-12 - - - Joerg Skottke [jsk] jskCommits: 5Joined: 2009-11-02 - - - - - Willem van DorpCommits: 4Joined: 2000-09-29 - - - ms93807Commits: 4Joined: 2010-01-08 - - - tl93732Commits: 3Joined: 2009-10-20 - - - Jiao JianhuaCommits: 3Joined: 2010-09-13 - - - - - Stella SchulzeCommits: 3Joined: 2001-09-13 - - - tlxCommits: 3Joined: 2000-12-07 - - - Stefan TaxhetCommits: 3Joined: 2001-12-13 - - - htajimaCommits: 2Joined: 2000-12-11 - - - - - Wind LiCommits: 2Joined: 2004-01-30 - - - jobinCommits: 2Joined: 2008-02-29 - - - Louis Suárez-PottsCommits: 2Joined: 2001-08-17 - - - Alexis LedouxCommits: 2Joined: 2002-09-24 - - - - - Terence TseCommits: 2Joined: 2000-09-22 - - - Chris HallsCommits: 2Joined: 2002-10-04 - - - mxiaoCommits: 2Joined: 2002-09-17 - - - Michael RauchCommits: 2Joined: 2002-03-19 - - - - - jmengCommits: 2Joined: 2003-12-04 - - - mbuCommits: 1Joined: 2005-10-18 - - - shaneCommits: 1Joined: 2000-10-02 - - - gh93821Commits: 1Joined: 2010-04-09 - - - - - Dan WilliamsCommits: 1Joined: 2004-03-08 - - - dcCommits: 1Joined: 2002-03-05 - - - Nakata MahoCommits: 1Joined: 2006-07-08 - - - asaundersCommits: 1Joined: 2003-07-07 - - - - - fs93730Commits: 1Joined: 2009-10-16 - - - Artem KhvatCommits: 1Joined: 2007-12-14 - - - gyangCommits: 1Joined: 2004-10-29 - - - vsCommits: 1Joined: 2001-01-30 - - - - - mishaCommits: 1Joined: 2002-04-29 - - - cl93746Commits: 1Joined: 2009-10-22 - - - sg128468Commits: 1Joined: 2010-01-20 - - - oc93805Commits: 1Joined: 2009-11-30 - - - - Contributors to bundled templates - - - - - - - - Oliver BolteCommits: 418Joined: 2004-09-08 - - - Rüdiger TimmCommits: 266Joined: 2003-12-01 - - - Jens-Heiner RechtienCommits: 187Joined: 2000-09-19 - - - Kurt ZenkerCommits: 146Joined: 2004-05-19 - - - - - Vladimir GlazounovCommits: 89Joined: 2004-12-23 - - - Hans-Joachim LankenauCommits: 15Joined: 2004-06-26 - - - Behrend CorneliusCommits: 6Joined: 2001-06-08 - - - Tom VerbeekCommits: 4Joined: 2001-01-26 - - - - - Volker Ahrendt [va]Commits: 2Joined: 2002-05-29 - - - - - - - - - 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 - - - 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 - 1923 individuals contributed: - - - - - - - - K-j (4637) - - - Roczek, Dennis (4624) - - - Uroveits (4048) - - - Pierre-yves samyn (2857) - - - - - (2604) - - - Gautier, Sophie (2484) - - - Tryon, Robinson (2394) - - - Balland-Poirier, Laurent (2103) - - - - - Bielefeld, Rainer (2075) - - - Jeanweber (1752) - - - Effenberger, Florian (1467) - - - Marcpare (1375) - - - - - Michaelsen, Björn (1251) - - - Tagezi (1205) - - - Adailton (1203) - - - Mirek2 (1158) - - - - - Pacheco, Gustavo Buzzatti (1125) - - - Haas, Uwe (1095) - - - Novak, Nino (970) - - - Tom (815) - - - - - Meeks, Michael (800) - - - Mac-Cormick, João (715) - - - Drew (646) - - - Hallot, Olivier (577) - - - - - Jmadero (570) - - - Clement21.philippe (554) - - - Lima, Paulo de Souza (546) - - - GerryT (543) - - - - - Hazel (535) - - - ChristophNoack (532) - - - Behrens, Thorsten (524) - - - Knorr, Stefan (521) - - - - - Davidnelson (517) - - - H-k (507) - - - Jmpierre (496) - - - Elianedomingos (494) - - - - - Enoki (492) - - - Reisinger, Florian (487) - - - Ostrovsky, David (478) - - - Naruoga (477) - - - - - Filmsi (469) - - - Mladek, Petr (450) - - - Teo91 (435) - - - Nouws, Cor (433) - - - - - Carrera, Sigrid (431) - - - Chris69 (419) - - - Jayme Barrientos, Adolfo (419) - - - Gecko (419) - - - - - Rmfaile (412) - - - Luz Coelho, Rogério (409) - - - Foral (384) - - - Alexander Wilms (383) - - - - - Yoshida, Kohei (379) - - - Emanuel Marcatinco (374) - - - StefanW (372) - - - McNamara, Caolán (354) - - - - - Rathke, Eike (351) - - - Raulpacheco (338) - - - Merschmann, Volker (328) - - - Pruegsanusak, Korrawit (325) - - - - - Rönkkö, Niko (322) - - - AndrasTimar (309) - - - Vajna, Miklos (295) - - - Heinzws (292) - - - - - Emanuel A. Marcatinco B. (290) - - - Librelegal (283) - - - Christian, Erich (268) - - - Thiebaud, Norbert (268) - - - - - Gerald (255) - - - Tseng, Cheng-Chia (254) - - - Remarques (252) - - - Deemonizer (248) - - - - - Helen russian (248) - - - Tardon, David (246) - - - Holešovský, Jan (245) - - - Adrianoafonso (242) - - - - - Loic (240) - - - Steve (234) - - - Dippold, Bernhard (226) - - - Bosdonnat, Cédric (225) - - - - - Almusaireae (219) - - - Lohmaier, Christian (219) - - - Khirano (215) - - - Gilvanvilarim (210) - - - - - Andreschnabel (205) - - - Kkwet38 (203) - - - XsLiDian (203) - - - Wheatbix (198) - - - - - Erhardt (193) - - - Jbfaure (190) - - - Schulz, Charles-H. (188) - - - Tarnhold (187) - - - - - Méixome, Antón (179) + + mmCommits: 19Joined: 2000-09-21 - - Vsfoote (179) + + ghigginsCommits: 18Joined: 2002-05-19 - - Hackert, Thomas (178) + + khzCommits: 18Joined: 2000-09-21 - - Alkurtass, Issa (175) + + Wu YanCommits: 18Joined: 2010-04-28 - - Raw text (175) + + Sarah SmithCommits: 18Joined: 2002-10-21 - - Fridrich (172) + + Amelia WangCommits: 17Joined: 2010-09-13 - - Luizheli (172) + + Csaba BorbolaCommits: 16Joined: 2000-09-22 - - Furusho (168) + + dkennyCommits: 16Joined: 2001-04-17 - - Jiang, Yifan (168) + + Darragh SherwinCommits: 15Joined: 2002-03-21 - - Lillqvist, Tor (166) + + Ping LiaoCommits: 14Joined: 2000-09-21 - - Stahl, Michael (164) + + okCommits: 13Joined: 2000-11-16 - - Matuaki (162) + + Mindy LiuCommits: 13Joined: 2003-03-03 - - See (160) + + Svante SchubertCommits: 12Joined: 2001-02-08 - - Snelders, Rob (155) + + cdtCommits: 11Joined: 2000-10-16 - - Mohrhard, Markus (155) + + Laszlo KovacsCommits: 11Joined: 2002-09-23 - - RobertG (155) + + Bernd EilersCommits: 11Joined: 2001-06-03 - - Kaplan, Lior (154) + + Yuan LiCommits: 10Joined: 2006-12-14 - - Herzog, Christoph (149) + + hb137859Commits: 10Joined: 2009-09-17 - - Gonzalez, Daniel (146) + + John RiceCommits: 9Joined: 2002-09-27 - - Vignoli, Italo (146) + + Mox SoiniCommits: 9Joined: 2008-04-04 - - Pitkänen, Harri (144) + + Joerg SieversCommits: 8Joined: 2008-06-13 - - Mipmap (144) + + maCommits: 8Joined: 2001-03-21 - - Heliojsf (137) + + mb93783Commits: 7Joined: 2009-11-04 - - P.guimberteau (137) + + wvdCommits: 7Joined: 2001-07-18 - - De Cuyper, Joren (135) + + Mike HayesCommits: 7Joined: 2002-10-09 - - Norah (135) + + mwuCommits: 7Joined: 2002-07-04 - - Filhocf (132) + + lwangCommits: 7Joined: 2002-11-06 - - Richteruwe (131) + + niddCommits: 7Joined: 2001-12-25 - - Michel, Mathias (129) + + Jonathan PryorCommits: 7Joined: 2010-09-15 - - Henschel, Regina (128) + + Ilko HöppingCommits: 6Joined: 2001-05-04 - - Nik (127) + + Uwe FischerCommits: 5Joined: 2009-11-20 - - Krackedpress (123) + + mathiasCommits: 5Joined: 2009-09-23 - - RGB.ES (123) + + tsCommits: 5Joined: 2000-12-11 - - Michelr (122) + + lucturCommits: 5Joined: 2003-11-05 - - Trapezus (122) + + dicCommits: 5Joined: 2001-02-12 - - JohnSmith (120) + + Joerg Skottke [jsk] jskCommits: 5Joined: 2009-11-02 - - Mamane, Lionel Elie (120) + + Willem van DorpCommits: 4Joined: 2000-09-29 - - Veracape (120) + + ms93807Commits: 4Joined: 2010-01-08 - - Lodahl (117) + + tl93732Commits: 3Joined: 2009-10-20 - - Abe, Takeshi (117) + + Jiao JianhuaCommits: 3Joined: 2010-09-13 - - Spaeth, Sebastian (115) + + Stella SchulzeCommits: 3Joined: 2001-09-13 - - Markers (114) + + tlxCommits: 3Joined: 2000-12-07 - - Vohe (113) + + Stefan TaxhetCommits: 3Joined: 2001-12-13 - - Marcus Gama (112) + + htajimaCommits: 2Joined: 2000-12-11 - - Medieval (111) + + Wind LiCommits: 2Joined: 2004-01-30 - - Schulthess, Franziska (107) + + jobinCommits: 2Joined: 2008-02-29 - - Bergmann, Stephan (107) + + Louis Suárez-PottsCommits: 2Joined: 2001-08-17 - - Elcico (106) + + Alexis LedouxCommits: 2Joined: 2002-09-24 - - Ki Drupadi (106) + + Terence TseCommits: 2Joined: 2000-09-22 - - Rodriguez, Daniel Armando (103) + + Chris HallsCommits: 2Joined: 2002-10-04 - - JZA (101) + + mxiaoCommits: 2Joined: 2002-09-17 - - Ikuya (100) + + Michael RauchCommits: 2Joined: 2002-03-19 - - JeHa (99) + + jmengCommits: 2Joined: 2003-12-04 - - Android272 (98) + + mbuCommits: 1Joined: 2005-10-18 - - Weissenbacher, Philipp (95) + + shaneCommits: 1Joined: 2000-10-02 - - Mantke, Andreas (93) + + gh93821Commits: 1Joined: 2010-04-09 - - Andreasg (92) + + Dan WilliamsCommits: 1Joined: 2004-03-08 - - Bitsfritz (91) + + dcCommits: 1Joined: 2002-03-05 - - Llunak (91) + + Nakata MahoCommits: 1Joined: 2006-07-08 - - MagicFab (91) + + fs93730Commits: 1Joined: 2009-10-16 - - Frombenny (90) + + Artem KhvatCommits: 1Joined: 2007-12-14 - - Omori (86) + + gyangCommits: 1Joined: 2004-10-29 - - Phorious (85) + + mishaCommits: 1Joined: 2002-04-29 - - KorrawitBot (84) + + asaundersCommits: 1Joined: 2003-07-07 - - Dan (83) + + cl93746Commits: 1Joined: 2009-10-22 - - JamesWalker (81) + + vsCommits: 1Joined: 2001-01-30 - - Zeki (80) + + sg128468Commits: 1Joined: 2010-01-20 - - 80686 (79) + + oc93805Commits: 1Joined: 2009-11-30 + + Contributors to bundled templates + + + + + - - Nemeth (79) + + Oliver BolteCommits: 418Joined: 2004-09-08 - - Suokunlong (79) + + Rüdiger TimmCommits: 266Joined: 2003-12-01 - - Nabet, Julien (78) + + Jens-Heiner RechtienCommits: 187Joined: 2000-09-19 - - Pechlaner, Wolfgang (77) + + Kurt ZenkerCommits: 146Joined: 2004-05-19 - - KeithCu (75) + + Vladimir GlazounovCommits: 89Joined: 2004-12-23 - - Ztamas (75) + + Hans-Joachim LankenauCommits: 15Joined: 2004-06-26 - - Lbalbalba (74) + + Behrend CorneliusCommits: 6Joined: 2001-06-08 - - Paulojose (74) + + Tom VerbeekCommits: 4Joined: 2001-01-26 - - Albino (73) - - - Xosé (73) - - - Jeanmi2403 (72) + + Volker Ahrendt [va]Commits: 2Joined: 2002-05-29 - - Aury88 (71) + + + + + + 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, andb) 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 + 1750 individuals contributed: + + + + + - RalfHB (71) + K-j (4282) - Al-Harthi, Ahmad Hussein (70) + CleanupBot (4262) - Jo7ueb (70) + Uroveits (4020) - Philipz (70) + Dennisroczek (2832) - Kerwyn (69) + Pierre-yves samyn (2613) - Malhassoun (69) + (2533) - Freetank (68) + Sophi (2331) - Fábio Farias (68) + Bielefeld, Rainer (2075) - Jucasaca (68) + Balland-Poirier, Laurent (2073) - Klaibson (68) + Tryon, Robinson (1828) - Sam m (68) + Jeanweber (1594) - Fišeras, Aurimas (67) + Effenberger, Florian (1387) - Donaldo (67) + Marcpare (1369) - Ptux (67) + Adailton (1203) - StanG (65) + Michaelsen, Björn (1161) - Karbasion, Bersam (64) + Mirek2 (1154) - Castermans, Luc (64) + Pacheco, Gustavo Buzzatti (1120) - Oipila (64) + Haas, Uwe (1095) - Evy (63) + Novak, Nino (962) - Rq (62) + Tom (812) - Gathoye, William (62) + Meeks, Michael (780) - AlanC (61) + Drew (646) - Denco (61) + Mac-Cormick, João (565) - Frieder (61) + Hallot, Olivier (560) - Jlgrenar (60) + Clement21.philippe (550) - Neel, Daniel (58) + Lima, Paulo de Souza (546) - Loflex (58) + Hazel (535) - Camillem (57) + ChristophNoack (532) - Davefilms (56) + Behrens, Thorsten (520) - Glen.reesor (56) + Davidnelson (517) - Milos (56) + Knorr, Stefan (516) - Ramones (56) + Jmadero (516) - Ysabeau (56) + Jmpierre (496) - Jrahemipour (55) + Reisi007 (487) - Heben2 (53) + GerryT (477) - Sunny2038 (53) + Ostrovsky, David (472) - Kukan, Matúš (52) + Elianedomingos (458) - Petrizzo (52) + Mladek, Petr (449) - ArnoldSchiller (51) + Carrera, Sigrid (421) - Helmar (51) + Chris69 (419) - Jaani (51) + Gecko (419) - Vpanter (51) + Enoki (414) - Agd (50) + Rmfaile (412) - Halparker (50) + Luz Coelho, Rogério (409) - Ronaldo (50) + Nouws, Cor (403) - Catalin Festila (49) + Foral (384) - Mpescador (49) + Filmsi (379) - Vardomescro (49) + Alexander Wilms (375) - Lviktoria (48) + Emanuel Marcatinco (374) - Dagobert 78 (47) + StefanW (372) - Hunt, Andrzej (46) + Yoshida, Kohei (369) - Sk94 (45) + Naruoga (347) - Timur LOL (45) + Rathke, Eike (337) - Bhorst (44) + Raulpacheco (327) - Junmeguro (44) + Pruegsanusak, Korrawit (325) - Aaronxu (43) + Merschmann, Volker (323) - Gareth (43) + Rönkkö, Niko (322) - Quest-88 (43) + AndrasTimar (305) - Bfo (42) + Jayme Barrientos, Adolfo (300) - KAMI (42) + H-k (293) - Another sam (41) + Heinzws (292) - Arjunaraoc (41) + Emanuel A. Marcatinco B. (290) - Bluedwarf (41) + Teo91 (279) - Chtfn (41) + Vajna, Miklos (270) - Gghh (41) + Christian, Erich (268) - Joey (41) + Thiebaud, Norbert (264) - Kraucer (40) + Librelegal (263) - Kees538 (39) + Gerald (255) - Baffclan (38) + Remarques (252) - Dougvigliazzi (38) + Tseng, Cheng-Chia (252) - Enervation (38) + Loic (240) - Alex Thurgood (37) + Adrianoafonso (236) - Cjenkins (37) + Holešovský, Jan (236) - Ivanslf (37) + McNamara, Caolán (235) - Kano (37) + Steve (233) - Kinshuksunil (37) + Deemonizer (228) - Castle, John LeMoyne (37) + Dippold, Bernhard (226) - Pje335 (37) + Bosdonnat, Cédric (225) - Danishka (36) + Almusaireae (219) - Pedlino (36) + Khirano (215) - Sci citation (36) + Gilvanvilarim (210) - Wilper, Simon (36) + Andreschnabel (205) - Nora (35) + XsLiDian (203) - Pingping111 (35) + Wheatbix (198) - Stalker08 (35) + Helen russian (194) - Caco13 (34) + Erhardt (193) - Smaug42 (34) + Kkwet38 (192) - Bmcs (33) + Schulz, Charles-H. (185) - Corrius, Jesús (33) + Méixome, Antón (179) - Lmartinezh (33) + Cloph (176) - Mateus.m.luna (33) + Alkurtass, Issa (175) - Patheticcockroach (33) + Raw text (175) - Pereriksson (33) + Fridrich (172) - Rafi (33) + Luizheli (172) - Shirahara (33) + Vsfoote (171) - Clio (32) + Jiang, Yifan (168) - Daud (32) + Furusho (165) - Dryomov, Artur (32) + Jbfaure (163) - Xuacu (32) + Lillqvist, Tor (162) - IvanM (31) + See (159) - Liongold (31) + Hackert, Thomas (159) - Subramanian, Muthu (31) + Stahl, Michael (156) - Mahfiaz (30) + Kaplan, Lior (154) - Njsg (30) + Matuaki (151) - Quikee (30) + Herzog, Christoph (149) - Tclovis (30) + Tardon, David (148) - Thardeck (30) + Snelders, Rob (148) - Cida.Coltro (29) + Gonzalez, Daniel (146) - Darbe (29) + Mipmap (144) - Aragunde Pérez, Jacobo (29) + Vignoli, Italo (141) - RodolfoRG (29) + Heliojsf (137) - Серж (29) + P.guimberteau (137) - Ace-dent (28) + Mohrhard, Markus (136) - Deneb (28) + Pitkänen, Harri (135) - Riemer, Philipp (28) + Norah (135) - Haaninjo (28) + Filhocf (132) - Jihui choi (28) + De Cuyper, Joren (132) - المسيكين (28) + Richteruwe (131) - Bormant (27) + Michel, Mathias (129) - Micm (27) + Nik (127) - Enger, Terrence (27) + Henschel, Regina (124) - Alexanderwerner (26) + Krackedpress (123) - Ezeperez26 (26) + RGB.ES (123) - Fanch (26) + Michelr (122) - Linuxman (26) + Trapezus (122) - Hawkins, Nigel (26) + Mamane, Lionel Elie (118) - Pirat Michi (26) + RobertG (118) - Vaslav (26) + Lodahl (117) - Aidsoid (25) + Abe, Takeshi (116) - Roßmanith, Christina (25) + Tarnhold (116) - Eresus (25) + Spaeth, Sebastian (115) - Freddyrh (25) + Markers (114) - Sullivan, Gatlin (25) + Vohe (113) - Lboccia (25) + Marcus Gama (112) - Noelson (25) + Medieval (111) - Winniemiel05 (25) + JohnSmith (110) - Alayaran (24) + Schulthess, Franziska (107) - Gaianer (24) + Ki Drupadi (105) - Gérard24 (24) + Elcico (104) - Ksoviero (24) + Rodriguez, Daniel Armando (102) - Nik vr (24) + JZA (101) - Sveinki (24) + Veracape (101) - Arnaud versini (23) + Ikuya (100) - Marcos Paulo de Souza (23) + JeHa (99) - Olorin (23) + Bergmann, Stephan (99) - TaeWong (23) + Android272 (98) - Team One (23) + Mantke, Andreas (93) - Bellerophon (22) + Andreasg (92) - Balazs, Bjoern (22) + MagicFab (91) - HenryGR (22) + Frombenny (90) - JChimene (22) + Llunak (90) - Shunesburg69 (22) + Bitsfritz (89) - Youngman, Anthony W. (22) + Weissenbacher, Philipp (85) - EdvaldoSCruz (21) + KorrawitBot (84) - Montané, Joan (21) + Phorious (84) - Johannes (21) + Dan (83) - Liusiqi43 (21) + JamesWalker (81) - Necdetyucel (21) + 80686 (79) - Paz (21) + Pechlaner, Wolfgang (77) - Wayra (21) + Zeki (77) - Bugmenot (20) + Paulojose (74) - Grasip (20) + Nabet, Julien (72) - HeinF (20) + Aury88 (71) - Mariuz (20) + Jeanmi2403 (71) - Mattsturgeon (20) + RalfHB (71) - PaoloPelloni (20) + Al-Harthi, Ahmad Hussein (70) - Thuswaldner, Albert (20) + Albino (70) - Donkers, Winfried (20) + Jo7ueb (70) - Yorick (20) + Nemeth (70) - Zapata (20) + Malhassoun (69) - Guateconexion (19) + Fábio Farias (68) - Icobgr (19) + Jucasaca (68) - JaronBaron (19) + Donaldo (67) - Jem (19) + Lbalbalba (67) - Kentarch (19) + Ptux (67) - XMatence (19) + Fišeras, Aurimas (66) - Jstaerk (18) + KeithCu (66) - Narayan (18) + Xosé (66) - Power, Noel (18) + Omori (65) - Richard (18) + StanG (65) - UriHerrera (18) + Karbasion, Bersam (64) - Vulcain (18) + Castermans, Luc (64) - 林漢昌 (18) + Oipila (63) - Akerbeltz (17) + Rq (62) - Aphaia (17) + Denco (61) - Chd (17) + Frieder (61) - Dlmoretz (17) + Jlgrenar (60) - Ertsey, Andor (17) + Neel, Daniel (58) - Guilherme.vanz (17) + Evy (58) - Gulmorais (17) + Loflex (58) - Juergenfenn (17) + Camillem (57) - Papamatti (17) + Sam m (57) - Magliocchetti, Riccardo (17) + Davefilms (56) - Rubembarreto (17) + Glen.reesor (56) - Taken (17) + Ramones (56) - Valdirbarbosa (17) + Jrahemipour (55) - Yumakino (17) + Heben2 (53) - Беломир (17) + Sunny2038 (53) - Dhersh (16) + Petrizzo (52) - Houbsi (16) + ArnoldSchiller (51) - LLyaudet (16) + Helmar (51) - MoIshihara (16) + Jaani (51) - P.Guimberteau (16) + Agd (50) - Ristoi (16) + Halparker (50) - Uwealtmann (16) + Ronaldo (50) - Vuhung (16) + Catalin Festila (49) - X1sc0 (16) + Kukan, Matúš (49) - Airon90 (15) + Mpescador (49) - Andy98 (15) + Vardomescro (49) - Bertob (15) + Vpanter (49) - Craigo (15) + Ztamas (49) - Franklin (15) + Lviktoria (48) - Khlood Elsayed (15) + Dagobert 78 (47) - Luctur (15) + Klaibson (45) - Miko (15) + Timur LOL (45) - Naudy (15) + Bhorst (44) - Dominguez, Rafael (15) + Aaronxu (43) - PauGNU (15) + Hunt, Andrzej (43) - Raul.malea (15) + Gareth (43) - Thumperward (15) + Quest-88 (43) - Thorogood, Tom (15) + KAMI (42) - Toxitom (15) + Gathoye, William (42) - 暗影遺言 (15) + Another sam (41) - Moreno, Eduardo (14) + Arjunaraoc (41) - Fina (14) + Bluedwarf (41) - Kosiorek, Bartosz (14) + Joey (41) - Grandin, Noel (14) + Gghh (40) - Halencarjunior (14) + Kraucer (40) - Lefevre00 (14) + Dougvigliazzi (38) - Lfernandocarvalho (14) + Enervation (38) - Librosaurus (14) + Junmeguro (38) - Lutch (14) + Kees538 (38) - Mderoucy (14) + Alex Thurgood (37) - Olivier (14) + Bfo (37) - Reinsle (14) + Cjenkins (37) - Tamiliam (14) + Ivanslf (37) - Testnoda (14) + Kano (37) - Thangamani-arun (14) + Kinshuksunil (37) - Akoscomp (13) + Castle, John LeMoyne (37) - Alrt84 (13) + Pje335 (37) - Alyssonware (13) + Danishka (36) - Beuss (13) + Pedlino (36) - Cedric31 (13) + Sci citation (36) - Gallaecio (13) + Chtfn (35) - Guuml (13) + Nora (35) - Kadekilo (13) + Pingping111 (35) - Leomota (13) + Wilper, Simon (35) - Ljelly (13) + Stalker08 (35) - Luc (13) + Caco13 (34) - Luked (13) + Smaug42 (34) - Mabbb (13) + Bmcs (33) - Mortense (13) + Corrius, Jesús (33) - Pete Boyd (13) + Lmartinezh (33) - S.Gecko (13) + Mateus.m.luna (33) - Sanyii (13) + Patheticcockroach (33) - Simplicity Instinct (13) + Pereriksson (33) - ThierryM (13) + Shirahara (33) - Tnishiki (13) + Baffclan (32) - Vivaelcelta (13) + Clio (32) - Vkkodali (13) + Daud (32) - And471 (12) + Dryomov, Artur (32) - Bhaskar (12) + Rafi (32) - Cralin (12) + Xuacu (32) - Al-Otaibi, Faisal M. (12) + IvanM (31) - Halan (12) + Liongold (30) - Immanuelg (12) + Njsg (30) - Pcapeluto (12) + Tclovis (30) - R4chi7 (12) + Thardeck (30) - Royerjy (12) + Cida.Coltro (29) - Staticsafe (12) + Darbe (29) - Veerh01 (12) + RodolfoRG (29) - 翼之靈歌 (12) + Серж (29) - Cdan (11) + Ace-dent (28) - Strobbe, Christophe (11) + Riemer, Philipp (28) - Dajare (11) + Haaninjo (28) - Eduaraujo (11) + Jihui choi (28) - Irmhild (11) + Subramanian, Muthu (28) - Kallecarl (11) + المسيكين (28) - Kelemeng (11) + Mahfiaz (27) - Luiz Henrique Natalino (11) + Micm (27) - NON (11) + Quikee (27) - Johansson, Niklas (11) + Ezeperez26 (26) - Nuernbergerj (11) + Fanch (26) - PeeWee (11) + Linuxman (26) - Rogeniobelem (11) + Hawkins, Nigel (26) - Salmaan (11) + Pirat Michi (26) - Raruenrom, Samphan (11) + Enger, Terrence (26) - Sunk8 (11) + Aidsoid (25) - Gomez, Andres (11) + Roßmanith, Christina (25) - Zero0w (11) + Freddyrh (25) - Admasonscottisha (10) + Lboccia (25) - Aeusebio (10) + Noelson (25) - Algotruneman (10) + Winniemiel05 (25) - AliIsingor (10) + Alayaran (24) - Blargh (10) + Alexanderwerner (24) - Diginin (10) + Eresus (24) - Eagles051387 (10) + Gaianer (24) - Eduardogula (10) + Gérard24 (24) - El7r (10) + Ksoviero (24) - Gippy73 (10) + Nik vr (24) - J.baer (10) + Deneb (23) - Kirill NN (10) + Marcos Paulo de Souza (23) - Godard, Laurent (10) + Olorin (23) - Lionlinux (10) + TaeWong (23) - Chung, Elton (10) + Team One (23) - Mikalai (10) + Bellerophon (22) - Monastirsky, Maxim (10) + Balazs, Bjoern (22) - Otto (10) + HenryGR (22) - Revol (10) + JChimene (22) - Ronja (10) + Youngman, Anthony W. (22) - Möller, Sören — spelled Soeren Moeller in some patches (10) + EdvaldoSCruz (21) - Tatat (10) + Montané, Joan (21) - Sherlock, Chris (10) + Johannes (21) - Teseu (10) + Liusiqi43 (21) - Tomg (10) + Necdetyucel (21) - Wlenon (10) + Paz (21) - Al-Abdulrazzaq, Abdulmajeed (9) + Sveinki (21) - AtkinsSJ (9) + Wayra (21) - Calisgarge (9) + Bugmenot (20) - Camargo (9) + Grasip (20) - Cnuss (9) + HeinF (20) - Crazyskeggy (9) + Mattsturgeon (20) - Dupreyb (9) + PaoloPelloni (20) - Ebraminio (9) + Thuswaldner, Albert (20) - Fatdf (9) + Vaslav (20) - Geeta (9) + Yorick (20) - Gibi (9) + Zapata (20) - GisbertFriege (9) + Guateconexion (19) - Gokul, S (9) + Icobgr (19) - Goranrakic (9) + Aragunde Pérez, Jacobo (19) - Jim-BobHarris (9) + JaronBaron (19) - Jopsen (9) + Jem (19) - Jowyta (9) + Kentarch (19) - Lapetec (9) + Milos (19) - Lexeii (9) + Shunesburg69 (19) - Pearson, Timothy (9) + XMatence (19) - Mapper (9) + Jstaerk (18) - Marco (9) + Kerwyn (18) - Bogliolo, Meo (9) + Narayan (18) - Mihkel (9) + Power, Noel (18) - Msaffron (9) + Richard (18) - Ohnemax (9) + UriHerrera (18) - Oprea.luci (9) + 林漢昌 (18) - Pixpray (9) + Aphaia (17) - Dricot, Lionel (9) + Chd (17) - Rogawa (9) + Dlmoretz (17) - Rpr (9) + Ertsey, Andor (17) - Ellis, Damien (9) + Guilherme.vanz (17) - Therabi (9) + Gulmorais (17) - Twstdude0to1 (9) + Juergenfenn (17) - Urdulizer (9) + Papamatti (17) - User8192 (9) + Rubembarreto (17) - Webmink (9) + Taken (17) - Zhangxiaofei (9) + Valdirbarbosa (17) - Alexxed (8) + Yumakino (17) - AndreasL (8) + Беломир (17) - Ausserirdischegesund (8) + Arnaud versini (16) - Cocofan (8) + Dhersh (16) - Dashohoxha (8) + Houbsi (16) - DrDub (8) + MoIshihara (16) - Ed Eyles (8) + P.Guimberteau (16) - Elacheche (8) + Ristoi (16) - Horst (8) + Uwealtmann (16) - Israel Chaves (8) + Vuhung (16) - JR (8) + Donkers, Winfried (16) - Jslozier (8) + X1sc0 (16) - Mendes, Júlio Hoffimann (8) + Airon90 (15) - Dywan, Christian (8) + Andy98 (15) - Kednar (8) + Bertob (15) - Rietveld, Kristian (8) + Craigo (15) - Leo.h.hildebrandt (8) + Khlood Elsayed (15) - Manj k (8) + Luctur (15) - Mrmox2 (8) + Miko (15) - NightMonkey (8) + Naudy (15) - Paulo.tavares (8) + Dominguez, Rafael (15) - Foley, Peter (8) + PauGNU (15) - Peterpall (8) + Raul.malea (15) - Ricardolau (8) + Magliocchetti, Riccardo (15) - Seomarketing221 (8) + Thorogood, Tom (15) - Tibbylickle (8) + 暗影遺言 (15) - Troumad (8) + Moreno, Eduardo (14) - Vbkaisetsu (8) + Fina (14) - VlhOwn (8) + Kosiorek, Bartosz (14) - Yakusha (8) + Halencarjunior (14) - Yostane (8) + Lfernandocarvalho (14) - Kabatsayev, Ruslan (7) + Librosaurus (14) - Baird, Alan C. (7) + Reinsle (14) - Andrea.soragna (7) + Suokunlong (14) - Bastik (7) + Thumperward (14) - Bjherbison (7) + Toxitom (14) - Borim7 (7) + Akerbeltz (13) - Capiscuas (7) + Akoscomp (13) - Ciaran (7) + Alrt84 (13) - Crolidge (7) + Alyssonware (13) - Dado (7) + Beuss (13) - Drose (7) + Cedric31 (13) - Esbardu (7) + Gallaecio (13) - GuKK-Devel (7) + Guuml (13) - Hunter, Kevin (7) + Kadekilo (13) - Ingotian (7) + Leomota (13) - Leigh, Jack (7) + Ljelly (13) - M1cky (7) + Luc (13) - MephistoBooks (7) + Luked (13) - Nathanjh13 (7) + Lutch (13) - Olivier DDB (7) + Mabbb (13) - Opensas (7) + Mderoucy (13) - Polte (7) + Mortense (13) - RMCampos (7) + Olivier (13) - Rodo (7) + S.Gecko (13) - Shady (7) + Sanyii (13) - Simosx (7) + Simplicity Instinct (13) - Smarquespt (7) + ThierryM (13) - Woordje (7) + Tnishiki (13) - Armin Dänzer (6) + Vivaelcelta (13) - Asian flower (6) + Vkkodali (13) - Higginson, Andrew (6) + And471 (12) - Barend (6) + Bhaskar (12) - Castagno, Giuseppe (6) + Cralin (12) - Bobe (6) + Al-Otaibi, Faisal M. (12) - Bruno (6) + Halan (12) - Cccfr (6) + Lefevre00 (12) - BEN MANSOUR, Mohamed-Ali (6) + Pcapeluto (12) - Ddxavier (6) + Royerjy (12) - Dfriedman (6) + Staticsafe (12) - DotnetCarpenter (6) + Veerh01 (12) - Douglas, Mencken (6) + 翼之靈歌 (12) - Dr.Faust (6) + Cdan (11) - Druzhshchienschkyj (6) + Strobbe, Christophe (11) - Edmond ciorba (6) + Dajare (11) - Elpapki (6) + Eduaraujo (11) - Equis (6) + Irmhild (11) - FPhoenix (6) + Kallecarl (11) - Fdekruijf (6) + Kelemeng (11) - Gallaire, Florent (6) + Luiz Henrique Natalino (11) - Florian heckl (6) + NON (11) - Googly Googly (6) + Nuernbergerj (11) - HdV (6) + Rogeniobelem (11) - Hmoi (6) + Salmaan (11) - Hramrach (6) + Raruenrom, Samphan (11) - Infoprof (6) + Sunk8 (11) - Iplaw67 (6) + Gomez, Andres (11) - Timofeev, Ivan (6) + Testnoda (11) - Jeffersonx (6) + Zero0w (11) - Kawichi (6) + Admasonscottisha (10) - Levlazinskiy (6) + Aeusebio (10) - MaggieT (6) + AliIsingor (10) - Manas (6) + Blargh (10) - Manop (6) + Diginin (10) - Mas (6) + Eagles051387 (10) - Mgommel (6) + Eduardogula (10) - Mmetz (6) + El7r (10) - Ndlsas (6) + J.baer (10) - Öttl, Gerhard (6) + Kirill NN (10) - Only you (6) + Lionlinux (10) - Konefal, Pawel (6) + Chung, Elton (10) - Peterhuang1kimo (6) + Mikalai (10) - Buj, Robert (6) + Otto (10) - Rotaj (6) + Pete Boyd (10) - Sn!py (6) + Revol (10) - Sukit (6) + Ronja (10) - Heidenreich, Josh (6) + Möller, Sören — spelled Soeren Moeller in some patches (10) - Thorwil (6) + Tatat (10) - Toxicbits (6) + Sherlock, Chris (10) - Tyree (6) + Teseu (10) - VACHER (6) + Tomg (10) - Virthus (6) + Wlenon (10) - Wabuo (6) + Al-Abdulrazzaq, Abdulmajeed (9) - Wagner Augusto Silva Rodrigo (6) + AtkinsSJ (9) - Wasserthal (6) + Calisgarge (9) - Wiseacre (6) + Camargo (9) - صفا الفليج (6) + Cnuss (9) - 3blz (5) + Crazyskeggy (9) - Adam Co (5) + Dupreyb (9) - Albucasis (5) + Ebraminio (9) - Anousak (5) + Fatdf (9) - Sodora, August (5) + Geeta (9) - AustinSaintAubin (5) + Gibi (9) - Baumgarp (5) + Gippy73 (9) - Bitigchi (5) + Goranrakic (9) - BloodIce (5) + Grandin, Noel (9) - Cray85 (5) + Jim-BobHarris (9) - Dejourdain (5) + Jopsen (9) - DoFoWerner (5) + Jowyta (9) - GaboXandre (5) + Lapetec (9) - Ggurley (5) + Lexeii (9) - Gpoussel (5) + Godard, Laurent (9) - H.Sparks (5) + Mapper (9) - Habib (5) + Marco (9) - Scott, Patrick (5) + Mariuz (9) - JoeP (5) + Bogliolo, Meo (9) - John.pratt (5) + Mihkel (9) - Kamataki (5) + Msaffron (9) - Hosny, Khaled (5) + Nikjoh (9) - Klausmach (5) + Ohnemax (9) - Koji Annoura (5) + Oprea.luci (9) - Mak (5) + Pixpray (9) - Mariosv (5) + Dricot, Lionel (9) - Mgaster (5) + Rogawa (9) - Mikeyy (5) + Rpr (9) - Mtg (5) + Ellis, Damien (9) - OSVALDO LINS VIANA (5) + Thangamani-arun (9) - Orcmid (5) + Therabi (9) - Pepe (5) + Twstdude0to1 (9) - Pescetti (5) + Urdulizer (9) - Pkoroau (5) + User8192 (9) - Poeml (5) + Webmink (9) - Rajesh (5) + Zhangxiaofei (9) - Raknor (5) + Alexxed (8) - Raulpaes (5) + AndreasL (8) - Rogerio DA (5) + Ausserirdischegesund (8) - Chvátal, Tomáš (5) + Cocofan (8) - Sergej (5) + Dashohoxha (8) - So solid moo (5) + DrDub (8) - Starseeker (5) + Ed Eyles (8) - Taylorh140 (5) + Elacheche (8) - Terentev.mn (5) + Gokul, S (8) - Timotheonb (5) + Horst (8) - Tranzistors (5) + Immanuelg (8) - Wt (5) + Israel Chaves (8) - AHi (4) + JR (8) - Aaronkyle (4) + Jslozier (8) - Aas (4) + Mendes, Júlio Hoffimann (8) - Agron (4) + Dywan, Christian (8) - Albertoeda (4) + Kednar (8) - Nureña, Aldo Román (4) + Rietveld, Kristian (8) - Alex1 (4) + Leo.h.hildebrandt (8) - Alvarez, Octavio (4) + Manj k (8) - Alzoo (4) + Mrmox2 (8) - Amire80 (4) + NightMonkey (8) - AndikaTriwidada (4) + Paulo.tavares (8) - Andréb (4) + Foley, Peter (8) - Archlid (4) + Peterpall (8) - Arhitectul (4) + Ricardolau (8) - Axel (4) + Seomarketing221 (8) - Ayhanyalcinsoy (4) + Tibbylickle (8) - Bardo (4) + Troumad (8) - Bigbek (4) + Vbkaisetsu (8) - Blender3dartist (4) + Yakusha (8) - Bntser (4) + Yostane (8) - Bubli (4) + Kabatsayev, Ruslan (7) - ConquerorsHaki (4) + Baird, Alan C. (7) - CyrilBeaussier (4) + Andrea.soragna (7) - Deivan (4) + Bastik (7) - Dmerker (4) + Bjherbison (7) - DmitryRamones (4) + Borim7 (7) - Doubi (4) + Capiscuas (7) - Dragon (4) + Ciaran (7) - Eisaks (4) + Crolidge (7) - Fmolinero (4) + Dado (7) - Garrowolf (4) + Drose (7) - Ghune (4) + Esbardu (7) - Gmjs (4) + GuKK-Devel (7) - HiTom (4) + Hunter, Kevin (7) - Hossein (4) + Ingotian (7) - ImperfectlyInformed (4) + Leigh, Jack (7) - Ledure, Jean-Pierre (4) + M1cky (7) - Jiehong (4) + MephistoBooks (7) - Jjmeric (4) + Nathanjh13 (7) - JnRouvignac (4) + Olivier DDB (7) - Jonata (4) + Opensas (7) - Jones (4) + Polte (7) - Jooste (4) + RMCampos (7) - Joriki (4) + Rodo (7) - Le Bigot, Jean-Tiare (4) + Shady (7) - Haggag, Muhammad (4) + Simosx (7) - MPascual (4) + Vulcain (7) - Rumianowski, Maciej (4) + Woordje (7) - Marco c (4) + Armin Dänzer (6) - Mbayer (4) + Asian flower (6) - Mhonline (4) + Higginson, Andrew (6) - Mikedoherty ca (4) + Castagno, Giuseppe (6) - Morgan greywolf (4) + Bobe (6) - Mortgage01 (4) + Bruno (6) - Orson69 (4) + Cccfr (6) - Oscar90210 (4) + Ddxavier (6) - Paolopoz (4) + Dfriedman (6) - Pgassmann (4) + DotnetCarpenter (6) - Pjacquod (4) + Dr.Faust (6) - Prolog.guy (4) + Druzhshchienschkyj (6) - Samson (4) + Edmond ciorba (6) - Sasha (4) + Equis (6) - Schiavinatto (4) + FPhoenix (6) - Sealview (4) + Fdekruijf (6) - SpencerMann (4) + Gallaire, Florent (6) - Sswales (4) + Florian heckl (6) - Horáček, Stanislav (4) + Googly Googly (6) - Surat (4) + HdV (6) - Tct (4) + Hmoi (6) - Tk (4) + Hramrach (6) - Txwikinger (4) + Infoprof (6) - Ufas (4) + Timofeev, Ivan (6) - UlKu (4) + Jeffersonx (6) - V., Artem (4) + Kawichi (6) - Wcolen (4) + Levlazinskiy (6) - Wikiuser (4) + MaggieT (6) - Williamjmorenor (4) + Manas (6) - Wpeixoto (4) + Manop (6) - Денис (4) + Mas (6) - Aalam (3) + Mgommel (6) - Adept (3) + Mmetz (6) - Aexyn (3) + Ndlsas (6) - Alex.simoes (3) + Öttl, Gerhard (6) - Alexpikptz (3) + Only you (6) - Alexsfagundes (3) + Konefał, Paweł (6) - Antanasb (3) + PeeWee (6) - Armin (3) + Peterhuang1kimo (6) - Armin W. (3) + Rotaj (6) - Arthur Zennig (3) + Sn!py (6) - Aurelien (3) + Heidenreich, Josh (6) - Baena (3) + Thorwil (6) - Bellerophon2 (3) + Toxicbits (6) - Benjwgarner (3) + Tyree (6) - Bindassanant (3) + VACHER (6) - Bodhi-Baum (3) + Virthus (6) - Bootingman (3) + Wabuo (6) - Brub (3) + Wagner Augusto Silva Rodrigo (6) - Bryanquigley (3) + Wasserthal (6) - Burdakov (3) + Wiseacre (6) - CallieCarney (3) + 3blz (5) - Castro (3) + Adam Co (5) - Claudiosegovia (3) + Albucasis (5) - Cmorgan (3) + Anousak (5) - Colokalle (3) + Sodora, August (5) - Cono (3) + AustinSaintAubin (5) - DaSch (3) + Baumgarp (5) - DanShearer (3) + Bitigchi (5) - Bankston, Daniel (3) + BloodIce (5) - DickStomp (3) + Cray85 (5) - Dmtrs32 (3) + BEN MANSOUR, Mohamed-Ali (5) - Donbrookman (3) + Dejourdain (5) - Dubyk (3) + DoFoWerner (5) - EdgeE (3) + GaboXandre (5) - Elproferoman (3) + Ggurley (5) - ErSey (3) + GisbertFriege (5) - Ericatamiris (3) + Gpoussel (5) - Estebanmonge (3) + H.Sparks (5) - Fisiu (3) + Habib (5) - Fraang (3) + Scott, Patrick (5) - Franzjakob (3) + JoeP (5) - Frob tea (3) + John.pratt (5) - FunkyPenguin (3) + Kamataki (5) - Gokcen (3) + Hosny, Khaled (5) - Gouchi (3) + Klausmach (5) - Hansgerd.schneider (3) + Koji Annoura (5) - Herrmarder (3) + Mak (5) - IanL (3) + Mariosv (5) - Imcon (3) + Mgaster (5) - It-christian (3) + Mikeyy (5) - Jennifer.park (3) + Mtg (5) - Murugan, Jesso Clarence (3) + OSVALDO LINS VIANA (5) - Glogowski, Jan-Marek (3) + Orcmid (5) - Joe312213 (3) + Pepe (5) - Johannes Rohr (3) + Pescetti (5) - Joseroberto (3) + Pkoroau (5) - Juanpabl (3) + Poeml (5) - Kbiondi (3) + Raknor (5) - Kfogel (3) + Raulpaes (5) - Khunshan (3) + Rogerio DA (5) - Kkrothapalli (3) + Chvátal, Tomáš (5) - Krabina (3) + Sergej (5) - Kristof (3) + So solid moo (5) - Kscanne (3) + Starseeker (5) - Lennoazevedo (3) + Terentev.mn (5) - Libcub (3) + Timotheonb (5) - LucaCappelletti (3) + Tranzistors (5) - Luuk (3) + Wt (5) - Matteocam (3) + صفا الفليج (5) - Mattias (3) + AHi (4) - Maxwell (3) + Aaronkyle (4) - Mhsmsantos (3) + Aas (4) - Michaelwheatland (3) + Agron (4) - Neookano (3) + Albertoeda (4) - Nicolas.abel (3) + Nureña, Aldo Román (4) - Niconil (3) + Alex1 (4) - Ragnarsson, Björgvin (3) + Alvarez, Octavio (4) - Nloira (3) + Alzoo (4) - Noel Power (3) + Amire80 (4) - OOarthurOo (3) + Andréb (4) - Ojeremyj (3) + Archlid (4) - Oliverguenther (3) + Arhitectul (4) - Oprea luci (3) + Axel (4) - Oweng (3) + Bardo (4) - Rapha.ksf (3) + Bigbek (4) - Rauloliverpaes (3) + Blender3dartist (4) - RebeccaHodgson (3) + Bntser (4) - Rick (3) + Bubli (4) - Robert.E.A.Harvey (3) + ConquerorsHaki (4) - Sangeeta (3) + CyrilBeaussier (4) - Sayt (3) + Deivan (4) - Sebby (3) + Dmerker (4) - Sergey Aka (3) + Doubi (4) - Shelandy (3) + Dragon (4) - Slacka (3) + Eisaks (4) - Soliac (3) + Fmolinero (4) - Songchuan (3) + Garrowolf (4) - Soued031 (3) + Ghune (4) - StefanRing (3) + Gmjs (4) - SteveKelem (3) + HiTom (4) - Suren (3) + Hossein (4) - Taylor46 (3) + ImperfectlyInformed (4) - TheWebalyst (3) + Jiehong (4) - Timsamoff (3) + JnRouvignac (4) - Tititou36 (3) + Jonata (4) - Kumar, Tarun (3) + Jones (4) - Tomi Toivio (3) + Jooste (4) - Toxifier (3) + Joriki (4) - TrnsltLife (3) + Le Bigot, Jean-Tiare (4) - Tushantin (3) + Haggag, Muhammad (4) - Kitzinger, Ulrich (3) + MPascual (4) - Vinctor (3) + Rumianowski, Maciej (4) - Vljubovic (3) + Marco c (4) - Wagnerluis1982 (3) + Mhonline (4) - Khoo, Wei Ming (3) + Mikedoherty ca (4) - WesPeacock (3) + Morgan greywolf (4) - Xaker1 (3) + Mortgage01 (4) - Yukawa (3) + Orson69 (4) - Yvon Henel (3) + Oscar90210 (4) - §chinagl (3) + Paolopoz (4) - ترجمان05 (3) + Pgassmann (4) - AbbeyI19jfjc (2) + Pjacquod (4) - AdamPrado8 (2) + Prolog.guy (4) - AdrianValdez4 (2) + R4chi7 (4) - AdriannaJeppese (2) + Samson (4) - Adsha (2) + Sasha (4) - Agarciamog (2) + Sealview (4) - Aimee (2) + SpencerMann (4) - AliceOliver7 (2) + Sswales (4) - Alisha (2) + Horáček, Stanislav (4) - AlmedaFrancis (2) + Surat (4) - AlphonsoNava4 (2) + Tct (4) - AmyCarney5 (2) + Tk (4) - Anasiic (2) + Txwikinger (4) - Andrew (2) + Ufas (4) - AndrewKuhn7 (2) + UlKu (4) - Anjar (2) + Wcolen (4) - Ankit (2) + Wikiuser (4) - AnnabelMcmullen (2) + Williamjmorenor (4) - AnnunciationGunn (2) + Wpeixoto (4) - AntonJefferson (2) + Денис (4) - AntoniaMead8 (2) + Aalam (3) - Jain, Anurag (2) + Adept (3) - Aplatypus (2) + Aexyn (3) - ApostlesSheldon (2) + Alex.simoes (3) - Arkanosis (2) + Alexsfagundes (3) - Asal (2) + Antanasb (3) - Ashaneba (2) + Armin (3) - AvaGreer1 (2) + Arthur Zennig (3) - BZT42 (2) + Aurelien (3) - BernardMeza9 (2) + Baena (3) - BettieGiordano (2) + Bellerophon2 (3) - BirdRivas2 (2) + Benjwgarner (3) - BlazejJones1 (2) + Bindassanant (3) - BlessedOrozco (2) + Bodhi-Baum (3) - BoD (2) + Bootingman (3) - Bogcahi (2) + Brub (3) - Boivie (2) + Bryanquigley (3) - BoleslausSaunders (2) + Burdakov (3) - Bram (2) + Castro (3) - BrandiToomer (2) + Claudiosegovia (3) - BridgetJarvis (2) + Cmorgan (3) - Bruceschaller (2) + Colokalle (3) - BryantMclean6 (2) + Cono (3) - ButlerBarron6 (2) + DaSch (3) - C1pr1an (2) + DanShearer (3) - CallieMvzap (2) + Bankston, Daniel (3) - CallieSalgado (2) + Donbrookman (3) - CamilleMccarthy (2) + Douglas, Mencken (3) - CandidoRutherford (2) + Dubyk (3) - CapistranOleary (2) + Elpapki (3) - CaraDang6 (2) + Elproferoman (3) - Carlosr (2) + ErSey (3) - CarolinaCalling (2) + Ericatamiris (3) - CarrieDaniels (2) + Estebanmonge (3) - CarrollRico2 (2) + Fisiu (3) - Iacob, Catalin (2) + Fraang (3) - CavesGill8 (2) + Franzjakob (3) - Celsovsm (2) + Frob tea (3) - Cgrosdemange (2) + FunkyPenguin (3) - Chanda57Oyhnbco (2) + Gokcen (3) - ChanieSnow2 (2) + Gouchi (3) - Cheche (2) + Hansgerd.schneider (3) - ChrzcicielCampbell (2) + Herrmarder (3) - Cjbackhouse (2) + IanL (3) - ClariceThorne (2) + Imcon (3) - ClaudiaCramer (2) + It-christian (3) - Clemen Beek (2) + Jennifer.park (3) - Codingmicha (2) + Murugan, Jesso Clarence (3) - ConcepcionMarsh (2) + Glogowski, Jan-Marek (3) - CoralieCarr7 (2) + Joe312213 (3) - Crxssi (2) + Johannes Rohr (3) - CupertinoDarnell (2) + Joseroberto (3) - Cvk (2) + Juanpabl (3) - CyrillicEscobedo (2) + Kbiondi (3) - DaCaPo (2) + Kfogel (3) - Dag (2) + Khunshan (3) - DaisieQuigley (2) + Kkrothapalli (3) - DanForrest2 (2) + Krabina (3) - Danese (2) + Kristof (3) - Danthedev (2) + Kscanne (3) - DarellFarnell (2) + LLyaudet (3) - Darkixion (2) + Lennoazevedo (3) - David4you (2) + Libcub (3) - Bolen, David (2) + LucaCappelletti (3) - Debugercz (2) + Luuk (3) - DelinaRomano5 (2) + Pearson, Timothy (3) - DellePoole7 (2) + Mattias (3) - DenisArnaud (2) + Maxwell (3) - Dennis' Spam test account (2) + Mbayer (3) - Retout, Tim (2) + Mhsmsantos (3) - Django (2) + Michaelwheatland (3) - DoctorBaxter7 (2) + Neookano (3) - Domasj (2) + Ragnarsson, Björgvin (3) - Domsau2 (2) + Nloira (3) - DonaldBryant7 (2) + Noel Power (3) - DrDrack (2) + OOarthurOo (3) - Dreambox Cccam (2) + Ojeremyj (3) - Duiliodias (2) + Oliverguenther (3) - DukeDejesus7 (2) + Oprea luci (3) - EarleSiegel7 (2) + Rajesh (3) - Ed (2) + Rapha.ksf (3) - EdaFreeman3 (2) + Rauloliverpaes (3) - Eduardoarandah (2) + RebeccaHodgson (3) - Edwardcottreau (2) + Rick (3) - Efs710920mex (2) + Robert.E.A.Harvey (3) - Ejep520 (2) + Sangeeta (3) - Sánchez, Bartolomé (2) + Sayt (3) - Eldan (2) + Sebby (3) - ElisabethHolcomb (2) + Sergey Aka (3) - Elixir (2) + Shelandy (3) - EllieBowers3 (2) + Soliac (3) - ElmaGray6 (2) + Songchuan (3) - Eloquence (2) + Soued031 (3) - ElsieMacias7 (2) + StefanRing (3) - Emily (2) + SteveKelem (3) - EmperorErnst5 (2) + Suren (3) - EnosKraus6 (2) + Taylor46 (3) - Erdalronahi (2) + TheWebalyst (3) - Eren (2) + Timsamoff (3) - ErieTovar6 (2) + Tititou36 (3) - Erikcht (2) + Tomi Toivio (3) - Ersteinmal (2) + TrnsltLife (3) - ErwinHammond3 (2) + Tushantin (3) - EssieKeller8 (2) + Vinctor (3) - EsterEngland7 (2) + Vljubovic (3) - EthylCardenas (2) + V., Artem (3) - FannyTillman8 (2) + Wagnerluis1982 (3) - FateHarrington (2) + Khoo, Wei Ming (3) - Fcojavmc (2) + WesPeacock (3) - Feldo (2) + Xaker1 (3) - Ffinlo (2) + Yukawa (3) - FlaviaPratt8 (2) + Yvon Henel (3) - FlorenceGrossman (2) + §chinagl (3) - FlorenceKim1 (2) + ترجمان05 (3) - FordRhodes5 (2) + AdamPrado8 (2) - FranciscoByrne (2) + AdrianValdez4 (2) - FredaDowning7 (2) + AdriannaJeppese (2) - Garcia.marc (2) + Adsha (2) - GayeRossetti (2) + Agarciamog (2) - GeoDowning4 (2) + Aimee (2) - GeorgiannaOchoa (2) + AliceOliver7 (2) - Gerpunzel (2) + AlmedaFrancis (2) - GertieEllington (2) + AlphonsoNava4 (2) - GiertrudaLehman (2) + AmyCarney5 (2) - Girvinh (2) + Anasiic (2) - GiuseppOQH (2) + Andrew (2) - Glanbeav (2) + AndrewKuhn7 (2) - Gmealer (2) + Anjar (2) - GraciaNorwood (2) + Ankit (2) - Grakic (2) + AnnabelMcmullen (2) - Gualtiero (2) + AnnunciationGunn (2) - Guillem (2) + AntonJefferson (2) - Hamurcu (2) + AntoniaMead8 (2) - HannaEspinoza (2) + Jain, Anurag (2) - HardyBurris1 (2) + Aplatypus (2) - HarleyWatkins (2) + ApostlesSheldon (2) - Hasithakj (2) + Arkanosis (2) - Hector (2) + Asal (2) - Helo (2) + Ashaneba (2) - Hemmerling (2) + AvaGreer1 (2) - Jensen, Henrik (2) + Ayhanyalcinsoy (2) - HeriberDacomb (2) + BZT42 (2) - HermitMuller1 (2) + BernardMeza9 (2) - Herronrobertson (2) + BettieGiordano (2) - HershelPeterson (2) + BirdRivas2 (2) - IIIYates8 (2) + BlazejJones1 (2) - Ian22 (2) + BlessedOrozco (2) - IkeVasquez9 (2) + BoD (2) - IlaRoberts4 (2) + Bogcahi (2) - Imagin8or (2) + Boivie (2) - InezFinney8 (2) + BoleslausSaunders (2) - IraLane4 (2) + Bormant (2) - IrinaMccormack (2) + Bram (2) - IrvinBernard9 (2) + BridgetJarvis (2) - IsadoraFoster (2) + Bruceschaller (2) - IsaiahBuck5 (2) + BryantMclean6 (2) - IsiahLackey2 (2) + ButlerBarron6 (2) - IvaRoach5 (2) + C1pr1an (2) - JacintaGibson (2) + CallieMvzap (2) - Adams, Jonathan (2) + CallieSalgado (2) - C., James (2) + CamilleMccarthy (2) - JanetSolberg (2) + CandidoRutherford (2) - JanuariusStringer (2) + CapistranOleary (2) - Jasmins (2) + CaraDang6 (2) - JasperSawyer7 (2) + Carlosr (2) - JavierFernandez (2) + CarolinaCalling (2) - JayStafford3 (2) + CarrieDaniels (2) - Jcubic (2) + CarrollRico2 (2) - Jeraldinesewell (2) + Iacob, Catalin (2) - JesseBHXEmrh (2) + CavesGill8 (2) - JettieGibson2 (2) + Celsovsm (2) - Lingard, J. Graeme (2) + Cgrosdemange (2) - Jhbn (2) + ChanieSnow2 (2) - Jiero (2) + Cheche (2) - Jnicolas (2) + ChrzcicielCampbell (2) - JoWi (2) + Cjbackhouse (2) - JonesRichter8 (2) + ClariceThorne (2) - Jowenshaw (2) + ClaudiaCramer (2) - João Pedro (2) + Codingmicha (2) - Jstaniek (2) + ConcepcionMarsh (2) - JudasPeoples9 (2) + CoralieCarr7 (2) - JudasPritchard (2) + Crxssi (2) - JudithGraves6 (2) + CupertinoDarnell (2) - Jumoun (2) + Cvk (2) - JustinaEldridge (2) + CyrillicEscobedo (2) - K Karthikeyan (2) + DaCaPo (2) - Karakartala (2) + Dag (2) - KarkGunn4 (2) + DaisieQuigley (2) - Karolus (2) + DanForrest2 (2) - Kasos (2) + Danese (2) - Keepiledar (2) + Danthedev (2) - Khokkanen (2) + DarellFarnell (2) - KittyBauer5 (2) + Darkixion (2) - KlementynaMckinney (2) + David4you (2) - Kmr (2) + Bolen, David (2) - KolbeKline1 (2) + DelinaRomano5 (2) - Kolorguild (2) + DellePoole7 (2) - KrystalMinchin (2) + DenisArnaud (2) - KsaweryDempsey (2) + Dennis' Spam test account (2) - Kwilliams (2) + DickStomp (2) - L (2) + Retout, Tim (2) - LariaJohn3 (2) + Django (2) - LeanaParks2 (2) + Dmtrs32 (2) - LeilaniLattimor (2) + DoctorBaxter7 (2) - LemuelHo1 (2) + Domasj (2) - LemuelWerner5 (2) + Domsau2 (2) - Lhcezar (2) + DonaldBryant7 (2) - LidaMasters1 (2) + DrDrack (2) - Lino (2) + Dreambox Cccam (2) - Liotier (2) + Duiliodias (2) - Lliehu (2) + DukeDejesus7 (2) - LovisaKessler (2) + EarleSiegel7 (2) - Petrolekas, Luke (2) + Ed (2) - LubomyrWalden (2) + EdaFreeman3 (2) - LucretiLlb (2) + Eduardoarandah (2) - LynnForbes3 (2) + Edwardcottreau (2) - Casalin, Matteo (2) + Efs710920mex (2) - Mărăşoiu, Mariana (2) + Ejep520 (2) - MZNBelendndq (2) + Sánchez, Bartolomé (2) - Ma83mit (2) + Eldan (2) - MabelleStanley (2) + ElisabethHolcomb (2) - MadisonDarnell (2) + Elixir (2) - MagdaleneOneal (2) + EllieBowers3 (2) - MaggieGray2 (2) + ElmaGray6 (2) - MagnoliaParsons (2) + Eloquence (2) - Manu.unni (2) + ElsieMacias7 (2) - MarMai (2) + Emily (2) - MarchCourtney (2) + EmperorErnst5 (2) - Marcinz (2) + EnosKraus6 (2) - Marco74 (2) + Erdalronahi (2) - MargeretRiley (2) + Eren (2) - MargeryThorpe (2) + ErieTovar6 (2) - MarillaMarsh7 (2) + Erikcht (2) - Marius (2) + Ersteinmal (2) - Marric (2) + ErwinHammond3 (2) - MartaRollins2 (2) + EssieKeller8 (2) - MarthaBright4 (2) + EsterEngland7 (2) - MateuszDominguez (2) + EthylCardenas (2) - Matt 51 (2) + FannyTillman8 (2) - MattieSchleinit (2) + FateHarrington (2) - Mbemidio (2) + Fcojavmc (2) - MercedesDelatorre (2) + Feldo (2) - Kepplinger, Martin (2) + Ffinlo (2) - MerleGlass6 (2) + FlaviaPratt8 (2) - Mesutkullar (2) + FlorenceGrossman (2) - Mgiri (2) + FlorenceKim1 (2) - Michel Gagnon (2) + FordRhodes5 (2) - Michiel (2) + FranciscoByrne (2) - MikeyZ (2) + FredaDowning7 (2) - MinaHuggins7 (2) + Garcia.marc (2) - Mind4z (2) + GeoDowning4 (2) - MinervaLuna8 (2) + GeorgiannaOchoa (2) - Mitcoes (2) + Gerpunzel (2) - Mjkopp (2) + GiertrudaLehman (2) - Mklever (2) + Girvinh (2) - Mloiseleur (2) + GiuseppOQH (2) - Mnalima (2) + Glanbeav (2) - Mnsoto (2) + Gmealer (2) - Rimkus, Modestas (2) + GraciaNorwood (2) - Mordocai (2) + Grakic (2) - MorganJohnstone (2) + Gualtiero (2) - Laplante, Chris (2) + Guillem (2) - Mttza1 (2) + Hamurcu (2) - Mzalewski (2) + HannaEspinoza (2) - Nacerix (2) + HardyBurris1 (2) - Narcisgarcia (2) + HarleyWatkins (2) - NealEspinoza6 (2) + Hasithakj (2) - NettaHurd9 (2) + Hector (2) - NettieParra1 (2) + Helo (2) - NewtonZuniga9 (2) + Hemmerling (2) - Nishino, Daisuke (2) + Jensen, Henrik (2) - NicholasLanier (2) + HermitMuller1 (2) - NinaLam6 (2) + Herronrobertson (2) - Noirin (2) + HershelPeterson (2) - NoricumArthur (2) + IIIYates8 (2) - NorrisAndersen (2) + Ian22 (2) - NovemberVogel (2) + IkeVasquez9 (2) - Nsharifi (2) + IlaRoberts4 (2) - Nuclearbob (2) + Imagin8or (2) - OUPS (2) + InezFinney8 (2) - Oiaohm (2) + IraLane4 (2) - OlaPost6 (2) + IrinaMccormack (2) - OlieBooth3 (2) + IrvinBernard9 (2) - OlivierC (2) + IsadoraFoster (2) - OnopriyBrandon (2) + IsaiahBuck5 (2) - OrlandoArellano (2) + IsiahLackey2 (2) - OscarMeredith (2) + IvaRoach5 (2) - Penalvch (2) + Ledure, Jean-Pierre (2) - PercherskySanford (2) + JacintaGibson (2) - Senna Tschudin, Peter (2) + Adams, Jonathan (2) - Pgraber (2) + C., James (2) - Pierre (2) + JanetSolberg (2) - Pitonyak (2) + JanuariusStringer (2) - Pkst (2) + JasperSawyer7 (2) - PolishHungarianSharp (2) + JavierFernandez (2) - Posterboy (2) + JayStafford3 (2) - PragueBergman (2) + Jcubic (2) - Pulsifer (2) + Jeraldinesewell (2) - Rbecke (2) + JettieGibson2 (2) - ReaganBaudin (2) + Lingard, J. Graeme (2) - ReeseShepherd (2) + Jiero (2) - ReginaldMcgraw (2) + Jnicolas (2) - ReneEngelhard (2) + JoWi (2) - RenniePrescott (2) + JonesRichter8 (2) - RetaStern5 (2) + Jowenshaw (2) - RhodaMackey3 (2) + João Pedro (2) - RiceBurger3 (2) + JudasPeoples9 (2) - Rmarquardt (2) + JudasPritchard (2) - Roadrunner (2) + JudithGraves6 (2) - RollandHannah (2) + Jumoun (2) - RosaliaFair4 (2) + JustinaEldridge (2) - RosalinBlaubaum (2) + K Karthikeyan (2) - RosannaPaul7 (2) + Karakartala (2) - RosariaLampungm (2) + KarkGunn4 (2) - RoyFokker (2) + Karolus (2) - RoyShelton7 (2) + Kasos (2) - Ryan (2) + Keepiledar (2) - Sagar.libo (2) + Khokkanen (2) - Salavine1 (2) + KittyBauer5 (2) - SamBenavides5 (2) + KlementynaMckinney (2) - Sankarshan (2) + Kmr (2) - SavinaShaffer (2) + KolbeKline1 (2) - SebastianNorth (2) + Kolorguild (2) - Sebutler (2) + KsaweryDempsey (2) - Sergwish (2) + Kwilliams (2) - Sfeuser (2) + L (2) - Shaun.schutte (2) + LariaJohn3 (2) - SidneyArredondo (2) + LeanaParks2 (2) - Silwol (2) + LeilaniLattimor (2) - Simplecontrast (2) + LemuelHo1 (2) - SlavicNapier8 (2) + LemuelWerner5 (2) - Sotrud nik (2) + Lhcezar (2) - Spledger (2) + LidaMasters1 (2) - Sshelagh (2) + Lino (2) - Ssorgatem (2) + Liotier (2) - StaciBorthwick (2) + Lliehu (2) - Stappers (2) + LovisaKessler (2) - Stuarta0 (2) + Petrolekas, Luke (2) - Sturm (2) + LubomyrWalden (2) - SusanSwain3 (2) + LynnForbes3 (2) - Sven.fischer.de (2) + Casalin, Matteo (2) - Sydbarrett74 (2) + Mărăşoiu, Mariana (2) - Synanceia (Pierre) (2) + Ma83mit (2) - Tauon (2) + MabelleStanley (2) - Techal (2) + MadisonDarnell (2) - Teelittle (2) + MagdaleneOneal (2) - TeenaWilburn (2) + MaggieGray2 (2) - TeresaMacias3 (2) + MagnoliaParsons (2) - Teresavillegas1 (2) + Manu.unni (2) - TerraShears (2) + MarMai (2) - TheaGallardo8 (2) + MarchCourtney (2) - TheodoseyPeralta (2) + Marcinz (2) - TheophilusHess (2) + Marco74 (2) - Thomase (2) + MargeretRiley (2) - Thorongil (2) + MargeryThorpe (2) - TimothyChilds (2) + MarillaMarsh7 (2) - TomaMora8 (2) + Marius (2) - Tomkeb (2) + Marric (2) - Tomrobert87 (2) + MartaRollins2 (2) - TraciKQAZnsqjho (2) + MarthaBright4 (2) - TressieCulver (2) + MateuszDominguez (2) - Tux40000 (2) + Matt 51 (2) - ValessioBrito (2) + MattieSchleinit (2) - VanHogan7 (2) + Mbemidio (2) - VasylynaKendall (2) + MercedesDelatorre (2) - VerneDodd5 (2) + Kepplinger, Martin (2) - VernitaDonley (2) + MerleGlass6 (2) - VeronaXiong3 (2) + Mesutkullar (2) - VeronicaGrimes (2) + Mgiri (2) - Vgezer (2) + Michel Gagnon (2) - ViolaPraed (2) + Michiel (2) - Viper550 (2) + MinaHuggins7 (2) - VirginArredondo (2) + Mind4z (2) - VladimirBassett (2) + MinervaLuna8 (2) - VladimirPrince (2) + Mitcoes (2) - VladislavA (2) + Mjkopp (2) - Volker (2) + Mklever (2) - VolodymyraGagnon (2) + Mloiseleur (2) - Vossman (2) + Mnalima (2) - WaclawaSavage (2) + Mnsoto (2) - WalentynaPatrick (2) + Rimkus, Modestas (2) - WallaceSolano (2) + Mordocai (2) - WarrenChristian (2) + Mttza1 (2) - WashingtonOakley (2) + Mzalewski (2) - Watermelons (2) + Nacerix (2) - WeronikaKeene (2) + Narcisgarcia (2) - WilhelminaEaton (2) + NealEspinoza6 (2) - WincentyMorrison (2) + NettaHurd9 (2) - Wirelessben (2) + NettieParra1 (2) - Wulei (2) + NewtonZuniga9 (2) - Xoristzatziki (2) + Nishino, Daisuke (2) - Yaw (2) + NicholasLanier (2) - Zaxebo1 (2) + NinaLam6 (2) - ZiriaKo (2) + Noirin (2) - ZoraWinkler1 (2) + NoricumArthur (2) - 流星依旧 (2) + NorrisAndersen (2) - Abde.jarti99 (1) + NovemberVogel (2) - Abdulaziz A Alayed (1) + Nsharifi (2) - Absolute Garcinia (1) + Nuclearbob (2) - AdalberDesailll (1) + OUPS (2) - Adlard.matthew (1) + Oiaohm (2) - Aevora (1) + OlaPost6 (2) - Agradecido (1) + OlieBooth3 (2) - Ainurshakirov (1) + OlivierC (2) - Ajaxfiore (1) + OnopriyBrandon (2) - Albrechtloh (1) + OrlandoArellano (2) - Aleks (1) + OscarMeredith (2) - Henrie, Alex (1) + Penalvch (2) - Alex38-68 (1) + PercherskySanford (2) - Alex80 (1) + Pgraber (2) - Alexandri (1) + Pierre (2) - Alexis Wilke (1) + Pkst (2) - Alexnivan (1) + PolishHungarianSharp (2) - Alexsandro Matias (1) + Posterboy (2) - Alg (1) + PragueBergman (2) - Ali (1) + Pulsifer (2) - AlphonsDen (1) + Rbecke (2) - Alverne (1) + ReaganBaudin (2) - Amacater (1) + ReeseShepherd (2) - Andarilhobotto (1) + ReginaldMcgraw (2) - AndreasEk (1) + ReneEngelhard (2) - AndreasK (1) + RenniePrescott (2) - AndreasNeudecker (1) + RetaStern5 (2) - AndresZapata (1) + RhodaMackey3 (2) - Andrey.turkin (1) + RiceBurger3 (2) - Andriazdk2177 (1) + Rmarquardt (2) - AngelaRusconi (1) + Roadrunner (2) - AngelinChisolm (1) + RollandHannah (2) - AniVar (1) + RosaliaFair4 (2) - AntoineVe (1) + RosannaPaul7 (2) - AntoniePonder (1) + RoyFokker (2) - Anurag kanungo (1) + RoyShelton7 (2) - Apfelsaft (1) + Ryan (2) - ArdenRatcliff (1) + Sagar.libo (2) - Arekm (1) + Salavine1 (2) - Ari (1) + SamBenavides5 (2) - ArielleWx (1) + Sankarshan (2) - Arkonide (1) + SavinaShaffer (2) - Armandos (1) + SebastianNorth (2) - Arnaudc (1) + Sebutler (2) - Arnoldu (1) + Sergwish (2) - Teigseth, Arno (1) + Sfeuser (2) - Artintal (1) + Shaun.schutte (2) - Asiersar (1) + SidneyArredondo (2) - Astalaseven (1) + Silwol (2) - AstridGoo (1) + Simplecontrast (2) - Tang, Audrey (1) + Slacka (2) - Augustina (1) + SlavicNapier8 (2) - AundreaPqf (1) + Smarquespt (2) - AvaPANumrgiabjx (1) + Sotrud nik (2) - Ayoooub (1) + Spledger (2) - B3t (1) + Sshelagh (2) - Bailly02 (1) + Ssorgatem (2) - Bandera (1) + StaciBorthwick (2) - Barbara21F (1) + Stappers (2) - BarryLovegrove (1) + Stuarta0 (2) - Bckurera (1) + Sturm (2) - BelindaApplerot (1) + SusanSwain3 (2) - BernardHannafor (1) + Sven.fischer.de (2) - Beznogov (1) + Sydbarrett74 (2) - Bezzy (1) + Synanceia (Pierre) (2) - Bgranados (1) + Tamiliam (2) - BillyBurke (1) + Tauon (2) - Biofool (1) + Techal (2) - Bjossir (1) + Teelittle (2) - Bkg2018 (1) + TeenaWilburn (2) - Bkolaimeraq (1) + TeresaMacias3 (2) - BlakeGartrell (1) + Teresavillegas1 (2) - BlancheBelstead (1) + TerraShears (2) - BlancheClopton (1) + TheaGallardo8 (2) - Blandyna (1) + TheodoseyPeralta (2) - Bolo (1) + TheophilusHess (2) - BookerSoderlund (1) + Thomase (2) - Borowcm (1) + Thorongil (2) - Bortis (1) + TimothyChilds (2) - Sowden, Brad (1) + TomaMora8 (2) - BrentHawthorne (1) + Tomkeb (2) - BridgettC (1) + Tomrobert87 (2) - BroderiHolyman (1) + TraciKQAZnsqjho (2) - BryceBrassell (1) + TressieCulver (2) - BryceMoorhouse (1) + Tux40000 (2) - Budo (1) + Ulkitz (2) - Burger.ga (1) + ValessioBrito (2) - CalebSommer (1) + VanHogan7 (2) - CalebWgypcu (1) + VasylynaKendall (2) - CamillaPena (1) + VerneDodd5 (2) - Paul, Cameron (1) + VernitaDonley (2) - CandelariaJageu (1) + VeronaXiong3 (2) - CarloASilva (1) + VeronicaGrimes (2) - Carlos (1) + ViolaPraed (2) - Carlos.gilaranz (1) + Viper550 (2) - CarlotaF42 (1) + VirginArredondo (2) - Castarco (1) + VladimirBassett (2) - CedricQ73ktehvp (1) + VladimirPrince (2) - Cesera (1) + VladislavA (2) - Chabermu (1) + VlhOwn (2) - ChantalWalker (1) + Volker (2) - Charles12 (1) + VolodymyraGagnon (2) - CharlesJenkins (1) + Vossman (2) - Chmilblick (1) + WaclawaSavage (2) - Beauzée-Luyssen, Hugo (1) + WalentynaPatrick (2) - Christoph.herzog (1) + WallaceSolano (2) - CiaraLockie (1) + WarrenChristian (2) - Ciriaco (1) + WashingtonOakley (2) - Cleitongalvao (1) + Watermelons (2) - CletaValentino (1) + WeronikaKeene (2) - Clint7236c (1) + WilhelminaEaton (2) - Company (1) + WincentyMorrison (2) - Cora17 (1) + Wirelessben (2) - Corsolibreoffice (1) + Wulei (2) - Cosmopolitan (1) + Xoristzatziki (2) - Cpmipn (1) + Yaw (2) - CrystleGravatt (1) + ZiriaKo (2) - DaisieDavison (1) + ZoraWinkler1 (2) - DamionThorp (1) + 流星依旧 (2) - Dar18proore (1) + Abde.jarti99 (1) - Darcy0243gd (1) + Abdulaziz A Alayed (1) - DarylAlcantar (1) + Adlard.matthew (1) - DarylBoot (1) + Aevora (1) - Dave (1) + Agradecido (1) - Davidmichel (1) + Ainurshakirov (1) - DawnOgles (1) + Ajaxfiore (1) - Di Marco, Daniel (1) + Albrechtloh (1) - De-jourdain (1) + Aleks (1) - DeShark (1) + Henrie, Alex (1) - DeannaQuaife (1) + Alex80 (1) - DeanneKer (1) + Alexandri (1) - DebbraWingfield (1) + Alexnivan (1) - DeborahW18 (1) + Alexsandro Matias (1) - DelbertChristie (1) + Alg (1) - DelilahBock (1) + Ali (1) - Dezsiszabi (1) + AlphonsDen (1) - Herde, Daniel (1) + Alverne (1) - Dhiren (1) + Amacater (1) - Kettner, Valentin (1) + Andarilhobotto (1) - Do Nhu Vy (1) + AndikaTriwidada (1) - DocuFree (1) + AndreasEk (1) - Dominiko (1) + AndreasK (1) - Dominuk (1) + AndreasNeudecker (1) - Donadel (1) + AndresZapata (1) - DoreenDuell (1) + Andrey.turkin (1) - Douglasm (1) + Andriazdk2177 (1) - Drizamanuber (1) + AngelaRusconi (1) - Drlandi (1) + AntoineVe (1) - Drtimwright (1) + Anurag kanungo (1) - Dusek (1) + Apfelsaft (1) - Dxider (1) + ArdenRatcliff (1) - EEFElishaqjbzjy (1) + Arekm (1) - EHGSammyevumvzq (1) + Ari (1) - EarnestLamaro (1) + ArielleWx (1) - EarnestT57 (1) + Arkonide (1) - Echada (1) + Armandos (1) - Edsonlead (1) + Arnaudc (1) - Edz (1) + Arnoldu (1) - Efcis (1) + Teigseth, Arno (1) - Efegurkan (1) + Artintal (1) - Ehenryb (1) + Asiersar (1) - ElahiMohammad (1) + Astalaseven (1) - EleanoreC (1) + AstridGoo (1) - Elisa0474wgwgq (1) + Augustina (1) - Elliot1415 (1) + AundreaPqf (1) - ElmaWalcott (1) + AvaPANumrgiabjx (1) - Elshize (1) + Ayoooub (1) - Emyr (1) + B3t (1) - Ennael (1) + Bailly02 (1) - Eric (1) + Bandera (1) - ErickRijoJr (1) + Barbara21F (1) - Ernsttremel (1) + Bckurera (1) - Roux, Elie (1) + Beznogov (1) - EstebanUD (1) + Bezzy (1) - EstelaAWTxiu (1) + Bgranados (1) - Evelyn3794 (1) + BillyBurke (1) - Evfool (1) + Biofool (1) - Factooor (1) + Bjossir (1) - Falatooni (1) + Bkg2018 (1) - Falcao (1) + Bkolaimeraq (1) - Farhaf (1) + BlakeGartrell (1) - FarzanehSarafraz (1) + BlancheBelstead (1) - Faseeh1218 (1) + Blandyna (1) - FelipaSwan (1) + Bolo (1) - FerminAndrade (1) + Borowcm (1) - Foobar (1) + Bortis (1) - Fred.th (1) + Sowden, Brad (1) - Ftigeot (1) + BridgettC (1) - Fukanchik (1) + Budo (1) - Manas Joshi (1) + Burger.ga (1) - GabrielSwart (1) + CalebSommer (1) - Gabrielezorzi (1) + CamillaPena (1) - Garhitusqr (1) + Paul, Cameron (1) - Gautrucdo (1) + CandelariaJageu (1) - Gcoelho (1) + CarloASilva (1) - GeeZ (1) + Carlos (1) - Geoff newson (1) + Carlos.gilaranz (1) - van Valkenhoef, Gert (1) + Castarco (1) - Giancav (1) + Cesera (1) - Gicmo (1) + Chabermu (1) - Gmeijssen (1) + ChantalWalker (1) - Gmolleda (1) + Charles12 (1) - Gpmanrpi (1) + CharlesJenkins (1) - Grahl (1) + Chmilblick (1) - Hernandez, Gregg (1) + Beauzée-Luyssen, Hugo (1) - Grover47Ywzdn (1) + Christoph.herzog (1) - GroverYQVvwokac (1) + Ciriaco (1) - Gstein (1) + Cleitongalvao (1) - Guhde (1) + Clemen Beek (1) - Guillaume (1) + Clint7236c (1) - Gwidion (1) + Company (1) - HFujimaki (1) + Cora17 (1) - HKagerer (1) + Corsolibreoffice (1) - HLGZorawdi (1) + Cosmopolitan (1) - Haggai (1) + Cpmipn (1) - Hagos (1) + DaisieDavison (1) - Hamkins (1) + Dar18proore (1) - HelenWalston (1) + Darcy0243gd (1) - Hermeli2856 (1) + DarylBoot (1) - Heygo (1) + Dave (1) - Heyheyitshay (1) + Davidmichel (1) - Hfischer (1) + DawnOgles (1) - HilarioTr (1) + Di Marco, Daniel (1) - Hillrich (1) + De-jourdain (1) - HiltonFtel (1) + DeanneKer (1) - Hkdocholid (1) + DebbraWingfield (1) - Hlavaty, Tomas (1) + DelbertChristie (1) - Honza.havlicek (1) + DelilahBock (1) - HoracioRydge (1) + Dezsiszabi (1) - Hosiryuhosi (1) + Herde, Daniel (1) - Hriostat (1) + Dhiren (1) - HumbertGno (1) + Do Nhu Vy (1) - Hwoehrle (1) + DocuFree (1) - Ian (1) + Dominiko (1) - Ianjo (1) + Dominuk (1) - IbraM (1) + Douglasm (1) - Ida (1) + Drizamanuber (1) - Igorizyumin (1) + Drlandi (1) - Ipodsoft (1) + Drtimwright (1) - Irene (1) + Dusek (1) - IrrevdJohn (1) + Dxider (1) - IrvinFunkw (1) + EEFElishaqjbzjy (1) - IslaXTDhiovhyzo (1) + EHGSammyevumvzq (1) - IsraelGill (1) + Echada (1) - JDługosz (1) + Edsonlead (1) - JK2308 (1) + Edz (1) - Jacquelin (1) + Efcis (1) - JacquelineEqf (1) + Efegurkan (1) - Jailletc36 (1) + Ehenryb (1) - JameyAllred (1) + ElahiMohammad (1) - Jamil (1) + EleanoreC (1) - JamisonDamron (1) + Elisa0474wgwgq (1) - JanEnEm (1) + Emyr (1) - JanetteBa (1) + Ennael (1) - Jani (1) + Eric (1) - Jazzon (1) + ErickRijoJr (1) - Jcdericco (1) + Ernsttremel (1) - Chaffraix, Julien (1) + EstebanUD (1) - JeanAmessdvaei (1) + Evelyn3794 (1) - JeanMcPhillamy (1) + Evfool (1) - JeanVSAF (1) + Falatooni (1) - JeannetteGaertn (1) + Falcao (1) - JefferyMackenna (1) + Farhaf (1) - Jeongkyu (1) + FarzanehSarafraz (1) - JerryShi (1) + Faseeh1218 (1) - JestineNww (1) + FelipaSwan (1) - Bruhn, Jan-Henrik (1) + Foobar (1) - Jimmyhaynbj (1) + Fred.th (1) - Jinocvla (1) + Ftigeot (1) - JiroMatsuzawa (1) + Fukanchik (1) - Jmarchn (1) + Manas Joshi (1) - Joachim (1) + Gabrielezorzi (1) - Joaofernando (1) + Garhitusqr (1) - JoelH (1) + Gautrucdo (1) - JolieZepps (1) + Gcoelho (1) - JomarSilva (1) + GeeZ (1) - JonelleFritz (1) + Geoff newson (1) - JonnaCainzabvwf (1) + van Valkenhoef, Gert (1) - Joselaurian (1) + Giancav (1) - Joshun (1) + Gicmo (1) - José Eduardo (1) + Gmeijssen (1) - JoyLittler (1) + Gmolleda (1) - Jpl (1) + Grahl (1) - Jsbueno (1) + Hernandez, Gregg (1) - JudeMcCafferty (1) + Grover47Ywzdn (1) - Juergen (1) + GroverYQVvwokac (1) - JuliannSnider (1) + Gstein (1) - JulioRodriguez (1) + Guillaume (1) - Jwcampbell (1) + Gwidion (1) - KSBMiranda (1) + HFujimaki (1) - KatjaG (1) + HKagerer (1) - KendraDunstan (1) + HLGZorawdi (1) - Kenneth.venken (1) + Haggai (1) - Kenton3255 (1) + Hagos (1) - KerrieMarino (1) + Hamkins (1) - KieraY22at (1) + HelenWalston (1) - Knobo (1) + Heygo (1) - Koeleman (1) + Heyheyitshay (1) - Kompilainenn (1) + Hfischer (1) - Kosmous (1) + HilarioTr (1) - KourtneNester (1) + Hillrich (1) - Krotow (1) + Hkdocholid (1) - Kying (1) + Honza.havlicek (1) - LKPSharylptwsdo (1) + Hosiryuhosi (1) - LMKemm (1) + Hwoehrle (1) - LOFF (1) + Ian (1) - LaPingvino (1) + IbraM (1) - Laskov (1) + Ida (1) - LatoshaZnu (1) + Igorizyumin (1) - LaunaEgpeeoc (1) + Ipodsoft (1) - LaurelLangton (1) + Irene (1) - LaverneNavarret (1) + IrrevdJohn (1) - LavinaVandermar (1) + IslaXTDhiovhyzo (1) - LavonneSchindle (1) + IsraelGill (1) - Learner (1) + JDługosz (1) - Learnwellwithme93 (1) + JK2308 (1) - Librestez54 (1) + Jacquelin (1) - Likoski (1) + JacquelineEqf (1) - LilianG44nxresx (1) + Jailletc36 (1) - LillianaRad (1) + JameyAllred (1) - LillieNlowccx (1) + Jamil (1) - Liturgist (1) + JamisonDamron (1) - Llalllal1 (1) + JanEnEm (1) - Scheidt, Heiko (1) + JanetteBa (1) - Lorne (1) + Jani (1) - Lucas Filho (1) + Jazzon (1) - LudieNutter (1) + Jcdericco (1) - Luiz Cláudio (1) + Chaffraix, Julien (1) - Luke (1) + JeanVSAF (1) - LydiaDgxuysav (1) + JeannetteGaertn (1) - LyndonCastiglio (1) + JefferyMackenna (1) - M.sacharewicz (1) + Jeongkyu (1) - M1ndfr3ak (1) + JerryShi (1) - MDDN (1) + Jimmyhaynbj (1) - MJW (1) + Jinocvla (1) - MNeto (1) + JiroMatsuzawa (1) - Mabel7997eelu (1) + Joachim (1) - MadelineShort (1) + Joaofernando (1) - Maemst (1) + JoelH (1) - Magicienap (1) + JomarSilva (1) - Mahdiekrani (1) + JonnaCainzabvwf (1) - Mahmudul (1) + Joselaurian (1) - Maliuta (1) + Joshun (1) - Manveru1986 (1) + José Eduardo (1) - MarcelProut (1) + JoyLittler (1) - MarcelaHeffron (1) + Jpl (1) - MarcoZ (1) + Jsbueno (1) - Biscaro, Marco (1) + Juergen (1) - MarcosHanson (1) + JulioRodriguez (1) - MargaretaNorthc (1) + Jwcampbell (1) - MargoBergman (1) + KSBMiranda (1) - MarianaConnell (1) + KatjaG (1) - Mariano Gaudix (1) + Kenneth.venken (1) - MarinaManess (1) + Kenton3255 (1) - MarkWielaaard (1) + KerrieMarino (1) - Markcoomes (1) + KieraY22at (1) - Markzog21 (1) + Knobo (1) - MarlonMarcum (1) + Koeleman (1) - MarthaWaterman (1) + Kosmous (1) - Marwan (1) + Krotow (1) - MaryellenW31 (1) + Kying (1) - MarylynKu (1) + LMKemm (1) - Masaki tamakoshi (1) + LOFF (1) - Massao (1) + LaPingvino (1) - Matsuura (1) + Laskov (1) - Campanelli, Matteo (1) + LaunaEgpeeoc (1) - MavisReit (1) + LaurelLangton (1) - Bechler, Moritz (1) + LavinaVandermar (1) - Megan44Dgxg (1) + LavonneSchindle (1) - MelisaBroughton (1) + Learnwellwithme93 (1) - MellisaIQU (1) + Librestez54 (1) - MeriMerideth (1) + Likoski (1) - Mete0r (1) + LilianG44nxresx (1) - Mhaehnel (1) + LillianaRad (1) - Mhcrnl (1) + Liturgist (1) - Mhenriday (1) + Llalllal1 (1) - MicaelaLaurantu (1) + Lucas Filho (1) - Michaelwood (1) + Luiz Cláudio (1) - Michka B (1) + Luke (1) - Midomidi2013 (1) + LydiaDgxuysav (1) - MiguelKastner (1) + LyndonCastiglio (1) - Miguelverdu (1) + M.sacharewicz (1) - Mikolg (1) + M1ndfr3ak (1) - MilagroWilkerso (1) + MJW (1) - Milanbv (1) + MNeto (1) - Miles (1) + MadelineShort (1) - Minarja4 (1) + Magicienap (1) - MitchellP (1) + Mahdiekrani (1) - Miurahr (1) + Mahmudul (1) - Mixstah (1) + Maliuta (1) - Francis, Matthew (1) + Manveru1986 (1) - Moberg (1) + MarcelProut (1) - ModestoZzc (1) + Biscaro, Marco (1) - Momo50 (1) + MargaretaNorthc (1) - Muhammadsufyanzainalabidin (1) + Mariano Gaudix (1) - Mw (1) + MarinaManess (1) - MyraBlacklow (1) + MarkWielaaard (1) - NEOhidra (1) + Markcoomes (1) - NNe8Lx2gc (1) + Markzog21 (1) - Namikawa (1) + MarlonMarcum (1) - NannetteFreedma (1) + Marwan (1) - Nanotron (1) + MaryellenW31 (1) - Ncaio (1) + MarylynKu (1) - NellieSMWX (1) + Masaki tamakoshi (1) - Neteler (1) + Massao (1) - Ngoswami (1) + Matsuura (1) - Nickko (1) + Campanelli, Matteo (1) - Christener, Nicolas (1) + MavisReit (1) - NiklasHor (1) + Bechler, Moritz (1) - Nilss (1) + MelisaBroughton (1) - Ngo, Minh (1) + MellisaIQU (1) - Nnino2 (1) + MeriMerideth (1) - Northwestfirestarters (1) + Mete0r (1) - Norty (1) + Mhaehnel (1) - Notafish (1) + Mhcrnl (1) - Norbert X (1) + Mhenriday (1) - Nurohman (1) + Michaelwood (1) - OBMLorraine (1) + Michka B (1) - Oig (1) + Miguelverdu (1) - Oiouitt (1) + MilagroWilkerso (1) - Okusi (1) + Milanbv (1) - Olea (1) + Miles (1) - OliverHoffnung (1) + Minarja4 (1) - Onurkucuk67 (1) + MitchellP (1) - Oosterkamp (1) + Mixstah (1) - Ophelia2399 (1) + Monastirsky, Maxim (1) - Orrd (1) + ModestoZzc (1) - Osnola (1) + Momo50 (1) - Oui (1) + Muhammadsufyanzainalabidin (1) - Ozpoz (1) + MyraBlacklow (1) - PPRShaywuttpocn (1) + NEOhidra (1) - Padenton (1) + NNe8Lx2gc (1) - PamalaDorsch (1) + Namikawa (1) - Pankaj (1) + NannetteFreedma (1) - Papesky (1) + Nanotron (1) - Passerpunt (1) + NellieSMWX (1) - Pastim (1) + Neteler (1) - PatriceMerrick (1) + Ngoswami (1) - Paulolima (1) + Nickko (1) - PearlFelton (1) + Christener, Nicolas (1) - PearlMoyazw (1) + NiklasHor (1) - PenelopHewlett (1) + Nilss (1) - Vorel, Petr (1) + Ngo, Minh (1) - Pharmankur (1) + Nnino2 (1) - Phb.nbnet.nb.ca (1) + Northwestfirestarters (1) - PhilDur (1) + Norty (1) - Philhart (1) + Notafish (1) - PhilipTimms (1) + Nurohman (1) - Philippe43 (1) + OBMLorraine (1) - PhillippBethea (1) + Oig (1) - Phomes (1) + Okusi (1) - Piero (1) + Olea (1) - PieterDeBruijn (1) + OliverHoffnung (1) - Pietro.caballeri (1) + Onurkucuk67 (1) - Pilavi (1) + Oosterkamp (1) - Piratu (1) + Ophelia2399 (1) - Piternoize (1) + Orrd (1) - Pjotr (1) + Oui (1) - Pkavinda (1) + Ozpoz (1) - Plastique (1) + PPRShaywuttpocn (1) - Plastovicka (1) + Padenton (1) - PoppyHart (1) + Papesky (1) - PopularOutcast (1) + Passerpunt (1) - PorfiriMansergh (1) + Pastim (1) - PorterEncarnaci (1) + PatriceMerrick (1) - Carter, Travis (1) + Paulolima (1) - Prosper (1) + PearlFelton (1) - Psychicread531 (1) + PearlMoyazw (1) - QGBWinonajrdtpj (1) + Vorel, Petr (1) - Qiguo (1) + Pharmankur (1) - RafaelaTrudel (1) + Phb.nbnet.nb.ca (1) - Rahuldeshmukh101 (1) + PhilDur (1) - Rainy (1) + Philhart (1) - Ramonturner (1) + PhilipTimms (1) - Randolp1949 (1) + Philippe43 (1) - RashadEsp (1) + Philipz (1) - Ratias (1) + PhillippBethea (1) - Rautamiekka (1) + Phomes (1) - Rcampbelllaos (1) + Piero (1) - RebeccaToscano (1) + PieterDeBruijn (1) - ReubenFow (1) + Pietro.caballeri (1) - - RexRTEJnlzus (1) + Pilavi (1) - Rholler (1) + Piratu (1) - Rhoslyn (1) + Piternoize (1) - RickieHpejt (1) + Pitonyak (1) - Riessmi (1) + Pjotr (1) - Rif (1) + Pkavinda (1) - Ringlerloje (1) + Plastique (1) - Rion (1) + Plastovicka (1) - Rizobix (1) + PoppyHart (1) - Rizwan1218 (1) + PopularOutcast (1) - Robert Wetzlmayr (1) + PorterEncarnaci (1) - Robustchao (1) + Carter, Travis (1) - RoccoAPIUqpuoia (1) + Prosper (1) - Rockcows31 (1) + QGBWinonajrdtpj (1) - RogelioTrost (1) + RafaelaTrudel (1) - Deshmukh, Rohit (1) + Rahuldeshmukh101 (1) - Rombert (1) + Rainy (1) - Ron1 (1) + Ramonturner (1) - Ronny (1) + RashadEsp (1) - Roscoe5731 (1) + Ratias (1) - Rosemarie (1) + Rautamiekka (1) - Rpott (1) + Rcampbelllaos (1) - Rsedak (1) + ReubenFow (1) - RuleAndLine (1) + Rholler (1) - Rvr (1) + Rhoslyn (1) - Ryho (1) + Riessmi (1) - SallyMorales (1) + Rif (1) - Samanicute (1) + Rion (1) - SamuelPoltpalin (1) + Rizobix (1) - Samuse (1) + Rizwan1218 (1) - Sandeeps (1) + Robert Wetzlmayr (1) - Sanipache (1) + Robustchao (1) - Saracans (1) + RoccoAPIUqpuoia (1) - Sbar1 (1) + Rockcows31 (1) - Sbosio (1) + RogelioTrost (1) - Schrillesbunteshamburg (1) + Rohit deshmukh11 (1) - Scito (1) + Rombert (1) - Scno (1) + Ron1 (1) - Sctenebro (1) + Roscoe5731 (1) - Shankar (1) + Rosemarie (1) - ShannaCockrell (1) + Rpott (1) - ShaynaMan (1) + Rsedak (1) - SherrieMarroqui (1) + RuleAndLine (1) - SherrillGabriel (1) + Rvr (1) - SherylMillingto (1) + Ryho (1) - Shin en (1) + Samuse (1) - Boldiston, Kyle (1) + Sandeeps (1) - Silvestr (1) + Saracans (1) - Simonbr (1) + Sbar1 (1) - SimsimiUy (1) + Sbosio (1) - SiobhanLandale (1) + Scito (1) - SkyeCorreia (1) + Scno (1) - Smalalur (1) + Sctenebro (1) - Smile4ever (1) + Shankar (1) - Socialmitchell (1) + ShannaCockrell (1) - Son Sonson (1) + ShaynaMan (1) - SonyaBunnell (1) + SherrieMarroqui (1) - Sovichet (1) + SherrillGabriel (1) - Sphericalhorse (1) + Shin en (1) - Stewart75H (1) + Silvestr (1) - Stonehubmn (1) + Simonbr (1) - Supportex (1) + SimsimiUy (1) - Sushils (1) + SkyeCorreia (1) - SusieVeasley (1) + Smalalur (1) - Svalo (1) + Smile4ever (1) - SvenHornung (1) + Socialmitchell (1) - Sviola (1) + Son Sonson (1) - TAQSamueld (1) + SonyaBunnell (1) - Talueses (1) + Sovichet (1) - Tanguy k (1) + Sphericalhorse (1) - Thanakanok, Tantai (1) + Stonehubmn (1) - TaylorSlemp (1) + Supportex (1) - TeganCreswick (1) + Sushils (1) - Tegas (1) + Svalo (1) - The Magpie (1) + Sviola (1) - ThePokehach (1) + TAQSamueld (1) - TheronAbdullah (1) + Talueses (1) - Thom (1) + Tanguy k (1) - ThudDriver (1) + Thanakanok, Tantai (1) - Tifroumi (1) + TaylorSlemp (1) - Tilt (1) + Tegas (1) - Tim1075 (1) + The Magpie (1) - TimothyDempster (1) + ThePokehach (1) - Tmongkol (1) + TheronAbdullah (1) - Tpokorra (1) + Thom (1) - Transcend (1) + ThudDriver (1) - TrevorPfe (1) + Tifroumi (1) - Trondtr (1) + Tilt (1) - Tuliouel (1) + Tim1075 (1) - Tuping (1) + Kumar, Tarun (1) - Vincent, Brennan (1) + Tmongkol (1) - Underdog (1) + Tpokorra (1) - UrmasD (1) + Transcend (1) - UrsulaHorrell (1) + TrevorPfe (1) - Ushabtay (1) + Trondtr (1) - VPUJamikajklq (1) + Tuliouel (1) - ValenciaS (1) + Tuping (1) - Valtermura (1) + Vincent, Brennan (1) - Veeven (1) + Underdog (1) - Vera Cavalcante (1) + UrmasD (1) - VerenaGaskins (1) + Ushabtay (1) - VernaSchulze (1) + ValenciaS (1) - VeroniqueGQAQ (1) + Valtermura (1) - VickyShick (1) + Veeven (1) - Vincentvikram (1) + Vera Cavalcante (1) - Virus009 (1) + VerenaGaskins (1) - WMZGiseleun (1) + VernaSchulze (1) - WOBFriedauk (1) + VeroniqueGQAQ (1) - WZEMonica (1) + Vincentvikram (1) - Wadrian (1) + Virus009 (1) - WandaSingletary (1) + WMZGiseleun (1) - Wastl (1) + WOBFriedauk (1) - Waynemcl (1) + WZEMonica (1) - Webistrator (1) + Wadrian (1) - Wes (1) + Wastl (1) - Westantenna (1) + Waynemcl (1) - Wezchlebaty (1) + Webistrator (1) - Wilhelm (1) + Wes (1) - William Avery (1) + Westantenna (1) - Williewortel (1) + Wezchlebaty (1) - Klausner, Thomas (1) + Wilhelm (1) - XSXKristin (1) + William Avery (1) - Baudin, Lucas (1) + Williewortel (1) - XtinaS (1) + Klausner, Thomas (1) - Xtrusia (1) + Baudin, Lucas (1) - Yangyiji (1) + XtinaS (1) - YaroslavRutledge (1) + YaroslavRutledge (1) - Yazu (1) + Yazu (1) - Yoshiharu Kawai (1) + Yoshiharu Kawai (1) - Yowbooks (1) + Yowbooks (1) - Yury Tarasievich (1) + Yury Tarasievich (1) - ZAXHesterlpu (1) + ZAXHesterlpu (1) - ZBMCallumbwire (1) - - - ZakGregory (1) + ZakGregory (1) - Zizzle (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. + 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-l10n-4.3.1~rc2/RepositoryExternal.mk libreoffice-l10n-4.3.2/RepositoryExternal.mk --- libreoffice-l10n-4.3.1~rc2/RepositoryExternal.mk 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/RepositoryExternal.mk 2014-09-16 19:56:04.000000000 +0000 @@ -3281,6 +3281,8 @@ ifeq ($(ENABLE_GLTF),TRUE) +ifneq ($(SYSTEM_LIBGLTF),TRUE) + define gb_LinkTarget__use_libgltf $(call gb_LinkTarget_set_include,$(1),\ -I$(call gb_UnpackedTarball_get_dir,libgltf)/inc \ @@ -3301,11 +3303,21 @@ endef -define gb_ExternalProject__use_libgltf -$(call gb_ExternalProject_use_external_project,$(1),libgltf) +else # SYSTEM_LIBGLTF + +define gb_LinkTarget__use_libgltf +$(call gb_LinkTarget_set_include,$(1),\ + $$(INCLUDE) \ + $(LIBGLTF_CFLAGS) \ +) +$(call gb_LinkTarget_add_libs,$(1),$(LIBGLTF_LIBS)) endef +endif # SYSTEN_LIBGLTF + +ifeq ($(ENABLE_COLLADA),TRUE) + define gb_LinkTarget__use_opencollada_parser $(call gb_LinkTarget_set_include,$(1),\ -I$(call gb_UnpackedTarball_get_dir,opencollada)/COLLADABaseUtils/include \ @@ -3336,7 +3348,9 @@ ) endef -endif +endif # ENABLE_COLLADA + +endif # ENABLE_GLTF ### Jars ############################################################ diff -Nru libreoffice-l10n-4.3.1~rc2/Repository.mk libreoffice-l10n-4.3.2/Repository.mk --- libreoffice-l10n-4.3.1~rc2/Repository.mk 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/Repository.mk 2014-09-16 19:56:04.000000000 +0000 @@ -233,7 +233,7 @@ chartcore \ chartcontroller \ chartopengl \ - $(if $(filter $(OS),MACOSX WNT),,cmdmail) \ + $(if $(filter $(OS),WNT),,cmdmail) \ cppcanvas \ configmgr \ ctl \ diff -Nru libreoffice-l10n-4.3.1~rc2/RepositoryModule_host.mk libreoffice-l10n-4.3.2/RepositoryModule_host.mk --- libreoffice-l10n-4.3.1~rc2/RepositoryModule_host.mk 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/RepositoryModule_host.mk 2014-09-16 19:56:04.000000000 +0000 @@ -180,7 +180,7 @@ # otherwise cyclic dependencies ruin everything. # do not serialize on a partial build as that may fail due to missing deps. # the default goal is all (see Module.mk) -ifeq (,$(filter-out all,$(MAKECMDGOALS))) +ifeq (,$(filter-out all build check unitcheck slowcheck subsequentcheck,$(MAKECMDGOALS))) $(eval $(call repositorymodule_serialize,\ scfilt scopencl \ $(call gb_Helper_optional,SCRIPTING,vbaobj) \ diff -Nru libreoffice-l10n-4.3.1~rc2/sc/inc/compiler.hxx libreoffice-l10n-4.3.2/sc/inc/compiler.hxx --- libreoffice-l10n-4.3.1~rc2/sc/inc/compiler.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/inc/compiler.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -256,15 +256,16 @@ const ::com::sun::star::uno::Sequence< com::sun::star::sheet::ExternalLinkInfo>* pExternalLinks ) const = 0; - virtual OUString makeExternalNameStr( const OUString& rFile, const OUString& rName ) const = 0; + virtual OUString makeExternalNameStr( sal_uInt16 nFileId, const OUString& rFile, + const OUString& rName ) const = 0; virtual void makeExternalRefStr( - OUStringBuffer& rBuffer, const ScAddress& rPos, const OUString& rFileName, + OUStringBuffer& rBuffer, const ScAddress& rPos, sal_uInt16 nFileId, const OUString& rFileName, const OUString& rTabName, const ScSingleRefData& rRef ) const = 0; virtual void makeExternalRefStr( OUStringBuffer& rBuffer, const ScAddress& rPos, - const OUString& rFileName, const std::vector& rTabNames, + sal_uInt16 nFileId, const OUString& rFileName, const std::vector& rTabNames, const OUString& rTabName, const ScComplexRefData& rRef ) const = 0; enum SpecialSymbolType diff -Nru libreoffice-l10n-4.3.1~rc2/sc/inc/types.hxx libreoffice-l10n-4.3.2/sc/inc/types.hxx --- libreoffice-l10n-4.3.1~rc2/sc/inc/types.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/inc/types.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -100,6 +100,14 @@ typedef boost::unordered_map ColRowReorderMapType; +enum AreaOverlapType +{ + AreaInside, + AreaPartialOverlap, + OneRowInsideArea, + OneColumnInsideArea +}; + } #endif diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/core/data/bcaslot.cxx libreoffice-l10n-4.3.2/sc/source/core/data/bcaslot.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/core/data/bcaslot.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/core/data/bcaslot.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -446,7 +446,8 @@ } } -void ScBroadcastAreaSlot::GetAllListeners( const ScRange& rRange, std::vector& rListeners ) +void ScBroadcastAreaSlot::GetAllListeners( + const ScRange& rRange, std::vector& rListeners, sc::AreaOverlapType eType ) { for (ScBroadcastAreas::const_iterator aIter( aBroadcastAreaTbl.begin()), aIterEnd( aBroadcastAreaTbl.end()); aIter != aIterEnd; ++aIter ) @@ -456,8 +457,32 @@ ScBroadcastArea* pArea = (*aIter).mpArea; const ScRange& rAreaRange = pArea->GetRange(); - if (!rRange.In(rAreaRange)) - continue; + + switch (eType) + { + case sc::AreaInside: + if (!rRange.In(rAreaRange)) + // The range needs to be fully inside specified range. + continue; + break; + case sc::AreaPartialOverlap: + if (!rRange.Intersects(rAreaRange) || rRange.In(rAreaRange)) + // The range needs to be only partially overlapping. + continue; + break; + case sc::OneRowInsideArea: + if (rAreaRange.aStart.Row() != rAreaRange.aEnd.Row() || !rRange.In(rAreaRange)) + // The range needs to be one single row and fully inside + // specified range. + continue; + break; + case sc::OneColumnInsideArea: + if (rAreaRange.aStart.Col() != rAreaRange.aEnd.Col() || !rRange.In(rAreaRange)) + // The range needs to be one single column and fully inside + // specified range. + continue; + break; + } SvtBroadcaster::ListenersType& rLst = pArea->GetBroadcaster().GetAllListeners(); SvtBroadcaster::ListenersType::iterator itLst = rLst.begin(), itLstEnd = rLst.end(); @@ -1000,7 +1025,8 @@ maAreasToBeErased.swap( aCopy); } -std::vector ScBroadcastAreaSlotMachine::GetAllListeners( const ScRange& rRange ) +std::vector ScBroadcastAreaSlotMachine::GetAllListeners( + const ScRange& rRange, sc::AreaOverlapType eType ) { std::vector aRet; @@ -1017,7 +1043,8 @@ while ( nOff <= nEnd ) { ScBroadcastAreaSlot* p = *pp; - p->GetAllListeners(rRange, aRet); + if (p) + p->GetAllListeners(rRange, aRet, eType); ComputeNextSlot( nOff, nBreak, pp, nStart, ppSlots, nRowBreak); } } diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/core/data/documen7.cxx libreoffice-l10n-4.3.2/sc/source/core/data/documen7.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/core/data/documen7.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/core/data/documen7.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -154,7 +154,7 @@ const ScAddress& rDelta = rHint.getDelta(); // Get all area listeners that listens on the old range, and end their listening. - std::vector aAreaListeners = pBASM->GetAllListeners(rSrcRange); + std::vector aAreaListeners = pBASM->GetAllListeners(rSrcRange, sc::AreaInside); { std::vector::iterator it = aAreaListeners.begin(), itEnd = aAreaListeners.end(); for (; it != itEnd; ++it) diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/core/data/document10.cxx libreoffice-l10n-4.3.2/sc/source/core/data/document10.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/core/data/document10.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/core/data/document10.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -202,7 +202,12 @@ SCTAB nTabEnd = rCxt.getTabEnd(); for (SCTAB i = rCxt.getTabStart(); i <= nTabEnd && i < static_cast(maTabs.size()); ++i) + { maTabs[i]->CopyOneCellFromClip(rCxt, nCol1, nRow1, nCol2, nRow2); + if (rCxt.getInsertFlag() & IDF_ATTRIB) + maTabs[i]->CopyConditionalFormat(nCol1, nRow1, nCol2, nRow2, nCol1 - aClipRange.aStart.Col(), + nRow1 - aClipRange.aStart.Row(), pSrcTab); + } return true; } diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/core/data/formulacell.cxx libreoffice-l10n-4.3.2/sc/source/core/data/formulacell.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/core/data/formulacell.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/core/data/formulacell.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1830,7 +1830,7 @@ if (pCode->IsRecalcModeAlways()) { // The formula was previously volatile, but no more. - EndListeningTo(pDocument); + pDocument->EndListeningArea(BCA_LISTEN_ALWAYS, this); pCode->SetExclusiveRecalcModeNormal(); } else @@ -3801,8 +3801,6 @@ if( pArr->IsRecalcModeAlways() ) { pDoc->StartListeningArea(BCA_LISTEN_ALWAYS, this); - SetNeedsListening( false); - return; } pArr->Reset(); @@ -3841,8 +3839,6 @@ if( pArr->IsRecalcModeAlways() ) { rDoc.StartListeningArea(BCA_LISTEN_ALWAYS, this); - SetNeedsListening( false); - return; } pArr->Reset(); @@ -3908,7 +3904,6 @@ if ( GetCode()->IsRecalcModeAlways() ) { pDoc->EndListeningArea( BCA_LISTEN_ALWAYS, this ); - return; } if (!pArr) @@ -3954,7 +3949,6 @@ if (pArr->IsRecalcModeAlways()) { rDoc.EndListeningArea(BCA_LISTEN_ALWAYS, this); - return; } pArr->Reset(); diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/core/data/table3.cxx libreoffice-l10n-4.3.2/sc/source/core/data/table3.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/core/data/table3.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/core/data/table3.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -61,6 +61,7 @@ #include #include #include +#include #include @@ -722,6 +723,21 @@ // Collect all listeners within sorted range ahead of time. std::vector aListeners; + + // Get all area listeners that listen on one column within the range and + // end their listening. + ScRange aMoveRange( nStart, nRow1, nTab, nLast, nRow2, nTab); + std::vector aAreaListeners = pDocument->GetBASM()->GetAllListeners( + aMoveRange, sc::OneColumnInsideArea); + { + std::vector::iterator it = aAreaListeners.begin(), itEnd = aAreaListeners.end(); + for (; it != itEnd; ++it) + { + pDocument->EndListeningArea(it->maArea, it->mpListener); + aListeners.push_back( it->mpListener); + } + } + for (SCCOL nCol = nStart; nCol <= nLast; ++nCol) aCol[nCol].CollectListeners(aListeners, nRow1, nRow2); @@ -733,6 +749,22 @@ ColReorderNotifier aFunc(aColMap, nTab, nRow1, nRow2); std::for_each(aListeners.begin(), aListeners.end(), aFunc); + // Re-start area listeners on the reordered columns. + { + std::vector::iterator it = aAreaListeners.begin(), itEnd = aAreaListeners.end(); + for (; it != itEnd; ++it) + { + ScRange aNewRange = it->maArea; + sc::ColRowReorderMapType::const_iterator itCol = aColMap.find( aNewRange.aStart.Col()); + if (itCol != aColMap.end()) + { + aNewRange.aStart.SetCol( itCol->second); + aNewRange.aEnd.SetCol( itCol->second); + } + pDocument->StartListeningArea(aNewRange, it->mpListener); + } + } + // Re-join formulas at row boundaries now that all the references have // been adjusted for column reordering. for (SCCOL nCol = nStart; nCol <= nLast; ++nCol) @@ -808,8 +840,7 @@ assert(rCell.mpAttr); ScAddress aOldPos = rCell.maCell.mpFormula->aPos; - ScFormulaCell* pNew = rCell.maCell.mpFormula->Clone( - aCellPos, SC_CLONECELL_DEFAULT | SC_CLONECELL_ADJUST3DREL); + ScFormulaCell* pNew = rCell.maCell.mpFormula->Clone( aCellPos, SC_CLONECELL_DEFAULT); pNew->CopyAllBroadcasters(*rCell.maCell.mpFormula); pNew->GetCode()->AdjustReferenceOnMovedOrigin(aOldPos, aCellPos); @@ -905,9 +936,13 @@ std::vector::iterator it = aSpans.begin(), itEnd = aSpans.end(); for (; it != itEnd; ++it) + pDocument->GetPool()->Put(*it->mpPattern); + + for (it = aSpans.begin(); it != itEnd; ++it) { assert(it->mpPattern); // should never be NULL. aCol[nThisCol].SetPatternArea(it->mnRow1, it->mnRow2, *it->mpPattern, true); + pDocument->GetPool()->Remove(*it->mpPattern); } } @@ -949,6 +984,22 @@ // Collect all listeners within sorted range ahead of time. std::vector aListeners; + + // Get all area listeners that listen on one row within the range and end + // their listening. + ScRange aMoveRange( nCol1, nRow1, nTab, nCol2, nRow2, nTab); + std::vector aAreaListeners = pDocument->GetBASM()->GetAllListeners( + aMoveRange, sc::OneRowInsideArea); + { + std::vector::iterator it = aAreaListeners.begin(), itEnd = aAreaListeners.end(); + for (; it != itEnd; ++it) + { + pDocument->EndListeningArea(it->maArea, it->mpListener); + aListeners.push_back( it->mpListener); + } + } + + // Collect listeners of cell broadcasters. for (SCCOL nCol = nCol1; nCol <= nCol2; ++nCol) aCol[nCol].CollectListeners(aListeners, nRow1, nRow2); @@ -981,6 +1032,22 @@ RowReorderNotifier aFunc(aRowMap, nTab, nCol1, nCol2); std::for_each(aListeners.begin(), aListeners.end(), aFunc); + // Re-start area listeners on the reordered rows. + { + std::vector::iterator it = aAreaListeners.begin(), itEnd = aAreaListeners.end(); + for (; it != itEnd; ++it) + { + ScRange aNewRange = it->maArea; + sc::ColRowReorderMapType::const_iterator itRow = aRowMap.find( aNewRange.aStart.Row()); + if (itRow != aRowMap.end()) + { + aNewRange.aStart.SetRow( itRow->second); + aNewRange.aEnd.SetRow( itRow->second); + } + pDocument->StartListeningArea(aNewRange, it->mpListener); + } + } + // Re-group formulas in affected columns. for (itGroupTab = rGroupTabs.begin(); itGroupTab != itGroupTabEnd; ++itGroupTab) { diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/core/inc/bcaslot.hxx libreoffice-l10n-4.3.2/sc/source/core/inc/bcaslot.hxx --- libreoffice-l10n-4.3.1~rc2/sc/source/core/inc/bcaslot.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/core/inc/bcaslot.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -215,7 +215,8 @@ */ void EraseArea( ScBroadcastAreas::iterator& rIter ); - void GetAllListeners( const ScRange& rRange, std::vector& rListeners ); + void GetAllListeners( + const ScRange& rRange, std::vector& rListeners, sc::AreaOverlapType eType ); }; @@ -311,7 +312,8 @@ // only for ScBroadcastAreaSlot void FinallyEraseAreas( ScBroadcastAreaSlot* pSlot ); - std::vector GetAllListeners( const ScRange& rRange ); + std::vector GetAllListeners( + const ScRange& rRange, sc::AreaOverlapType eType ); }; diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/core/tool/chartlis.cxx libreoffice-l10n-4.3.2/sc/source/core/tool/chartlis.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/core/tool/chartlis.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/core/tool/chartlis.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -544,39 +544,32 @@ void ScChartListenerCollection::FreeUnused() { - std::vector aUsed, aUnused; + ListenersType aUsed, aUnused; // First, filter each listener into 'used' and 'unused' categories. { - ListenersType::iterator it = maListeners.begin(), itEnd = maListeners.end(); - for (; it != itEnd; ++it) + while(!maListeners.empty()) { - ScChartListener* p = it->second; + ScChartListener* p = maListeners.begin()->second; if (p->IsUno()) { // We don't delete UNO charts; they are to be deleted separately via FreeUno(). - aUsed.push_back(p); + aUsed.transfer(maListeners.begin(), maListeners); continue; } if (p->IsUsed()) { p->SetUsed(false); - aUsed.push_back(p); + aUsed.transfer(maListeners.begin(), maListeners); } else - aUnused.push_back(p); + aUnused.transfer(maListeners.begin(), maListeners); + } } - // Release all pointers currently managed by the ptr_map container. - maListeners.release().release(); - - // Re-insert the listeners we need to keep. - std::for_each(aUsed.begin(), aUsed.end(), InsertChartListener(maListeners)); - - // Now, delete the ones no longer needed. - std::for_each(aUnused.begin(), aUnused.end(), boost::checked_deleter()); + std::swap(aUsed, maListeners); } void ScChartListenerCollection::FreeUno( const uno::Reference< chart::XChartDataChangeEventListener >& rListener, diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/core/tool/compiler.cxx libreoffice-l10n-4.3.2/sc/source/core/tool/compiler.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/core/tool/compiler.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/core/tool/compiler.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -426,7 +426,7 @@ // but '' marks an escaped ' // We've earlier guaranteed that a string containing '' will be // surrounded by ' - if (rFormula[nSrcPos] == '\'') + if (nSrcPos < rFormula.getLength() && rFormula[nSrcPos] == '\'') { sal_Int32 nPos = nSrcPos+1; while (nPos < rFormula.getLength()) @@ -823,7 +823,8 @@ return lcl_parseExternalName(rSymbol, rFile, rName, '#', pDoc, pExternalLinks); } - virtual OUString makeExternalNameStr( const OUString& rFile, const OUString& rName ) const SAL_OVERRIDE + virtual OUString makeExternalNameStr( sal_uInt16 /*nFileId*/, const OUString& rFile, + const OUString& rName ) const SAL_OVERRIDE { return lcl_makeExternalNameStr( rFile, rName, '#', false); } @@ -874,7 +875,7 @@ } virtual void makeExternalRefStr( - OUStringBuffer& rBuffer, const ScAddress& rPos, const OUString& rFileName, + OUStringBuffer& rBuffer, const ScAddress& rPos, sal_uInt16 /*nFileId*/, const OUString& rFileName, const OUString& rTabName, const ScSingleRefData& rRef ) const SAL_OVERRIDE { makeExternalRefStrImpl(rBuffer, rPos, rFileName, rTabName, rRef, false); @@ -921,7 +922,7 @@ } virtual void makeExternalRefStr( - OUStringBuffer& rBuffer, const ScAddress& rPos, const OUString& rFileName, + OUStringBuffer& rBuffer, const ScAddress& rPos, sal_uInt16 /*nFileId*/, const OUString& rFileName, const std::vector& rTabNames, const OUString& rTabName, const ScComplexRefData& rRef ) const SAL_OVERRIDE { @@ -966,20 +967,21 @@ rBuffer.append(']'); } - virtual OUString makeExternalNameStr( const OUString& rFile, const OUString& rName ) const SAL_OVERRIDE + virtual OUString makeExternalNameStr( sal_uInt16 /*nFileId*/, const OUString& rFile, + const OUString& rName ) const SAL_OVERRIDE { return lcl_makeExternalNameStr( rFile, rName, '#', true); } virtual void makeExternalRefStr( - OUStringBuffer& rBuffer, const ScAddress& rPos, const OUString& rFileName, + OUStringBuffer& rBuffer, const ScAddress& rPos, sal_uInt16 /*nFileId*/, const OUString& rFileName, const OUString& rTabName, const ScSingleRefData& rRef ) const SAL_OVERRIDE { makeExternalRefStrImpl(rBuffer, rPos, rFileName, rTabName, rRef, true); } virtual void makeExternalRefStr( - OUStringBuffer& rBuffer, const ScAddress& rPos, const OUString& rFileName, + OUStringBuffer& rBuffer, const ScAddress& rPos, sal_uInt16 /*nFileId*/, const OUString& rFileName, const std::vector& rTabNames, const OUString& rTabName, const ScComplexRefData& rRef ) const SAL_OVERRIDE { @@ -1239,6 +1241,8 @@ sal_Int32 nSrcPos, const CharClass* pCharClass) const SAL_OVERRIDE { + ConventionXL::parseExternalDocName(rFormula, nSrcPos); + ParseResult aRet; if ( lcl_isValidQuotedText(rFormula, nSrcPos, aRet) ) return aRet; @@ -1264,13 +1268,14 @@ return ConventionXL::parseExternalName( rSymbol, rFile, rName, pDoc, pExternalLinks); } - virtual OUString makeExternalNameStr( const OUString& rFile, const OUString& rName ) const SAL_OVERRIDE + virtual OUString makeExternalNameStr( sal_uInt16 /*nFileId*/, const OUString& rFile, + const OUString& rName ) const SAL_OVERRIDE { return ConventionXL::makeExternalNameStr(rFile, rName); } virtual void makeExternalRefStr( - OUStringBuffer& rBuffer, const ScAddress& rPos, const OUString& rFileName, + OUStringBuffer& rBuffer, const ScAddress& rPos, sal_uInt16 /*nFileId*/, const OUString& rFileName, const OUString& rTabName, const ScSingleRefData& rRef ) const SAL_OVERRIDE { // ['file:///path/to/file/filename.xls']'Sheet Name'!$A$1 @@ -1287,7 +1292,7 @@ } virtual void makeExternalRefStr( - OUStringBuffer& rBuffer, const ScAddress& rPos, const OUString& rFileName, + OUStringBuffer& rBuffer, const ScAddress& rPos, sal_uInt16 /*nFileId*/, const OUString& rFileName, const std::vector& rTabNames, const OUString& rTabName, const ScComplexRefData& rRef ) const SAL_OVERRIDE { @@ -1309,6 +1314,57 @@ struct ConventionXL_OOX : public ConventionXL_A1 { ConventionXL_OOX() : ConventionXL_A1( FormulaGrammar::CONV_XL_OOX ) { } + + virtual OUString makeExternalNameStr( sal_uInt16 nFileId, const OUString& /*rFile*/, + const OUString& rName ) const SAL_OVERRIDE + { + // [N]!DefinedName is a workbook global name. + return OUString( "[" + OUString::number(nFileId+1) + "]!" + rName ); + + /* TODO: add support for sheet local names, would be + * [N]'Sheet Name'!DefinedName + * Similar to makeExternalRefStr() but with DefinedName instead of + * CellStr. */ + } + + virtual void makeExternalRefStr( + OUStringBuffer& rBuffer, const ScAddress& rPos, sal_uInt16 nFileId, const OUString& /*rFileName*/, + const OUString& rTabName, const ScSingleRefData& rRef ) const SAL_OVERRIDE + { + // [N]'Sheet Name'!$A$1 + // Where N is a 1-based positive integer number of a file name in OOXML + // xl/externalLinks/externalLinkN.xml + + ConventionXL_OOX::makeExternalDocStr(rBuffer, nFileId); + ScRangeStringConverter::AppendTableName(rBuffer, rTabName); + rBuffer.append('!'); + + makeSingleCellStr(rBuffer, rRef, rRef.toAbs(rPos)); + } + + virtual void makeExternalRefStr( + OUStringBuffer& rBuffer, const ScAddress& rPos, sal_uInt16 nFileId, const OUString& /*rFileName*/, + const std::vector& rTabNames, const OUString& rTabName, + const ScComplexRefData& rRef ) const SAL_OVERRIDE + { + ScRange aAbsRef = rRef.toAbs(rPos); + + ConventionXL_OOX::makeExternalDocStr(rBuffer, nFileId); + ConventionXL::makeExternalTabNameRange(rBuffer, rTabName, rTabNames, aAbsRef); + rBuffer.append('!'); + + makeSingleCellStr(rBuffer, rRef.Ref1, aAbsRef.aStart); + if (aAbsRef.aStart != aAbsRef.aEnd) + { + rBuffer.append(':'); + makeSingleCellStr(rBuffer, rRef.Ref2, aAbsRef.aEnd); + } + } + + static void makeExternalDocStr( OUStringBuffer& rBuffer, sal_uInt16 nFileId ) + { + rBuffer.append('[').append( OUString::number( nFileId+1)).append(']'); + } }; static void @@ -1438,13 +1494,14 @@ return ConventionXL::parseExternalName( rSymbol, rFile, rName, pDoc, pExternalLinks); } - virtual OUString makeExternalNameStr( const OUString& rFile, const OUString& rName ) const SAL_OVERRIDE + virtual OUString makeExternalNameStr( sal_uInt16 /*nFileId*/, const OUString& rFile, + const OUString& rName ) const SAL_OVERRIDE { return ConventionXL::makeExternalNameStr(rFile, rName); } virtual void makeExternalRefStr( - OUStringBuffer& rBuffer, const ScAddress& rPos, const OUString& rFileName, + OUStringBuffer& rBuffer, const ScAddress& rPos, sal_uInt16 /*nFileId*/, const OUString& rFileName, const OUString& rTabName, const ScSingleRefData& rRef ) const SAL_OVERRIDE { // ['file:///path/to/file/filename.xls']'Sheet Name'!$A$1 @@ -1463,7 +1520,7 @@ } virtual void makeExternalRefStr( - OUStringBuffer& rBuffer, const ScAddress& rPos, const OUString& rFileName, + OUStringBuffer& rBuffer, const ScAddress& rPos, sal_uInt16 /*nFileId*/, const OUString& rFileName, const std::vector& rTabNames, const OUString& rTabName, const ScComplexRefData& rRef ) const SAL_OVERRIDE { @@ -2372,6 +2429,7 @@ { "TDIST", ocTDist }, // TDIST -> LEGACY.TDIST { "EASTERSUNDAY", ocEasterSunday }, // EASTERSUNDAY -> ORG.OPENOFFICE.EASTERSUNDAY { "ZGZ", ocZGZ }, // ZGZ -> RRI + { "COLOR", ocColor }, // COLOR -> ORG.LIBREOFFICE.COLOR // Renamed new names, prepare to read future names: { "ORG.OPENOFFICE.GOALSEEK", ocBackSolver } // GOALSEEK -> ORG.OPENOFFICE.GOALSEEK }; @@ -4081,30 +4139,31 @@ void ScCompiler::CreateStringFromExternal(OUStringBuffer& rBuffer, FormulaToken* pTokenP) const { FormulaToken* t = pTokenP; + sal_uInt16 nFileId = t->GetIndex(); ScExternalRefManager* pRefMgr = pDoc->GetExternalRefManager(); - const OUString* pFileName = pRefMgr->getExternalFileName(t->GetIndex()); + const OUString* pFileName = pRefMgr->getExternalFileName(nFileId); if (!pFileName) return; switch (t->GetType()) { case svExternalName: - rBuffer.append(pConv->makeExternalNameStr(*pFileName, t->GetString().getString())); + rBuffer.append(pConv->makeExternalNameStr( nFileId, *pFileName, t->GetString().getString())); break; case svExternalSingleRef: pConv->makeExternalRefStr( - rBuffer, GetPos(), *pFileName, t->GetString().getString(), + rBuffer, GetPos(), nFileId, *pFileName, t->GetString().getString(), static_cast(t)->GetSingleRef()); break; case svExternalDoubleRef: { vector aTabNames; - pRefMgr->getAllCachedTableNames(t->GetIndex(), aTabNames); + pRefMgr->getAllCachedTableNames(nFileId, aTabNames); if (aTabNames.empty()) return; pConv->makeExternalRefStr( - rBuffer, GetPos(), *pFileName, aTabNames, t->GetString().getString(), + rBuffer, GetPos(), nFileId, *pFileName, aTabNames, t->GetString().getString(), static_cast(t)->GetDoubleRef()); } break; diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/core/tool/token.cxx libreoffice-l10n-4.3.2/sc/source/core/tool/token.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/core/tool/token.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/core/tool/token.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -3479,6 +3479,7 @@ switch ((*p)->GetType()) { case svSingleRef: + case svExternalSingleRef: { ScToken* pToken = static_cast(*p); ScSingleRefData& rRef = pToken->GetSingleRef(); @@ -3487,6 +3488,7 @@ } break; case svDoubleRef: + case svExternalDoubleRef: { ScToken* pToken = static_cast(*p); ScComplexRefData& rRef = pToken->GetDoubleRef(); @@ -3713,11 +3715,11 @@ switch (rToken.GetType()) { case svExternalName: - rBuf.append(rCxt.mpRefConv->makeExternalNameStr(aFileName, aTabName)); + rBuf.append(rCxt.mpRefConv->makeExternalNameStr(nFileId, aFileName, aTabName)); break; case svExternalSingleRef: rCxt.mpRefConv->makeExternalRefStr( - rBuf, rPos, aFileName, aTabName, static_cast(rToken).GetSingleRef()); + rBuf, rPos, nFileId, aFileName, aTabName, static_cast(rToken).GetSingleRef()); break; case svExternalDoubleRef: { @@ -3728,7 +3730,8 @@ return; rCxt.mpRefConv->makeExternalRefStr( - rBuf, rPos, aFileName, it->second, aTabName, static_cast(rToken).GetDoubleRef()); + rBuf, rPos, nFileId, aFileName, it->second, aTabName, + static_cast(rToken).GetDoubleRef()); } break; default: diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/excel/excdoc.cxx libreoffice-l10n-4.3.2/sc/source/filter/excel/excdoc.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/excel/excdoc.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/excel/excdoc.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -377,6 +377,7 @@ // COUNTRY - in BIFF8 in workbook globals Add( new XclExpCountry( GetRoot() ) ); + // link table: SUPBOOK, XCT, CRN, EXTERNNAME, EXTERNSHEET, NAME aRecList.AppendRecord( CreateRecord( EXC_ID_EXTERNSHEET ) ); aRecList.AppendRecord( CreateRecord( EXC_ID_NAME ) ); diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/excel/excrecds.cxx libreoffice-l10n-4.3.2/sc/source/filter/excel/excrecds.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/excel/excrecds.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/excel/excrecds.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -449,8 +449,9 @@ // OOXTODO: XML_outlinePr - rWorksheet->singleElement( - XML_tabColor, XML_rgb, XclXmlUtils::ToOString(maTabColor).getStr(), FSEND); + if (maTabColor != Color(COL_AUTO)) + rWorksheet->singleElement( + XML_tabColor, XML_rgb, XclXmlUtils::ToOString(maTabColor).getStr(), FSEND); rWorksheet->singleElement(XML_pageSetUpPr, // OOXTODO: XML_autoPageBreaks, diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/excel/ooxml-export-TODO.txt libreoffice-l10n-4.3.2/sc/source/filter/excel/ooxml-export-TODO.txt --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/excel/ooxml-export-TODO.txt 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/excel/ooxml-export-TODO.txt 2014-09-16 19:56:04.000000000 +0000 @@ -30,8 +30,6 @@ - Workbook (§3.2): - customWorkbookViews (§3.2.3) - ext (§3.2.7) - - externalReference (§3.2.8) - - externalReferences (§3.2.9) - extLst (§3.2.10) - fileRecoveryPr (§3.2.11) [ CRASHRECERR? 865h ] - fileSharing (§3.2.12) [ FILESHARING 5Bh ] diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/excel/xecontent.cxx libreoffice-l10n-4.3.2/sc/source/filter/excel/xecontent.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/excel/xecontent.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/excel/xecontent.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -444,7 +444,7 @@ } OUString XclExpHyperlink::BuildFileName( - sal_uInt16& rnLevel, bool& rbRel, const OUString& rUrl, const XclExpRoot& rRoot ) const + sal_uInt16& rnLevel, bool& rbRel, const OUString& rUrl, const XclExpRoot& rRoot ) { OUString aDosName( INetURLObject( rUrl ).getFSysPath( INetURLObject::FSYS_DOS ) ); rnLevel = 0; diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/excel/xeescher.cxx libreoffice-l10n-4.3.2/sc/source/filter/excel/xeescher.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/excel/xeescher.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/excel/xeescher.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1189,6 +1189,11 @@ pFS->endElementNS( XML_xdr, XML_xfrm ); } +const css::uno::Reference& XclExpChartObj::GetChartDoc() const +{ + return mxChartDoc; +} + XclExpNote::XclExpNote( const XclExpRoot& rRoot, const ScAddress& rScPos, const ScPostIt* pScNote, const OUString& rAddText ) : XclExpRecord( EXC_ID_NOTE ), diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/excel/xelink.cxx libreoffice-l10n-4.3.2/sc/source/filter/excel/xelink.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/excel/xelink.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/excel/xelink.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -27,6 +27,7 @@ #include "scextopt.hxx" #include "externalrefmgr.hxx" #include "tokenarray.hxx" +#include "xecontent.hxx" #include #include @@ -36,6 +37,7 @@ using ::std::vector; using ::com::sun::star::uno::Any; +using namespace oox; // *** Helper classes *** @@ -160,6 +162,9 @@ /** Returns true, if the passed value could be appended to this record. */ bool InsertValue( SCCOL nScCol, SCROW nScRow, const Any& rValue ); + /** Writes the row and child elements. */ + virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE; + private: virtual void WriteBody( XclExpStream& rStrm ) SAL_OVERRIDE; @@ -177,6 +182,8 @@ SCROW mnScRow; /// Row index of the external cells. }; +namespace { class XclExpCrnList; } + /** Represents the record XCT which is the header record of a CRN record list. */ class XclExpXct : public XclExpRecordBase, protected XclExpRoot @@ -198,12 +205,18 @@ /** Writes the XCT and all CRN records. */ virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE; + /** Writes the sheetDataSet and child elements. */ + virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE; + private: ScExternalRefCache::TableTypeRef mxCacheTable; ScMarkData maUsedCells; /// Contains addresses of all stored cells. ScRange maBoundRange; /// Bounding box of maUsedCells. XclExpString maTabName; /// Sheet name of the external sheet. sal_uInt16 mnSBTab; /// Referred sheet index in SUPBOOK record. + + /** Build the internal representation of records to be saved as BIFF or OOXML. */ + bool BuildCrnList( XclExpCrnList& rCrnRecs ); }; // External documents (EXTERNSHEET/SUPBOOK), base class ======================= @@ -224,8 +237,10 @@ protected: /** Creates and returns the list of EXTERNNAME records. */ XclExpExtNameBuffer& GetExtNameBuffer(); - /** Creates and returns the list of EXTERNNAME records. */ + /** Writes the list of EXTERNNAME records. */ void WriteExtNameBuffer( XclExpStream& rStrm ); + /** Writes the list of externalName elements. */ + void WriteExtNameBufferXml( XclExpXmlStream& rStrm ); private: typedef boost::shared_ptr< XclExpExtNameBuffer > XclExpExtNameBfrRef; @@ -309,9 +324,21 @@ sal_uInt16 InsertExtName( const OUString& rName, const ScExternalRefCache::TokenArrayRef pArray ); + /** Get the type of record. */ + XclSupbookType GetType() const; + + /** For references to an external document, 1-based OOXML file ID. */ + sal_uInt16 GetFileId() const; + + /** For references to an external document. */ + const OUString& GetUrl() const; + /** Writes the SUPBOOK and all EXTERNNAME, XCT and CRN records. */ virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE; + /** Writes the externalBook and all child elements. */ + virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE; + private: /** Returns the sheet name inside of this SUPBOOK. */ const XclExpString* GetTabName( sal_uInt16 nSBTab ) const; @@ -329,6 +356,7 @@ XclExpString maUrlEncoded; /// Document name encoded for Excel. XclSupbookType meType; /// Type of this SUPBOOK record. sal_uInt16 mnXclTabCount; /// Number of internal sheets. + sal_uInt16 mnFileId; /// 1-based external reference file ID for OOXML }; // All SUPBOOKS in a document ================================================= @@ -403,6 +431,12 @@ /** Writes all SUPBOOK records with their sub records. */ virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE; + /** Writes all externalBook elements with their child elements to OOXML. */ + virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE; + + /** Whether we need to write externalReferences or not. */ + bool HasExternalReferences() const; + struct XclExpSBIndex { sal_uInt16 mnSupbook; /// SUPBOOK index for an Excel sheet. @@ -486,6 +520,9 @@ /** Derived classes write the entire link table to the passed stream. */ virtual void Save( XclExpStream& rStrm ) = 0; + /** Derived classes write the entire link table to the passed OOXML stream. */ + virtual void SaveXml( XclExpXmlStream& rStrm ) = 0; + protected: explicit XclExpLinkManagerImpl( const XclExpRoot& rRoot ); }; @@ -530,6 +567,8 @@ virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE; + virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE; + private: typedef XclExpRecordList< XclExpExternSheet > XclExpExtSheetList; typedef XclExpExtSheetList::RecordRefType XclExpExtSheetRef; @@ -558,7 +597,7 @@ XclExpCodeMap maCodeMap; /// Maps special external codes to EXTERNSHEET records. }; -/** Implementation of the link manager for BIFF8. */ +/** Implementation of the link manager for BIFF8 and OOXML. */ class XclExpLinkManagerImpl8 : public XclExpLinkManagerImpl { public: @@ -597,6 +636,8 @@ virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE; + virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE; + private: /** Searches for or inserts a new XTI structure. @return The 0-based list index of the XTI structure. */ @@ -1152,6 +1193,69 @@ rStrm.WriteZeroBytes( 8 ); } +void XclExpCrn::SaveXml( XclExpXmlStream& rStrm ) +{ + sax_fastparser::FSHelperPtr pFS = rStrm.GetCurrentStream(); + + pFS->startElement( XML_row, + XML_r, OString::number( mnScRow + 1 ).getStr(), + FSEND); + + ScAddress aAdr( mnScCol, mnScRow, 0); // Tab number doesn't matter + for( CachedValues::iterator aIt = maValues.begin(), aEnd = maValues.end(); aIt != aEnd; ++aIt, aAdr.IncCol() ) + { + if( aIt->has< double >() ) + { + double fVal = aIt->get< double >(); + if (rtl::math::isFinite( fVal)) + { + // t='n' is omitted + pFS->startElement( XML_cell, + XML_r, XclXmlUtils::ToOString( aAdr), + FSEND); + pFS->startElement( XML_v, FSEND ); + pFS->write( fVal ); + } + else + { + pFS->startElement( XML_cell, + XML_r, XclXmlUtils::ToOString( aAdr), + XML_t, "e", + FSEND); + pFS->startElement( XML_v, FSEND ); + pFS->write( "#VALUE!" ); // OOXTODO: support other error values + } + } + else if( aIt->has< OUString >() ) + { + pFS->startElement( XML_cell, + XML_r, XclXmlUtils::ToOString( aAdr), + XML_t, "str", + FSEND); + pFS->startElement( XML_v, FSEND ); + pFS->write( aIt->get< OUString >() ); + } + else if( aIt->has< bool >() ) + { + pFS->startElement( XML_cell, + XML_r, XclXmlUtils::ToOString( aAdr), + XML_t, "b", + FSEND); + pFS->startElement( XML_v, FSEND ); + pFS->write( aIt->get< bool >() ? "1" : "0" ); + } + // OOXTODO: error type cell t='e' + else + { + // Empty/blank cell not stored, only aAdr is incremented. + } + pFS->endElement( XML_v ); + pFS->endElement( XML_cell); + } + + pFS->endElement( XML_row); +} + // Cached cells of a sheet ==================================================== XclExpXct::XclExpXct( const XclExpRoot& rRoot, const OUString& rTabName, @@ -1211,10 +1315,10 @@ } // namespace -void XclExpXct::Save( XclExpStream& rStrm ) +bool XclExpXct::BuildCrnList( XclExpCrnList& rCrnRecs ) { if( !mxCacheTable ) - return; + return false; /* Get the range of used rows in the cache table. This may help to optimize building the CRN record list if the cache table does not @@ -1222,24 +1326,23 @@ formulas. */ ::std::pair< SCROW, SCROW > aRowRange = mxCacheTable->getRowRange(); if( aRowRange.first >= aRowRange.second ) - return; + return false; /* Crop the bounding range of used cells in this table to Excel limits. Return if there is no external cell inside these limits. */ if( !GetAddressConverter().ValidateRange( maBoundRange, false ) ) - return; + return false; /* Find the resulting row range that needs to be processed. */ SCROW nScRow1 = ::std::max( aRowRange.first, maBoundRange.aStart.Row() ); SCROW nScRow2 = ::std::min( aRowRange.second - 1, maBoundRange.aEnd.Row() ); if( nScRow1 > nScRow2 ) - return; + return false; /* Build and collect all CRN records before writing the XCT record. This is needed to determine the total number of CRN records which must be known when writing the XCT record (possibly encrypted, so seeking the output strem back after writing the CRN records is not an option). */ - XclExpCrnList aCrnRecs; SvNumberFormatter& rFormatter = GetFormatter(); bool bValid = true; for( SCROW nScRow = nScRow1; bValid && (nScRow <= nScRow2); ++nScRow ) @@ -1256,13 +1359,13 @@ { case svDouble: bValid = (rFormatter.GetType( nScNumFmt ) == NUMBERFORMAT_LOGICAL) ? - aCrnRecs.InsertValue( nScCol, nScRow, Any( xToken->GetDouble() != 0 ) ) : - aCrnRecs.InsertValue( nScCol, nScRow, Any( xToken->GetDouble() ) ); + rCrnRecs.InsertValue( nScCol, nScRow, Any( xToken->GetDouble() != 0 ) ) : + rCrnRecs.InsertValue( nScCol, nScRow, Any( xToken->GetDouble() ) ); break; case svString: // do not save empty strings (empty cells) to cache if( !xToken->GetString().isEmpty() ) - bValid = aCrnRecs.InsertValue( nScCol, nScRow, Any( xToken->GetString().getString() ) ); + bValid = rCrnRecs.InsertValue( nScCol, nScRow, Any( xToken->GetString().getString() ) ); break; default: break; @@ -1270,6 +1373,14 @@ } } } + return true; +} + +void XclExpXct::Save( XclExpStream& rStrm ) +{ + XclExpCrnList aCrnRecs; + if (!BuildCrnList( aCrnRecs)) + return; // write the XCT record and the list of CRN records rStrm.StartRecord( EXC_ID_XCT, 4 ); @@ -1278,6 +1389,22 @@ aCrnRecs.Save( rStrm ); } +void XclExpXct::SaveXml( XclExpXmlStream& rStrm ) +{ + XclExpCrnList aCrnRecs; + if (!BuildCrnList( aCrnRecs)) + return; + + sax_fastparser::FSHelperPtr pFS = rStrm.GetCurrentStream(); + + pFS->startElement( XML_sheetData, + XML_sheetId, OString::number( mnSBTab).getStr(), + FSEND); + // row elements + aCrnRecs.SaveXml( rStrm ); + pFS->endElement( XML_sheetData); +} + // External documents (EXTERNSHEET/SUPBOOK), base class ======================= XclExpExternSheetBase::XclExpExternSheetBase( const XclExpRoot& rRoot, sal_uInt16 nRecId, sal_uInt32 nRecSize ) : @@ -1299,6 +1426,12 @@ mxExtNameBfr->Save( rStrm ); } +void XclExpExternSheetBase::WriteExtNameBufferXml( XclExpXmlStream& rStrm ) +{ + if( mxExtNameBfr ) + mxExtNameBfr->SaveXml( rStrm ); +} + // External documents (EXTERNSHEET, BIFF5/BIFF7) ============================== XclExpExternSheet::XclExpExternSheet( const XclExpRoot& rRoot, sal_Unicode cCode ) : @@ -1349,14 +1482,16 @@ XclExpSupbook::XclExpSupbook( const XclExpRoot& rRoot, sal_uInt16 nXclTabCount ) : XclExpExternSheetBase( rRoot, EXC_ID_SUPBOOK, 4 ), meType( EXC_SBTYPE_SELF ), - mnXclTabCount( nXclTabCount ) + mnXclTabCount( nXclTabCount ), + mnFileId( 0 ) { } XclExpSupbook::XclExpSupbook( const XclExpRoot& rRoot ) : XclExpExternSheetBase( rRoot, EXC_ID_SUPBOOK, 4 ), meType( EXC_SBTYPE_ADDIN ), - mnXclTabCount( 1 ) + mnXclTabCount( 1 ), + mnFileId( 0 ) { } @@ -1365,7 +1500,8 @@ maUrl( rUrl ), maUrlEncoded( rUrl ), meType( EXC_SBTYPE_EUROTOOL ), - mnXclTabCount( 0 ) + mnXclTabCount( 0 ), + mnFileId( 0 ) { SetRecSize( 2 + maUrlEncoded.GetSize() ); } @@ -1376,13 +1512,15 @@ maUrl( rUrl ), maUrlEncoded( XclExpUrlHelper::EncodeUrl( rRoot, rUrl ) ), meType( EXC_SBTYPE_EXTERN ), - mnXclTabCount( 0 ) + mnXclTabCount( 0 ), + mnFileId( 0 ) { SetRecSize( 2 + maUrlEncoded.GetSize() ); // We need to create all tables up front to ensure the correct table order. ScExternalRefManager* pRefMgr = rRoot.GetDoc().GetExternalRefManager(); sal_uInt16 nFileId = pRefMgr->getExternalFileId( rUrl ); + mnFileId = nFileId + 1; ScfStringVec aTabNames; pRefMgr->getAllCachedTableNames( nFileId, aTabNames ); for( ScfStringVec::const_iterator aBeg = aTabNames.begin(), aIt = aBeg, aEnd = aTabNames.end(); aIt != aEnd; ++aIt ) @@ -1395,7 +1533,8 @@ maDdeTopic( rTopic ), maUrlEncoded( XclExpUrlHelper::EncodeDde( rApplic, rTopic ) ), meType( EXC_SBTYPE_SPECIAL ), - mnXclTabCount( 0 ) + mnXclTabCount( 0 ), + mnFileId( 0 ) { SetRecSize( 2 + maUrlEncoded.GetSize() ); } @@ -1486,6 +1625,21 @@ return GetExtNameBuffer().InsertExtName(*this, rName, pArray); } +XclSupbookType XclExpSupbook::GetType() const +{ + return meType; +} + +sal_uInt16 XclExpSupbook::GetFileId() const +{ + return mnFileId; +} + +const OUString& XclExpSupbook::GetUrl() const +{ + return maUrl; +} + void XclExpSupbook::Save( XclExpStream& rStrm ) { // SUPBOOK record @@ -1496,6 +1650,48 @@ WriteExtNameBuffer( rStrm ); } +void XclExpSupbook::SaveXml( XclExpXmlStream& rStrm ) +{ + sax_fastparser::FSHelperPtr pExternalLink = rStrm.GetCurrentStream(); + + // Add relation for this stream, e.g. xl/externalLinks/_rels/externalLink1.xml.rels + sal_uInt16 nLevel = 0; + bool bRel = true; + OUString sId = rStrm.addRelation( pExternalLink->getOutputStream(), + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/externalLinkPath", + XclExpHyperlink::BuildFileName( nLevel, bRel, maUrl, GetRoot()), + true ); + + pExternalLink->startElement( XML_externalLink, + XML_xmlns, "http://schemas.openxmlformats.org/spreadsheetml/2006/main", + FSEND); + + pExternalLink->startElement( XML_externalBook, + FSNS(XML_xmlns, XML_r), "http://schemas.openxmlformats.org/officeDocument/2006/relationships", + FSNS(XML_r, XML_id), XclXmlUtils::ToOString( sId ).getStr(), + FSEND); + + pExternalLink->startElement( XML_sheetNames, FSEND); + for (size_t nPos = 0, nSize = maXctList.GetSize(); nPos < nSize; ++nPos) + { + pExternalLink->singleElement( XML_sheetName, + XML_val, XclXmlUtils::ToOString( maXctList.GetRecord( nPos )->GetTabName()).getStr(), + FSEND); + } + pExternalLink->endElement( XML_sheetNames); + + pExternalLink->startElement( XML_sheetDataSet, FSEND); + + // sheetData elements + maXctList.SaveXml( rStrm ); + // externalName elements + WriteExtNameBufferXml( rStrm ); + + pExternalLink->endElement( XML_sheetDataSet); + pExternalLink->endElement( XML_externalBook); + pExternalLink->endElement( XML_externalLink); +} + const XclExpString* XclExpSupbook::GetTabName( sal_uInt16 nSBTab ) const { XclExpXctRef xXct = maXctList.GetRecord( nSBTab ); @@ -1855,6 +2051,58 @@ maSupbookList.Save( rStrm ); } +void XclExpSupbookBuffer::SaveXml( XclExpXmlStream& rStrm ) +{ + ::std::map< sal_uInt16, OUString > aMap; + for (size_t nPos = 0, nSize = maSupbookList.GetSize(); nPos < nSize; ++nPos) + { + XclExpSupbookRef xRef( maSupbookList.GetRecord( nPos)); + if (xRef->GetType() != EXC_SBTYPE_EXTERN) + continue; // handle only external reference (for now?) + + sal_uInt16 nId = xRef->GetFileId(); + const OUString& rUrl = xRef->GetUrl(); + ::std::pair< ::std::map< sal_uInt16, OUString >::iterator, bool > xInsert( + aMap.insert( ::std::make_pair( nId, rUrl))); + if (!xInsert.second) + { + SAL_WARN( "sc.filter", "XclExpSupbookBuffer::SaveXml: file ID already used: " << nId << + " wanted for " << rUrl << " and is " << (*xInsert.first).second << + (rUrl == (*xInsert.first).second ? " multiple Supbook not supported" : "")); + continue; + } + + OUString sId; + sax_fastparser::FSHelperPtr pExternalLink = rStrm.CreateOutputStream( + XclXmlUtils::GetStreamName( "xl/", "externalLinks/externalLink", nId), + XclXmlUtils::GetStreamName( NULL, "externalLinks/externalLink", nId), + rStrm.GetCurrentStream()->getOutputStream(), + "application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml", + CREATE_OFFICEDOC_RELATION_TYPE("externalLink"), + &sId ); + + // externalReference entry in workbook externalReferences + rStrm.GetCurrentStream()->singleElement( XML_externalReference, + FSNS( XML_r, XML_id ), XclXmlUtils::ToOString( sId ).getStr(), + FSEND ); + + // Each externalBook in a separate stream. + rStrm.PushStream( pExternalLink ); + xRef->SaveXml( rStrm ); + rStrm.PopStream(); + } +} + +bool XclExpSupbookBuffer::HasExternalReferences() const +{ + for (size_t nPos = 0, nSize = maSupbookList.GetSize(); nPos < nSize; ++nPos) + { + if (maSupbookList.GetRecord( nPos)->GetType() == EXC_SBTYPE_EXTERN) + return true; + } + return false; +} + bool XclExpSupbookBuffer::GetSupbookUrl( XclExpSupbookRef& rxSupbook, sal_uInt16& rnIndex, const OUString& rUrl ) const { @@ -1998,6 +2246,11 @@ } } +void XclExpLinkManagerImpl5::SaveXml( XclExpXmlStream& /*rStrm*/ ) +{ + // not applicable +} + sal_uInt16 XclExpLinkManagerImpl5::GetExtSheetCount() const { return static_cast< sal_uInt16 >( maExtSheetList.GetSize() ); @@ -2216,6 +2469,29 @@ } } +void XclExpLinkManagerImpl8::SaveXml( XclExpXmlStream& rStrm ) +{ + if (maSBBuffer.HasExternalReferences()) + { + sax_fastparser::FSHelperPtr pWorkbook = rStrm.GetCurrentStream(); + pWorkbook->startElement( XML_externalReferences, FSEND); + + // externalLink, externalBook, sheetNames, sheetDataSet, externalName + maSBBuffer.SaveXml( rStrm ); + + pWorkbook->endElement( XML_externalReferences); + } + + // TODO: equivalent for EXTERNSHEET in OOXML? +#if 0 + if( !maXtiVec.empty() ) + { + for( XclExpXtiVec::const_iterator aIt = maXtiVec.begin(), aEnd = maXtiVec.end(); aIt != aEnd; ++aIt ) + aIt->SaveXml( rStrm ); + } +#endif +} + sal_uInt16 XclExpLinkManagerImpl8::InsertXti( const XclExpXti& rXti ) { for( XclExpXtiVec::const_iterator aIt = maXtiVec.begin(), aEnd = maXtiVec.end(); aIt != aEnd; ++aIt ) @@ -2322,4 +2598,9 @@ mxImpl->Save( rStrm ); } +void XclExpLinkManager::SaveXml( XclExpXmlStream& rStrm ) +{ + mxImpl->SaveXml( rStrm ); +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/excel/xlformula.cxx libreoffice-l10n-4.3.2/sc/source/filter/excel/xlformula.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/excel/xlformula.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/excel/xlformula.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -593,7 +593,8 @@ /** Functions defined by Calc, but not in OpenFormula nor supported by Excel. */ static const XclFunctionInfo saFuncTable_OOoLO[] = { - EXC_FUNCENTRY_OOO( ocConvert, 3, 3, 0, "ORG.OPENOFFICE.CONVERT" ) + EXC_FUNCENTRY_OOO( ocConvert, 3, 3, 0, "ORG.OPENOFFICE.CONVERT" ), + EXC_FUNCENTRY_OOO( ocColor, 3, 4, 0, "ORG.LIBREOFFICE.COLOR" ) }; #undef EXC_FUNCENTRY_OOO diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/html/htmlexp.cxx libreoffice-l10n-4.3.2/sc/source/filter/html/htmlexp.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/html/htmlexp.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/html/htmlexp.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -218,7 +218,8 @@ bCalcAsShown( pDocP->GetDocOptions().IsCalcAsShown() ), bTableDataWidth( true ), bTableDataHeight( true ), - mbSkipImages ( false ) + mbSkipImages ( false ), + mbSkipHeaderFooter( false ) { strcpy( sIndent, sIndentSource ); sIndent[0] = 0; @@ -232,6 +233,10 @@ { mbSkipImages = true; } + else if (rFilterOptions == "SkipHeaderFooter") + { + mbSkipHeaderFooter = true; + } for ( sal_uInt16 j=0; j < SC_HTML_FONTSIZES; j++ ) { @@ -319,14 +324,18 @@ sal_uLong ScHTMLExport::Write() { + if (!mbSkipHeaderFooter) + { rStrm.WriteChar( '<' ).WriteCharPtr( OOO_STRING_SVTOOLS_HTML_doctype ).WriteChar( ' ' ).WriteCharPtr( OOO_STRING_SVTOOLS_HTML_doctype40 ).WriteChar( '>' ) .WriteCharPtr( SAL_NEWLINE_STRING ).WriteCharPtr( SAL_NEWLINE_STRING ); TAG_ON_LF( OOO_STRING_SVTOOLS_HTML_html ); WriteHeader(); OUT_LF(); + } WriteBody(); OUT_LF(); - TAG_OFF_LF( OOO_STRING_SVTOOLS_HTML_html ); + if (!mbSkipHeaderFooter) + TAG_OFF_LF( OOO_STRING_SVTOOLS_HTML_html ); return rStrm.GetError(); } @@ -562,6 +571,8 @@ const SvxBrushItem* pBrushItem = (const SvxBrushItem*)&rSet.Get( ATTR_BACKGROUND ); // default text color black + if (!mbSkipHeaderFooter) + { rStrm.WriteChar( '<' ).WriteCharPtr( OOO_STRING_SVTOOLS_HTML_body ); if (!mbSkipImages) @@ -626,13 +637,15 @@ } rStrm.WriteChar( '>' ); OUT_LF(); + } if ( bAll ) WriteOverview(); WriteTables(); - TAG_OFF_LF( OOO_STRING_SVTOOLS_HTML_body ); + if (!mbSkipHeaderFooter) + TAG_OFF_LF( OOO_STRING_SVTOOLS_HTML_body ); } diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/inc/htmlexp.hxx libreoffice-l10n-4.3.2/sc/source/filter/inc/htmlexp.hxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/inc/htmlexp.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/inc/htmlexp.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -126,6 +126,8 @@ bool bTableDataWidth; bool bTableDataHeight; bool mbSkipImages; + /// If HTML header and footer should be written as well, or just the content itself. + bool mbSkipHeaderFooter; const SfxItemSet& PageDefaults( SCTAB nTab ); diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/inc/xecontent.hxx libreoffice-l10n-4.3.2/sc/source/filter/inc/xecontent.hxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/inc/xecontent.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/inc/xecontent.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -110,13 +110,14 @@ virtual void WriteEmbeddedData( XclExpStream& rStrm ); void SetDisplay( bool bDisplay ) { mbSetDisplay = bDisplay; } -private: + /** Builds file name from the passed file URL. Tries to convert to relative file name. @param rnLevel (out-param) The parent directory level. @param rbRel (out-param) true = path is relative. */ - OUString BuildFileName( + static OUString BuildFileName( sal_uInt16& rnLevel, bool& rbRel, - const OUString& rUrl, const XclExpRoot& rRoot ) const; + const OUString& rUrl, const XclExpRoot& rRoot ); +private: /** Writes the body of the HLINK record. */ virtual void WriteBody( XclExpStream& rStrm ) SAL_OVERRIDE; diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/inc/xeescher.hxx libreoffice-l10n-4.3.2/sc/source/filter/inc/xeescher.hxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/inc/xeescher.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/inc/xeescher.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -304,6 +304,8 @@ virtual void WriteChartObj( sax_fastparser::FSHelperPtr pDrawing, XclExpXmlStream& rStrm ); void WriteShapeTransformation( sax_fastparser::FSHelperPtr pFS, const XShapeRef& rXShape, bool bFlipH = false, bool bFlipV = false, sal_Int32 nRotation = 0 ); + const css::uno::Reference& GetChartDoc() const; + private: typedef boost::shared_ptr< XclExpChart > XclExpChartRef; XclExpChartRef mxChart; /// The chart itself (BOF/EOF substream data). diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/inc/xelink.hxx libreoffice-l10n-4.3.2/sc/source/filter/inc/xelink.hxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/inc/xelink.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/inc/xelink.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -200,6 +200,9 @@ /** Writes the entire Link table. */ virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE; + /** Writes the entire Link table to OOXML. */ + virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE; + private: typedef boost::shared_ptr< XclExpLinkManagerImpl > XclExpLinkMgrImplPtr; XclExpLinkMgrImplPtr mxImpl; diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/oox/formulabase.cxx libreoffice-l10n-4.3.2/sc/source/filter/oox/formulabase.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/oox/formulabase.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/oox/formulabase.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -918,7 +918,8 @@ { "ORG.OPENOFFICE.WEEKSINYEAR", "COM.SUN.STAR.SHEET.ADDIN.DATEFUNCTIONS.GETWEEKSINYEAR", NOID, NOID, 1, 1, V, { VR }, FUNCFLAG_IMPORTONLY | FUNCFLAG_EXTERNAL }, { "ORG.OPENOFFICE.ROT13", "COM.SUN.STAR.SHEET.ADDIN.DATEFUNCTIONS.GETROT13", NOID, NOID, 1, 1, V, { VR }, FUNCFLAG_IMPORTONLY | FUNCFLAG_EXTERNAL }, // Other functions. - { "ORG.OPENOFFICE.CONVERT", "ORG.OPENOFFICE.CONVERT", NOID, NOID, 3, 3, V, { VR }, FUNCFLAG_MACROCALL_NEW } + { "ORG.OPENOFFICE.CONVERT", "ORG.OPENOFFICE.CONVERT", NOID, NOID, 3, 3, V, { VR }, FUNCFLAG_MACROCALL_NEW }, + { "ORG.LIBREOFFICE.COLOR", "ORG.LIBREOFFICE.COLOR", NOID, NOID, 3, 4, V, { VR }, FUNCFLAG_MACROCALL_NEW } }; diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/oox/revisionfragment.cxx libreoffice-l10n-4.3.2/sc/source/filter/oox/revisionfragment.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/oox/revisionfragment.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/oox/revisionfragment.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -270,6 +270,7 @@ } pCT->SetUser(aSelfUser); // set the default user to the document owner. + pCT->SetUseFixDateTime(false); rDoc.SetChangeTrack(pCT.release()); // Turn on visibility of tracked changes. diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/oox/workbookhelper.cxx libreoffice-l10n-4.3.2/sc/source/filter/oox/workbookhelper.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/oox/workbookhelper.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/oox/workbookhelper.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -681,6 +681,8 @@ officecfg::Office::Calc::Formula::Load::OOXMLRecalcMode::set(sal_Int32(0), batch); ScFormulaOptions aOpt = SC_MOD()->GetFormulaOptions(); aOpt.SetOOXMLRecalcOptions(bHardRecalc ? RECALC_ALWAYS : RECALC_NEVER); + /* XXX is this really supposed to set the ScModule options? + * Not the ScDocShell options? */ SC_MOD()->SetFormulaOptions(aOpt); batch->commit(); diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/xcl97/xcl97rec.cxx libreoffice-l10n-4.3.2/sc/source/filter/xcl97/xcl97rec.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/xcl97/xcl97rec.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/xcl97/xcl97rec.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -72,6 +72,8 @@ #include #include #include +#include +#include #include #include #include @@ -164,6 +166,8 @@ pSolverContainer->Save( rStrm ); } +namespace { + static bool IsVmlObject( const XclObj *rObj ) { switch( rObj->GetObjType() ) @@ -188,11 +192,61 @@ return nNumVml; } +bool IsValidObject( const XclObj& rObj ) +{ + if (rObj.GetObjType() == EXC_OBJTYPE_CHART) + { + // Chart object. Make sure it's a valid chart object. We skip + // invalid chart objects from exporting to prevent Excel from + // complaining on load. + + const XclExpChartObj& rChartObj = static_cast(rObj); + uno::Reference xChartDoc(rChartObj.GetChartDoc(), uno::UNO_QUERY); + if (!xChartDoc.is()) + return false; + + uno::Reference xDiagram = xChartDoc->getFirstDiagram(); + if (!xDiagram.is()) + return false; + + uno::Reference xCooSysContainer(xDiagram, uno::UNO_QUERY); + if (!xCooSysContainer.is()) + return false; + + uno::Sequence > xCooSysSeq = xCooSysContainer->getCoordinateSystems(); + if (!xCooSysSeq.getLength()) + return false; + + for (sal_Int32 nCooSys = 0; nCooSys < xCooSysSeq.getLength(); ++nCooSys) + { + Reference xChartTypeCont(xCooSysSeq[nCooSys], uno::UNO_QUERY); + if (!xChartTypeCont.is()) + return false; + + uno::Sequence > xChartTypeSeq = xChartTypeCont->getChartTypes(); + if (!xChartTypeSeq.getLength()) + // No chart type. Not good. + return false; + } + } + + return true; +} static void SaveDrawingMLObjects( XclExpObjList& rList, XclExpXmlStream& rStrm, sal_Int32& nDrawingMLCount ) { - sal_Int32 nVmlObjects = GetVmlObjectCount( rList ); - if( (rList.size() - nVmlObjects) == 0 ) + std::vector aList; + aList.reserve(rList.size()); + std::vector::iterator it = rList.begin(), itEnd = rList.end(); + for (; it != itEnd; ++it) + { + if (IsVmlObject(*it) || !IsValidObject(**it)) + continue; + + aList.push_back(*it); + } + + if (aList.empty()) return; sal_Int32 nDrawing = ++nDrawingMLCount; @@ -216,13 +270,8 @@ FSNS( XML_xmlns, XML_r ), "http://schemas.openxmlformats.org/officeDocument/2006/relationships", FSEND ); - std::vector::iterator pIter; - for ( pIter = rList.begin(); pIter != rList.end(); ++pIter ) - { - if( IsVmlObject( *pIter ) ) - continue; - (*pIter)->SaveXml( rStrm ); - } + for (it = aList.begin(), itEnd = aList.end(); it != itEnd; ++it) + (*it)->SaveXml(rStrm); pDrawing->endElement( FSNS( XML_xdr, XML_wsDr ) ); @@ -270,6 +319,7 @@ rStrm.PopStream(); } +} void XclExpObjList::SaveXml( XclExpXmlStream& rStrm ) { diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/xml/xmlexprt.cxx libreoffice-l10n-4.3.2/sc/source/filter/xml/xmlexprt.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/xml/xmlexprt.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/xml/xmlexprt.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -2945,12 +2945,12 @@ if (pProtect && pProtect->isProtected() && getDefaultVersion() > SvtSaveOptions::ODFVER_012) { if (pProtect->isOptionEnabled(ScTableProtection::SELECT_LOCKED_CELLS)) - AddAttribute(XML_NAMESPACE_OFFICE_EXT, XML_SELECT_PROTECTED_CELLS, XML_TRUE); + AddAttribute(XML_NAMESPACE_LO_EXT, XML_SELECT_PROTECTED_CELLS, XML_TRUE); if (pProtect->isOptionEnabled(ScTableProtection::SELECT_UNLOCKED_CELLS)) - AddAttribute(XML_NAMESPACE_OFFICE_EXT, XML_SELECT_UNPROTECTED_CELLS, XML_TRUE); + AddAttribute(XML_NAMESPACE_LO_EXT, XML_SELECT_UNPROTECTED_CELLS, XML_TRUE); OUString aElemName = GetNamespaceMap().GetQNameByKey( - XML_NAMESPACE_OFFICE_EXT, GetXMLToken(XML_TABLE_PROTECTION)); + XML_NAMESPACE_LO_EXT, GetXMLToken(XML_TABLE_PROTECTION)); SvXMLElementExport aElemProtected(*this, aElemName, true, true); } diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/xml/xmlimprt.cxx libreoffice-l10n-4.3.2/sc/source/filter/xml/xmlimprt.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/xml/xmlimprt.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/xml/xmlimprt.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -817,6 +817,7 @@ { XML_NAMESPACE_TABLE, XML_TABLE_COLUMNS, XML_TOK_TABLE_COLS }, { XML_NAMESPACE_TABLE, XML_TABLE_COLUMN, XML_TOK_TABLE_COL }, { XML_NAMESPACE_TABLE, XML_TABLE_PROTECTION, XML_TOK_TABLE_PROTECTION }, + { XML_NAMESPACE_LO_EXT, XML_TABLE_PROTECTION, XML_TOK_TABLE_PROTECTION_EXT }, { XML_NAMESPACE_OFFICE_EXT, XML_TABLE_PROTECTION, XML_TOK_TABLE_PROTECTION_EXT }, { XML_NAMESPACE_TABLE, XML_TABLE_ROW_GROUP, XML_TOK_TABLE_ROW_GROUP }, { XML_NAMESPACE_TABLE, XML_TABLE_HEADER_ROWS, XML_TOK_TABLE_HEADER_ROWS }, @@ -847,7 +848,9 @@ { XML_NAMESPACE_TABLE, XML_SELECT_PROTECTED_CELLS, XML_TOK_TABLE_SELECT_PROTECTED_CELLS }, { XML_NAMESPACE_TABLE, XML_SELECT_UNPROTECTED_CELLS, XML_TOK_TABLE_SELECT_UNPROTECTED_CELLS }, { XML_NAMESPACE_OFFICE_EXT, XML_SELECT_PROTECTED_CELLS, XML_TOK_TABLE_SELECT_PROTECTED_CELLS_EXT }, + { XML_NAMESPACE_LO_EXT, XML_SELECT_PROTECTED_CELLS, XML_TOK_TABLE_SELECT_PROTECTED_CELLS_EXT }, { XML_NAMESPACE_OFFICE_EXT, XML_SELECT_UNPROTECTED_CELLS, XML_TOK_TABLE_SELECT_UNPROTECTED_CELLS_EXT }, + { XML_NAMESPACE_LO_EXT, XML_SELECT_UNPROTECTED_CELLS, XML_TOK_TABLE_SELECT_UNPROTECTED_CELLS_EXT }, XML_TOKEN_MAP_END }; pTableProtectionElemTokenMap = new SvXMLTokenMap(aTableProtectionTokenMap); diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/filter/xml/xmltabi.cxx libreoffice-l10n-4.3.2/sc/source/filter/xml/xmltabi.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/filter/xml/xmltabi.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/filter/xml/xmltabi.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -459,7 +459,7 @@ bSelectUnprotectedCells = IsXMLToken(aValue, XML_TRUE); break; default: - ; + SAL_WARN("sc", "unknown attribute: " << aAttrName); } } diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/ui/app/inputhdl.cxx libreoffice-l10n-4.3.2/sc/source/ui/app/inputhdl.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/ui/app/inputhdl.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/ui/app/inputhdl.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1122,7 +1122,15 @@ pActiveView->ShowCursor(); } -static void lcl_CompleteFunction( EditView* pView, const OUString& rInsert, bool& rParInserted ) +namespace { + +bool needToExtendSelection(const OUString& rSelectedText, const OUString& rInsertText) +{ + SAL_DEBUG(rSelectedText); + return !rInsertText.startsWithIgnoreAsciiCase(rSelectedText); +} + +void completeFunction( EditView* pView, const OUString& rInsert, bool& rParInserted ) { if (pView) { @@ -1132,6 +1140,29 @@ pView->SetSelection(aSel); pView->SelectCurrentWord(); + // a dot and underscore are word separators so we need special + // treatment for any formula containing a dot or underscore + if(rInsert.indexOf(".") != -1 || rInsert.indexOf("_") != -1) + { + // need to make sure that we replace also the part before the dot + // go through the word to find the match with the insert string + aSel = pView->GetSelection(); + ESelection aOldSelection = aSel; + OUString aSelectedText = pView->GetSelected(); + while(needToExtendSelection(aSelectedText, rInsert)) + { + assert(aSel.nStartPos > 0); + --aSel.nStartPos; + --aSel.nEndPos = aSel.nStartPos; + pView->SetSelection(aSel); + pView->SelectCurrentWord(); + aSelectedText = pView->GetSelected(); + } + aSel.nStartPos -= ( aSelectedText.getLength() - 1 ); + aSel.nEndPos = aOldSelection.nEndPos; + pView->SetSelection(aSel); + } + OUString aInsStr = rInsert; sal_Int32 nInsLen = aInsStr.getLength(); bool bDoParen = ( nInsLen > 1 && aInsStr[nInsLen-2] == '(' @@ -1169,6 +1200,8 @@ } } +} + void ScInputHandler::PasteFunctionData() { if (pFormulaData && miAutoPosFormula != pFormulaData->end()) @@ -1180,8 +1213,8 @@ bool bParInserted = false; DataChanging(); // Cannot be new - lcl_CompleteFunction( pTopView, aInsert, bParInserted ); - lcl_CompleteFunction( pTableView, aInsert, bParInserted ); + completeFunction( pTopView, aInsert, bParInserted ); + completeFunction( pTableView, aInsert, bParInserted ); DataChanged(); ShowTipCursor(); @@ -2835,9 +2868,22 @@ // #i75893# convert escaped URL of the document to something user friendly OUString aFileName = pObjSh->GetMedium()->GetURLObject().GetMainURL( INetURLObject::DECODE_UNAMBIGUOUS ); - aRefStr = "\'"; - aRefStr += aFileName; - aRefStr += "'#"; + switch(aAddrDetails.eConv) + { + case formula::FormulaGrammar::CONV_XL_A1 : + case formula::FormulaGrammar::CONV_XL_OOX : + case formula::FormulaGrammar::CONV_XL_R1C1 : + aRefStr = "[\'"; + aRefStr += aFileName; + aRefStr += "']"; + break; + case formula::FormulaGrammar::CONV_OOO : + default: + aRefStr = "\'"; + aRefStr += aFileName; + aRefStr += "'#"; + break; + } aRefStr += aTmp; } else diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/ui/app/scmod.cxx libreoffice-l10n-4.3.2/sc/source/ui/app/scmod.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/ui/app/scmod.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/ui/app/scmod.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1053,13 +1053,15 @@ if (pFormulaCfg && pFormulaCfg->GetCalcConfig() != rOpt.GetCalcConfig()) bCalcAll = true; - SetFormulaOptions( rOpt ); - if ( pDocSh ) { pDocSh->SetFormulaOptions( rOpt ); pDocSh->SetDocumentModified(); } + + // ScDocShell::SetFormulaOptions() may check for changed settings, so + // set the new options here after that has been called. + SetFormulaOptions( rOpt ); } diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/ui/dbgui/scuiasciiopt.cxx libreoffice-l10n-4.3.2/sc/source/ui/dbgui/scuiasciiopt.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/ui/dbgui/scuiasciiopt.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/ui/dbgui/scuiasciiopt.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -390,8 +390,19 @@ // Insert one "SYSTEM" entry for compatibility in AsciiOptions and system // independent document linkage. pLbCharSet->InsertTextEncoding( RTL_TEXTENCODING_DONTKNOW, aCharSetUser ); - pLbCharSet->SelectTextEncoding( ePreselectUnicode == RTL_TEXTENCODING_DONTKNOW ? - osl_getThreadTextEncoding() : ePreselectUnicode ); + if ( ePreselectUnicode == RTL_TEXTENCODING_DONTKNOW ) + { + rtl_TextEncoding eSystemEncoding = osl_getThreadTextEncoding(); + // Prefer UTF-8, as UTF-16 would have already been detected from the stream. + // This gives a better chance that the file is going to be opened correctly. + if ( ( eSystemEncoding == RTL_TEXTENCODING_UNICODE ) && mpDatStream ) + eSystemEncoding = RTL_TEXTENCODING_UTF8; + pLbCharSet->SelectTextEncoding( eSystemEncoding ); + } + else + { + pLbCharSet->SelectTextEncoding( ePreselectUnicode ); + } if( nCharSet >= 0 && ePreselectUnicode == RTL_TEXTENCODING_DONTKNOW ) pLbCharSet->SelectEntryPos( static_cast(nCharSet) ); diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/ui/docshell/docsh3.cxx libreoffice-l10n-4.3.2/sc/source/ui/docshell/docsh3.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/ui/docshell/docsh3.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/ui/docshell/docsh3.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -428,7 +428,7 @@ aDocument.SetDocOptions( aDocOpt ); aDocument.SetViewOptions( aViewOpt ); - SetFormulaOptions( aFormulaOpt ); + SetFormulaOptions( aFormulaOpt, bForLoading ); // Druck-Optionen werden jetzt direkt vor dem Drucken gesetzt diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/ui/docshell/docsh6.cxx libreoffice-l10n-4.3.2/sc/source/ui/docshell/docsh6.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/ui/docshell/docsh6.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/ui/docshell/docsh6.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -451,32 +451,54 @@ return true; //! Fehler erkennen } -void ScDocShell::SetFormulaOptions(const ScFormulaOptions& rOpt ) +void ScDocShell::SetFormulaOptions( const ScFormulaOptions& rOpt, bool bForLoading ) { aDocument.SetGrammar( rOpt.GetFormulaSyntax() ); - // This needs to be called first since it may re-initialize the entire - // opcode map. - if (rOpt.GetUseEnglishFuncName()) + // This is nasty because it resets module globals from within a docshell! + // For actual damage caused see fdo#82183 where an unconditional + // ScGlobal::ResetFunctionList() (without checking GetUseEnglishFuncName()) + // lead to a crash becasuse the function list was still used by the Formula + // Wizard when loading the second document. + // Do the stupid stuff only when we're not called while loading a document. + + /* TODO: bForLoading is a workaround, rather get rid of setting any + * globals from per document instances like ScDocShell. */ + + /* XXX this is utter crap, we rely on the options being set here at least + * once, for the very first document, empty or loaded. */ + static bool bInitOnce = true; + + if (!bForLoading || bInitOnce) { - // switch native symbols to English. - ScCompiler aComp(NULL, ScAddress()); - ScCompiler::OpCodeMapPtr xMap = aComp.GetOpCodeMap(::com::sun::star::sheet::FormulaLanguage::ENGLISH); - ScCompiler::SetNativeSymbols(xMap); - } - else - // re-initialize native symbols with localized function names. - ScCompiler::ResetNativeSymbols(); - - // Force re-population of function names for the function wizard, function tip etc. - ScGlobal::ResetFunctionList(); - - // Update the separators. - ScCompiler::UpdateSeparatorsNative( - rOpt.GetFormulaSepArg(), rOpt.GetFormulaSepArrayCol(), rOpt.GetFormulaSepArrayRow()); + bool bForceInit = bInitOnce; + bInitOnce = false; + if (bForceInit || rOpt.GetUseEnglishFuncName() != SC_MOD()->GetFormulaOptions().GetUseEnglishFuncName()) + { + // This needs to be called first since it may re-initialize the entire + // opcode map. + if (rOpt.GetUseEnglishFuncName()) + { + // switch native symbols to English. + ScCompiler aComp(NULL, ScAddress()); + ScCompiler::OpCodeMapPtr xMap = aComp.GetOpCodeMap(::com::sun::star::sheet::FormulaLanguage::ENGLISH); + ScCompiler::SetNativeSymbols(xMap); + } + else + // re-initialize native symbols with localized function names. + ScCompiler::ResetNativeSymbols(); + + // Force re-population of function names for the function wizard, function tip etc. + ScGlobal::ResetFunctionList(); + } + + // Update the separators. + ScCompiler::UpdateSeparatorsNative( + rOpt.GetFormulaSepArg(), rOpt.GetFormulaSepArrayCol(), rOpt.GetFormulaSepArrayRow()); - // Global interpreter settings. - ScInterpreter::SetGlobalConfig(rOpt.GetCalcConfig()); + // Global interpreter settings. + ScInterpreter::SetGlobalConfig(rOpt.GetCalcConfig()); + } // Per document interpreter settings. SetCalcConfig( rOpt.GetCalcConfig()); diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/ui/docshell/docsh.cxx libreoffice-l10n-4.3.2/sc/source/ui/docshell/docsh.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/ui/docshell/docsh.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/ui/docshell/docsh.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -320,7 +320,7 @@ { sal_Int32 nIndex = nNameLength - nLinkTabNameLength; INetURLObject aINetURLObject(aDocURLBuffer.makeStringAndClear()); - if(aName == aLinkTabName.copy(nIndex, nLinkTabNameLength) && + if(aName.match( aLinkTabName, nIndex) && (aName[nIndex - 1] == '#') && // before the table name should be the # char !aINetURLObject.HasError()) // the docname should be a valid URL { @@ -486,6 +486,8 @@ officecfg::Office::Calc::Formula::Load::ODFRecalcMode::set(sal_Int32(0), batch); ScFormulaOptions aOpt = SC_MOD()->GetFormulaOptions(); aOpt.SetODFRecalcOptions(bHardRecalc ? RECALC_ALWAYS : RECALC_NEVER); + /* XXX is this really supposed to set the ScModule options? + * Not the ScDocShell options? */ SC_MOD()->SetFormulaOptions(aOpt); batch->commit(); diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/ui/drawfunc/drtxtob1.cxx libreoffice-l10n-4.3.2/sc/source/ui/drawfunc/drtxtob1.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/ui/drawfunc/drtxtob1.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/ui/drawfunc/drtxtob1.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -54,7 +54,7 @@ OSL_ENSURE(pDlg, "Dialog create fail!"); if (nSlot == SID_CHAR_DLG_EFFECT) { - pDlg->SetCurPageId(RID_SVXPAGE_CHAR_EFFECTS); + pDlg->SetCurPageId("fonteffects"); } bool bRet = ( pDlg->Execute() == RET_OK ); diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/ui/inc/docsh.hxx libreoffice-l10n-4.3.2/sc/source/ui/inc/docsh.hxx --- libreoffice-l10n-4.3.1~rc2/sc/source/ui/inc/docsh.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/ui/inc/docsh.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -324,7 +324,7 @@ void UpdateLinks() SAL_OVERRIDE; bool ReloadTabLinks(); - void SetFormulaOptions(const ScFormulaOptions& rOpt ); + void SetFormulaOptions( const ScFormulaOptions& rOpt, bool bForLoading = false ); void SetCalcConfig( const ScCalcConfig& rConfig ); virtual void CheckConfigOptions() SAL_OVERRIDE; diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/ui/inc/tabvwsh.hxx libreoffice-l10n-4.3.2/sc/source/ui/inc/tabvwsh.hxx --- libreoffice-l10n-4.3.1~rc2/sc/source/ui/inc/tabvwsh.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/ui/inc/tabvwsh.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -20,6 +20,7 @@ #ifndef INCLUDED_SC_SOURCE_UI_INC_TABVWSH_HXX #define INCLUDED_SC_SOURCE_UI_INC_TABVWSH_HXX +#include #include #include #include @@ -33,7 +34,6 @@ #include -class FmFormShell; class SbxObject; class SdrOle2Obj; class SfxBindings; @@ -376,7 +376,8 @@ inline void SetScSbxObject( SbxObject* pOb ) { pScSbxObject = pOb; } - FmFormShell* GetFormShell() const { return pFormShell; } + virtual const FmFormShell* GetFormShell() const SAL_OVERRIDE { return pFormShell; } + virtual FmFormShell* GetFormShell() SAL_OVERRIDE { return pFormShell; } void InsertURL( const OUString& rName, const OUString& rURL, const OUString& rTarget, sal_uInt16 nMode ); diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/ui/src/scfuncs.src libreoffice-l10n-4.3.2/sc/source/ui/src/scfuncs.src --- libreoffice-l10n-4.3.1~rc2/sc/source/ui/src/scfuncs.src 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/ui/src/scfuncs.src 2014-09-16 19:56:04.000000000 +0000 @@ -8149,7 +8149,7 @@ 0; ID_FUNCTION_GRP_STATISTIC; U2S( HID_FUNC_HYP_GEOM_DIST_MS ); - 5; 0; 0; 0; 0; + 5; 0; 0; 0; 0; 0; 0; }; String 2 // Name of Parameter 1 diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/ui/view/editsh.cxx libreoffice-l10n-4.3.2/sc/source/ui/view/editsh.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/ui/view/editsh.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/ui/view/editsh.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -462,7 +462,7 @@ OSL_ENSURE(pDlg, "Dialog create fail!"); if (nSlot == SID_CHAR_DLG_EFFECT) { - pDlg->SetCurPageId(RID_SVXPAGE_CHAR_EFFECTS); + pDlg->SetCurPageId("fonteffects"); } short nRet = pDlg->Execute(); // pDlg is needed below diff -Nru libreoffice-l10n-4.3.1~rc2/sc/source/ui/view/viewfun6.cxx libreoffice-l10n-4.3.2/sc/source/ui/view/viewfun6.cxx --- libreoffice-l10n-4.3.1~rc2/sc/source/ui/view/viewfun6.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/source/ui/view/viewfun6.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -25,6 +25,7 @@ #include #include #include +#include #include "viewfunc.hxx" #include "detfunc.hxx" @@ -44,6 +45,7 @@ #include "markdata.hxx" #include "drawview.hxx" #include "globalnames.hxx" +#include "inputhdl.hxx" #include @@ -237,31 +239,210 @@ MarkAndJumpToRanges(aDestRanges); } -void ScViewFunc::InsertCurrentTime(short nCellFmt, const OUString& rUndoStr) -{ - ScViewData* pViewData = GetViewData(); - ScAddress aCurPos = pViewData->GetCurPos(); - ScDocShell* pDocSh = pViewData->GetDocShell(); - ScDocument* pDoc = pDocSh->GetDocument(); - ::svl::IUndoManager* pUndoMgr = pDocSh->GetUndoManager(); - SvNumberFormatter* pFormatter = pDoc->GetFormatTable(); - Date aActDate( Date::SYSTEM ); - double fDate = aActDate - *pFormatter->GetNullDate(); - Time aActTime( Time::SYSTEM ); - double fTime = aActTime.GetHour() / static_cast(::Time::hourPerDay) + - aActTime.GetMin() / static_cast(::Time::minutePerDay) + - aActTime.GetSec() / static_cast(::Time::secondPerDay) + - aActTime.GetNanoSec() / static_cast(::Time::nanoSecPerDay); - pUndoMgr->EnterListAction(rUndoStr, rUndoStr); - pDocSh->GetDocFunc().SetValueCell(aCurPos, fDate+fTime, true); - - // Set the new cell format only when it differs from the current cell - // format type. - sal_uInt32 nCurNumFormat = pDoc->GetNumberFormat(aCurPos); - const SvNumberformat* pEntry = pFormatter->GetEntry(nCurNumFormat); - if (!pEntry || !(pEntry->GetType() & nCellFmt)) - SetNumberFormat(nCellFmt); - pUndoMgr->LeaveListAction(); +/** Insert date or time into current cell. + + If cell is in input or edit mode, insert date/time at cursor position, else + create a date or time or date+time cell as follows: + + - key date on time cell => current date + time of cell => date+time formatted cell + - unless time cell was empty or 00:00 time => current date => date formatted cell + - key date on date+time cell => current date + 00:00 time => date+time formatted cell + - unless date was current date => current date => date formatted cell + - key date on other cell => current date => date formatted cell + - key time on date cell => date of cell + current time => date+time formatted cell + - unless date cell was empty => current time => time formatted cell + - key time on date+time cell => current time => time formatted cell + - unless cell was empty => current date+time => date+time formatted cell + - key time on other cell => current time => time formatted cell + */ +void ScViewFunc::InsertCurrentTime(short nReqFmt, const OUString& rUndoStr) +{ + ScViewData& rViewData = *GetViewData(); + + ScInputHandler* pInputHdl = SC_MOD()->GetInputHdl( rViewData.GetViewShell()); + bool bInputMode = (pInputHdl && pInputHdl->IsInputMode()); + + ScDocShell* pDocSh = rViewData.GetDocShell(); + ScDocument& rDoc = *pDocSh->GetDocument(); + ScAddress aCurPos = rViewData.GetCurPos(); + const sal_uInt32 nCurNumFormat = rDoc.GetNumberFormat(aCurPos); + SvNumberFormatter* pFormatter = rDoc.GetFormatTable(); + const SvNumberformat* pCurNumFormatEntry = pFormatter->GetEntry(nCurNumFormat); + + if (bInputMode) + { + double fVal = 0.0; + switch (nReqFmt) + { + case NUMBERFORMAT_DATE: + { + Date aActDate( Date::SYSTEM ); + fVal = aActDate - *pFormatter->GetNullDate(); + } + break; + case NUMBERFORMAT_TIME: + { + Time aActTime( Time::SYSTEM ); + fVal = aActTime.GetTimeInDays(); + } + break; + default: + assert(!"unhandled current date/time request"); + nReqFmt = NUMBERFORMAT_DATETIME; + // fallthru + case NUMBERFORMAT_DATETIME: + { + DateTime aActDateTime( DateTime::SYSTEM ); + fVal = aActDateTime - DateTime( *pFormatter->GetNullDate()); + } + break; + } + + LanguageType nLang = (pCurNumFormatEntry ? pCurNumFormatEntry->GetLanguage() : ScGlobal::eLnge); + sal_uInt32 nFormat = pFormatter->GetStandardFormat( nReqFmt, nLang); + // This would return a more precise format with seconds and 100th + // seconds for a time request. + //nFormat = pFormatter->GetStandardFormat( fVal, nFormat, nReqFmt, nLang); + OUString aString; + Color* pColor; + pFormatter->GetOutputString( fVal, nFormat, aString, &pColor); + + pInputHdl->DataChanging(); + EditView* pTopView = pInputHdl->GetTopView(); + if (pTopView) + pTopView->InsertText( aString); + EditView* pTableView = pInputHdl->GetTableView(); + if (pTableView) + pTableView->InsertText( aString); + pInputHdl->DataChanged( false, true); + } + else + { + const short nCurNumFormatType = (pCurNumFormatEntry ? + (pCurNumFormatEntry->GetType() & ~NUMBERFORMAT_DEFINED) : NUMBERFORMAT_UNDEFINED); + bool bForceReqFmt = false; + const double fCell = rDoc.GetValue( aCurPos); + // Combine requested date/time stamp with existing cell time/date, if any. + switch (nReqFmt) + { + case NUMBERFORMAT_DATE: + switch (nCurNumFormatType) + { + case NUMBERFORMAT_TIME: + // An empty cell formatted as time (or 00:00 time) shall + // not result in the current date with 00:00 time, but only + // in current date. + if (fCell != 0.0) + nReqFmt = NUMBERFORMAT_DATETIME; + break; + case NUMBERFORMAT_DATETIME: + { + // Force to only date if the existing date+time is the + // current date. This way inserting current date twice + // on an existing date+time cell can be used to force + // date, which otherwise would only be possible by + // applying a date format. + double fDate = rtl::math::approxFloor( fCell); + if (fDate == (Date( Date::SYSTEM) - *pFormatter->GetNullDate())) + bForceReqFmt = true; + } + break; + } + break; + case NUMBERFORMAT_TIME: + switch (nCurNumFormatType) + { + case NUMBERFORMAT_DATE: + // An empty cell formatted as date shall not result in the + // null date and current time, but only in current time. + if (fCell != 0.0) + nReqFmt = NUMBERFORMAT_DATETIME; + break; + case NUMBERFORMAT_DATETIME: + // Requesting current time on an empty date+time cell + // inserts both current date+time. + if (fCell == 0.0) + nReqFmt = NUMBERFORMAT_DATETIME; + else + { + // Add current time to an existing date+time where time is + // zero and date is current date, else force time only. + double fDate = rtl::math::approxFloor( fCell); + double fTime = fCell - fDate; + if (fTime == 0.0 && fDate == (Date( Date::SYSTEM) - *pFormatter->GetNullDate())) + nReqFmt = NUMBERFORMAT_DATETIME; + else + bForceReqFmt = true; + } + break; + } + break; + default: + assert(!"unhandled current date/time request"); + nReqFmt = NUMBERFORMAT_DATETIME; + // fallthru + case NUMBERFORMAT_DATETIME: + break; + } + double fVal = 0.0; + switch (nReqFmt) + { + case NUMBERFORMAT_DATE: + { + Date aActDate( Date::SYSTEM ); + fVal = aActDate - *pFormatter->GetNullDate(); + } + break; + case NUMBERFORMAT_TIME: + { + Time aActTime( Time::SYSTEM ); + fVal = aActTime.GetTimeInDays(); + } + break; + case NUMBERFORMAT_DATETIME: + switch (nCurNumFormatType) + { + case NUMBERFORMAT_DATE: + { + double fDate = rtl::math::approxFloor( fCell); + Time aActTime( Time::SYSTEM ); + fVal = fDate + aActTime.GetTimeInDays(); + } + break; + case NUMBERFORMAT_TIME: + { + double fTime = fCell - rtl::math::approxFloor( fCell); + Date aActDate( Date::SYSTEM ); + fVal = (aActDate - *pFormatter->GetNullDate()) + fTime; + } + break; + default: + { + DateTime aActDateTime( DateTime::SYSTEM ); + // Converting the null date to DateTime forces the + // correct operator-() to be used, resulting in a + // fractional date+time instead of only date value. + fVal = aActDateTime - DateTime( *pFormatter->GetNullDate()); + } + } + break; + } + + ::svl::IUndoManager* pUndoMgr = pDocSh->GetUndoManager(); + pUndoMgr->EnterListAction(rUndoStr, rUndoStr); + + pDocSh->GetDocFunc().SetValueCell(aCurPos, fVal, true); + + // Set the new cell format only when it differs from the current cell + // format type. Preserve a date+time format unless we force a format + // through. + if (bForceReqFmt || (nReqFmt != nCurNumFormatType && nCurNumFormatType != NUMBERFORMAT_DATETIME)) + SetNumberFormat(nReqFmt); + else + rViewData.UpdateInputHandler(); // update input bar with new value + + pUndoMgr->LeaveListAction(); + } } void ScViewFunc::ShowNote( bool bShow ) diff -Nru libreoffice-l10n-4.3.1~rc2/sc/uiconfig/scalc/menubar/menubar.xml libreoffice-l10n-4.3.2/sc/uiconfig/scalc/menubar/menubar.xml --- libreoffice-l10n-4.3.1~rc2/sc/uiconfig/scalc/menubar/menubar.xml 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sc/uiconfig/scalc/menubar/menubar.xml 2014-09-16 19:56:04.000000000 +0000 @@ -35,6 +35,7 @@ + Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sd/qa/unit/data/odp/masterpage_style_parent.odp and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sd/qa/unit/data/odp/masterpage_style_parent.odp differ Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sd/qa/unit/data/pptx/bnc480256.pptx and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sd/qa/unit/data/pptx/bnc480256.pptx differ diff -Nru libreoffice-l10n-4.3.1~rc2/sd/qa/unit/import-tests.cxx libreoffice-l10n-4.3.2/sd/qa/unit/import-tests.cxx --- libreoffice-l10n-4.3.1~rc2/sd/qa/unit/import-tests.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sd/qa/unit/import-tests.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -29,9 +29,12 @@ #include #include #include +#include #include #include +#include +#include #include #include #include @@ -49,6 +52,8 @@ #include +#include + using namespace ::com::sun::star; /// Impress import filters tests. @@ -59,6 +64,7 @@ void testSmoketest(); void testN759180(); void testN778859(); + void testMasterPageStyleParent(); void testFdo64512(); void testFdo71075(); void testN828390(); @@ -81,12 +87,15 @@ void testBnc870233_2(); void testBnc880763(); void testBnc862510_5(); + void testBnc480256(); + void testCreationDate(); CPPUNIT_TEST_SUITE(SdFiltersTest); CPPUNIT_TEST(testDocumentLayout); CPPUNIT_TEST(testSmoketest); CPPUNIT_TEST(testN759180); CPPUNIT_TEST(testN778859); + CPPUNIT_TEST(testMasterPageStyleParent); CPPUNIT_TEST(testFdo64512); CPPUNIT_TEST(testFdo71075); CPPUNIT_TEST(testN828390); @@ -109,6 +118,8 @@ CPPUNIT_TEST(testBnc870233_2); CPPUNIT_TEST(testBnc880763); CPPUNIT_TEST(testBnc862510_5); + CPPUNIT_TEST(testBnc480256); + CPPUNIT_TEST(testCreationDate); CPPUNIT_TEST_SUITE_END(); }; @@ -484,6 +495,45 @@ xDocShRef->DoClose(); } +void SdFiltersTest::testMasterPageStyleParent() +{ + ::sd::DrawDocShellRef xDocShRef = loadURL( getURLFromSrc("/sd/qa/unit/data/odp/masterpage_style_parent.odp")); + + SdDrawDocument *pDoc = xDocShRef->GetDoc(); + CPPUNIT_ASSERT_MESSAGE( "no document", pDoc != NULL ); + const SdrPage *pPage = pDoc->GetPage(1); + CPPUNIT_ASSERT_MESSAGE( "no page", pPage != NULL ); + + SdStyleSheetPool *const pPool(pDoc->GetSdStyleSheetPool()); + + int parents(0); + SfxStyleSheetIterator iter(pPool, SD_STYLE_FAMILY_MASTERPAGE); + for (SfxStyleSheetBase * pStyle = iter.First(); pStyle; pStyle = iter.Next()) + { + OUString const name(pStyle->GetName()); + OUString const parent(pStyle->GetParent()); + if (!parent.isEmpty()) + { + ++parents; + // check that parent exists + SfxStyleSheetBase *const pParentStyle( + pPool->Find(parent, SD_STYLE_FAMILY_MASTERPAGE)); + CPPUNIT_ASSERT(pParentStyle); + CPPUNIT_ASSERT_EQUAL(pParentStyle->GetName(), parent); + // check that parent has the same master page as pStyle + CPPUNIT_ASSERT(parent.indexOf(SD_LT_SEPARATOR) != -1); + CPPUNIT_ASSERT(name.indexOf(SD_LT_SEPARATOR) != -1); + CPPUNIT_ASSERT_EQUAL( + parent.copy(0, parent.indexOf(SD_LT_SEPARATOR)), + name.copy(0, name.indexOf(SD_LT_SEPARATOR))); + } + } + // check that there are actually parents... + CPPUNIT_ASSERT_EQUAL(16, parents); + + xDocShRef->DoClose(); +} + void SdFiltersTest::testN778859() { ::sd::DrawDocShellRef xDocShRef = loadURL(getURLFromSrc("/sd/qa/unit/data/pptx/n778859.pptx")); @@ -763,6 +813,18 @@ xDocShRef->DoClose(); } +void SdFiltersTest::testCreationDate() +{ + sd::DrawDocShellRef xDocShRef = loadURL(getURLFromSrc("/sd/qa/unit/data/fdo71434.pptx")); + uno::Reference xDocumentPropertiesSupplier(xDocShRef->GetModel(), uno::UNO_QUERY); + uno::Reference xDocumentProperties = xDocumentPropertiesSupplier->getDocumentProperties(); + util::DateTime aDate = xDocumentProperties->getCreationDate(); + OUStringBuffer aBuffer; + sax::Converter::convertDateTime(aBuffer, aDate, 0); + // Metadata wasn't imported, this was 0000-00-00. + CPPUNIT_ASSERT_EQUAL(OUString("2013-11-09T10:37:56"), aBuffer.makeStringAndClear()); +} + void SdFiltersTest::testBnc870233_1() { ::sd::DrawDocShellRef xDocShRef = loadURL(getURLFromSrc("/sd/qa/unit/data/pptx/bnc870233_1.pptx")); @@ -943,6 +1005,52 @@ xDocShRef->DoClose(); } + +void SdFiltersTest::testBnc480256() +{ + ::sd::DrawDocShellRef xDocShRef = loadURL(getURLFromSrc("/sd/qa/unit/data/pptx/bnc480256.pptx")); + // In the document, there are two tables with table background properties. + // Make sure colors are set properly for individual cells. + + // TODO: If you are working on improving table background support, expect + // this unit test to fail. In that case, feel free to change the numbers. + + SdDrawDocument *pDoc = xDocShRef->GetDoc(); + CPPUNIT_ASSERT_MESSAGE( "no document", pDoc != NULL ); + const SdrPage *pPage = pDoc->GetPage(1); + CPPUNIT_ASSERT_MESSAGE( "no page", pPage != NULL ); + + sdr::table::SdrTableObj *pTableObj; + uno::Reference< table::XCellRange > xTable; + uno::Reference< beans::XPropertySet > xCell; + sal_Int32 nColor; + + pTableObj = dynamic_cast(pPage->GetObj(0)); + CPPUNIT_ASSERT( pTableObj ); + xTable.set(pTableObj->getTable(), uno::UNO_QUERY_THROW); + + xCell.set(xTable->getCellByPosition(0, 0), uno::UNO_QUERY_THROW); + xCell->getPropertyValue("FillColor") >>= nColor; + CPPUNIT_ASSERT_EQUAL(sal_Int32(10208238), nColor); + + xCell.set(xTable->getCellByPosition(0, 1), uno::UNO_QUERY_THROW); + xCell->getPropertyValue("FillColor") >>= nColor; + CPPUNIT_ASSERT_EQUAL(sal_Int32(13032959), nColor); + + pTableObj = dynamic_cast(pPage->GetObj(1)); + CPPUNIT_ASSERT( pTableObj ); + xTable.set(pTableObj->getTable(), uno::UNO_QUERY_THROW); + + xCell.set(xTable->getCellByPosition(0, 0), uno::UNO_QUERY_THROW); + xCell->getPropertyValue("FillColor") >>= nColor; + CPPUNIT_ASSERT_EQUAL(sal_Int32(7056614), nColor); + + xCell.set(xTable->getCellByPosition(0, 1), uno::UNO_QUERY_THROW); + xCell->getPropertyValue("FillColor") >>= nColor; + CPPUNIT_ASSERT_EQUAL(sal_Int32(4626400), nColor); + + xDocShRef->DoClose(); +} CPPUNIT_TEST_SUITE_REGISTRATION(SdFiltersTest); diff -Nru libreoffice-l10n-4.3.1~rc2/sd/source/core/sdpage2.cxx libreoffice-l10n-4.3.2/sd/source/core/sdpage2.cxx --- libreoffice-l10n-4.3.1~rc2/sd/source/core/sdpage2.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sd/source/core/sdpage2.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -209,9 +209,10 @@ if (pSheet != pOldSheet) { - pObj->EndListening(*pOldSheet); + if (pOldSheet) + pObj->EndListening(*pOldSheet); - if (!pObj->IsListening(*pSheet)) + if (pSheet && !pObj->IsListening(*pSheet)) pObj->StartListening(*pSheet); } diff -Nru libreoffice-l10n-4.3.1~rc2/sd/source/core/stlsheet.cxx libreoffice-l10n-4.3.2/sd/source/core/stlsheet.cxx --- libreoffice-l10n-4.3.1~rc2/sd/source/core/stlsheet.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sd/source/core/stlsheet.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -967,16 +967,25 @@ if( !rParentName.isEmpty() ) { + OUString const name(GetName()); + sal_Int32 const sep(name.indexOf(SD_LT_SEPARATOR)); + OUString const master((sep == -1) ? OUString() : name.copy(0, sep)); boost::shared_ptr aSSSI = boost::make_shared(mxPool.get(), nFamily); for (SfxStyleSheetBase *pStyle = aSSSI->First(); pStyle; pStyle = aSSSI->Next()) { // we hope that we have only sd style sheets SdStyleSheet* pSdStyleSheet = static_cast(pStyle); - if (pSdStyleSheet->msApiName == rParentName) + OUString const curName(pStyle->GetName()); + sal_Int32 const curSep(curName.indexOf(SD_LT_SEPARATOR)); + OUString const curMaster((curSep == -1) + ? OUString() : curName.copy(0, curSep)); + // check that the master matches, as msApiName exists once per + // master page + if (pSdStyleSheet->msApiName == rParentName && master == curMaster) { if( pStyle != this ) { - SetParent( pStyle->GetName() ); + SetParent(curName); } return; } diff -Nru libreoffice-l10n-4.3.1~rc2/sd/source/filter/ppt/pptin.cxx libreoffice-l10n-4.3.2/sd/source/filter/ppt/pptin.cxx --- libreoffice-l10n-4.3.1~rc2/sd/source/filter/ppt/pptin.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sd/source/filter/ppt/pptin.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -2388,7 +2388,7 @@ } pPresObj->SetMergedItemSet(aSet); - if ( ( eAktPageKind != PPT_NOTEPAGE ) && ( nPlacementId != 0xffffffff ) ) + if ((eAktPageKind != PPT_NOTEPAGE) && (nPlacementId != 0xffffffff) && pPage->TRG_HasMasterPage()) { SdrObject* pTitleObj = ((SdPage&)pPage->TRG_GetMasterPage()).GetPresObj( PRESOBJ_TITLE ); SdrObject* pOutlineObj = ((SdPage&)pPage->TRG_GetMasterPage()).GetPresObj( PRESOBJ_OUTLINE ); diff -Nru libreoffice-l10n-4.3.1~rc2/sd/source/ui/func/fuchar.cxx libreoffice-l10n-4.3.2/sd/source/ui/func/fuchar.cxx --- libreoffice-l10n-4.3.1~rc2/sd/source/ui/func/fuchar.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sd/source/ui/func/fuchar.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -78,7 +78,7 @@ { if (rReq.GetSlot() == SID_CHAR_DLG_EFFECT) { - pDlg->SetCurPageId(RID_SVXPAGE_CHAR_EFFECTS); + pDlg->SetCurPageId("RID_SVXPAGE_CHAR_EFFECTS"); } nResult = pDlg->Execute(); diff -Nru libreoffice-l10n-4.3.1~rc2/sd/source/ui/func/fuinsert.cxx libreoffice-l10n-4.3.2/sd/source/ui/func/fuinsert.cxx --- libreoffice-l10n-4.3.1~rc2/sd/source/ui/func/fuinsert.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sd/source/ui/func/fuinsert.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -789,10 +789,19 @@ sfx2::FileDialogHelper aDlg( ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE, 0 ); aDlg.SetTitle( "Insert 3D Model" ); + +#if HAVE_FEATURE_COLLADA aDlg.AddFilter( "All supported formats", "*.json;*.dae;*.kmz" ); +#else + aDlg.AddFilter( "All supported formats", "*.json" ); +#endif + aDlg.AddFilter( "JSON - GL Transmission Format", "*.json" ); + +#if HAVE_FEATURE_COLLADA aDlg.AddFilter( "DAE - COLLADA", "*.dae" ); aDlg.AddFilter( "KMZ - Keyhole Markup language Zipped", "*.kmz" ); +#endif OUString sURL; if( aDlg.Execute() == ERRCODE_NONE ) diff -Nru libreoffice-l10n-4.3.1~rc2/sd/source/ui/remotecontrol/AvahiNetworkService.cxx libreoffice-l10n-4.3.2/sd/source/ui/remotecontrol/AvahiNetworkService.cxx --- libreoffice-l10n-4.3.1~rc2/sd/source/ui/remotecontrol/AvahiNetworkService.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sd/source/ui/remotecontrol/AvahiNetworkService.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -35,7 +35,7 @@ static AvahiEntryGroup *group = NULL; static AvahiNetworkService *avahiService = NULL; -static void create_services(AvahiClient *c); +static bool create_services(AvahiClient *c); static void entry_group_callback(AvahiEntryGroup *g, AvahiEntryGroupState state, AVAHI_GCC_UNUSED void *userdata) { assert(g == group || group == NULL); @@ -78,16 +78,19 @@ } } -static void create_services(AvahiClient *c) { +static bool create_services(AvahiClient *c) { assert(c); /* If this is the first time we're called, let's create a new * entry group if necessary */ + if(!client) + return false; if (!group) if (!(group = avahi_entry_group_new(c, entry_group_callback, NULL))) { SAL_WARN("sdremote.wifi", "avahi_entry_group_new() failed: " << avahi_strerror(avahi_client_errno(c))); avahiService->clear(); + return false; } /* If the group is empty (either because it was just created, or @@ -113,22 +116,23 @@ avahi_entry_group_reset(group); - create_services(c); - return; + return create_services(c); } SAL_WARN("sdremote.wifi", "Failed to add _impressremote._tcp service: " << avahi_strerror(ret)); avahiService->clear(); + return false; } /* Tell the server to register the service */ if ((ret = avahi_entry_group_commit(group)) < 0) { SAL_WARN("sdremote.wifi", "Failed to commit entry group: " << avahi_strerror(ret)); avahiService->clear(); + return false; } } - return; + return true; //Services we're already created } static void client_callback(AvahiClient *c, AvahiClientState state, AVAHI_GCC_UNUSED void * userdata) { @@ -174,7 +178,8 @@ return; } - create_services(client); + if(!create_services(client)) + return; /* Finally, start the event loop thread */ if (avahi_threaded_poll_start(threaded_poll) < 0) { @@ -185,7 +190,10 @@ void AvahiNetworkService::clear() { /* Call this when the app shuts down */ - avahi_threaded_poll_stop(threaded_poll); - avahi_client_free(client); - avahi_threaded_poll_free(threaded_poll); + if(threaded_poll) + avahi_threaded_poll_stop(threaded_poll); + if(client) + avahi_client_free(client); + if(threaded_poll) + avahi_threaded_poll_free(threaded_poll); } diff -Nru libreoffice-l10n-4.3.1~rc2/sd/source/ui/slidesorter/controller/SlsPageSelector.cxx libreoffice-l10n-4.3.2/sd/source/ui/slidesorter/controller/SlsPageSelector.cxx --- libreoffice-l10n-4.3.1~rc2/sd/source/ui/slidesorter/controller/SlsPageSelector.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sd/source/ui/slidesorter/controller/SlsPageSelector.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -388,11 +388,6 @@ break; } } - if ( ! pCurrentPageDescriptor && nPageCount>0) - { - // No page is selected. Make the first slide the current page. - pCurrentPageDescriptor = mrModel.GetPageDescriptor(0); - } if (pCurrentPageDescriptor) { diff -Nru libreoffice-l10n-4.3.1~rc2/sd/source/ui/view/DocumentRenderer.cxx libreoffice-l10n-4.3.2/sd/source/ui/view/DocumentRenderer.cxx --- libreoffice-l10n-4.3.1~rc2/sd/source/ui/view/DocumentRenderer.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sd/source/ui/view/DocumentRenderer.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1418,7 +1418,19 @@ else if (rInfo.maPageSize.Width() < rInfo.maPageSize.Height()) rInfo.meOrientation = ORIENTATION_LANDSCAPE; - const Size aPaperSize (rInfo.mpPrinter->GetPaperSize()); + // Draw should abide by specified paper size + Size aPaperSize; + if (mpOptions->IsDraw()) + { + aPaperSize.setWidth(rInfo.maPageSize.Width()); + aPaperSize.setHeight(rInfo.maPageSize.Height()); + } + else + { + aPaperSize.setWidth(rInfo.mpPrinter->GetPaperSize().Width()); + aPaperSize.setHeight(rInfo.mpPrinter->GetPaperSize().Height()); + } + if( (rInfo.meOrientation == ORIENTATION_LANDSCAPE && (aPaperSize.Width() < aPaperSize.Height())) || @@ -1483,10 +1495,21 @@ if (mpOptions->IsTime()) aInfo.msTimeDate += GetSdrGlobalData().GetLocaleData()->getTime( Time( Time::SYSTEM ), false, false ); - aInfo.maPrintSize = aInfo.mpPrinter->GetOutputSize(); - maPrintSize = awt::Size( - aInfo.mpPrinter->GetPaperSize().Width(), - aInfo.mpPrinter->GetPaperSize().Height()); + + // Draw should use specified paper size when printing + if (mpOptions->IsDraw()) + { + aInfo.maPrintSize = mrBase.GetDocument()->GetSdPage(0, PK_STANDARD)->GetSize(); + maPrintSize = awt::Size(aInfo.maPrintSize.Width(), + aInfo.maPrintSize.Height()); + } + else + { + aInfo.maPrintSize = aInfo.mpPrinter->GetOutputSize(); + maPrintSize = awt::Size( + aInfo.mpPrinter->GetPaperSize().Width(), + aInfo.mpPrinter->GetPaperSize().Height()); + } switch (mpOptions->GetOutputQuality()) { diff -Nru libreoffice-l10n-4.3.1~rc2/sd/uiconfig/sdraw/menubar/menubar.xml libreoffice-l10n-4.3.2/sd/uiconfig/sdraw/menubar/menubar.xml --- libreoffice-l10n-4.3.1~rc2/sd/uiconfig/sdraw/menubar/menubar.xml 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sd/uiconfig/sdraw/menubar/menubar.xml 2014-09-16 19:56:04.000000000 +0000 @@ -35,6 +35,7 @@ + diff -Nru libreoffice-l10n-4.3.1~rc2/sd/uiconfig/simpress/menubar/menubar.xml libreoffice-l10n-4.3.2/sd/uiconfig/simpress/menubar/menubar.xml --- libreoffice-l10n-4.3.1~rc2/sd/uiconfig/simpress/menubar/menubar.xml 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sd/uiconfig/simpress/menubar/menubar.xml 2014-09-16 19:56:04.000000000 +0000 @@ -35,6 +35,7 @@ + diff -Nru libreoffice-l10n-4.3.1~rc2/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx libreoffice-l10n-4.3.2/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx --- libreoffice-l10n-4.3.1~rc2/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -572,7 +572,7 @@ link->getRect( &x1, &y1, &x2, &y2 ); LinkAction* pAction = link->getAction(); - if( pAction->getKind() == actionURI ) + if (pAction && pAction->getKind() == actionURI) { const char* pURI = static_cast(pAction)->getURI()->getCString(); diff -Nru libreoffice-l10n-4.3.1~rc2/sfx2/sdi/sfx.sdi libreoffice-l10n-4.3.2/sfx2/sdi/sfx.sdi --- libreoffice-l10n-4.3.1~rc2/sfx2/sdi/sfx.sdi 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sfx2/sdi/sfx.sdi 2014-09-16 19:56:04.000000000 +0000 @@ -4235,7 +4235,7 @@ SfxStringItem ObjectMenue SID_OBJECT -(SfxUInt16Item VerbID SID_OBJECT) +(SfxInt16Item VerbID SID_OBJECT) [ /* flags: */ AutoUpdate = FALSE, diff -Nru libreoffice-l10n-4.3.1~rc2/sfx2/source/appl/sfxpicklist.cxx libreoffice-l10n-4.3.2/sfx2/source/appl/sfxpicklist.cxx --- libreoffice-l10n-4.3.1~rc2/sfx2/source/appl/sfxpicklist.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sfx2/source/appl/sfxpicklist.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -196,7 +196,9 @@ OUString aThumbnail; // don't generate thumbnail when in headless mode, or on non-desktop (?) #if HAVE_FEATURE_DESKTOP - if (!pDocSh->IsModified() && !Application::IsHeadlessModeEnabled()) + SFX_ITEMSET_ARG( pMed->GetItemSet(), pEncryptionDataItem, SfxUnoAnyItem, SID_ENCRYPTIONDATA, false ); + + if (!pDocSh->IsModified() && !pEncryptionDataItem && !Application::IsHeadlessModeEnabled()) { // not modified => the document matches what is in the shell boost::shared_ptr pMetaFile = pDocSh->GetPreviewMetaFile(); diff -Nru libreoffice-l10n-4.3.1~rc2/sfx2/source/dialog/filedlghelper.cxx libreoffice-l10n-4.3.2/sfx2/source/dialog/filedlghelper.cxx --- libreoffice-l10n-4.3.1~rc2/sfx2/source/dialog/filedlghelper.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sfx2/source/dialog/filedlghelper.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -789,23 +789,20 @@ { ErrCode nRet = ERRCODE_NONE; - if ( ! maGraphic ) - { - OUString aPath;; - Sequence < OUString > aPathSeq = mxFileDlg->getFiles(); + // rhbz#1079672 do not return maGraphic, it need not be the selected file - if ( aPathSeq.getLength() == 1 ) - { - aPath = aPathSeq[0]; - } + OUString aPath;; + Sequence aPathSeq = mxFileDlg->getFiles(); - if ( !aPath.isEmpty() ) - nRet = getGraphic( aPath, rGraphic ); - else - nRet = ERRCODE_IO_GENERAL; + if (aPathSeq.getLength() == 1) + { + aPath = aPathSeq[0]; } + + if (!aPath.isEmpty()) + nRet = getGraphic(aPath, rGraphic); else - rGraphic = maGraphic; + nRet = ERRCODE_IO_GENERAL; return nRet; } diff -Nru libreoffice-l10n-4.3.1~rc2/sfx2/source/view/viewfrm.cxx libreoffice-l10n-4.3.2/sfx2/source/view/viewfrm.cxx --- libreoffice-l10n-4.3.1~rc2/sfx2/source/view/viewfrm.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sfx2/source/view/viewfrm.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -859,8 +859,15 @@ { case SID_EDITDOC: { - if ( !pSh || !pSh->HasName() || !( pSh->Get_Impl()->nLoadedFlags & SFX_LOADED_MAINDOCUMENT ) - || pSh->GetCreateMode() == SFX_CREATE_MODE_EMBEDDED ) + const SfxViewShell *pVSh; + const SfxShell *pFSh; + if ( !pSh || + !pSh->HasName() || + !( pSh->Get_Impl()->nLoadedFlags & SFX_LOADED_MAINDOCUMENT ) || + ( pSh->GetCreateMode() == SFX_CREATE_MODE_EMBEDDED && + ( !(pVSh = pSh->GetViewShell()) || + !(pFSh = pVSh->GetFormShell()) || + !pFSh->IsDesignMode()))) rSet.DisableItem( SID_EDITDOC ); else { @@ -2279,7 +2286,7 @@ case SID_OBJECT: { - SFX_REQUEST_ARG( rReq, pItem, SfxUInt16Item, SID_OBJECT, false ); + SFX_REQUEST_ARG( rReq, pItem, SfxInt16Item, SID_OBJECT, false ); SfxViewShell *pViewShell = GetViewShell(); if ( pViewShell && pItem ) diff -Nru libreoffice-l10n-4.3.1~rc2/shell/Module_shell.mk libreoffice-l10n-4.3.2/shell/Module_shell.mk --- libreoffice-l10n-4.3.1~rc2/shell/Module_shell.mk 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/shell/Module_shell.mk 2014-09-16 19:56:04.000000000 +0000 @@ -115,12 +115,19 @@ $(eval $(call gb_Module_add_targets,shell,\ Executable_gnome_open_url \ - Executable_uri_encode \ - Library_cmdmail \ Library_recentfile \ Package_scripts \ Package_scripts_gnome \ Package_scripts_kde \ +)) + +endif + +ifneq ($(OS),WNT) + +$(eval $(call gb_Module_add_targets,shell,\ + Executable_uri_encode \ + Library_cmdmail \ Package_senddoc \ )) diff -Nru libreoffice-l10n-4.3.1~rc2/solenv/bin/modules/installer/windows/msp.pm libreoffice-l10n-4.3.2/solenv/bin/modules/installer/windows/msp.pm --- libreoffice-l10n-4.3.1~rc2/solenv/bin/modules/installer/windows/msp.pm 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/solenv/bin/modules/installer/windows/msp.pm 2014-09-16 19:56:04.000000000 +0000 @@ -877,19 +877,14 @@ my $packageversion = $allvariables->{'PACKAGEVERSION'}; - if ( $packageversion =~ /^\s*(\d+)\.(\d+)\.(\d+)\s*$/ ) + if ( $packageversion =~ /^\s*(\d+)\.(\d+)\.(\d+)\.(\d+)\s*$/ ) { my $major = $1; my $minor = $2; my $micro = $3; - my $concat = 100 * $minor + $micro; - $packageversion = $major . "\." . $concat; + my $patch = $4; + $patchsequence = $major . "\." . $minor . "\." . $micro . "\." . $patch; } - my $vendornumber = 0; - if ( $allvariables->{'VENDORPATCHVERSION'} ) { $vendornumber = $allvariables->{'VENDORPATCHVERSION'}; } - $patchsequence = $packageversion . "\." . $installer::globals::buildid . "\." . $vendornumber; - - if ( $allvariables->{'PATCHSEQUENCE'} ) { $patchsequence = $allvariables->{'PATCHSEQUENCE'}; } return $patchsequence; } @@ -1194,12 +1189,14 @@ # Sign .msp file if ( defined($ENV{'WINDOWS_BUILD_SIGNING'}) && ($ENV{'WINDOWS_BUILD_SIGNING'} eq 'TRUE') ) { + my $localmspfilename = $mspfilename; + $localmspfilename =~ s/\\/\\\\/g; my $systemcall = "signtool.exe sign "; if ( defined($ENV{'PFXFILE'}) ) { $systemcall .= "-f $ENV{'PFXFILE'} "; } if ( defined($ENV{'PFXPASSWORD'}) ) { $systemcall .= "-p $ENV{'PFXPASSWORD'} "; } if ( defined($ENV{'TIMESTAMPURL'}) ) { $systemcall .= "-t $ENV{'TIMESTAMPURL'} "; } else { $systemcall .= "-t http://timestamp.globalsign.com/scripts/timestamp.dll "; } $systemcall .= "-d \"" . $allvariables->{'PRODUCTNAME'} . " " . $allvariables->{'PRODUCTVERSION'} . " Patch " . $allvariables->{'WINDOWSPATCHLEVEL'} . "\" "; - $systemcall .= $mspfilename; + $systemcall .= $localmspfilename; installer::logger::print_message( "... code signing and timestamping with signtool.exe ...\n" ); my $returnvalue = system($systemcall); diff -Nru libreoffice-l10n-4.3.1~rc2/solenv/bin/modules/installer/windows/update.pm libreoffice-l10n-4.3.2/solenv/bin/modules/installer/windows/update.pm --- libreoffice-l10n-4.3.1~rc2/solenv/bin/modules/installer/windows/update.pm 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/solenv/bin/modules/installer/windows/update.pm 2014-09-16 19:56:04.000000000 +0000 @@ -423,10 +423,10 @@ foreach my $mergemodule ( @{$mergemodules} ) { my $filename = $mergemodule->{'Name'}; - my $mergefile = installer::scriptitems::get_sourcepath_from_filename_and_includepath(\$filename, $includepatharrayref, 1); + my $mergefile = $ENV{'MSM_PATH'} . $filename; - if ( $$mergefile eq "" ) { installer::exiter::exit_program("ERROR: msm file not found: $filename !", "readmergedatabase"); } - my $completesource = $$mergefile; + if ( ! -f $mergefile ) { installer::exiter::exit_program("ERROR: msm file not found: $filename !", "readmergedatabase"); } + my $completesource = $mergefile; my $mergegid = $mergemodule->{'gid'}; my $workdir = $mergemoduledir . $installer::globals::separator . $mergegid; diff -Nru libreoffice-l10n-4.3.1~rc2/solenv/bin/modules/installer.pm libreoffice-l10n-4.3.2/solenv/bin/modules/installer.pm --- libreoffice-l10n-4.3.1~rc2/solenv/bin/modules/installer.pm 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/solenv/bin/modules/installer.pm 2014-09-16 19:56:04.000000000 +0000 @@ -1651,7 +1651,7 @@ if ( $allvariableshashref->{'OOODOWNLOADNAME'} ) { $$downloadname = installer::download::set_download_filename($languagestringref, $allvariableshashref); } else { $$downloadname = installer::download::resolve_variables_in_downloadname($allvariableshashref, $$downloadname, $languagestringref); } installer::systemactions::rename_one_file( $finalinstalldir . $installer::globals::separator . $installer::globals::shortmsidatabasename, $finalinstalldir . $installer::globals::separator . $$downloadname . ".msi" ); - if ( defined($ENV{'WINDOWS_BUILD_SIGNING'}) && ($ENV{'WINDOWS_BUILD_SIGNING'} eq 'TRUE') ) + if ( defined($ENV{'WINDOWS_BUILD_SIGNING'}) && ($ENV{'WINDOWS_BUILD_SIGNING'} eq 'TRUE') && ( $allvariableshashref->{'CREATE_MSP_INSTALLSET'} eq '0')) { my $systemcall = "signtool.exe sign "; if ( defined($ENV{'PFXFILE'}) ) { $systemcall .= "-f $ENV{'PFXFILE'} "; } diff -Nru libreoffice-l10n-4.3.1~rc2/solenv/gdb/libreoffice/sw.py libreoffice-l10n-4.3.2/solenv/gdb/libreoffice/sw.py --- libreoffice-l10n-4.3.1~rc2/solenv/gdb/libreoffice/sw.py 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/solenv/gdb/libreoffice/sw.py 2014-09-16 19:56:04.000000000 +0000 @@ -19,8 +19,10 @@ def to_string(self): node = self.value['nNode']['pNd'].dereference(); + block = node['pBlock'].dereference(); + nodeindex = block['nStart'] + node['nOffset'] offset = self.value['nContent']['m_nIndex'] - return "%s (node %d, offset %d)" % (self.typename, node['nOffset'], offset) + return "%s (node %d, offset %d)" % (self.typename, nodeindex, offset) class SwNodeIndexPrinter(object): '''Prints SwNodeIndex.''' @@ -31,7 +33,9 @@ def to_string(self): node = self.value['pNd'].dereference(); - return "%s (node %d)" % (self.typename, node['nOffset']) + block = node['pBlock'].dereference(); + nodeindex = block['nStart'] + node['nOffset'] + return "%s (node %d)" % (self.typename, nodeindex) class SwIndexPrinter(object): '''Prints SwIndex.''' Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/src/3121aaf3e13e5d88dfff13fb4a5f1ab8-hunspell-1.3.2.tar.gz and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/src/3121aaf3e13e5d88dfff13fb4a5f1ab8-hunspell-1.3.2.tar.gz differ Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/src/4967da60b23413604c9e563beacc63b4-hunspell-1.3.3.tar.gz and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/src/4967da60b23413604c9e563beacc63b4-hunspell-1.3.3.tar.gz differ diff -Nru libreoffice-l10n-4.3.1~rc2/src/fetch.log libreoffice-l10n-4.3.2/src/fetch.log --- libreoffice-l10n-4.3.1~rc2/src/fetch.log 2014-08-26 15:43:34.000000000 +0000 +++ libreoffice-l10n-4.3.2/src/fetch.log 2014-09-22 13:17:11.000000000 +0000 @@ -1,322 +1,322 @@ -Tue Aug 26 15:39:04 UTC 2014 +Mon Sep 22 13:12:55 UTC 2014 % 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 353k 100 353k 0 0 615k 0 --:--:-- --:--:-- --:--:-- 614k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 353k 100 353k 0 0 853k 0 --:--:-- --:--:-- --:--:-- 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 87 512k 87 447k 0 0 1018k 0 --:--:-- --:--:-- --:--:-- 1017k 100 512k 100 512k 0 0 1059k 0 --:--:-- --:--:-- --:--:-- 1059k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 512k 100 512k 0 0 1166k 0 --:--:-- --:--:-- --:--:-- 1168k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 74 1838k 74 1368k 0 0 1491k 0 0:00:01 --:--:-- 0:00:01 1490k 100 1838k 100 1838k 0 0 1447k 0 0:00:01 0:00:01 --:--:-- 1448k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 1838k 3 65056 0 0 498k 0 0:00:03 --:--:-- 0:00:03 496k 88 1838k 88 1624k 0 0 1442k 0 0:00:01 0:00:01 --:--:-- 1441k 100 1838k 100 1838k 0 0 1476k 0 0:00:01 0:00:01 --:--:-- 1476k % 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 1278k 0 --:--:-- --:--:-- --:--:-- 1279k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 721k 100 721k 0 0 1265k 0 --:--:-- --:--:-- --:--:-- 1266k % 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 183k 100 183k 0 0 570k 0 --:--:-- --:--:-- --:--:-- 571k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 98 183k 98 179k 0 0 804k 0 --:--:-- --:--:-- --:--:-- 802k 100 183k 100 183k 0 0 815k 0 --:--:-- --:--:-- --:--:-- 813k % 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 956k 70 678k 0 0 1041k 0 --:--:-- --:--:-- --:--:-- 1041k 100 956k 100 956k 0 0 1157k 0 --:--:-- --:--:-- --:--:-- 1156k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 956k 100 956k 0 0 1297k 0 --:--:-- --:--:-- --:--:-- 1299k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 58 853k 58 500k 0 0 652k 0 0:00:01 --:--:-- 0:00:01 652k 100 853k 100 853k 0 0 730k 0 0:00:01 0:00:01 --:--:-- 730k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 853k 1 15719 0 0 82006 0 0:00:10 --:--:-- 0:00:10 81869 100 853k 100 853k 0 0 1150k 0 --:--:-- --:--:-- --:--:-- 1150k % 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 425k 0 0 760k 0 0:01:14 --:--:-- 0:01:14 759k 3 55.4M 3 1760k 0 0 1131k 0 0:00:50 0:00:01 0:00:49 1131k 5 55.4M 5 3347k 0 0 1309k 0 0:00:43 0:00:02 0:00:41 1309k 8 55.4M 8 4640k 0 0 1305k 0 0:00:43 0:00:03 0:00:40 1305k 10 55.4M 10 6138k 0 0 1347k 0 0:00:42 0:00:04 0:00:38 1347k 13 55.4M 13 7618k 0 0 1368k 0 0:00:41 0:00:05 0:00:36 1437k 16 55.4M 16 9209k 0 0 1404k 0 0:00:40 0:00:06 0:00:34 1489k 19 55.4M 19 10.6M 0 0 1438k 0 0:00:39 0:00:07 0:00:32 1504k 21 55.4M 21 11.9M 0 0 1434k 0 0:00:39 0:00:08 0:00:31 1526k 23 55.4M 23 13.2M 0 0 1415k 0 0:00:40 0:00:09 0:00:31 1478k 26 55.4M 26 14.6M 0 0 1423k 0 0:00:39 0:00:10 0:00:29 1483k 29 55.4M 29 16.2M 0 0 1441k 0 0:00:39 0:00:11 0:00:28 1489k 32 55.4M 32 17.7M 0 0 1448k 0 0:00:39 0:00:12 0:00:27 1462k 33 55.4M 33 18.8M 0 0 1423k 0 0:00:39 0:00:13 0:00:26 1403k 35 55.4M 35 19.7M 0 0 1383k 0 0:00:41 0:00:14 0:00:27 1322k 36 55.4M 36 20.4M 0 0 1344k 0 0:00:42 0:00:15 0:00:27 1180k 38 55.4M 38 21.2M 0 0 1310k 0 0:00:43 0:00:16 0:00:27 1012k 39 55.4M 39 22.0M 0 0 1281k 0 0:00:44 0:00:17 0:00:27 869k 41 55.4M 41 22.9M 0 0 1264k 0 0:00:44 0:00:18 0:00:26 836k 44 55.4M 44 24.4M 0 0 1278k 0 0:00:44 0:00:19 0:00:25 968k 46 55.4M 46 26.0M 0 0 1295k 0 0:00:43 0:00:20 0:00:23 1141k 49 55.4M 49 27.6M 0 0 1314k 0 0:00:43 0:00:21 0:00:22 1329k 52 55.4M 52 29.3M 0 0 1331k 0 0:00:42 0:00:22 0:00:20 1510k 55 55.4M 55 30.9M 0 0 1345k 0 0:00:42 0:00:23 0:00:19 1645k 58 55.4M 58 32.5M 0 0 1357k 0 0:00:41 0:00:24 0:00:17 1665k 61 55.4M 61 34.1M 0 0 1367k 0 0:00:41 0:00:25 0:00:16 1660k 63 55.4M 63 35.2M 0 0 1357k 0 0:00:41 0:00:26 0:00:15 1542k 66 55.4M 66 36.7M 0 0 1367k 0 0:00:41 0:00:27 0:00:14 1529k 68 55.4M 68 38.2M 0 0 1371k 0 0:00:41 0:00:28 0:00:13 1493k 71 55.4M 71 39.7M 0 0 1378k 0 0:00:41 0:00:29 0:00:12 1483k 74 55.4M 74 41.2M 0 0 1383k 0 0:00:41 0:00:30 0:00:11 1470k 77 55.4M 77 42.8M 0 0 1389k 0 0:00:40 0:00:31 0:00:09 1560k 79 55.4M 79 44.3M 0 0 1394k 0 0:00:40 0:00:32 0:00:08 1548k 82 55.4M 82 45.8M 0 0 1399k 0 0:00:40 0:00:33 0:00:07 1556k 85 55.4M 85 47.3M 0 0 1403k 0 0:00:40 0:00:34 0:00:06 1551k 88 55.4M 88 48.8M 0 0 1407k 0 0:00:40 0:00:35 0:00:05 1553k 90 55.4M 90 50.4M 0 0 1411k 0 0:00:40 0:00:36 0:00:04 1551k 93 55.4M 93 51.8M 0 0 1414k 0 0:00:40 0:00:37 0:00:03 1545k 96 55.4M 96 53.3M 0 0 1416k 0 0:00:40 0:00:38 0:00:02 1530k 98 55.4M 98 54.8M 0 0 1419k 0 0:00:39 0:00:39 --:--:-- 1531k 100 55.4M 100 55.4M 0 0 1422k 0 0:00:39 0:00:39 --:--:-- 1544k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 55.4M 0 477k 0 0 1181k 0 0:00:48 --:--:-- 0:00:48 1179k 3 55.4M 3 2164k 0 0 1541k 0 0:00:36 0:00:01 0:00:35 1540k 6 55.4M 6 3880k 0 0 1614k 0 0:00:35 0:00:02 0:00:33 1614k 10 55.4M 10 5684k 0 0 1667k 0 0:00:34 0:00:03 0:00:31 1666k 13 55.4M 13 7452k 0 0 1683k 0 0:00:33 0:00:04 0:00:29 1683k 16 55.4M 16 9135k 0 0 1690k 0 0:00:33 0:00:05 0:00:28 1731k 19 55.4M 19 10.6M 0 0 1701k 0 0:00:33 0:00:06 0:00:27 1746k 22 55.4M 22 12.3M 0 0 1711k 0 0:00:33 0:00:07 0:00:26 1758k 25 55.4M 25 14.0M 0 0 1713k 0 0:00:33 0:00:08 0:00:25 1745k 28 55.4M 28 15.6M 0 0 1701k 0 0:00:33 0:00:09 0:00:24 1717k 31 55.4M 31 17.2M 0 0 1701k 0 0:00:33 0:00:10 0:00:23 1713k 34 55.4M 34 19.0M 0 0 1708k 0 0:00:33 0:00:11 0:00:22 1716k 37 55.4M 37 20.7M 0 0 1713k 0 0:00:33 0:00:12 0:00:21 1716k 40 55.4M 40 22.4M 0 0 1715k 0 0:00:33 0:00:13 0:00:20 1719k 43 55.4M 43 24.1M 0 0 1716k 0 0:00:33 0:00:14 0:00:19 1745k 46 55.4M 46 25.8M 0 0 1719k 0 0:00:33 0:00:15 0:00:18 1755k 49 55.4M 49 27.5M 0 0 1718k 0 0:00:33 0:00:16 0:00:17 1743k 52 55.4M 52 29.1M 0 0 1714k 0 0:00:33 0:00:17 0:00:16 1717k 55 55.4M 55 30.7M 0 0 1710k 0 0:00:33 0:00:18 0:00:15 1696k 58 55.4M 58 32.3M 0 0 1705k 0 0:00:33 0:00:19 0:00:14 1674k 61 55.4M 61 34.0M 0 0 1707k 0 0:00:33 0:00:20 0:00:13 1673k 64 55.4M 64 35.6M 0 0 1707k 0 0:00:33 0:00:21 0:00:12 1671k 67 55.4M 67 37.3M 0 0 1705k 0 0:00:33 0:00:22 0:00:11 1671k 70 55.4M 70 39.0M 0 0 1707k 0 0:00:33 0:00:23 0:00:10 1695k 73 55.4M 73 40.7M 0 0 1709k 0 0:00:33 0:00:24 0:00:09 1723k 76 55.4M 76 42.4M 0 0 1709k 0 0:00:33 0:00:25 0:00:08 1716k 79 55.4M 79 44.0M 0 0 1709k 0 0:00:33 0:00:26 0:00:07 1716k 82 55.4M 82 45.5M 0 0 1703k 0 0:00:33 0:00:27 0:00:06 1696k 85 55.4M 85 47.2M 0 0 1703k 0 0:00:33 0:00:28 0:00:05 1687k 88 55.4M 88 48.9M 0 0 1703k 0 0:00:33 0:00:29 0:00:04 1676k 91 55.4M 91 50.5M 0 0 1703k 0 0:00:33 0:00:30 0:00:03 1674k 94 55.4M 94 52.2M 0 0 1703k 0 0:00:33 0:00:31 0:00:02 1669k 97 55.4M 97 54.0M 0 0 1707k 0 0:00:33 0:00:32 0:00:01 1728k 100 55.4M 100 55.4M 0 0 1707k 0 0:00:33 0:00:33 --:--:-- 1727k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 81 709k 81 579k 0 0 1240k 0 --:--:-- --:--:-- --:--:-- 1241k 100 709k 100 709k 0 0 1317k 0 --:--:-- --:--:-- --:--:-- 1317k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 709k 100 709k 0 0 1256k 0 --:--:-- --:--:-- --:--:-- 1258k % 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 22.4M 5 1297k 0 0 1446k 0 0:00:15 --:--:-- 0:00:15 1446k 12 22.4M 12 2871k 0 0 1513k 0 0:00:15 0:00:01 0:00:14 1513k 19 22.4M 19 4447k 0 0 1535k 0 0:00:14 0:00:02 0:00:12 1534k 26 22.4M 26 6045k 0 0 1551k 0 0:00:14 0:00:03 0:00:11 1551k 32 22.4M 32 7412k 0 0 1513k 0 0:00:15 0:00:04 0:00:11 1513k 38 22.4M 38 8891k 0 0 1507k 0 0:00:15 0:00:05 0:00:10 1518k 44 22.4M 44 10.0M 0 0 1499k 0 0:00:15 0:00:06 0:00:09 1493k 51 22.4M 51 11.6M 0 0 1512k 0 0:00:15 0:00:07 0:00:08 1498k 58 22.4M 58 13.2M 0 0 1522k 0 0:00:15 0:00:08 0:00:07 1500k 64 22.4M 64 14.3M 0 0 1488k 0 0:00:15 0:00:09 0:00:06 1463k 71 22.4M 71 15.9M 0 0 1500k 0 0:00:15 0:00:10 0:00:05 1491k 78 22.4M 78 17.5M 0 0 1512k 0 0:00:15 0:00:11 0:00:04 1531k 85 22.4M 85 19.1M 0 0 1521k 0 0:00:15 0:00:12 0:00:03 1536k 92 22.4M 92 20.7M 0 0 1530k 0 0:00:15 0:00:13 0:00:02 1543k 99 22.4M 99 22.3M 0 0 1536k 0 0:00:14 0:00:14 --:--:-- 1633k 100 22.4M 100 22.4M 0 0 1538k 0 0:00:14 0:00:14 --:--:-- 1641k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 22.4M 1 287k 0 0 759k 0 0:00:30 --:--:-- 0:00:30 758k 8 22.4M 8 1929k 0 0 1399k 0 0:00:16 0:00:01 0:00:15 1399k 15 22.4M 15 3652k 0 0 1534k 0 0:00:14 0:00:02 0:00:12 1534k 23 22.4M 23 5439k 0 0 1609k 0 0:00:14 0:00:03 0:00:11 1609k 31 22.4M 31 7134k 0 0 1629k 0 0:00:14 0:00:04 0:00:10 1629k 38 22.4M 38 8881k 0 0 1650k 0 0:00:13 0:00:05 0:00:08 1718k 46 22.4M 46 10.4M 0 0 1669k 0 0:00:13 0:00:06 0:00:07 1744k 53 22.4M 53 12.0M 0 0 1666k 0 0:00:13 0:00:07 0:00:06 1729k 60 22.4M 60 13.6M 0 0 1667k 0 0:00:13 0:00:08 0:00:05 1706k 68 22.4M 68 15.3M 0 0 1675k 0 0:00:13 0:00:09 0:00:04 1716k 75 22.4M 75 17.0M 0 0 1683k 0 0:00:13 0:00:10 0:00:03 1718k 83 22.4M 83 18.7M 0 0 1689k 0 0:00:13 0:00:11 0:00:02 1715k 91 22.4M 91 20.5M 0 0 1697k 0 0:00:13 0:00:12 0:00:01 1743k 98 22.4M 98 22.1M 0 0 1698k 0 0:00:13 0:00:13 --:--:-- 1750k 100 22.4M 100 22.4M 0 0 1700k 0 0:00:13 0:00:13 --:--:-- 1755k % 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 457k 100 457k 0 0 963k 0 --:--:-- --:--:-- --:--:-- 965k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 457k 100 457k 0 0 1095k 0 --:--:-- --:--:-- --:--:-- 1096k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 46 643k 46 298k 0 0 834k 0 --:--:-- --:--:-- --:--:-- 835k 100 643k 100 643k 0 0 1026k 0 --:--:-- --:--:-- --:--:-- 1026k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 34 643k 34 222k 0 0 748k 0 --:--:-- --:--:-- --:--:-- 748k 100 643k 100 643k 0 0 1053k 0 --:--:-- --:--:-- --:--:-- 1053k % 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 2188k 35 773k 0 0 1153k 0 0:00:01 --:--:-- 0:00:01 1153k 100 2188k 100 2188k 0 0 1335k 0 0:00:01 0:00:01 --:--:-- 1336k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 35 2188k 35 771k 0 0 1166k 0 0:00:01 --:--:-- 0:00:01 1164k 100 2188k 100 2188k 0 0 1354k 0 0:00:01 0:00:01 --:--:-- 1355k % 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 622k 100 622k 0 0 1242k 0 --:--:-- --:--:-- --:--:-- 1245k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 622k 100 622k 0 0 1148k 0 --:--:-- --:--:-- --:--:-- 1150k % 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 9.8M 4 503k 0 0 1136k 0 0:00:08 --:--:-- 0:00:08 1135k 20 9.8M 20 2105k 0 0 1459k 0 0:00:06 0:00:01 0:00:05 1459k 35 9.8M 35 3558k 0 0 1456k 0 0:00:06 0:00:02 0:00:04 1456k 46 9.8M 46 4740k 0 0 1376k 0 0:00:07 0:00:03 0:00:04 1376k 63 9.8M 63 6383k 0 0 1436k 0 0:00:07 0:00:04 0:00:03 1436k 79 9.8M 79 8039k 0 0 1476k 0 0:00:06 0:00:05 0:00:01 1506k 94 9.8M 94 9589k 0 0 1488k 0 0:00:06 0:00:06 --:--:-- 1496k 100 9.8M 100 9.8M 0 0 1495k 0 0:00:06 0:00:06 --:--:-- 1516k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 9.8M 2 260k 0 0 645k 0 0:00:15 --:--:-- 0:00:15 645k 18 9.8M 18 1862k 0 0 1327k 0 0:00:07 0:00:01 0:00:06 1326k 35 9.8M 35 3581k 0 0 1489k 0 0:00:06 0:00:02 0:00:04 1489k 53 9.8M 53 5392k 0 0 1584k 0 0:00:06 0:00:03 0:00:03 1584k 70 9.8M 70 7117k 0 0 1616k 0 0:00:06 0:00:04 0:00:02 1616k 87 9.8M 87 8791k 0 0 1627k 0 0:00:06 0:00:05 0:00:01 1706k 100 9.8M 100 9.8M 0 0 1636k 0 0:00:06 0:00:06 --:--:-- 1727k % 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 542k 100 542k 0 0 1245k 0 --:--:-- --:--:-- --:--:-- 1246k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 18 542k 18 99k 0 0 606k 0 --:--:-- --:--:-- --:--:-- 603k 100 542k 100 542k 0 0 1217k 0 --:--:-- --:--:-- --:--:-- 1215k % 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 835k 2 24430 0 0 162k 0 0:00:05 --:--:-- 0:00:05 162k 100 835k 100 835k 0 0 1293k 0 --:--:-- --:--:-- --:--:-- 1293k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 77 835k 77 649k 0 0 954k 0 --:--:-- --:--:-- --:--:-- 954k 100 835k 100 835k 0 0 1048k 0 --:--:-- --:--:-- --:--:-- 1048k % 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 365k 0 --:--:-- --:--:-- --:--:-- 367k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 42487 100 42487 0 0 283k 0 --:--:-- --:--:-- --:--:-- 284k % 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 2743k 12 330k 0 0 1088k 0 0:00:02 --:--:-- 0:00:02 1085k 58 2743k 58 1614k 0 0 1220k 0 0:00:02 0:00:01 0:00:01 1220k 100 2743k 100 2743k 0 0 1222k 0 0:00:02 0:00:02 --:--:-- 1223k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 26 2743k 26 714k 0 0 1081k 0 0:00:02 --:--:-- 0:00:02 1080k 85 2743k 85 2346k 0 0 1414k 0 0:00:01 0:00:01 --:--:-- 1414k 100 2743k 100 2743k 0 0 1446k 0 0:00:01 0:00:01 --:--:-- 1446k % 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 455k 100 455k 0 0 747k 0 --:--:-- --:--:-- --:--:-- 747k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 455k 100 455k 0 0 740k 0 --:--:-- --:--:-- --:--:-- 741k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 91 452k 91 412k 0 0 1127k 0 --:--:-- --:--:-- --:--:-- 1126k 100 452k 100 452k 0 0 1182k 0 --:--:-- --:--:-- --:--:-- 1181k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 452k 0 1196 0 0 8936 0 0:00:51 --:--:-- 0:00:51 8925 100 452k 100 452k 0 0 873k 0 --:--:-- --:--:-- --:--:-- 873k % 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 413k 100 413k 0 0 1032k 0 --:--:-- --:--:-- --:--:-- 1034k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 413k 100 413k 0 0 1108k 0 --:--:-- --:--:-- --:--:-- 1111k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 99 549k 99 544k 0 0 1026k 0 --:--:-- --:--:-- --:--:-- 1026k 100 549k 100 549k 0 0 1031k 0 --:--:-- --:--:-- --:--:-- 1030k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 549k 0 1196 0 0 7704 0 0:01:13 --:--:-- 0:01:13 7666 100 549k 100 549k 0 0 891k 0 --:--:-- --:--:-- --:--:-- 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 8 13.1M 8 1088k 0 0 1139k 0 0:00:11 --:--:-- 0:00:11 1138k 14 13.1M 14 1973k 0 0 1002k 0 0:00:13 0:00:01 0:00:12 1002k 20 13.1M 20 2797k 0 0 946k 0 0:00:14 0:00:02 0:00:12 946k 29 13.1M 29 3984k 0 0 1007k 0 0:00:13 0:00:03 0:00:10 1007k 39 13.1M 39 5276k 0 0 1064k 0 0:00:12 0:00:04 0:00:08 1064k 43 13.1M 43 5889k 0 0 988k 0 0:00:13 0:00:05 0:00:08 960k 54 13.1M 54 7384k 0 0 1061k 0 0:00:12 0:00:06 0:00:06 1085k 66 13.1M 66 8920k 0 0 1120k 0 0:00:12 0:00:07 0:00:05 1224k 78 13.1M 78 10.2M 0 0 1176k 0 0:00:11 0:00:08 0:00:03 1310k 89 13.1M 89 11.8M 0 0 1213k 0 0:00:11 0:00:09 0:00:02 1361k 100 13.1M 100 13.1M 0 0 1247k 0 0:00:10 0:00:10 --:--:-- 1565k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 13.1M 3 415k 0 0 950k 0 0:00:14 --:--:-- 0:00:14 950k 13 13.1M 13 1887k 0 0 1311k 0 0:00:10 0:00:01 0:00:09 1311k 26 13.1M 26 3543k 0 0 1452k 0 0:00:09 0:00:02 0:00:07 1452k 37 13.1M 37 5104k 0 0 1483k 0 0:00:09 0:00:03 0:00:06 1483k 50 13.1M 50 6820k 0 0 1537k 0 0:00:08 0:00:04 0:00:04 1537k 63 13.1M 63 8496k 0 0 1562k 0 0:00:08 0:00:05 0:00:03 1616k 75 13.1M 75 9.9M 0 0 1585k 0 0:00:08 0:00:06 0:00:02 1664k 88 13.1M 88 11.6M 0 0 1601k 0 0:00:08 0:00:07 0:00:01 1673k 100 13.1M 100 13.1M 0 0 1602k 0 0:00:08 0:00:08 --:--:-- 1685k % 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 1512k 0 1168 0 0 10591 0 0:02:26 --:--:-- 0:02:26 10618 98 1512k 98 1490k 0 0 1375k 0 0:00:01 0:00:01 --:--:-- 1374k 100 1512k 100 1512k 0 0 1378k 0 0:00:01 0:00:01 --:--:-- 1378k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 71 1512k 71 1084k 0 0 1148k 0 0:00:01 --:--:-- 0:00:01 1148k 100 1512k 100 1512k 0 0 1221k 0 0:00:01 0:00:01 --:--:-- 1222k % 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 332k 100 332k 0 0 1144k 0 --:--:-- --:--:-- --:--:-- 1146k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 332k 100 332k 0 0 910k 0 --:--:-- --:--:-- --:--:-- 911k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 50 1457k 50 737k 0 0 1174k 0 0:00:01 --:--:-- 0:00:01 1173k 100 1457k 100 1457k 0 0 1385k 0 0:00:01 0:00:01 --:--:-- 1385k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 14 1457k 14 208k 0 0 765k 0 0:00:01 --:--:-- 0:00:01 765k 100 1457k 100 1457k 0 0 1494k 0 --:--:-- --:--:-- --:--:-- 1493k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 72 840k 72 612k 0 0 1145k 0 --:--:-- --:--:-- --:--:-- 1144k 100 840k 100 840k 0 0 1282k 0 --:--:-- --:--:-- --:--:-- 1282k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 840k 0 1202 0 0 4223 0 0:03:23 --:--:-- 0:03:23 4217 100 840k 100 840k 0 0 957k 0 --:--:-- --:--:-- --:--:-- 957k % 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 5166k 22 1153k 0 0 1378k 0 0:00:03 --:--:-- 0:00:03 1377k 53 5166k 53 2783k 0 0 1514k 0 0:00:03 0:00:01 0:00:02 1514k 82 5166k 82 4245k 0 0 1493k 0 0:00:03 0:00:02 0:00:01 1493k 100 5166k 100 5166k 0 0 1483k 0 0:00:03 0:00:03 --:--:-- 1483k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 5166k 3 201k 0 0 601k 0 0:00:08 --:--:-- 0:00:08 602k 23 5166k 23 1230k 0 0 922k 0 0:00:05 0:00:01 0:00:04 922k 37 5166k 37 1960k 0 0 828k 0 0:00:06 0:00:02 0:00:04 828k 55 5166k 55 2845k 0 0 840k 0 0:00:06 0:00:03 0:00:03 839k 69 5166k 69 3602k 0 0 816k 0 0:00:06 0:00:04 0:00:02 816k 87 5166k 87 4494k 0 0 826k 0 0:00:06 0:00:05 0:00:01 841k 100 5166k 100 5166k 0 0 844k 0 0:00:06 0:00:06 --:--:-- 823k % 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 6776k 2 137k 0 0 454k 0 0:00:14 --:--:-- 0:00:14 454k 13 6776k 13 897k 0 0 692k 0 0:00:09 0:00:01 0:00:08 691k 28 6776k 28 1935k 0 0 841k 0 0:00:08 0:00:02 0:00:06 841k 46 6776k 46 3163k 0 0 958k 0 0:00:07 0:00:03 0:00:04 958k 66 6776k 66 4535k 0 0 1055k 0 0:00:06 0:00:04 0:00:02 1055k 87 6776k 87 5926k 0 0 1118k 0 0:00:06 0:00:05 0:00:01 1158k 100 6776k 100 6776k 0 0 1155k 0 0:00:05 0:00:05 --:--:-- 1286k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 6776k 0 1197 0 0 6726 0 0:17:11 --:--:-- 0:17:11 6724 16 6776k 16 1127k 0 0 967k 0 0:00:07 0:00:01 0:00:06 967k 39 6776k 39 2661k 0 0 1221k 0 0:00:05 0:00:02 0:00:03 1221k 59 6776k 59 4046k 0 0 1279k 0 0:00:05 0:00:03 0:00:02 1279k 82 6776k 82 5556k 0 0 1334k 0 0:00:05 0:00:04 0:00:01 1334k 100 6776k 100 6776k 0 0 1374k 0 0:00:04 0:00:04 --:--:-- 1425k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 38 1003k 38 388k 0 0 1037k 0 --:--:-- --:--:-- --:--:-- 1035k 100 1003k 100 1003k 0 0 1278k 0 --:--:-- --:--:-- --:--:-- 1278k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 10 1003k 10 101k 0 0 612k 0 0:00:01 --:--:-- 0:00:01 609k 100 1003k 100 1003k 0 0 1332k 0 --:--:-- --:--:-- --:--:-- 1332k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 19 3436k 19 678k 0 0 1219k 0 0:00:02 --:--:-- 0:00:02 1218k 67 3436k 67 2318k 0 0 1488k 0 0:00:02 0:00:01 0:00:01 1487k 100 3436k 100 3436k 0 0 1553k 0 0:00:02 0:00:02 --:--:-- 1553k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 12 3436k 12 429k 0 0 1148k 0 0:00:02 --:--:-- 0:00:02 1148k 60 3436k 60 2072k 0 0 1509k 0 0:00:02 0:00:01 0:00:01 1509k 100 3436k 100 3436k 0 0 1589k 0 0:00:02 0:00:02 --:--:-- 1590k % 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 953k 34 324k 0 0 1085k 0 --:--:-- --:--:-- --:--:-- 1085k 100 953k 100 953k 0 0 1413k 0 --:--:-- --:--:-- --:--:-- 1414k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 4 962k 4 44758 0 0 264k 0 0:00:03 --:--:-- 0:00:03 264k 100 962k 100 962k 0 0 1078k 0 --:--:-- --:--:-- --:--:-- 1078k % 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 621k 75 466k 0 0 806k 0 --:--:-- --:--:-- --:--:-- 805k 100 621k 100 621k 0 0 900k 0 --:--:-- --:--:-- --:--:-- 899k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 621k 2 15716 0 0 60264 0 0:00:10 --:--:-- 0:00:10 60214 63 621k 63 393k 0 0 290k 0 0:00:02 0:00:01 0:00:01 290k 98 621k 98 609k 0 0 270k 0 0:00:02 0:00:02 --:--:-- 270k 100 621k 100 621k 0 0 238k 0 0:00:02 0:00:02 --:--:-- 238k % 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 22.1M 4 973k 0 0 1149k 0 0:00:19 --:--:-- 0:00:19 1149k 9 22.1M 9 2264k 0 0 1226k 0 0:00:18 0:00:01 0:00:17 1225k 17 22.1M 17 3866k 0 0 1358k 0 0:00:16 0:00:02 0:00:14 1358k 23 22.1M 23 5407k 0 0 1396k 0 0:00:16 0:00:03 0:00:13 1396k 30 22.1M 30 6927k 0 0 1428k 0 0:00:15 0:00:04 0:00:11 1428k 37 22.1M 37 8415k 0 0 1439k 0 0:00:15 0:00:05 0:00:10 1488k 44 22.1M 44 9.7M 0 0 1463k 0 0:00:15 0:00:06 0:00:09 1551k 51 22.1M 51 11.4M 0 0 1488k 0 0:00:15 0:00:07 0:00:08 1562k 59 22.1M 59 13.0M 0 0 1512k 0 0:00:14 0:00:08 0:00:06 1602k 65 22.1M 65 14.5M 0 0 1516k 0 0:00:14 0:00:09 0:00:05 1600k 73 22.1M 73 16.2M 0 0 1538k 0 0:00:14 0:00:10 0:00:04 1654k 81 22.1M 81 18.0M 0 0 1558k 0 0:00:14 0:00:11 0:00:03 1689k 88 22.1M 88 19.6M 0 0 1564k 0 0:00:14 0:00:12 0:00:02 1684k 96 22.1M 96 21.3M 0 0 1576k 0 0:00:14 0:00:13 0:00:01 1688k 100 22.1M 100 22.1M 0 0 1579k 0 0:00:14 0:00:14 --:--:-- 1716k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 22.1M 0 193k 0 0 334k 0 0:01:07 --:--:-- 0:01:07 334k 6 22.1M 6 1526k 0 0 966k 0 0:00:23 0:00:01 0:00:22 965k 13 22.1M 13 3166k 0 0 1211k 0 0:00:18 0:00:02 0:00:16 1211k 20 22.1M 20 4640k 0 0 1295k 0 0:00:17 0:00:03 0:00:14 1295k 26 22.1M 26 5989k 0 0 1304k 0 0:00:17 0:00:04 0:00:13 1304k 31 22.1M 31 7215k 0 0 1293k 0 0:00:17 0:00:05 0:00:12 1404k 39 22.1M 39 8924k 0 0 1356k 0 0:00:16 0:00:06 0:00:10 1479k 46 22.1M 46 10.3M 0 0 1399k 0 0:00:16 0:00:07 0:00:09 1498k 53 22.1M 53 11.8M 0 0 1415k 0 0:00:16 0:00:08 0:00:08 1501k 57 22.1M 57 12.8M 0 0 1369k 0 0:00:16 0:00:09 0:00:07 1428k 61 22.1M 61 13.6M 0 0 1320k 0 0:00:17 0:00:10 0:00:07 1351k 65 22.1M 65 14.4M 0 0 1280k 0 0:00:17 0:00:11 0:00:06 1180k 68 22.1M 68 15.1M 0 0 1234k 0 0:00:18 0:00:12 0:00:06 985k 71 22.1M 71 15.8M 0 0 1195k 0 0:00:18 0:00:13 0:00:05 819k 74 22.1M 74 16.5M 0 0 1160k 0 0:00:19 0:00:14 0:00:05 759k 77 22.1M 77 17.2M 0 0 1129k 0 0:00:20 0:00:15 0:00:05 726k 80 22.1M 80 17.9M 0 0 1106k 0 0:00:20 0:00:16 0:00:04 703k 83 22.1M 83 18.5M 0 0 1079k 0 0:00:21 0:00:17 0:00:04 687k 86 22.1M 86 19.1M 0 0 1055k 0 0:00:21 0:00:18 0:00:03 674k 89 22.1M 89 19.7M 0 0 1034k 0 0:00:21 0:00:19 0:00:02 668k 92 22.1M 92 20.3M 0 0 1014k 0 0:00:22 0:00:20 0:00:02 653k 94 22.1M 94 20.9M 0 0 991k 0 0:00:22 0:00:21 0:00:01 612k 97 22.1M 97 21.5M 0 0 979k 0 0:00:23 0:00:22 0:00:01 627k 100 22.1M 100 22.1M 0 0 986k 0 0:00:22 0:00:22 --:--:-- 694k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 63 725k 63 460k 0 0 1159k 0 --:--:-- --:--:-- --:--:-- 1157k 100 725k 100 725k 0 0 1322k 0 --:--:-- --:--:-- --:--:-- 1321k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 92 725k 92 670k 0 0 1324k 0 --:--:-- --:--:-- --:--:-- 1322k 100 725k 100 725k 0 0 1361k 0 --:--:-- --:--:-- --:--:-- 1361k % 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 202k 100 202k 0 0 774k 0 --:--:-- --:--:-- --:--:-- 776k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 202k 100 202k 0 0 739k 0 --:--:-- --:--:-- --:--:-- 742k % 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 1014k 0 --:--:-- --:--:-- --:--:-- 1016k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 417k 100 417k 0 0 1001k 0 --:--:-- --:--:-- --:--:-- 1004k % 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 5615k 0 1197 0 0 20680 0 0:04:38 --:--:-- 0:04:38 20637 26 5615k 26 1467k 0 0 1391k 0 0:00:04 0:00:01 0:00:03 1392k 50 5615k 50 2848k 0 0 1375k 0 0:00:04 0:00:02 0:00:02 1376k 78 5615k 78 4418k 0 0 1447k 0 0:00:03 0:00:03 --:--:-- 1447k 100 5615k 100 5615k 0 0 1476k 0 0:00:03 0:00:03 --:--:-- 1475k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 5615k 1 75249 0 0 450k 0 0:00:12 --:--:-- 0:00:12 450k 23 5615k 23 1301k 0 0 1118k 0 0:00:05 0:00:01 0:00:04 1118k 48 5615k 48 2716k 0 0 1255k 0 0:00:04 0:00:02 0:00:02 1254k 79 5615k 79 4445k 0 0 1405k 0 0:00:03 0:00:03 --:--:-- 1405k 100 5615k 100 5615k 0 0 1439k 0 0:00:03 0:00:03 --:--:-- 1439k % 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 1152k 11 137k 0 0 713k 0 0:00:01 --:--:-- 0:00:01 711k 100 1152k 100 1152k 0 0 1217k 0 --:--:-- --:--:-- --:--:-- 1217k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 16 1152k 16 186k 0 0 856k 0 0:00:01 --:--:-- 0:00:01 853k 100 1152k 100 1152k 0 0 1381k 0 --:--:-- --:--:-- --:--:-- 1380k % 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 1363k 6 92673 0 0 444k 0 0:00:03 --:--:-- 0:00:03 443k 100 1363k 100 1363k 0 0 1190k 0 0:00:01 0:00:01 --:--:-- 1191k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 21 1363k 21 294k 0 0 867k 0 0:00:01 --:--:-- 0:00:01 866k 100 1363k 100 1363k 0 0 1349k 0 0:00:01 0:00:01 --:--:-- 1351k % 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 51 2869k 51 1487k 0 0 1462k 0 0:00:01 0:00:01 --:--:-- 1462k 100 2869k 100 2869k 0 0 1471k 0 0:00:01 0:00:01 --:--:-- 1471k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 2869k 6 175k 0 0 607k 0 0:00:04 --:--:-- 0:00:04 607k 47 2869k 47 1351k 0 0 1049k 0 0:00:02 0:00:01 0:00:01 1048k 100 2869k 100 2869k 0 0 1293k 0 0:00:02 0:00:02 --:--:-- 1294k % 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 744k 0 1199 0 0 20282 0 0:00:37 --:--:-- 0:00:37 20322 100 744k 100 744k 0 0 1290k 0 --:--:-- --:--:-- --:--:-- 1290k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 744k 100 744k 0 0 1366k 0 --:--:-- --:--:-- --:--:-- 1366k % 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 206k 100 206k 0 0 758k 0 --:--:-- --:--:-- --:--:-- 760k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 206k 100 206k 0 0 834k 0 --:--:-- --:--:-- --:--:-- 837k % 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 2860k 1 40401 0 0 384k 0 0:00:07 --:--:-- 0:00:07 383k 54 2860k 54 1549k 0 0 1394k 0 0:00:02 0:00:01 0:00:01 1393k 100 2860k 100 2860k 0 0 1471k 0 0:00:01 0:00:01 --:--:-- 1470k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 2860k 2 86865 0 0 566k 0 0:00:05 --:--:-- 0:00:05 565k 58 2860k 58 1664k 0 0 1454k 0 0:00:01 0:00:01 --:--:-- 1453k 100 2860k 100 2860k 0 0 1553k 0 0:00:01 0:00:01 --:--:-- 1553k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 33 149k 33 52019 0 0 425k 0 --:--:-- --:--:-- --:--:-- 426k 100 149k 100 149k 0 0 849k 0 --:--:-- --:--:-- --:--:-- 849k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 149k 100 149k 0 0 722k 0 --:--:-- --:--:-- --:--:-- 726k % 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 1181k 0 --:--:-- --:--:-- --:--:-- 1182k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 976k 100 976k 0 0 1263k 0 --:--:-- --:--:-- --:--:-- 1263k % 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 35.7M 0 1192 0 0 19832 0 0:31:29 --:--:-- 0:31:29 19866 3 35.7M 3 1386k 0 0 1332k 0 0:00:27 0:00:01 0:00:26 1333k 8 35.7M 8 2957k 0 0 1451k 0 0:00:25 0:00:02 0:00:23 1451k 12 35.7M 12 4701k 0 0 1547k 0 0:00:23 0:00:03 0:00:20 1547k 16 35.7M 16 6218k 0 0 1540k 0 0:00:23 0:00:04 0:00:19 1540k 21 35.7M 21 7697k 0 0 1527k 0 0:00:23 0:00:05 0:00:18 1545k 23 35.7M 23 8501k 0 0 1406k 0 0:00:26 0:00:06 0:00:20 1422k 24 35.7M 24 9145k 0 0 1292k 0 0:00:28 0:00:07 0:00:21 1228k 27 35.7M 27 9901k 0 0 1221k 0 0:00:29 0:00:08 0:00:21 1025k 29 35.7M 29 10.3M 0 0 1165k 0 0:00:31 0:00:09 0:00:22 868k 30 35.7M 30 11.0M 0 0 1125k 0 0:00:32 0:00:10 0:00:22 720k 32 35.7M 32 11.7M 0 0 1089k 0 0:00:33 0:00:11 0:00:22 704k 35 35.7M 35 12.7M 0 0 1082k 0 0:00:33 0:00:12 0:00:21 783k 40 35.7M 40 14.2M 0 0 1122k 0 0:00:32 0:00:13 0:00:19 959k 44 35.7M 44 15.8M 0 0 1157k 0 0:00:31 0:00:14 0:00:17 1142k 48 35.7M 48 17.4M 0 0 1191k 0 0:00:30 0:00:15 0:00:15 1322k 53 35.7M 53 19.0M 0 0 1216k 0 0:00:30 0:00:16 0:00:14 1498k 57 35.7M 57 20.5M 0 0 1235k 0 0:00:29 0:00:17 0:00:12 1603k 62 35.7M 62 22.1M 0 0 1258k 0 0:00:29 0:00:18 0:00:11 1613k 66 35.7M 66 23.7M 0 0 1277k 0 0:00:28 0:00:19 0:00:09 1615k 70 35.7M 70 25.2M 0 0 1288k 0 0:00:28 0:00:20 0:00:08 1580k 74 35.7M 74 26.6M 0 0 1299k 0 0:00:28 0:00:21 0:00:07 1564k 79 35.7M 79 28.2M 0 0 1313k 0 0:00:27 0:00:22 0:00:05 1578k 83 35.7M 83 29.8M 0 0 1325k 0 0:00:27 0:00:23 0:00:04 1566k 87 35.7M 87 31.4M 0 0 1339k 0 0:00:27 0:00:24 0:00:03 1571k 92 35.7M 92 33.0M 0 0 1352k 0 0:00:27 0:00:25 0:00:02 1610k 97 35.7M 97 34.7M 0 0 1366k 0 0:00:26 0:00:26 --:--:-- 1647k 100 35.7M 100 35.7M 0 0 1374k 0 0:00:26 0:00:26 --:--:-- 1667k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 35.7M 0 70888 0 0 375k 0 0:01:37 --:--:-- 0:01:37 374k 4 35.7M 4 1658k 0 0 1397k 0 0:00:26 0:00:01 0:00:25 1397k 8 35.7M 8 3246k 0 0 1485k 0 0:00:24 0:00:02 0:00:22 1485k 13 35.7M 13 4939k 0 0 1550k 0 0:00:23 0:00:03 0:00:20 1550k 17 35.7M 17 6489k 0 0 1548k 0 0:00:23 0:00:04 0:00:19 1548k 21 35.7M 21 7758k 0 0 1492k 0 0:00:24 0:00:05 0:00:19 1533k 25 35.7M 25 9341k 0 0 1510k 0 0:00:24 0:00:06 0:00:18 1537k 29 35.7M 29 10.4M 0 0 1494k 0 0:00:24 0:00:07 0:00:17 1498k 33 35.7M 33 11.9M 0 0 1491k 0 0:00:24 0:00:08 0:00:16 1453k 37 35.7M 37 13.5M 0 0 1509k 0 0:00:24 0:00:09 0:00:15 1477k 42 35.7M 42 15.1M 0 0 1528k 0 0:00:23 0:00:10 0:00:13 1564k 47 35.7M 47 16.8M 0 0 1541k 0 0:00:23 0:00:11 0:00:12 1580k 51 35.7M 51 18.4M 0 0 1551k 0 0:00:23 0:00:12 0:00:11 1633k 56 35.7M 56 20.1M 0 0 1566k 0 0:00:23 0:00:13 0:00:10 1690k 61 35.7M 61 21.9M 0 0 1583k 0 0:00:23 0:00:14 0:00:09 1718k 66 35.7M 66 23.6M 0 0 1593k 0 0:00:22 0:00:15 0:00:07 1726k 70 35.7M 70 25.2M 0 0 1596k 0 0:00:22 0:00:16 0:00:06 1719k 75 35.7M 75 26.8M 0 0 1602k 0 0:00:22 0:00:17 0:00:05 1727k 79 35.7M 79 28.5M 0 0 1609k 0 0:00:22 0:00:18 0:00:04 1722k 84 35.7M 84 30.2M 0 0 1615k 0 0:00:22 0:00:19 0:00:03 1705k 89 35.7M 89 31.8M 0 0 1617k 0 0:00:22 0:00:20 0:00:02 1690k 93 35.7M 93 33.5M 0 0 1620k 0 0:00:22 0:00:21 0:00:01 1698k 98 35.7M 98 35.1M 0 0 1623k 0 0:00:22 0:00:22 --:--:-- 1696k 100 35.7M 100 35.7M 0 0 1626k 0 0:00:22 0:00:22 --:--:-- 1698k % 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 4475k 7 330k 0 0 1135k 0 0:00:03 --:--:-- 0:00:03 1134k 43 4475k 43 1953k 0 0 1510k 0 0:00:02 0:00:01 0:00:01 1509k 77 4475k 77 3457k 0 0 1466k 0 0:00:03 0:00:02 0:00:01 1466k 100 4475k 100 4475k 0 0 1568k 0 0:00:02 0:00:02 --:--:-- 1568k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 13 4475k 13 583k 0 0 1055k 0 0:00:04 --:--:-- 0:00:04 1118k 51 4475k 51 2296k 0 0 1478k 0 0:00:03 0:00:01 0:00:02 1508k 87 4475k 87 3907k 0 0 1529k 0 0:00:02 0:00:02 --:--:-- 1548k 100 4475k 100 4475k 0 0 1557k 0 0:00:02 0:00:02 --:--:-- 1574k % 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 956k 0 --:--:-- --:--:-- --:--:-- 959k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 311k 100 311k 0 0 842k 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 100 254k 100 254k 0 0 855k 0 --:--:-- --:--:-- --:--:-- 855k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 37 254k 37 98483 0 0 433k 0 --:--:-- --:--:-- --:--:-- 433k 100 254k 100 254k 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 82 1055k 82 871k 0 0 1274k 0 --:--:-- --:--:-- --:--:-- 1274k 100 1055k 100 1055k 0 0 1326k 0 --:--:-- --:--:-- --:--:-- 1325k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 1055k 100 1055k 0 0 1339k 0 --:--:-- --:--:-- --:--:-- 1339k % 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 72026 100 72026 0 0 529k 0 --:--:-- --:--:-- --:--:-- 532k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 72026 100 72026 0 0 350k 0 --:--:-- --:--:-- --:--:-- 349k % 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 636k 100 636k 0 0 1191k 0 --:--:-- --:--:-- --:--:-- 1191k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 636k 100 636k 0 0 1142k 0 --:--:-- --:--:-- --:--:-- 1142k % 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 1077k 2 27332 0 0 283k 0 0:00:03 --:--:-- 0:00:03 280k 100 1077k 100 1077k 0 0 1302k 0 --:--:-- --:--:-- --:--:-- 1302k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 8 1077k 8 97028 0 0 492k 0 0:00:02 --:--:-- 0:00:02 490k 100 1077k 100 1077k 0 0 1371k 0 --:--:-- --:--:-- --:--:-- 1370k % 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 5051k 2 113k 0 0 505k 0 0:00:09 --:--:-- 0:00:09 505k 32 5051k 32 1661k 0 0 1357k 0 0:00:03 0:00:01 0:00:02 1357k 65 5051k 65 3295k 0 0 1479k 0 0:00:03 0:00:02 0:00:01 1478k 93 5051k 93 4729k 0 0 1436k 0 0:00:03 0:00:03 --:--:-- 1435k 100 5051k 100 5051k 0 0 1486k 0 0:00:03 0:00:03 --:--:-- 1486k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 5 5051k 5 290k 0 0 799k 0 0:00:06 --:--:-- 0:00:06 800k 38 5051k 38 1922k 0 0 1412k 0 0:00:03 0:00:01 0:00:02 1412k 73 5051k 73 3736k 0 0 1580k 0 0:00:03 0:00:02 0:00:01 1580k 100 5051k 100 5051k 0 0 1619k 0 0:00:03 0:00:03 --:--:-- 1620k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 59 1613k 59 959k 0 0 1291k 0 0:00:01 --:--:-- 0:00:01 1291k 100 1613k 100 1613k 0 0 1346k 0 0:00:01 0:00:01 --:--:-- 1347k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 10 1613k 10 167k 0 0 852k 0 0:00:01 --:--:-- 0:00:01 852k 100 1613k 100 1613k 0 0 1573k 0 0:00:01 0:00:01 --:--:-- 1574k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 16 3355k 16 548k 0 0 1126k 0 0:00:02 --:--:-- 0:00:02 1126k 63 3355k 63 2113k 0 0 1421k 0 0:00:02 0:00:01 0:00:01 1422k 100 3355k 100 3355k 0 0 1490k 0 0:00:02 0:00:02 --:--:-- 1491k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 3355k 0 15717 0 0 108k 0 0:00:30 --:--:-- 0:00:30 108k 45 3355k 45 1535k 0 0 1366k 0 0:00:02 0:00:01 0:00:01 1366k 97 3355k 97 3285k 0 0 1547k 0 0:00:02 0:00:02 --:--:-- 1546k 100 3355k 100 3355k 0 0 1553k 0 0:00:02 0:00:02 --:--:-- 1552k % 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 106k 0 0 633k 0 0:00:01 --:--:-- 0:00:01 631k 100 751k 100 751k 0 0 1217k 0 --:--:-- --:--:-- --:--:-- 1217k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 751k 100 751k 0 0 1145k 0 --:--:-- --:--:-- --:--:-- 1146k % 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 433k 100 433k 0 0 995k 0 --:--:-- --:--:-- --:--:-- 998k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 21 433k 21 94124 0 0 434k 0 --:--:-- --:--:-- --:--:-- 433k 100 433k 100 433k 0 0 1027k 0 --:--:-- --:--:-- --:--:-- 1026k % 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 147k 100 147k 0 0 617k 0 --:--:-- --:--:-- --:--:-- 616k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 147k 100 147k 0 0 731k 0 --:--:-- --:--:-- --:--:-- 735k % 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 488k 0 --:--:-- --:--:-- --:--:-- 489k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 110k 100 110k 0 0 455k 0 --:--:-- --:--:-- --:--:-- 456k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 44 1142k 44 504k 0 0 1016k 0 0:00:01 --:--:-- 0:00:01 1015k 100 1142k 100 1142k 0 0 1006k 0 0:00:01 0:00:01 --:--:-- 1007k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 15 1142k 15 176k 0 0 757k 0 0:00:01 --:--:-- 0:00:01 756k 100 1142k 100 1142k 0 0 1322k 0 --:--:-- --:--:-- --:--:-- 1321k % 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 5019k 4 209k 0 0 663k 0 0:00:07 --:--:-- 0:00:07 663k 35 5019k 35 1806k 0 0 1372k 0 0:00:03 0:00:01 0:00:02 1372k 64 5019k 64 3258k 0 0 1406k 0 0:00:03 0:00:02 0:00:01 1406k 92 5019k 92 4645k 0 0 1400k 0 0:00:03 0:00:03 --:--:-- 1400k 100 5019k 100 5019k 0 0 1422k 0 0:00:03 0:00:03 --:--:-- 1422k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 5 5019k 5 279k 0 0 854k 0 0:00:05 --:--:-- 0:00:05 853k 40 5019k 40 2010k 0 0 1515k 0 0:00:03 0:00:01 0:00:02 1515k 73 5019k 73 3692k 0 0 1585k 0 0:00:03 0:00:02 0:00:01 1585k 100 5019k 100 5019k 0 0 1612k 0 0:00:03 0:00:03 --:--:-- 1613k % 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 847k 100 847k 0 0 1246k 0 --:--:-- --:--:-- --:--:-- 1247k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 5 847k 5 44759 0 0 268k 0 0:00:03 --:--:-- 0:00:03 268k 100 847k 100 847k 0 0 1332k 0 --:--:-- --:--:-- --:--:-- 1331k % 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 1302k 100 1302k 0 0 1336k 0 --:--:-- --:--:-- --:--:-- 1335k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 47 1302k 47 623k 0 0 1225k 0 0:00:01 --:--:-- 0:00:01 1225k 100 1302k 100 1302k 0 0 1346k 0 --:--:-- --:--:-- --:--:-- 1346k % 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 54 2232k 54 1223k 0 0 1215k 0 0:00:01 0:00:01 --:--:-- 1214k 100 2232k 100 2232k 0 0 1329k 0 0:00:01 0:00:01 --:--:-- 1329k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 28 2232k 28 632k 0 0 1253k 0 0:00:01 --:--:-- 0:00:01 1251k 100 2232k 100 2232k 0 0 1602k 0 0:00:01 0:00:01 --:--:-- 1603k % 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 6496k 3 232k 0 0 867k 0 0:00:07 --:--:-- 0:00:07 866k 25 6496k 25 1628k 0 0 1284k 0 0:00:05 0:00:01 0:00:04 1284k 47 6496k 47 3106k 0 0 1367k 0 0:00:04 0:00:02 0:00:02 1367k 71 6496k 71 4650k 0 0 1423k 0 0:00:04 0:00:03 0:00:01 1423k 94 6496k 94 6133k 0 0 1437k 0 0:00:04 0:00:04 --:--:-- 1437k 100 6496k 100 6496k 0 0 1440k 0 0:00:04 0:00:04 --:--:-- 1476k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 6496k 0 1197 0 0 9553 0 0:11:36 --:--:-- 0:11:36 9576 22 6496k 22 1433k 0 0 1349k 0 0:00:04 0:00:01 0:00:03 1349k 49 6496k 49 3187k 0 0 1545k 0 0:00:04 0:00:02 0:00:02 1545k 76 6496k 76 4955k 0 0 1618k 0 0:00:04 0:00:03 0:00:01 1617k 100 6496k 100 6496k 0 0 1653k 0 0:00:03 0:00:03 --:--:-- 1653k % 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 455k 100 455k 0 0 1187k 0 --:--:-- --:--:-- --:--:-- 1189k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 455k 3 15716 0 0 172k 0 0:00:02 --:--:-- 0:00:02 172k 100 455k 100 455k 0 0 1107k 0 --:--:-- --:--:-- --:--:-- 1105k % 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 697k 37 263k 0 0 926k 0 --:--:-- --:--:-- --:--:-- 924k 100 697k 100 697k 0 0 1162k 0 --:--:-- --:--:-- --:--:-- 1162k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 697k 100 697k 0 0 1348k 0 --:--:-- --:--:-- --:--:-- 1349k % 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 697k 0 --:--:-- --:--:-- --:--:-- 702k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 100k 1 1196 0 0 13056 0 0:00:07 --:--:-- 0:00:07 13000 100 100k 100 100k 0 0 521k 0 --:--:-- --:--:-- --:--:-- 520k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 41 1073k 41 449k 0 0 929k 0 0:00:01 --:--:-- 0:00:01 929k 100 1073k 100 1073k 0 0 1226k 0 --:--:-- --:--:-- --:--:-- 1226k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 97 1073k 97 1049k 0 0 1247k 0 --:--:-- --:--:-- --:--:-- 1247k 100 1073k 100 1073k 0 0 1259k 0 --:--:-- --:--:-- --:--:-- 1259k % 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 409k 100 409k 0 0 972k 0 --:--:-- --:--:-- --:--:-- 973k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 409k 100 409k 0 0 993k 0 --:--:-- --:--:-- --:--:-- 995k % 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 1120k 0 1196 0 0 12578 0 0:01:31 --:--:-- 0:01:31 12589 100 1120k 100 1120k 0 0 1251k 0 --:--:-- --:--:-- --:--:-- 1250k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 42 1120k 42 471k 0 0 946k 0 0:00:01 --:--:-- 0:00:01 945k 100 1120k 100 1120k 0 0 1245k 0 --:--:-- --:--:-- --:--:-- 1244k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 16 456k 16 78154 0 0 542k 0 --:--:-- --:--:-- --:--:-- 541k 100 456k 100 456k 0 0 1147k 0 --:--:-- --:--:-- --:--:-- 1146k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 94 456k 94 430k 0 0 777k 0 --:--:-- --:--:-- --:--:-- 777k 100 456k 100 456k 0 0 799k 0 --:--:-- --:--:-- --:--:-- 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 20 4795k 20 985k 0 0 1394k 0 0:00:03 --:--:-- 0:00:03 1393k 51 4795k 51 2472k 0 0 1449k 0 0:00:03 0:00:01 0:00:02 1448k 87 4795k 87 4177k 0 0 1543k 0 0:00:03 0:00:02 0:00:01 1543k 100 4795k 100 4795k 0 0 1543k 0 0:00:03 0:00:03 --:--:-- 1544k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 24 4795k 24 1178k 0 0 1254k 0 0:00:03 --:--:-- 0:00:03 1254k 59 4795k 59 2844k 0 0 1466k 0 0:00:03 0:00:01 0:00:02 1466k 93 4795k 93 4496k 0 0 1529k 0 0:00:03 0:00:02 0:00:01 1529k 100 4795k 100 4795k 0 0 1546k 0 0:00:03 0:00:03 --:--:-- 1547k % 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 863k 75 649k 0 0 1203k 0 --:--:-- --:--:-- --:--:-- 1202k 100 863k 100 863k 0 0 1298k 0 --:--:-- --:--:-- --:--:-- 1296k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 863k 100 863k 0 0 1300k 0 --:--:-- --:--:-- --:--:-- 1300k % 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 7419k 13 1020k 0 0 1222k 0 0:00:06 --:--:-- 0:00:06 1222k 33 7419k 33 2485k 0 0 1354k 0 0:00:05 0:00:01 0:00:04 1354k 53 7419k 53 3971k 0 0 1401k 0 0:00:05 0:00:02 0:00:03 1400k 74 7419k 74 5524k 0 0 1440k 0 0:00:05 0:00:03 0:00:02 1440k 91 7419k 91 6784k 0 0 1402k 0 0:00:05 0:00:04 0:00:01 1402k 100 7419k 100 7419k 0 0 1421k 0 0:00:05 0:00:05 --:--:-- 1459k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 7419k 0 1197 0 0 10067 0 0:12:34 --:--:-- 0:12:34 10058 19 7419k 19 1446k 0 0 1347k 0 0:00:05 0:00:01 0:00:04 1346k 41 7419k 41 3095k 0 0 1493k 0 0:00:04 0:00:02 0:00:02 1493k 65 7419k 65 4881k 0 0 1588k 0 0:00:04 0:00:03 0:00:01 1588k 89 7419k 89 6669k 0 0 1637k 0 0:00:04 0:00:04 --:--:-- 1637k 100 7419k 100 7419k 0 0 1647k 0 0:00:04 0:00:04 --:--:-- 1692k % 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 379k 100 379k 0 0 1067k 0 --:--:-- --:--:-- --:--:-- 1069k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 379k 100 379k 0 0 978k 0 --:--:-- --:--:-- --:--:-- 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 0 9464k 0 89768 0 0 546k 0 0:00:17 --:--:-- 0:00:17 547k 16 9464k 16 1606k 0 0 1382k 0 0:00:06 0:00:01 0:00:05 1382k 33 9464k 33 3187k 0 0 1475k 0 0:00:06 0:00:02 0:00:04 1475k 50 9464k 50 4738k 0 0 1499k 0 0:00:06 0:00:03 0:00:03 1499k 66 9464k 66 6304k 0 0 1505k 0 0:00:06 0:00:04 0:00:02 1505k 82 9464k 82 7805k 0 0 1512k 0 0:00:06 0:00:05 0:00:01 1543k 99 9464k 99 9393k 0 0 1524k 0 0:00:06 0:00:06 --:--:-- 1557k 100 9464k 100 9464k 0 0 1526k 0 0:00:06 0:00:06 --:--:-- 1553k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 9464k 0 1196 0 0 10035 0 0:16:05 --:--:-- 0:16:05 9966 16 9464k 16 1545k 0 0 1411k 0 0:00:06 0:00:01 0:00:05 1411k 34 9464k 34 3256k 0 0 1554k 0 0:00:06 0:00:02 0:00:04 1553k 53 9464k 53 5020k 0 0 1619k 0 0:00:05 0:00:03 0:00:02 1619k 70 9464k 70 6718k 0 0 1639k 0 0:00:05 0:00:04 0:00:01 1639k 89 9464k 89 8484k 0 0 1644k 0 0:00:05 0:00:05 --:--:-- 1682k 99 9464k 99 9393k 0 0 1541k 0 0:00:06 0:00:06 --:--:-- 1569k 100 9464k 100 9464k 0 0 1391k 0 0:00:06 0:00:06 --:--:-- 1319k % 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 5316k 22 1170k 0 0 1294k 0 0:00:04 --:--:-- 0:00:04 1293k 51 5316k 51 2734k 0 0 1435k 0 0:00:03 0:00:01 0:00:02 1435k 81 5316k 81 4327k 0 0 1490k 0 0:00:03 0:00:02 0:00:01 1490k 100 5316k 100 5316k 0 0 1455k 0 0:00:03 0:00:03 --:--:-- 1455k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 5316k 0 1169 0 0 4187 0 0:21:40 --:--:-- 0:21:40 4189 16 5316k 16 866k 0 0 664k 0 0:00:08 0:00:01 0:00:07 664k 33 5316k 33 1804k 0 0 775k 0 0:00:06 0:00:02 0:00:04 775k 46 5316k 46 2461k 0 0 734k 0 0:00:07 0:00:03 0:00:04 734k 62 5316k 62 3310k 0 0 781k 0 0:00:06 0:00:04 0:00:02 781k 94 5316k 94 5020k 0 0 959k 0 0:00:05 0:00:05 --:--:-- 1012k 100 5316k 100 5316k 0 0 985k 0 0:00:05 0:00:05 --:--:-- 1088k % 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 4370k 2 99k 0 0 499k 0 0:00:08 --:--:-- 0:00:08 497k 33 4370k 33 1474k 0 0 1228k 0 0:00:03 0:00:01 0:00:02 1227k 66 4370k 66 2889k 0 0 1314k 0 0:00:03 0:00:02 0:00:01 1314k 97 4370k 97 4257k 0 0 1331k 0 0:00:03 0:00:03 --:--:-- 1331k 100 4370k 100 4370k 0 0 1336k 0 0:00:03 0:00:03 --:--:-- 1335k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 21 4370k 21 952k 0 0 1213k 0 0:00:03 --:--:-- 0:00:03 1213k 62 4370k 62 2743k 0 0 1536k 0 0:00:02 0:00:01 0:00:01 1536k 100 4370k 100 4370k 0 0 1625k 0 0:00:02 0:00:02 --:--:-- 1625k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 65 1626k 65 1073k 0 0 1229k 0 0:00:01 --:--:-- 0:00:01 1229k 100 1626k 100 1626k 0 0 1335k 0 0:00:01 0:00:01 --:--:-- 1336k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 1626k 0 1197 0 0 12176 0 0:02:16 --:--:-- 0:02:16 12090 95 1626k 95 1560k 0 0 1495k 0 0:00:01 0:00:01 --:--:-- 1495k 100 1626k 100 1626k 0 0 1507k 0 0:00:01 0:00:01 --:--:-- 1506k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 31 2186k 31 695k 0 0 1152k 0 0:00:01 --:--:-- 0:00:01 1150k 100 2186k 100 2186k 0 0 1408k 0 0:00:01 0:00:01 --:--:-- 1408k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 49 2186k 49 1073k 0 0 1174k 0 0:00:01 --:--:-- 0:00:01 1174k 100 2186k 100 2186k 0 0 1363k 0 0:00:01 0:00:01 --:--:-- 1364k % 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 8 15.3M 8 1403k 0 0 1395k 0 0:00:11 0:00:01 0:00:10 1395k 18 15.3M 18 2964k 0 0 1476k 0 0:00:10 0:00:02 0:00:08 1476k 28 15.3M 28 4525k 0 0 1505k 0 0:00:10 0:00:03 0:00:07 1505k 39 15.3M 39 6146k 0 0 1533k 0 0:00:10 0:00:04 0:00:06 1533k 49 15.3M 49 7785k 0 0 1555k 0 0:00:10 0:00:05 0:00:05 1559k 59 15.3M 59 9363k 0 0 1559k 0 0:00:10 0:00:06 0:00:04 1592k 69 15.3M 69 10.7M 0 0 1564k 0 0:00:10 0:00:07 0:00:03 1599k 79 15.3M 79 12.1M 0 0 1554k 0 0:00:10 0:00:08 0:00:02 1584k 88 15.3M 88 13.6M 0 0 1553k 0 0:00:10 0:00:09 0:00:01 1569k 98 15.3M 98 15.1M 0 0 1553k 0 0:00:10 0:00:10 --:--:-- 1552k 100 15.3M 100 15.3M 0 0 1554k 0 0:00:10 0:00:10 --:--:-- 1546k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 15.3M 0 134k 0 0 511k 0 0:00:30 --:--:-- 0:00:30 511k 12 15.3M 12 1984k 0 0 1569k 0 0:00:10 0:00:01 0:00:09 1569k 23 15.3M 23 3744k 0 0 1654k 0 0:00:09 0:00:02 0:00:07 1654k 35 15.3M 35 5528k 0 0 1694k 0 0:00:09 0:00:03 0:00:06 1694k 46 15.3M 46 7310k 0 0 1714k 0 0:00:09 0:00:04 0:00:05 1714k 57 15.3M 57 9033k 0 0 1716k 0 0:00:09 0:00:05 0:00:04 1779k 68 15.3M 68 10.5M 0 0 1724k 0 0:00:09 0:00:06 0:00:03 1764k 79 15.3M 79 12.2M 0 0 1722k 0 0:00:09 0:00:07 0:00:02 1752k 89 15.3M 89 13.7M 0 0 1709k 0 0:00:09 0:00:08 0:00:01 1719k 100 15.3M 100 15.3M 0 0 1712k 0 0:00:09 0:00:09 --:--:-- 1710k % 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 16.0M 5 945k 0 0 1334k 0 0:00:12 --:--:-- 0:00:12 1333k 14 16.0M 14 2466k 0 0 1440k 0 0:00:11 0:00:01 0:00:10 1440k 24 16.0M 24 4008k 0 0 1479k 0 0:00:11 0:00:02 0:00:09 1479k 33 16.0M 33 5536k 0 0 1493k 0 0:00:11 0:00:03 0:00:08 1492k 42 16.0M 42 6976k 0 0 1481k 0 0:00:11 0:00:04 0:00:07 1481k 51 16.0M 51 8440k 0 0 1478k 0 0:00:11 0:00:05 0:00:06 1499k 60 16.0M 60 9990k 0 0 1489k 0 0:00:11 0:00:06 0:00:05 1505k 69 16.0M 69 11.1M 0 0 1487k 0 0:00:11 0:00:07 0:00:04 1491k 78 16.0M 78 12.6M 0 0 1490k 0 0:00:11 0:00:08 0:00:03 1488k 87 16.0M 87 14.1M 0 0 1492k 0 0:00:11 0:00:09 0:00:02 1502k 96 16.0M 96 15.5M 0 0 1484k 0 0:00:11 0:00:10 0:00:01 1491k 100 16.0M 100 16.0M 0 0 1484k 0 0:00:11 0:00:11 --:--:-- 1477k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 8 16.0M 8 1332k 0 0 1324k 0 0:00:12 0:00:01 0:00:11 1324k 17 16.0M 17 2961k 0 0 1479k 0 0:00:11 0:00:02 0:00:09 1480k 28 16.0M 28 4768k 0 0 1590k 0 0:00:10 0:00:02 0:00:08 1589k 39 16.0M 39 6574k 0 0 1644k 0 0:00:10 0:00:03 0:00:07 1644k 50 16.0M 50 8333k 0 0 1667k 0 0:00:09 0:00:04 0:00:05 1666k 61 16.0M 61 9.8M 0 0 1686k 0 0:00:09 0:00:05 0:00:04 1759k 72 16.0M 72 11.6M 0 0 1701k 0 0:00:09 0:00:06 0:00:03 1790k 83 16.0M 83 13.3M 0 0 1715k 0 0:00:09 0:00:07 0:00:02 1789k 93 16.0M 93 15.0M 0 0 1715k 0 0:00:09 0:00:08 0:00:01 1772k 100 16.0M 100 16.0M 0 0 1718k 0 0:00:09 0:00:09 --:--:-- 1774k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 36 1746k 36 644k 0 0 1220k 0 0:00:01 --:--:-- 0:00:01 1219k 100 1746k 100 1746k 0 0 1369k 0 0:00:01 0:00:01 --:--:-- 1370k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 18 1746k 18 321k 0 0 996k 0 0:00:01 --:--:-- 0:00:01 995k 100 1746k 100 1746k 0 0 1606k 0 0:00:01 0:00:01 --:--:-- 1607k % 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 1435k 9 130k 0 0 623k 0 0:00:02 --:--:-- 0:00:02 622k 100 1435k 100 1435k 0 0 1204k 0 0:00:01 0:00:01 --:--:-- 1205k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 1435k 6 91221 0 0 475k 0 0:00:03 --:--:-- 0:00:03 473k 100 1435k 100 1435k 0 0 1448k 0 --:--:-- --:--:-- --:--:-- 1448k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 73 1586k 73 1170k 0 0 1194k 0 0:00:01 --:--:-- 0:00:01 1193k 100 1586k 100 1586k 0 0 1260k 0 0:00:01 0:00:01 --:--:-- 1261k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 1586k 0 15717 0 0 92337 0 0:00:17 --:--:-- 0:00:17 92452 100 1586k 100 1586k 0 0 1468k 0 0:00:01 0:00:01 --:--:-- 1468k % 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 470k 100 470k 0 0 1078k 0 --:--:-- --:--:-- --:--:-- 1080k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 470k 0 1198 0 0 9861 0 0:00:48 --:--:-- 0:00:48 9819 100 470k 100 470k 0 0 1070k 0 --:--:-- --:--:-- --:--:-- 1071k % 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 1486k 8 127k 0 0 650k 0 0:00:02 --:--:-- 0:00:02 649k 100 1486k 100 1486k 0 0 1272k 0 0:00:01 0:00:01 --:--:-- 1273k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 56 1486k 56 846k 0 0 1500k 0 --:--:-- --:--:-- --:--:-- 1500k 100 1486k 100 1486k 0 0 1647k 0 --:--:-- --:--:-- --:--:-- 1647k % 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 139k 0 --:--:-- --:--:-- --:--:-- 140k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 9796 100 9796 0 0 148k 0 --:--:-- --:--:-- --:--:-- 149k % 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 694k 0 --:--:-- --:--:-- --:--:-- 696k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 186k 100 186k 0 0 518k 0 --:--:-- --:--:-- --:--:-- 519k % 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 96939 100 96939 0 0 652k 0 --:--:-- --:--:-- --:--:-- 657k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 61 96939 61 59277 0 0 453k 0 --:--:-- --:--:-- --:--:-- 452k 100 96939 100 96939 0 0 627k 0 --:--:-- --:--:-- --:--:-- 626k % 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 15.7M 2 412k 0 0 1015k 0 0:00:15 --:--:-- 0:00:15 1013k 11 15.7M 11 1884k 0 0 1339k 0 0:00:12 0:00:01 0:00:11 1339k 21 15.7M 21 3394k 0 0 1410k 0 0:00:11 0:00:02 0:00:09 1410k 30 15.7M 30 4938k 0 0 1449k 0 0:00:11 0:00:03 0:00:08 1449k 40 15.7M 40 6550k 0 0 1486k 0 0:00:10 0:00:04 0:00:06 1486k 49 15.7M 49 8049k 0 0 1488k 0 0:00:10 0:00:05 0:00:05 1527k 59 15.7M 59 9610k 0 0 1498k 0 0:00:10 0:00:06 0:00:04 1542k 69 15.7M 69 10.9M 0 0 1515k 0 0:00:10 0:00:07 0:00:03 1565k 78 15.7M 78 12.4M 0 0 1514k 0 0:00:10 0:00:08 0:00:02 1558k 88 15.7M 88 13.9M 0 0 1515k 0 0:00:10 0:00:09 0:00:01 1541k 98 15.7M 98 15.5M 0 0 1534k 0 0:00:10 0:00:10 --:--:-- 1584k 100 15.7M 100 15.7M 0 0 1537k 0 0:00:10 0:00:10 --:--:-- 1599k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 15.7M 9 1516k 0 0 1610k 0 0:00:10 --:--:-- 0:00:10 1610k 20 15.7M 20 3286k 0 0 1692k 0 0:00:09 0:00:01 0:00:08 1692k 31 15.7M 31 5015k 0 0 1704k 0 0:00:09 0:00:02 0:00:07 1704k 41 15.7M 41 6716k 0 0 1703k 0 0:00:09 0:00:03 0:00:06 1703k 52 15.7M 52 8517k 0 0 1722k 0 0:00:09 0:00:04 0:00:05 1722k 64 15.7M 64 10.0M 0 0 1739k 0 0:00:09 0:00:05 0:00:04 1763k 75 15.7M 75 11.8M 0 0 1748k 0 0:00:09 0:00:06 0:00:03 1769k 86 15.7M 86 13.5M 0 0 1752k 0 0:00:09 0:00:07 0:00:02 1781k 97 15.7M 97 15.3M 0 0 1760k 0 0:00:09 0:00:08 0:00:01 1804k 100 15.7M 100 15.7M 0 0 1764k 0 0:00:09 0:00:09 --:--:-- 1814k % 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 436k 100 436k 0 0 935k 0 --:--:-- --:--:-- --:--:-- 938k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 436k 100 436k 0 0 990k 0 --:--:-- --:--:-- --:--:-- 991k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 16 617k 16 103k 0 0 443k 0 0:00:01 --:--:-- 0:00:01 443k 100 617k 100 617k 0 0 972k 0 --:--:-- --:--:-- --:--:-- 972k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 24 617k 24 154k 0 0 612k 0 0:00:01 --:--:-- 0:00:01 612k 100 617k 100 617k 0 0 1080k 0 --:--:-- --:--:-- --:--:-- 1079k % 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 372k 100 372k 0 0 773k 0 --:--:-- --:--:-- --:--:-- 775k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 372k 100 372k 0 0 810k 0 --:--:-- --:--:-- --:--:-- 812k % 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 490k 100 490k 0 0 611k 0 --:--:-- --:--:-- --:--:-- 611k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 8 490k 8 44758 0 0 293k 0 0:00:01 --:--:-- 0:00:01 293k 100 490k 100 490k 0 0 1146k 0 --:--:-- --:--:-- --:--:-- 1144k % 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 23150 100 23150 0 0 234k 0 --:--:-- --:--:-- --:--:-- 235k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 23150 100 23150 0 0 182k 0 --:--:-- --:--:-- --:--:-- 183k % 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 557k 100 557k 0 0 688k 0 --:--:-- --:--:-- --:--:-- 688k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 98 557k 98 548k 0 0 1089k 0 --:--:-- --:--:-- --:--:-- 1088k 100 557k 100 557k 0 0 1097k 0 --:--:-- --:--:-- --:--:-- 1097k % 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 159k 0 1204 0 0 6483 0 0:00:25 --:--:-- 0:00:25 6473 100 159k 100 159k 0 0 313k 0 --:--:-- --:--:-- --:--:-- 312k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 159k 100 159k 0 0 600k 0 --:--:-- --:--:-- --:--:-- 601k % 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 43950 0 --:--:-- --:--:-- --:--:-- 44043 + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 12288 100 12288 0 0 119k 0 --:--:-- --:--:-- --:--:-- 120k % 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 5006k 2 123k 0 0 337k 0 0:00:14 --:--:-- 0:00:14 337k 16 5006k 16 815k 0 0 586k 0 0:00:08 0:00:01 0:00:07 586k 31 5006k 31 1573k 0 0 681k 0 0:00:07 0:00:02 0:00:05 680k 47 5006k 47 2386k 0 0 720k 0 0:00:06 0:00:03 0:00:03 720k 63 5006k 63 3194k 0 0 740k 0 0:00:06 0:00:04 0:00:02 740k 95 5006k 95 4796k 0 0 903k 0 0:00:05 0:00:05 --:--:-- 944k 100 5006k 100 5006k 0 0 917k 0 0:00:05 0:00:05 --:--:-- 1030k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 10 5006k 10 521k 0 0 1004k 0 0:00:04 --:--:-- 0:00:04 1004k 43 5006k 43 2191k 0 0 1442k 0 0:00:03 0:00:01 0:00:02 1443k 78 5006k 78 3930k 0 0 1559k 0 0:00:03 0:00:02 0:00:01 1559k 100 5006k 100 5006k 0 0 1560k 0 0:00:03 0:00:03 --:--:-- 1561k % 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 933k 100 933k 0 0 1223k 0 --:--:-- --:--:-- --:--:-- 1223k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 20 933k 20 192k 0 0 685k 0 0:00:01 --:--:-- 0:00:01 685k 100 933k 100 933k 0 0 1281k 0 --:--:-- --:--:-- --:--:-- 1280k % 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 4122k 31 1301k 0 0 1263k 0 0:00:03 0:00:01 0:00:02 1263k 68 4122k 68 2805k 0 0 1379k 0 0:00:02 0:00:02 --:--:-- 1379k 100 4122k 100 4122k 0 0 1421k 0 0:00:02 0:00:02 --:--:-- 1421k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 14 4122k 14 612k 0 0 1165k 0 0:00:03 --:--:-- 0:00:03 1164k 52 4122k 52 2174k 0 0 1431k 0 0:00:02 0:00:01 0:00:01 1430k 95 4122k 95 3934k 0 0 1561k 0 0:00:02 0:00:02 --:--:-- 1561k 100 4122k 100 4122k 0 0 1576k 0 0:00:02 0:00:02 --:--:-- 1575k % 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 328k 4 15716 0 0 159k 0 0:00:02 --:--:-- 0:00:02 159k 100 328k 100 328k 0 0 1075k 0 --:--:-- --:--:-- --:--:-- 1072k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 340k 100 340k 0 0 912k 0 --:--:-- --:--:-- --:--:-- 914k Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/src/libgltf-0.0.0.tar.bz2 and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/src/libgltf-0.0.0.tar.bz2 differ Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/src/libgltf-0.0.1.tar.bz2 and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/src/libgltf-0.0.1.tar.bz2 differ diff -Nru libreoffice-l10n-4.3.1~rc2/starmath/source/mathmlexport.cxx libreoffice-l10n-4.3.2/starmath/source/mathmlexport.cxx --- libreoffice-l10n-4.3.1~rc2/starmath/source/mathmlexport.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/starmath/source/mathmlexport.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -866,6 +866,7 @@ } else if (pTemp->GetType() == NLINE && pTemp->GetNumSubNodes() == 1 && + pTemp->GetSubNode(0) && pTemp->GetSubNode(0)->GetType() == NALIGN) { // For the Table() construction, the NALIGN node is a child diff -Nru libreoffice-l10n-4.3.1~rc2/svl/source/numbers/zformat.cxx libreoffice-l10n-4.3.2/svl/source/numbers/zformat.cxx --- libreoffice-l10n-4.3.1~rc2/svl/source/numbers/zformat.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svl/source/numbers/zformat.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -2241,6 +2241,30 @@ } } +static bool lcl_appendStarFillChar( OUStringBuffer& rBuf, const OUString& rStr ) +{ + // Right during user input the star symbol is the very + // last character before the user enters another one. + if (rStr.getLength() > 1) + { + rBuf.append((sal_Unicode) 0x1B); + rBuf.append(rStr[1]); + return true; + } + return false; +} + +static bool lcl_insertStarFillChar( OUStringBuffer& rBuf, sal_Int32 nPos, const OUString& rStr ) +{ + if (rStr.getLength() > 1) + { + rBuf.insert( nPos, rStr[1]); + rBuf.insert( nPos, (sal_Unicode) 0x1B); + return true; + } + return false; +} + bool SvNumberformat::GetOutputString(const OUString& sString, OUString& OutString, Color** ppColor) @@ -2273,9 +2297,7 @@ case NF_SYMBOLTYPE_STAR: if( bStarFlag ) { - sOutBuff.append((sal_Unicode) 0x1B); - sOutBuff.append(rInfo.sStrArray[i][1]); - bRes = true; + bRes = lcl_appendStarFillChar( sOutBuff, rInfo.sStrArray[i]); } break; case NF_SYMBOLTYPE_BLANK: @@ -2588,9 +2610,7 @@ case NF_SYMBOLTYPE_STAR: if( bStarFlag ) { - sBuff.append((sal_Unicode) 0x1B); - sBuff.append(rInfo.sStrArray[i][1]); - bRes = true; + bRes = lcl_appendStarFillChar( sBuff, rInfo.sStrArray[i]); } break; case NF_SYMBOLTYPE_BLANK: @@ -3214,9 +3234,7 @@ case NF_SYMBOLTYPE_STAR: if( bStarFlag ) { - sBuff.append((sal_Unicode)0x1B); - sBuff.append(rInfo.sStrArray[i][1]); - bRes = true; + bRes = lcl_appendStarFillChar( sBuff, rInfo.sStrArray[i]); } break; case NF_SYMBOLTYPE_BLANK: @@ -3712,9 +3730,7 @@ case NF_SYMBOLTYPE_STAR: if( bStarFlag ) { - sBuff.append((sal_Unicode) 0x1B); - sBuff.append(rInfo.sStrArray[i][1]); - bRes = true; + bRes = lcl_appendStarFillChar( sBuff, rInfo.sStrArray[i]); } break; case NF_SYMBOLTYPE_BLANK: @@ -4007,9 +4023,7 @@ case NF_SYMBOLTYPE_STAR: if( bStarFlag ) { - sBuff.append((sal_Unicode) 0x1B); - sBuff.append(rInfo.sStrArray[i][1]); - bRes = true; + bRes = lcl_appendStarFillChar( sBuff, rInfo.sStrArray[i]); } break; case NF_SYMBOLTYPE_BLANK: @@ -4340,9 +4354,7 @@ case NF_SYMBOLTYPE_STAR: if( bStarFlag ) { - sStr.insert(k, rInfo.sStrArray[j][1]); - sStr.insert(k, (sal_Unicode) 0x1B); - bRes = true; + bRes = lcl_insertStarFillChar( sStr, k, rInfo.sStrArray[j]); } break; case NF_SYMBOLTYPE_BLANK: @@ -4475,9 +4487,7 @@ case NF_SYMBOLTYPE_STAR: if( bStarFlag ) { - sBuff.insert(k, rInfo.sStrArray[j][1]); - sBuff.insert(k, (sal_Unicode) 0x1B); - bRes = true; + bRes = lcl_insertStarFillChar( sBuff, k, rInfo.sStrArray[j]); } break; case NF_SYMBOLTYPE_BLANK: @@ -4651,9 +4661,7 @@ case NF_SYMBOLTYPE_STAR: if( bStarFlag ) { - sBuff.insert(k, rInfo.sStrArray[j][1]); - sBuff.insert(k, sal_Unicode(0x1B)); - bRes = true; + bRes = lcl_insertStarFillChar( sBuff, k, rInfo.sStrArray[j]); } break; case NF_SYMBOLTYPE_BLANK: diff -Nru libreoffice-l10n-4.3.1~rc2/svl/source/numbers/zforscan.cxx libreoffice-l10n-4.3.2/svl/source/numbers/zforscan.cxx --- libreoffice-l10n-4.3.1~rc2/svl/source/numbers/zforscan.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svl/source/numbers/zforscan.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -933,6 +933,11 @@ } else { + // Valid only if there is a character following, else we are + // at the end of a code that does not have a fill character + // (yet?). + if (sStrArray[nAnzStrings].getLength() < 2) + return nPos; bStar = true; } } diff -Nru libreoffice-l10n-4.3.1~rc2/svtools/source/contnr/svimpbox.cxx libreoffice-l10n-4.3.2/svtools/source/contnr/svimpbox.cxx --- libreoffice-l10n-4.3.1~rc2/svtools/source/contnr/svimpbox.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svtools/source/contnr/svimpbox.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -2237,8 +2237,13 @@ case KEY_RIGHT: { - if( bSubLstOpLR && IsNowExpandable() ) - pView->Expand( pCursor ); + if( bSubLstOpLR ) + { + // only try to expand if sublist is expandable, + // otherwise ignore the key press + if( IsNowExpandable() ) + pView->Expand( pCursor ); + } else if ( bIsCellFocusEnabled && pCursor ) { if ( nCurTabPos < ( pView->TabCount() - 1 /*!2*/ ) ) @@ -2304,8 +2309,17 @@ } } } - else if( bSubLstOpLR && IsExpandable() ) - pView->Collapse( pCursor ); + else if( bSubLstOpLR ) + { + if( IsExpandable() && pView->IsExpanded( pCursor ) ) + pView->Collapse( pCursor ); + else + { + pNewCursor = pView->GetParent( pCursor ); + if( pNewCursor ) + SetCursor( pNewCursor ); + } + } else bKeyUsed = false; break; diff -Nru libreoffice-l10n-4.3.1~rc2/svtools/source/control/ctrlbox.cxx libreoffice-l10n-4.3.2/svtools/source/control/ctrlbox.cxx --- libreoffice-l10n-4.3.1~rc2/svtools/source/control/ctrlbox.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svtools/source/control/ctrlbox.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -19,6 +19,7 @@ #include +#include #include #include #include @@ -1724,7 +1725,7 @@ const sal_Unicode* pStr = aStr.getStr(); while ( *pStr ) { - if ( ((*pStr < '0') || (*pStr > '9')) && (*pStr != '%') ) + if ( ((*pStr < '0') || (*pStr > '9')) && (*pStr != '%') && !unicode::isSpace(*pStr) ) { if ( ('-' == *pStr || '+' == *pStr) && !bPtRelative ) bPtRelative = true; diff -Nru libreoffice-l10n-4.3.1~rc2/svtools/source/graphic/transformer.cxx libreoffice-l10n-4.3.2/svtools/source/graphic/transformer.cxx --- libreoffice-l10n-4.3.1~rc2/svtools/source/graphic/transformer.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svtools/source/graphic/transformer.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -147,7 +147,7 @@ ::Graphic aGraphic( *::unographic::Graphic::getImplementation( xIFace ) ); BitmapEx aBitmapEx( aGraphic.GetBitmapEx() ); - Bitmap aMask( aBitmapEx.GetMask() ); + AlphaMask aMask( aBitmapEx.GetAlpha() ); Bitmap aBitmap( aBitmapEx.GetBitmap() ); BmpFilterParam aFilter( (sal_uLong) nColorOne, (sal_uLong) nColorTwo ); aBitmap.Filter( BMP_FILTER_DUOTONE, &aFilter ); diff -Nru libreoffice-l10n-4.3.1~rc2/svtools/source/misc/acceleratorexecute.cxx libreoffice-l10n-4.3.2/svtools/source/misc/acceleratorexecute.cxx --- libreoffice-l10n-4.3.1~rc2/svtools/source/misc/acceleratorexecute.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svtools/source/misc/acceleratorexecute.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -181,8 +181,11 @@ OUString sCommand = impl_ts_findCommand(aAWTKey); // No Command found? Do nothing! User isnt interested on any error handling .-) - if (sCommand.isEmpty()) + // or for some reason m_xContext is NULL (which would crash impl_ts_getURLParser() + if (sCommand.isEmpty() || !m_xContext.is()) + { return false; + } // SAFE -> ---------------------------------- ::osl::ResettableMutexGuard aLock(m_aLock); diff -Nru libreoffice-l10n-4.3.1~rc2/svtools/source/misc/sampletext.cxx libreoffice-l10n-4.3.2/svtools/source/misc/sampletext.cxx --- libreoffice-l10n-4.3.1~rc2/svtools/source/misc/sampletext.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svtools/source/misc/sampletext.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -22,8 +22,10 @@ bool isSymbolFont(const Font &rFont) { return (rFont.GetCharSet() == RTL_TEXTENCODING_SYMBOL) || + rFont.GetName().equalsIgnoreAsciiCase("Apple Color Emoji") || rFont.GetName().equalsIgnoreAsciiCase("cmsy10") || rFont.GetName().equalsIgnoreAsciiCase("cmex10") || + rFont.GetName().equalsIgnoreAsciiCase("esint10") || rFont.GetName().equalsIgnoreAsciiCase("feta26") || rFont.GetName().equalsIgnoreAsciiCase("jsMath-cmsy10") || rFont.GetName().equalsIgnoreAsciiCase("jsMath-cmex10") || @@ -38,6 +40,12 @@ rFont.GetName().equalsIgnoreAsciiCase("Letters Laughing") || rFont.GetName().equalsIgnoreAsciiCase("MusiQwik") || rFont.GetName().equalsIgnoreAsciiCase("MusiSync") || + rFont.GetName().equalsIgnoreAsciiCase("stmary10") || + rFont.GetName().equalsIgnoreAsciiCase("Symbol") || + rFont.GetName().startsWith("STIXIntegrals") || + rFont.GetName().startsWith("STIXNonUnicode") || + rFont.GetName().startsWith("STIXSize") || + rFont.GetName().startsWith("STIXVariants") || isOpenSymbolFont(rFont); } @@ -49,6 +57,20 @@ OUString makeShortRepresentativeSymbolTextForSelectedFont(OutputDevice &rDevice) { + if (rDevice.GetFont().GetName() == "Symbol") + { + static const sal_Unicode aImplAppleSymbolText[] = { + 0x03BC, 0x2202, 0x2211, 0x220F, 0x03C0, 0x222B, 0x03A9, 0x221A, 0}; + OUString sSampleText(aImplAppleSymbolText); + bool bHasSampleTextGlyphs = (-1 == rDevice.HasGlyphs(rDevice.GetFont(), sSampleText)); + //It's the Apple version + if (bHasSampleTextGlyphs) + return OUString(aImplAppleSymbolText); + static const sal_Unicode aImplAdobeSymbolText[] = { + 0xF06D, 0xF0B6, 0xF0E5, 0xF0D5, 0xF070, 0xF0F2, 0xF057, 0xF0D6, 0}; + return OUString(aImplAdobeSymbolText); + } + const bool bOpenSymbol = isOpenSymbolFont(rDevice.GetFont()); if (!bOpenSymbol) @@ -62,11 +84,6 @@ // start just above the PUA used by most symbol fonts sal_uInt32 cNewChar = 0xFF00; -#ifdef MACOSX - // on MacOSX there are too many non-presentable symbols above the codepoint 0x0192 - if( !bOpenSymbol ) - cNewChar = 0x0192; -#endif const int nMaxCount = sizeof(aText)/sizeof(*aText) - 1; int nSkip = aFontCharMap.GetCharCount() / nMaxCount; @@ -92,7 +109,7 @@ static const sal_Unicode aImplSymbolFontText[] = { 0xF021,0xF032,0xF043,0xF054,0xF065,0xF076,0xF0B7,0xF0C8,0}; static const sal_Unicode aImplStarSymbolText[] = { - 0x2706,0x2704,0x270D,0xE033,0x2211,0x2288,0}; + 0x2702,0x2708,0x270D,0xE033,0x2211,0x2288,0}; const sal_Unicode* pText = bOpenSymbol ? aImplStarSymbolText : aImplSymbolFontText; OUString sSampleText(pText); bool bHasSampleTextGlyphs = (-1 == rDevice.HasGlyphs(rDevice.GetFont(), sSampleText)); @@ -141,6 +158,15 @@ sSampleText = OUString(aArab, SAL_N_ELEMENTS(aArab)); break; } + case USCRIPT_ARMENIAN: + { + const sal_Unicode aArmenian[] = { + 0x0561, 0x0575, 0x0562, 0x0578, 0x0582, 0x0562, 0x0565, + 0x0576 + }; + sSampleText = OUString(aArmenian, SAL_N_ELEMENTS(aArmenian)); + break; + } case USCRIPT_DEVANAGARI: { const sal_Unicode aDeva[] = { @@ -504,6 +530,9 @@ OUString sRet; switch( eLang & LANGUAGE_MASK_PRIMARY ) { + case LANGUAGE_ARMENIAN & LANGUAGE_MASK_PRIMARY: + sRet = makeRepresentativeTextForScript(USCRIPT_ARMENIAN); + break; case LANGUAGE_CHINESE & LANGUAGE_MASK_PRIMARY: sRet = makeRepresentativeTextForScript(USCRIPT_HAN); break; diff -Nru libreoffice-l10n-4.3.1~rc2/svtools/source/svrtf/svparser.cxx libreoffice-l10n-4.3.2/svtools/source/svrtf/svparser.cxx --- libreoffice-l10n-4.3.1~rc2/svtools/source/svrtf/svparser.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svtools/source/svrtf/svparser.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -185,6 +185,25 @@ } } } + else if( 0xef == c1 || 0xbb == c1 ) // check for UTF-8 BOM + { + rInput.ReadUChar( c2 ); + bErr = rInput.IsEof() || rInput.GetError(); + if( !bErr ) + { + if( ( 0xef == c1 && 0xbb == c2 ) || ( 0xbb == c1 && 0xef == c2 ) ) + { + unsigned char c3(0); + rInput.ReadUChar( c3 ); + bErr = rInput.IsEof() || rInput.GetError(); + if( !bErr && ( 0xbf == c3 ) ) + { + eSrcEnc = RTL_TEXTENCODING_UTF8; + bSeekBack = false; + } + } + } + } } if( bSeekBack ) rInput.Seek( 0 ); diff -Nru libreoffice-l10n-4.3.1~rc2/svx/Library_svxcore.mk libreoffice-l10n-4.3.2/svx/Library_svxcore.mk --- libreoffice-l10n-4.3.1~rc2/svx/Library_svxcore.mk 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svx/Library_svxcore.mk 2014-09-16 19:56:04.000000000 +0000 @@ -56,6 +56,7 @@ comphelper \ cppuhelper \ cppu \ + dbtools \ drawinglayer \ editeng \ fwe \ diff -Nru libreoffice-l10n-4.3.1~rc2/svx/source/fmcomp/gridcell.cxx libreoffice-l10n-4.3.2/svx/source/fmcomp/gridcell.cxx --- libreoffice-l10n-4.3.1~rc2/svx/source/fmcomp/gridcell.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svx/source/fmcomp/gridcell.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1083,7 +1083,6 @@ :DbLimitedLengthField(_rColumn) ,m_pEdit( NULL ) ,m_pPainterImplementation( NULL ) - ,m_nKeyType(::com::sun::star::util::NumberFormat::TEXT) ,m_bIsSimpleEdit( true ) { } @@ -1160,9 +1159,6 @@ implAdjustGenericFieldSetting( xModel ); - if (m_rColumn.GetParent().getNumberFormatter().is() && m_rColumn.GetKey()) - m_nKeyType = comphelper::getNumberFormatType(m_rColumn.GetParent().getNumberFormatter()->getNumberFormatsSupplier()->getNumberFormats(), m_rColumn.GetKey()); - DbLimitedLengthField::Init( rParent, xCursor ); } @@ -1184,18 +1180,10 @@ OUString DbTextField::GetFormatText(const Reference< XColumn >& _rxField, const Reference< XNumberFormatter >& xFormatter, Color** /*ppColor*/) { - OUString aString; - if ( _rxField.is() ) - try - { - aString = getFormattedValue( _rxField, xFormatter, m_rColumn.GetParent().getNullDate(), m_rColumn.GetKey(), m_nKeyType); - } - catch( const Exception& ) - { - DBG_UNHANDLED_EXCEPTION(); - } + const com::sun::star::uno::Reference xPS(_rxField, UNO_QUERY); + ::dbtools::FormattedColumnValue fmter( xFormatter, xPS ); - return aString; + return fmter.getFormattedValue(); } diff -Nru libreoffice-l10n-4.3.1~rc2/svx/source/form/fmview.cxx libreoffice-l10n-4.3.2/svx/source/form/fmview.cxx --- libreoffice-l10n-4.3.1~rc2/svx/source/form/fmview.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svx/source/form/fmview.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -130,9 +130,6 @@ } } - if( pObjShell && pObjShell->IsReadOnly() ) - bInitDesignMode = false; - // dieses wird in der Shell vorgenommen // bDesignMode = !bInitDesignMode; // erzwingt, dass SetDesignMode ausgefuehrt wird SetDesignMode( bInitDesignMode ); diff -Nru libreoffice-l10n-4.3.1~rc2/svx/source/inc/gridcell.hxx libreoffice-l10n-4.3.2/svx/source/inc/gridcell.hxx --- libreoffice-l10n-4.3.1~rc2/svx/source/inc/gridcell.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svx/source/inc/gridcell.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -393,7 +393,6 @@ { ::svt::IEditImplementation* m_pEdit; ::svt::IEditImplementation* m_pPainterImplementation; - sal_Int16 m_nKeyType; bool m_bIsSimpleEdit; protected: diff -Nru libreoffice-l10n-4.3.1~rc2/svx/source/svdraw/svdoedge.cxx libreoffice-l10n-4.3.2/svx/source/svdraw/svdoedge.cxx --- libreoffice-l10n-4.3.1~rc2/svx/source/svdraw/svdoedge.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svx/source/svdraw/svdoedge.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -570,6 +570,10 @@ } else { + // To not run in a depth loop, use a coloring algorithm on + // SdrEdgeObj BoundRect calculations + mbBoundRectCalculationRunning = true; + if(mbSuppressed) { // #i123048# If layouting was ever suppressed, it needs to be done once @@ -581,10 +585,6 @@ mbSuppressed = false; } - // To not run in a depth loop, use a coloring algorithm on - // SdrEdgeObj BoundRect calculations - mbBoundRectCalculationRunning = true; - Rectangle aBoundRect0; if (pUserCall!=NULL) aBoundRect0=GetCurrentBoundRect(); SetRectsDirty(); *pEdgeTrack=ImpCalcEdgeTrack(*pEdgeTrack,aCon1,aCon2,&aEdgeInfo); diff -Nru libreoffice-l10n-4.3.1~rc2/svx/source/table/cell.cxx libreoffice-l10n-4.3.2/svx/source/table/cell.cxx --- libreoffice-l10n-4.3.1~rc2/svx/source/table/cell.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svx/source/table/cell.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -265,6 +265,8 @@ { SfxItemSet aSet(pOutliner->GetParaAttribs(nPara)); aSet.Put(rSet); + if (aSet.GetItemState(EE_CHAR_COLOR, false) == SFX_ITEM_ON) + pOutliner->QuickRemoveCharAttribs( nPara, EE_CHAR_COLOR ); pOutliner->SetParaAttribs(nPara, aSet); } diff -Nru libreoffice-l10n-4.3.1~rc2/svx/uiconfig/ui/optgridpage.ui libreoffice-l10n-4.3.2/svx/uiconfig/ui/optgridpage.ui --- libreoffice-l10n-4.3.1~rc2/svx/uiconfig/ui/optgridpage.ui 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/svx/uiconfig/ui/optgridpage.ui 2014-09-16 19:56:04.000000000 +0000 @@ -1,19 +1,23 @@ + - + - 3.9399999999999999 + 0.01 + 10 1 0.20000000000000001 1 + 1 99 2 1 10 + 1 50 1 10 diff -Nru libreoffice-l10n-4.3.1~rc2/sw/CppunitTest_sw_htmlexport.mk libreoffice-l10n-4.3.2/sw/CppunitTest_sw_htmlexport.mk --- libreoffice-l10n-4.3.1~rc2/sw/CppunitTest_sw_htmlexport.mk 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/CppunitTest_sw_htmlexport.mk 2014-09-16 19:56:04.000000000 +0000 @@ -52,6 +52,7 @@ $(eval $(call gb_CppunitTest_use_components,sw_htmlexport,\ basic/util/sb \ + canvas/source/factory/canvasfactory \ comphelper/util/comphelp \ configmgr/source/configmgr \ embeddedobj/util/embobj \ @@ -64,6 +65,8 @@ linguistic/source/lng \ oox/util/oox \ package/source/xstor/xstor \ + sc/util/sc \ + sc/util/scfilt \ package/util/package2 \ sax/source/expatwrap/expwrap \ sw/util/sw \ Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sw/qa/core/data/ooxml/pass/fdo78906.docx and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sw/qa/core/data/ooxml/pass/fdo78906.docx differ Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sw/qa/core/data/ooxml/pass/liststyle-gridbefore.docx and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sw/qa/core/data/ooxml/pass/liststyle-gridbefore.docx differ Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sw/qa/extras/htmlexport/data/skipimage-embedded.doc and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sw/qa/extras/htmlexport/data/skipimage-embedded.doc differ Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sw/qa/extras/htmlexport/data/skipimage-embedded-document.docx and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sw/qa/extras/htmlexport/data/skipimage-embedded-document.docx differ diff -Nru libreoffice-l10n-4.3.1~rc2/sw/qa/extras/htmlexport/htmlexport.cxx libreoffice-l10n-4.3.2/sw/qa/extras/htmlexport/htmlexport.cxx --- libreoffice-l10n-4.3.1~rc2/sw/qa/extras/htmlexport/htmlexport.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/qa/extras/htmlexport/htmlexport.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -46,7 +46,7 @@ void preTest(const char* filename) SAL_OVERRIDE { - if (getTestName() == "testExportOfImagesWithSkipImageEnabled") + if (getTestName().indexOf("SkipImage") != -1) setFilterOptions("SkipImages"); else setFilterOptions(""); @@ -134,6 +134,34 @@ assertXPath(pDoc, "/html/body/p/img", 0); } +DECLARE_HTMLEXPORT_TEST(testSkipImageEmbedded, "skipimage-embedded.doc") +{ + // Embedded spreadsheet was exported as image, so content was lost. Make + // sure it's exported as HTML instead. + htmlDocPtr pDoc = parseHtml(maTempFile); + CPPUNIT_ASSERT(pDoc); + + // This was 0. + assertXPath(pDoc, "//table", 1); + // This was 2, the HTML header was in the document two times. + assertXPath(pDoc, "//meta[@name='generator']", 1); + // This was 0, was directly under

, which caused errors in the parser. + assertXPath(pDoc, "//span/table", 1); +} + +DECLARE_HTMLEXPORT_TEST(testSkipImageEmbeddedDocument, "skipimage-embedded-document.docx") +{ + // Similar to testSkipImageEmbedded, but with an embedded Writer object, + // not a Calc one, and this time OOXML, not WW8. + htmlDocPtr pDoc = parseHtml(maTempFile); + CPPUNIT_ASSERT(pDoc); + + // This was 2, the HTML header was in the document two times. + assertXPath(pDoc, "//meta[@name='generator']", 1); + // Text of embedded document was missing. + assertXPathContent(pDoc, "/html/body/p/span/p/span", "Inner."); +} + #endif CPPUNIT_PLUGIN_IMPLEMENT(); Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ooxmlexport/data/dashed_line_custdash_1000th_of_percent.docx and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sw/qa/extras/ooxmlexport/data/dashed_line_custdash_1000th_of_percent.docx differ Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ooxmlexport/data/dashed_line_custdash_percentage.docx and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sw/qa/extras/ooxmlexport/data/dashed_line_custdash_percentage.docx differ Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ooxmlexport/data/dashed_line_preset.docx and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sw/qa/extras/ooxmlexport/data/dashed_line_preset.docx differ Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ooxmlexport/data/first-header-footer.docx and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sw/qa/extras/ooxmlexport/data/first-header-footer.docx differ Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ooxmlexport/data/footer-body-distance.docx and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sw/qa/extras/ooxmlexport/data/footer-body-distance.docx differ diff -Nru libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport.cxx libreoffice-l10n-4.3.2/sw/qa/extras/ooxmlexport/ooxmlexport.cxx --- libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/qa/extras/ooxmlexport/ooxmlexport.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -906,8 +906,14 @@ DECLARE_OOXMLEXPORT_TEST(testFdo66145, "fdo66145.docx") { // The Writer ignored the 'First Is Shared' flag - uno::Reference xPropertySet(getStyles("PageStyles")->getByName("First Page"), uno::UNO_QUERY); - CPPUNIT_ASSERT_EQUAL(false, bool(getProperty(xPropertySet, "FirstIsShared"))); + CPPUNIT_ASSERT_EQUAL(OUString("This is the FIRST page header."), + parseDump("/root/page[1]/header/txt/text()")); + CPPUNIT_ASSERT_EQUAL( + OUString("This is the header for the REST OF THE FILE."), + parseDump("/root/page[2]/header/txt/text()")); + CPPUNIT_ASSERT_EQUAL( + OUString("This is the header for the REST OF THE FILE."), + parseDump("/root/page[3]/header/txt/text()")); } DECLARE_OOXMLEXPORT_TEST(testGrabBag, "grabbag.docx") @@ -3622,6 +3628,34 @@ "/word/embeddings/oleObject1.doc"); } +DECLARE_OOXMLEXPORT_TEST(testFirstHeaderFooter, "first-header-footer.docx") +{ + // Test import and export of a section's headerf/footerf properties. + // (copied from a ww8export test, with doc converted to docx using Word) + + // The document has 6 pages. Note that we don't test if 4 or just 2 page + // styles are created, the point is that layout should be correct. + CPPUNIT_ASSERT_EQUAL(OUString("First page header"), parseDump("/root/page[1]/header/txt/text()")); + CPPUNIT_ASSERT_EQUAL(OUString("First page footer"), parseDump("/root/page[1]/footer/txt/text()")); + CPPUNIT_ASSERT_EQUAL(OUString("Even page header"), parseDump("/root/page[2]/header/txt/text()")); + CPPUNIT_ASSERT_EQUAL(OUString("Even page footer"), parseDump("/root/page[2]/footer/txt/text()")); + CPPUNIT_ASSERT_EQUAL(OUString("Odd page header"), parseDump("/root/page[3]/header/txt/text()")); + CPPUNIT_ASSERT_EQUAL(OUString("Odd page footer"), parseDump("/root/page[3]/footer/txt/text()")); + CPPUNIT_ASSERT_EQUAL(OUString("First page header2"), parseDump("/root/page[4]/header/txt/text()")); + CPPUNIT_ASSERT_EQUAL(OUString("First page footer 2"), parseDump("/root/page[4]/footer/txt/text()")); + CPPUNIT_ASSERT_EQUAL(OUString("Odd page header 2"), parseDump("/root/page[5]/header/txt/text()")); + CPPUNIT_ASSERT_EQUAL(OUString("Odd page footer 2"), parseDump("/root/page[5]/footer/txt/text()")); + CPPUNIT_ASSERT_EQUAL(OUString("Even page header 2"), parseDump("/root/page[6]/header/txt/text()")); + CPPUNIT_ASSERT_EQUAL(OUString("Even page footer 2"), parseDump("/root/page[6]/footer/txt/text()")); +} + +DECLARE_OOXMLEXPORT_TEST(testFooterBodyDistance, "footer-body-distance.docx") +{ + if (xmlDocPtr pXmlDoc = parseExport()) + // Page break was exported as section break, this was 0 + assertXPath(pXmlDoc, "/w:document/w:body/w:p/w:r/w:br", 1); +} + #endif CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx libreoffice-l10n-4.3.2/sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx --- libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1519,6 +1519,68 @@ CPPUNIT_ASSERT_EQUAL(false, bool(getProperty(getShape(1), "Opaque"))); } +DECLARE_OOXMLEXPORT_TEST(testDashedLinePreset, "dashed_line_preset.docx") +{ + /* Make sure that preset line is exported correctly as "1000th of a percent". + * This test-file has a PRESET dash-line which will be converted by LO import + * to a custom-dash (dash-dot-dot). This test-case makes sure that the exporter + * outputs the correct values. + */ + xmlDocPtr pXmlDoc = parseExport("word/document.xml"); + if (!pXmlDoc) + return; + + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[1]", "d" , "800000"); + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[1]", "sp", "300000"); + + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[2]", "d" , "100000"); + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[2]", "sp", "300000"); + + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[3]", "d" , "100000"); + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[3]", "sp", "300000"); +} + +DECLARE_OOXMLEXPORT_TEST(testDashedLine_CustDash1000thOfPercent, "dashed_line_custdash_1000th_of_percent.docx") +{ + /* Make sure that preset line is exported correctly as "1000th of a percent". + * This test-file has a CUSTOM dash-line that is defined as '1000th of a percent'. + * This should be imported by LO as-is, and exported back with the same values. + */ + xmlDocPtr pXmlDoc = parseExport("word/document.xml"); + if (!pXmlDoc) + return; + + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[1]", "d" , "800000"); + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[1]", "sp", "300000"); + + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[2]", "d" , "100000"); + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[2]", "sp", "300000"); + + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[3]", "d" , "100000"); + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[3]", "sp", "300000"); +} + +DECLARE_OOXMLEXPORT_TEST(testDashedLine_CustDashPercentage, "dashed_line_custdash_percentage.docx") +{ + /* Make sure that preset line is exported correctly as "1000th of a percent". + * This test-file has a CUSTOM dash-line that is defined as percentages. + * This should be imported by LO as '1000th of a percent', and exported back + * as '1000th of a percent'. + */ + xmlDocPtr pXmlDoc = parseExport("word/document.xml"); + if (!pXmlDoc) + return; + + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[1]", "d" , "800000"); + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[1]", "sp", "300000"); + + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[2]", "d" , "100000"); + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[2]", "sp", "300000"); + + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[3]", "d" , "100000"); + assertXPath(pXmlDoc,"/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/a:graphic[1]/a:graphicData[1]/wps:wsp[1]/wps:spPr[1]/a:ln[1]/a:custDash[1]/a:ds[3]", "sp", "300000"); +} + #endif CPPUNIT_PLUGIN_IMPLEMENT(); Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ooxmlimport/data/bnc519228_odd-breaks.docx and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sw/qa/extras/ooxmlimport/data/bnc519228_odd-breaks.docx differ Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ooxmlimport/data/hidemark.docx and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sw/qa/extras/ooxmlimport/data/hidemark.docx differ diff -Nru libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx libreoffice-l10n-4.3.2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx --- libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -52,6 +52,7 @@ #include #include #include +#include #include #include #include @@ -2220,6 +2221,49 @@ CPPUNIT_ASSERT( tableWidth.toInt32() > 10000 ); } +DECLARE_OOXMLIMPORT_TEST(testHidemark, "hidemark.docx") +{ + // Problem was that cell property was ignored. + uno::Reference xTablesSupplier(mxComponent, uno::UNO_QUERY); + uno::Reference xTables(xTablesSupplier->getTextTables( ), uno::UNO_QUERY); + uno::Reference xTextTable(xTables->getByIndex(0), uno::UNO_QUERY); + uno::Reference xTableRows(xTextTable->getRows(), uno::UNO_QUERY); + // Height should be minimal + CPPUNIT_ASSERT_EQUAL(convertTwipToMm100(MINLAY), getProperty(xTableRows->getByIndex(1), "Height")); + // Size type was MIN, should be FIX to avoid considering the end of paragraph marker. + CPPUNIT_ASSERT_EQUAL(text::SizeType::FIX, getProperty(xTableRows->getByIndex(1), "SizeType")); +} + +DECLARE_OOXMLIMPORT_TEST(testBnc519228OddBreaks, "bnc519228_odd-breaks.docx") +{ + // Check that all the normal styles are not set as right-only, those should be only those used after odd page breaks. + uno::Reference defaultStyle(getStyles("PageStyles")->getByName(DEFAULT_STYLE), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(uno::makeAny(style::PageStyleLayout_ALL), defaultStyle->getPropertyValue("PageStyleLayout")); + uno::Reference firstPage( getStyles("PageStyles")->getByName("First Page"), uno::UNO_QUERY ); + CPPUNIT_ASSERT_EQUAL(uno::makeAny(style::PageStyleLayout_ALL), firstPage->getPropertyValue("PageStyleLayout")); + + OUString page1StyleName = getProperty( getParagraph( 1, "This is the first page." ), "PageDescName"); + uno::Reference page1Style(getStyles("PageStyles")->getByName(page1StyleName), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(uno::makeAny(style::PageStyleLayout_RIGHT), page1Style->getPropertyValue("PageStyleLayout")); + getParagraphOfText( 1, getProperty< uno::Reference >(page1Style, "HeaderText"), "This is the header for odd pages"); + + // Page2 comes from follow of style for page 1 and should be a normal page. Also check the two page style have the same properties, + // since page style for page1 was created from page style for page 2. + OUString page2StyleName = getProperty( getParagraph( 3, "This is page 2, which is obviously an even page." ), "PageDescName"); + CPPUNIT_ASSERT_EQUAL(OUString(), page2StyleName); + page2StyleName = getProperty( page1Style, "FollowStyle" ); + uno::Reference page2Style(getStyles("PageStyles")->getByName(page2StyleName), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(uno::makeAny(style::PageStyleLayout_ALL), page2Style->getPropertyValue("PageStyleLayout")); + getParagraphOfText( 1, getProperty< uno::Reference >(page2Style, "HeaderTextLeft"), "This is the even header"); + getParagraphOfText( 1, getProperty< uno::Reference >(page2Style, "HeaderTextRight"), "This is the header for odd pages"); + CPPUNIT_ASSERT_EQUAL(getProperty(page1Style, "TopMargin"), getProperty(page2Style, "TopMargin")); + + OUString page5StyleName = getProperty( getParagraph( 5, "Then an odd break after an odd page, should lead us to page #5." ), "PageDescName"); + uno::Reference page5Style(getStyles("PageStyles")->getByName(page5StyleName), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(uno::makeAny(style::PageStyleLayout_RIGHT), page5Style->getPropertyValue("PageStyleLayout")); + getParagraphOfText( 1, getProperty< uno::Reference >(page5Style, "HeaderText"), "This is the header for odd pages"); +} + #endif CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-4.3.1~rc2/sw/qa/extras/rtfexport/data/fdo79599.rtf libreoffice-l10n-4.3.2/sw/qa/extras/rtfexport/data/fdo79599.rtf --- libreoffice-l10n-4.3.1~rc2/sw/qa/extras/rtfexport/data/fdo79599.rtf 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/qa/extras/rtfexport/data/fdo79599.rtf 2014-09-16 19:56:04.000000000 +0000 @@ -0,0 +1,38 @@ +{\rtf1\deff0 +{\fonttbl +{\f000 Courier New;} +} +{\colortbl; +\red0\green0\blue0; +\red255\green255\blue0; +\red0\green255\blue0; +\red0\green255\blue255; +\red255\green0\blue255; +\red0\green0\blue255; +\red255\green0\blue0; +\red0\green0\blue128; +\red0\green128\blue128; +\red0\green128\blue0; +\red128\green0\blue128; +\red128\green0\blue0; +\red128\green128\blue0; +\red128\green128\blue128; +\red192\green192\blue192; +} +\highlight0 Should be ignored\par +\highlight2 #FFFF00 = Yellow\par +\highlight3 #00FF00 = Green\par +\highlight4 #00FFFF = Cyan\par +\highlight5 #FF00FF = Magenta\par +\highlight6 #0000FF = Blue\par +\highlight7 #FF0000 = Red\par +\highlight8 #000080 = Dark blue\par +\highlight9 #008080 = Dark cyan\par +\highlight10 #008000 = Dark green\par +\highlight11 #800080 = Dark magenta\par +\highlight12 #800000 = Dark red\par +\highlight13 #808000 = Dark yellow\par +\highlight14 #808080 = Dark gray\par +\highlight15 #C0C0C0 = Light gray\par +\highlight1 #000000 = Black\par +} diff -Nru libreoffice-l10n-4.3.1~rc2/sw/qa/extras/rtfexport/rtfexport.cxx libreoffice-l10n-4.3.2/sw/qa/extras/rtfexport/rtfexport.cxx --- libreoffice-l10n-4.3.1~rc2/sw/qa/extras/rtfexport/rtfexport.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/qa/extras/rtfexport/rtfexport.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -650,6 +650,15 @@ CPPUNIT_ASSERT_EQUAL(2, getPages()); } +DECLARE_RTFEXPORT_TEST(testFdo79599, "fdo79599.rtf") +{ + // test for \highlightNN, document has full \colortbl (produced in MS Word 2003 or 2007) + + // test \highlight11 = dark magenta + uno::Reference xRun(getRun(getParagraph(11),1), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x800080), getProperty(xRun, "CharBackColor")); +} + #endif CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-4.3.1~rc2/sw/qa/extras/rtfimport/data/fdo79599.rtf libreoffice-l10n-4.3.2/sw/qa/extras/rtfimport/data/fdo79599.rtf --- libreoffice-l10n-4.3.1~rc2/sw/qa/extras/rtfimport/data/fdo79599.rtf 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/qa/extras/rtfimport/data/fdo79599.rtf 2014-09-16 19:56:04.000000000 +0000 @@ -0,0 +1,38 @@ +{\rtf1\deff0 +{\fonttbl +{\f000 Courier New;} +} +{\colortbl; +\red0\green0\blue0; +\red255\green255\blue0; +\red0\green255\blue0; +\red0\green255\blue255; +\red255\green0\blue255; +\red0\green0\blue255; +\red255\green0\blue0; +\red0\green0\blue128; +\red0\green128\blue128; +\red0\green128\blue0; +\red128\green0\blue128; +\red128\green0\blue0; +\red128\green128\blue0; +\red128\green128\blue128; +\red192\green192\blue192; +} +\highlight0 Should be ignored\par +\highlight2 #FFFF00 = Yellow\par +\highlight3 #00FF00 = Green\par +\highlight4 #00FFFF = Cyan\par +\highlight5 #FF00FF = Magenta\par +\highlight6 #0000FF = Blue\par +\highlight7 #FF0000 = Red\par +\highlight8 #000080 = Dark blue\par +\highlight9 #008080 = Dark cyan\par +\highlight10 #008000 = Dark green\par +\highlight11 #800080 = Dark magenta\par +\highlight12 #800000 = Dark red\par +\highlight13 #808000 = Dark yellow\par +\highlight14 #808080 = Dark gray\par +\highlight15 #C0C0C0 = Light gray\par +\highlight1 #000000 = Black\par +} diff -Nru libreoffice-l10n-4.3.1~rc2/sw/qa/extras/rtfimport/data/fdo82106.rtf libreoffice-l10n-4.3.2/sw/qa/extras/rtfimport/data/fdo82106.rtf --- libreoffice-l10n-4.3.1~rc2/sw/qa/extras/rtfimport/data/fdo82106.rtf 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/qa/extras/rtfimport/data/fdo82106.rtf 2014-09-16 19:56:04.000000000 +0000 @@ -0,0 +1,4 @@ +{\rtf1 +hello{\footnote footnote content}\par +before\tab after\par +} diff -Nru libreoffice-l10n-4.3.1~rc2/sw/qa/extras/rtfimport/data/picture-wrap-polygon.rtf libreoffice-l10n-4.3.2/sw/qa/extras/rtfimport/data/picture-wrap-polygon.rtf --- libreoffice-l10n-4.3.1~rc2/sw/qa/extras/rtfimport/data/picture-wrap-polygon.rtf 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/qa/extras/rtfimport/data/picture-wrap-polygon.rtf 2014-09-16 19:56:04.000000000 +0000 @@ -0,0 +1,47 @@ +{\rtf1\pard\plain +{\shp +{\*\shpinst\shpleft-1177\shptop-67\shpright1613\shpbottom2723\shpfhdr0\shpbxcolumn\shpbxignore\shpbypara\shpbyignore\shpwr4\shpwrk0\shpfblwtxt1\shpz0\shplid1026 +{\sp{\sn shapeType}{\sv 75}} +{\sp +{\sn pib} +{\sv +{\pict\picscalex218\picscaley218\piccropl0\piccropr0\piccropt0\piccropb0 +\picw2258\pich2258\picwgoal1280\pichgoal1280\pngblip\bliptag1974568719 +89504e470d0a1a0a0000000d4948445200000040000000400806000000aa6971de0000000473424954080808087c086488000000097048597300000b1200000b +1201d2dd7efc0000001874455874536f6674776172650041646f62652046697265776f726b734fb31f4e0000059049444154789ced9bdd8bd45518c73fcff9bd +ccecbc38abbbea14b551a94890a4d04579515646d44d4160443782418410485df50f14417411dde47528845117929ba85d488808dbcb85a5bdd9a6bbae2f3bed +b8cefce6f73b4f1733b3ad26eeac737676dcf10be7665ece79ce73bee77b9ee739bf9fa82a4dbcfe4da918faec0a3dd966842161694001ab9c8912dd1bc57cf8 +e9d6c258f33b693ae0cd43a56db994ec2ea44d2e1b0a812798c5b2d8312c504b942b9152aad872b9aa3b3e79aab0171a0ed879b8b46d2063f60c663d72a1107a +82b75466df4062214a9472a45cb8927071dabef2f196c25e79e3e0647155ce9c2ae6bd5c3e6596dcc4af476261aa6a199b4acae7cb76ad9f4bc9ae155993cba5 +0463149dbb8fdb1ac6402e25acb026375dd39dfeb2b4bc940d0423a04b7df60d18816c202c4bc94b7e5f60867c4fb08b6d5587e179423a9435beef118a61c953 +ff7a18038127a12f8dc3bed71c0020023eda3b7bff7f50f02df4dcfe6fc202bea2688f5240517ca537f73fd4e77d670bdc1141dc3240808dcb03d6e43d065286 +52a4fc5a8e397eb1d6754cab8ba04306580b2fde9be29eac37f359211436ad0818ca78ecfbab4adc4574d3ff18d0be5156e1e14270cde46763306dd8b4dce3e8 +855ad7649c1630cd53a0dd564b944756f8371df0a1fe80285127e3b96abe6a7df5da4535864278f3a5cdf8825a71329e0bccda02ed23d67a9a39172c8aa53baa +8d4e45b0d5556d32ae1b5cd060803a6140abb5a4e678dde0008bbad38056fb7877437ede7d8f5db57c3f5963e4720d71e839a71ab090414eb1cf50ec4b715fc6 +63df6805e3e81875aa019d886fd6177cd6977c4e4ec54e98a00aa6c980765ba74eb647070222ab4e6c9ea907b8d180ceb8a03f3444b13a892615bd3d3460362e +572d89bab3d95d32d4a13d7062a2561fce916edd560c385d8a393c1e91ed73cc804ec601b782f169cbd1b18803a315b219831137f984d348b0d5947afba149aa +f3b05e043c03e940c8648430001537779816c5b78e18d06a17858c901899d7396e1a4ef03d0171c736abd4abc29dd4003f1082e0d67201d715ec997a40272341 +e37005dbc5a29c02abd31e7f4789d3a4e6566101dfaa9b485055998e958c7ff3993d3618b06734ee8abaa055add7045de502172a73f3e0f155211bfb8399686e +319b530d00f86d2a612877e3aaf06c6c7f20c3ba8988e3976b8c4e27448b542a77aa011818b954e3c9bbc2967ebe7965c8e695adfd76ac623971a9c6f07885a4 +1d1baf435d0370a4ca22fc3819538a9442e856e18a69c30b77a7589ff7f8e8f4348923c634ee05b451a76baf214a622c5ffe79d5897137c283799fa7570624ea +c66645314d0d68b741fdc1a3e17355fe987249d46bb1b13f2449dcd8ecb422640131600278ff87294ad1c2e4878550a839ac0899662ee0a229751694acf2de48 +99a99a7b751f9fb658ebce66677783cd26068250f8bd92f0f6b17f182dbbdd0e87ce55415cde0d3a4a8767433c0852301925bc756c92678a695e5b97211fb477 +3a1c395be5c844953025b8b8d1d6e6c5c842c421c640180ac6c0c1f35586cf56d8b03c64f3ea90fb9779e403433133773c1c5b383919b3ff4c85ef2e45f4a5eb +a974d795c46e08035e20a43c4812f8e94a8d915f6a58aba86d28f11c5dd40b22f5143a95168c0f2a6ed262b745d19bc0183046f03c080250ad2f61abc38ad4ff +3bf354ab237b179e01d7c330eb5a6bfe7ad0142e57b080dfecb857d1d802bde982ce6f812e43c744b05ba1ca9d67857d8548a1b5cac4128342e45be58c55d62c +b6318b01abfc6cacd52f9a995c2f35ab60ad7e25cf0e4f14c33e39653c726efc7a7bc02694ab5775ad39b075702c8ed9d14b2cb00a71cc8ee1ad8363332f4f3f +ffedc5573d9fdd22f4397171974295ab49cc8efd4f0c7c06b3de1e0778eef0c5a2e7f38e185e166168d1ac5c00a872462d9f27311f7cbd6560e6f5f97f01f618b11f3ea233690000000049454e44ae426082} +} +} +{\sp +{\sn pWrapPolygonVertices} +{\sv 8;11;(7781,4181);(5923,4994);(5458,14284);(7200,16839);(15445,16490);(15678,13355);(15910,11497);(16026,7432);(12078,6271);(10219,5110);(7781,4181)} +} +{\sp +{\sn fBehindDocument} +{\sv 1} +} +} +} +Suddenly next to him, with a barely noticeable squeak, a door swung quietly to and fro in the night's breeze. Could this be the haven he'd prayed for? Slowly he slid toward the door, pressing himself more and more into the wall, into the dark, away from his enemy. Would this door save his hide?\par +} diff -Nru libreoffice-l10n-4.3.1~rc2/sw/qa/extras/rtfimport/rtfimport.cxx libreoffice-l10n-4.3.2/sw/qa/extras/rtfimport/rtfimport.cxx --- libreoffice-l10n-4.3.1~rc2/sw/qa/extras/rtfimport/rtfimport.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/qa/extras/rtfimport/rtfimport.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include @@ -544,6 +545,59 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(-1), getProperty(getRun(getParagraph(1), 1), "CharBackColor")); } +DECLARE_RTFIMPORT_TEST(testFdo79599, "fdo79599.rtf") +{ + // test for \highlightNN, document has full \colortbl (produced in MS Word 2003 or 2007) + + // ignore \highlight0 + CPPUNIT_ASSERT_EQUAL(sal_Int32(-1), getProperty(getRun(getParagraph(1), 1), "CharBackColor")); + + // test \highlight2 = yellow + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0xFFFF00), getProperty(getRun(getParagraph(2), 1), "CharBackColor")); + + // test \highlight3 = green + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x00FF00), getProperty(getRun(getParagraph(3), 1), "CharBackColor")); + + // test \highlight4 = cyan + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x00FFFF), getProperty(getRun(getParagraph(4), 1), "CharBackColor")); + + // test \highlight5 = magenta + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0xFF00FF), getProperty(getRun(getParagraph(5), 1), "CharBackColor")); + + // test \highlight6 = blue + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x0000FF), getProperty(getRun(getParagraph(6), 1), "CharBackColor")); + + // test \highlight7 = red + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0xFF0000), getProperty(getRun(getParagraph(7), 1), "CharBackColor")); + + // test \highlight8 = dark blue + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x000080), getProperty(getRun(getParagraph(8), 1), "CharBackColor")); + + // test \highlight9 = dark cyan + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x008080), getProperty(getRun(getParagraph(9), 1), "CharBackColor")); + + // test \highlight10 = dark green + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x008000), getProperty(getRun(getParagraph(10), 1), "CharBackColor")); + + // test \highlight11 = dark magenta + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x800080), getProperty(getRun(getParagraph(11), 1), "CharBackColor")); + + // test \highlight12 = dark red + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x800000), getProperty(getRun(getParagraph(12), 1), "CharBackColor")); + + // test \highlight13 = dark yellow + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x808000), getProperty(getRun(getParagraph(13), 1), "CharBackColor")); + + // test \highlight14 = dark gray + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x808080), getProperty(getRun(getParagraph(14), 1), "CharBackColor")); + + // test \highlight15 = light gray + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0xC0C0C0), getProperty(getRun(getParagraph(15), 1), "CharBackColor")); + + // test \highlight1 = black + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x000000), getProperty(getRun(getParagraph(16), 1), "CharBackColor")); +} + DECLARE_RTFIMPORT_TEST(testFdo50665, "fdo50665.rtf") { // Access the second run, which is a textfield @@ -1091,8 +1145,8 @@ uno::Reference xTextRange = getRun(getParagraph(1), 1); // Was the Writer default font. CPPUNIT_ASSERT_EQUAL(OUString("Courier New"), getProperty(xTextRange, "CharFontName")); - // Was 0x008000. - CPPUNIT_ASSERT_EQUAL(COL_AUTO, getProperty(xTextRange, "CharBackColor")); + // It is white (0xFFFFFF) in document + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0xFFFFFF), getProperty(xTextRange, "CharBackColor")); } DECLARE_RTFIMPORT_TEST(testFdo62288, "fdo62288.rtf") @@ -1820,6 +1874,19 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(2), getProperty(xPropertySet, "OutlineLevel")); } +DECLARE_RTFIMPORT_TEST(testFdo82106, "fdo82106.rtf") +{ + // Tab was missing after footnote not containing a tab. + getParagraph(2, "before\tafter"); +} + +DECLARE_RTFIMPORT_TEST(testPictureWrapPolygon, "picture-wrap-polygon.rtf") +{ + // The shape also didn't have negative top / left coordinates. + CPPUNIT_ASSERT_EQUAL(sal_Int32(convertTwipToMm100(-1177)), getProperty(getShape(1), "HoriOrientPosition")); + CPPUNIT_ASSERT_EQUAL(sal_Int32(convertTwipToMm100(-67)), getProperty(getShape(1), "VertOrientPosition")); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ww8import/data/bnc787942.doc and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sw/qa/extras/ww8import/data/bnc787942.doc differ Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ww8import/data/fdo81102.doc and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/sw/qa/extras/ww8import/data/fdo81102.doc differ diff -Nru libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ww8import/ww8import.cxx libreoffice-l10n-4.3.2/sw/qa/extras/ww8import/ww8import.cxx --- libreoffice-l10n-4.3.1~rc2/sw/qa/extras/ww8import/ww8import.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/qa/extras/ww8import/ww8import.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -490,6 +490,28 @@ CPPUNIT_ASSERT( tableWidth.toInt32() > 10000 ); } +DECLARE_WW8IMPORT_TEST(testBnc787942, "bnc787942.doc") +{ + // The frame ended up on the second page instead of first. + parseDump("/root/page[1]/body/txt[4]/anchored"); +} + +DECLARE_WW8IMPORT_TEST(testFdo81102, "fdo81102.doc") +{ + // get page style at beginning of document + uno::Reference textDocument( + mxComponent, uno::UNO_QUERY); + uno::Reference start( + textDocument->getText()->getStart(), uno::UNO_QUERY); + OUString pageStyleName = getProperty(start, "PageStyleName"); + uno::Reference pageStyle( + getStyles("PageStyles")->getByName(pageStyleName), uno::UNO_QUERY); + + // check that left and right pages do not share the same header + bool headerIsShared = getProperty(pageStyle, "HeaderIsShared"); + CPPUNIT_ASSERT(!headerIsShared); +} + #endif CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-4.3.1~rc2/sw/source/core/crsr/annotationmark.cxx libreoffice-l10n-4.3.2/sw/source/core/crsr/annotationmark.cxx --- libreoffice-l10n-4.3.1~rc2/sw/source/core/crsr/annotationmark.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/source/core/crsr/annotationmark.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -49,9 +49,11 @@ void AnnotationMark::InitDoc(SwDoc* const io_pDoc) { - SwTxtFld* pTxtFld = - GetMarkEnd().nNode.GetNode().GetTxtNode()->GetFldTxtAttrAt( - GetMarkEnd().nContent.GetIndex()-1, true ); + SwTxtNode *pTxtNode = GetMarkEnd().nNode.GetNode().GetTxtNode(); + + SwTxtFld* pTxtFld = pTxtNode ? + pTxtNode->GetFldTxtAttrAt( + GetMarkEnd().nContent.GetIndex()-1, true ) : NULL; OSL_ENSURE( pTxtFld != NULL, " - missing text attribute for annotation field!" ); if ( pTxtFld != NULL ) { diff -Nru libreoffice-l10n-4.3.1~rc2/sw/source/core/uibase/app/docsh.cxx libreoffice-l10n-4.3.2/sw/source/core/uibase/app/docsh.cxx --- libreoffice-l10n-4.3.1~rc2/sw/source/core/uibase/app/docsh.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/source/core/uibase/app/docsh.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1076,6 +1076,7 @@ void SwDocShell::SetView(SwView* pVw) { + SetViewShell_Impl(pVw); if ( 0 != (pView = pVw) ) pWrtShell = &pView->GetWrtShell(); else diff -Nru libreoffice-l10n-4.3.1~rc2/sw/source/core/uibase/inc/view.hxx libreoffice-l10n-4.3.2/sw/source/core/uibase/inc/view.hxx --- libreoffice-l10n-4.3.1~rc2/sw/source/core/uibase/inc/view.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/source/core/uibase/inc/view.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -29,6 +29,7 @@ #include #include #include +#include #include #include "swdllapi.h" #include @@ -63,7 +64,6 @@ class SwWrtShell; class SwView_Impl; struct SwSearchOptions; -class FmFormShell; class CommandEvent; class InsCaptionOpt; class SvGlobalName; @@ -593,8 +593,8 @@ SfxShell *GetCurShell() { return m_pShell; } SwDocShell *GetDocShell(); inline const SwDocShell *GetDocShell() const; - inline FmFormShell *GetFormShell() { return m_pFormShell; } - inline const FmFormShell *GetFormShell() const { return m_pFormShell; } + inline virtual FmFormShell *GetFormShell() SAL_OVERRIDE { return m_pFormShell; } + inline virtual const FmFormShell *GetFormShell() const SAL_OVERRIDE { return m_pFormShell; } // so that in the SubShells' DTors m_pShell can be reset if applicable void ResetSubShell() { m_pShell = 0; } diff -Nru libreoffice-l10n-4.3.1~rc2/sw/source/core/uibase/utlui/glbltree.cxx libreoffice-l10n-4.3.2/sw/source/core/uibase/utlui/glbltree.cxx --- libreoffice-l10n-4.3.1~rc2/sw/source/core/uibase/utlui/glbltree.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/source/core/uibase/utlui/glbltree.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -396,7 +396,7 @@ pMenu->EnableItem(CTX_INSERT_FILE, 0 != (nEnableFlags & ENABLE_INSERT_FILE)); pMenu->EnableItem(CTX_INSERT_NEW_FILE, 0 != (nEnableFlags & ENABLE_INSERT_FILE)); pMenu->SetSelectHdl(LINK(this, SwGlobalTree, PopupHdl)); - pMenu->Execute( pBox, pBox->GetItemRect(nTbxId).BottomLeft()); + pMenu->Execute(pBox, pBox->GetItemRect(nTbxId)); delete pMenu; pBox->EndSelection(); pBox->Invalidate(); @@ -411,7 +411,7 @@ } pMenu->EnableItem(CTX_UPDATE_SEL, 0 != (nEnableFlags & ENABLE_UPDATE_SEL)); pMenu->SetSelectHdl(LINK(this, SwGlobalTree, PopupHdl)); - pMenu->Execute( pBox, pBox->GetItemRect(nTbxId).BottomLeft()); + pMenu->Execute(pBox, pBox->GetItemRect(nTbxId)); delete pMenu; pBox->EndSelection(); pBox->Invalidate(); @@ -665,7 +665,6 @@ case GLBLDOC_UNKNOWN: { sEntry = aContextStrings[ST_TEXT - ST_GLOBAL_CONTEXT_FIRST]; - aImage = aEntryImages.GetImage(SID_SW_START + GLOBAL_CONTENT_TEXT); } break; case GLBLDOC_TOXBASE: diff -Nru libreoffice-l10n-4.3.1~rc2/sw/source/core/unocore/unotext.cxx libreoffice-l10n-4.3.2/sw/source/core/unocore/unotext.cxx --- libreoffice-l10n-4.3.1~rc2/sw/source/core/unocore/unotext.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/source/core/unocore/unotext.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -2136,12 +2136,20 @@ xCellCurs->gotoEnd( sal_True ); const uno::Reference< beans::XPropertyState > xCellTextPropState(xCellCurs, uno::UNO_QUERY); - const beans::PropertyState state = xCellTextPropState->getPropertyState(rName); - if (state == beans::PropertyState_DEFAULT_VALUE) + try { - const uno::Reference< beans::XPropertySet > - xCellTextProps(xCellCurs, uno::UNO_QUERY); - xCellTextProps->setPropertyValue(rName, rValue); + const beans::PropertyState state = xCellTextPropState->getPropertyState(rName); + if (state == beans::PropertyState_DEFAULT_VALUE) + { + const uno::Reference< beans::XPropertySet > + xCellTextProps(xCellCurs, uno::UNO_QUERY); + xCellTextProps->setPropertyValue(rName, rValue); + } + } + catch (const uno::Exception& e) + { + SAL_WARN( "sw.uno", "Exception when getting PropertyState: " + + rName + ". Message: " + e.Message ); } } } diff -Nru libreoffice-l10n-4.3.1~rc2/sw/source/filter/html/htmlplug.cxx libreoffice-l10n-4.3.2/sw/source/filter/html/htmlplug.cxx --- libreoffice-l10n-4.3.1~rc2/sw/source/filter/html/htmlplug.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/source/filter/html/htmlplug.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -41,6 +41,8 @@ #include #include +#include +#include #include "pam.hxx" #include "doc.hxx" #include "ndtxt.hxx" @@ -51,10 +53,13 @@ #include "wrthtml.hxx" #include "htmlfly.hxx" #include "swcss1.hxx" +#include "unocoll.hxx" +#include "unoframe.hxx" #include #include #include #include +#include #include #include @@ -1249,9 +1254,6 @@ { SwHTMLWriter& rHTMLWrt = static_cast(rWrt); - if (rHTMLWrt.mbSkipImages) - return rWrt; - const SwFmtCntnt& rFlyCntnt = rFrmFmt.GetCntnt(); sal_uLong nStt = rFlyCntnt.GetCntntIdx()->GetIndex()+1; SwOLENode *pOLENd = rHTMLWrt.pDoc->GetNodes()[ nStt ]->GetOLENode(); @@ -1260,6 +1262,46 @@ if( !pOLENd ) return rWrt; + if (rHTMLWrt.mbSkipImages) + { + // If we skip images, embedded objects would be completely lost. + // Instead, try to use the HTML export of the embedded object. + uno::Reference xShape = SwXFrames::GetObject(const_cast(rFrmFmt), FLYCNTTYPE_OLE); + uno::Reference xTextContent(xShape, uno::UNO_QUERY); + uno::Reference xEmbeddedObjectSupplier(xTextContent, uno::UNO_QUERY); + uno::Reference xStorable(xEmbeddedObjectSupplier->getEmbeddedObject(), uno::UNO_QUERY); + SAL_WARN_IF(!xStorable.is(), "sw.html", "OutHTML_FrmFmtOLENodeGrf: no embedded object"); + + // Figure out what is the filter name of the embedded object. + uno::Reference xServiceInfo(xStorable, uno::UNO_QUERY); + OUString aFilter; + if (xServiceInfo.is()) + { + if (xServiceInfo->supportsService("com.sun.star.sheet.SpreadsheetDocument")) + aFilter = "HTML (StarCalc)"; + else if (xServiceInfo->supportsService("com.sun.star.text.TextDocument")) + aFilter = "HTML (StarWriter)"; + } + + if (xStorable.is() && !aFilter.isEmpty()) + { + SvMemoryStream aStream; + uno::Reference xOutputStream(new utl::OStreamWrapper(aStream)); + utl::MediaDescriptor aMediaDescriptor; + aMediaDescriptor["FilterName"] <<= aFilter; + aMediaDescriptor["FilterOptions"] <<= OUString("SkipHeaderFooter"); + aMediaDescriptor["OutputStream"] <<= xOutputStream; + xStorable->storeToURL("private:stream", aMediaDescriptor.getAsConstPropertyValueList()); + OString aData(reinterpret_cast(aStream.GetData()), aStream.GetSize()); + // Wrap output in a tag to avoid 'HTML parser error: Unexpected end tag: p' + HTMLOutFuncs::Out_AsciiTag(rWrt.Strm(), OOO_STRING_SVTOOLS_HTML_span); + rWrt.Strm().WriteCharPtr(aData.getStr()); + HTMLOutFuncs::Out_AsciiTag(rWrt.Strm(), OOO_STRING_SVTOOLS_HTML_span, false); + } + + return rWrt; + } + Graphic aGraphic( *pOLENd->GetGraphic() ); sal_uLong nFlags = bInCntnr ? HTML_FRMOPTS_GENIMG_CNTNR : HTML_FRMOPTS_GENIMG; diff -Nru libreoffice-l10n-4.3.1~rc2/sw/source/filter/html/wrthtml.cxx libreoffice-l10n-4.3.2/sw/source/filter/html/wrthtml.cxx --- libreoffice-l10n-4.3.1~rc2/sw/source/filter/html/wrthtml.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/source/filter/html/wrthtml.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -112,6 +112,7 @@ , bPreserveForm( false ) , bCfgNetscape4( false ) , mbSkipImages(false) + , mbSkipHeaderFooter(false) { SetBaseURL( rBaseURL ); @@ -150,6 +151,10 @@ { mbSkipImages = true; } + else if (sFilterOptions == "SkipHeaderFooter") + { + mbSkipHeaderFooter = true; + } } sal_uLong SwHTMLWriter::WriteStream() @@ -391,9 +396,12 @@ if( bLFPossible ) OutNewLine(); - HTMLOutFuncs::Out_AsciiTag( Strm(), OOO_STRING_SVTOOLS_HTML_body, false ); - OutNewLine(); - HTMLOutFuncs::Out_AsciiTag( Strm(), OOO_STRING_SVTOOLS_HTML_html, false ); + if (!mbSkipHeaderFooter) + { + HTMLOutFuncs::Out_AsciiTag( Strm(), OOO_STRING_SVTOOLS_HTML_body, false ); + OutNewLine(); + HTMLOutFuncs::Out_AsciiTag( Strm(), OOO_STRING_SVTOOLS_HTML_html, false ); + } // loesche die Tabelle mit den freifliegenden Rahmen sal_uInt16 i; @@ -902,6 +910,8 @@ const SwPageDesc *SwHTMLWriter::MakeHeader( sal_uInt16 &rHeaderAttrs ) { OStringBuffer sOut; + if (!mbSkipHeaderFooter) + { sOut.append(OString(OOO_STRING_SVTOOLS_HTML_doctype) + " " + OString(OOO_STRING_SVTOOLS_HTML_doctype40)); HTMLOutFuncs::Out_AsciiTag( Strm(), sOut.makeStringAndClear().getStr() ); @@ -935,6 +945,7 @@ rHeaderAttrs = OutHeaderAttrs(); OutFootEndNoteInfo(); + } const SwPageDesc *pPageDesc = 0; @@ -964,6 +975,8 @@ if( !pPageDesc ) pPageDesc = &pDoc->GetPageDesc( 0 ); + if (!mbSkipHeaderFooter) + { // und nun ... das Style-Sheet!!! if( bCfgOutStyles ) { @@ -1015,6 +1028,7 @@ OutBasicBodyEvents(); Strm().WriteChar( '>' ); + } return pPageDesc; } diff -Nru libreoffice-l10n-4.3.1~rc2/sw/source/filter/html/wrthtml.hxx libreoffice-l10n-4.3.2/sw/source/filter/html/wrthtml.hxx --- libreoffice-l10n-4.3.1~rc2/sw/source/filter/html/wrthtml.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/source/filter/html/wrthtml.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -399,6 +399,8 @@ bool bCfgNetscape4 : 1; // Netscape4 Hacks bool mbSkipImages : 1; + /// If HTML header and footer should be written as well, or just the content itself. + bool mbSkipHeaderFooter : 1; // 23 diff -Nru libreoffice-l10n-4.3.1~rc2/sw/source/filter/ww8/rtfattributeoutput.cxx libreoffice-l10n-4.3.2/sw/source/filter/ww8/rtfattributeoutput.cxx --- libreoffice-l10n-4.3.1~rc2/sw/source/filter/ww8/rtfattributeoutput.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/source/filter/ww8/rtfattributeoutput.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -2244,7 +2244,7 @@ { if (!rBrush.GetColor().GetTransparency()) { - m_aStyles.append(OOO_STRING_SVTOOLS_RTF_CHCBPAT); + m_aStyles.append(OOO_STRING_SVTOOLS_RTF_HIGHLIGHT); m_aStyles.append((sal_Int32)m_rExport.GetColor(rBrush.GetColor())); } } diff -Nru libreoffice-l10n-4.3.1~rc2/sw/source/filter/ww8/ww8par6.cxx libreoffice-l10n-4.3.2/sw/source/filter/ww8/ww8par6.cxx --- libreoffice-l10n-4.3.1~rc2/sw/source/filter/ww8/ww8par6.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/source/filter/ww8/ww8par6.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -794,6 +794,18 @@ if (!pSep) return; + if (!maSegments.empty() && mrReader.lastAnchorPos.get() && *mrReader.lastAnchorPos == *mrReader.pPaM->GetPoint()) + { + bool insert = true; + SwPaM pam( *mrReader.lastAnchorPos ); + if( pam.Move(fnMoveBackward, fnGoNode)) + if( SwTxtNode* txtNode = pam.GetPoint()->nNode.GetNode().GetTxtNode()) + if( txtNode->Len() == 0 ) + insert = false; + if( insert ) + mrReader.AppendTxtNode(*mrReader.pPaM->GetPoint()); + } + ww::WordVersion eVer = mrReader.GetFib().GetFIBVersion(); // M.M. Create a linked section if the WkbPLCF @@ -1735,7 +1747,6 @@ const sal_Int32 nIniFlyDx, const sal_Int32 nIniFlyDy ) { - (void) rPaM; (void) nPgLeft; memset( this, 0, sizeof( WW8SwFlyPara ) ); // Initialisieren @@ -1803,6 +1814,7 @@ //#i53725# - absolute positioned objects have to be // anchored at-paragraph to assure its correct anchor position. eAnchor = FLY_AT_PARA; + rIo.lastAnchorPos.reset( new SwPosition(*rPaM.GetPoint())); switch (nYBind) { @@ -2367,7 +2379,7 @@ pAnchorStck->AddAnchor(*pPaM->GetPoint(),pSFlyPara->pFlyFmt); } - // merke Pos im Haupttext + // remember Pos in body text pSFlyPara->pMainTextPos = new SwPosition( *pPaM->GetPoint() ); //remove fltanchors, otherwise they will be closed inside the @@ -2463,7 +2475,9 @@ Color aBg(0xFE, 0xFF, 0xFF, 0xFF); //Transparent by default - if (SwTxtNode* pNd = aPref.GetNode().GetTxtNode()) + SwTxtNode* pNd = aPref.GetNode().GetTxtNode(); + if (pNd && &pPaM->GetPoint()->nNode.GetNode() + != &pSFlyPara->pMainTextPos->nNode.GetNode()) { /* #i582# diff -Nru libreoffice-l10n-4.3.1~rc2/sw/source/filter/ww8/ww8par.cxx libreoffice-l10n-4.3.2/sw/source/filter/ww8/ww8par.cxx --- libreoffice-l10n-4.3.1~rc2/sw/source/filter/ww8/ww8par.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/source/filter/ww8/ww8par.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -2787,6 +2787,42 @@ return bTableRowEnd; } +rtl_TextEncoding SwWW8ImplReader::GetCharSetFromLanguage() +{ + /* + #i22206#/#i52786# + The (default) character set used for a run of text is the default + character set for the version of Word that last saved the document. + + This is a bit tentative, more might be required if the concept is correct. + When later version of word write older 6/95 documents the charset is + correctly set in the character runs involved, so its hard to reproduce + documents that require this to be sure of the process involved. + */ + const SvxLanguageItem *pLang = (const SvxLanguageItem*)GetFmtAttr(RES_CHRATR_LANGUAGE); + LanguageType eLang = pLang ? pLang->GetLanguage() : LANGUAGE_SYSTEM; + ::com::sun::star::lang::Locale aLocale(LanguageTag::convertToLocale(eLang)); + return msfilter::util::getBestTextEncodingFromLocale(aLocale); +} + +rtl_TextEncoding SwWW8ImplReader::GetCJKCharSetFromLanguage() +{ + /* + #i22206#/#i52786# + The (default) character set used for a run of text is the default + character set for the version of Word that last saved the document. + + This is a bit tentative, more might be required if the concept is correct. + When later version of word write older 6/95 documents the charset is + correctly set in the character runs involved, so its hard to reproduce + documents that require this to be sure of the process involved. + */ + const SvxLanguageItem *pLang = (const SvxLanguageItem*)GetFmtAttr(RES_CHRATR_CJK_LANGUAGE); + LanguageType eLang = pLang ? pLang->GetLanguage() : LANGUAGE_SYSTEM; + ::com::sun::star::lang::Locale aLocale(LanguageTag::convertToLocale(eLang)); + return msfilter::util::getBestTextEncodingFromLocale(aLocale); +} + rtl_TextEncoding SwWW8ImplReader::GetCurrentCharSet() { /* @@ -2805,22 +2841,7 @@ if ((eSrcCharSet == RTL_TEXTENCODING_DONTKNOW) && StyleExists(nAktColl) && nAktColl < vColl.size()) eSrcCharSet = vColl[nAktColl].GetCharSet(); if (eSrcCharSet == RTL_TEXTENCODING_DONTKNOW) - { - /* - #i22206#/#i52786# - The (default) character set used for a run of text is the default - character set for the version of Word that last saved the document. - - This is a bit tentative, more might be required if the concept is correct. - When later version of word write older 6/95 documents the charset is - correctly set in the character runs involved, so its hard to reproduce - documents that require this to be sure of the process involved. - */ - const SvxLanguageItem *pLang = (const SvxLanguageItem*)GetFmtAttr(RES_CHRATR_LANGUAGE); - LanguageType eLang = pLang ? pLang->GetLanguage() : LANGUAGE_SYSTEM; - ::com::sun::star::lang::Locale aLocale(LanguageTag::convertToLocale(eLang)); - eSrcCharSet = msfilter::util::getBestTextEncodingFromLocale(aLocale); - } + eSrcCharSet = GetCharSetFromLanguage(); } return eSrcCharSet; } @@ -2839,40 +2860,12 @@ { if (!maFontSrcCJKCharSets.empty()) eSrcCharSet = maFontSrcCJKCharSets.top(); - if (!vColl.empty()) - { - if ((eSrcCharSet == RTL_TEXTENCODING_DONTKNOW) && nCharFmt >= 0 && (size_t)nCharFmt < vColl.size() ) - eSrcCharSet = vColl[nCharFmt].GetCJKCharSet(); - if (eSrcCharSet == RTL_TEXTENCODING_DONTKNOW && nAktColl < vColl.size()) - eSrcCharSet = vColl[nAktColl].GetCJKCharSet(); - } + if ((eSrcCharSet == RTL_TEXTENCODING_DONTKNOW) && nCharFmt >= 0 && (size_t)nCharFmt < vColl.size() ) + eSrcCharSet = vColl[nCharFmt].GetCJKCharSet(); + if (eSrcCharSet == RTL_TEXTENCODING_DONTKNOW && StyleExists(nAktColl) && nAktColl < vColl.size()) + eSrcCharSet = vColl[nAktColl].GetCJKCharSet(); if (eSrcCharSet == RTL_TEXTENCODING_DONTKNOW) - { // patch from cmc for #i52786# - /* - #i22206#/#i52786# - The (default) character set used for a run of text is the default - character set for the version of Word that last saved the document. - - This is a bit tentative, more might be required if the concept is correct. - When later version of word write older 6/95 documents the charset is - correctly set in the character runs involved, so its hard to reproduce - documents that require this to be sure of the process involved. - */ - const SvxLanguageItem *pLang = - (const SvxLanguageItem*)GetFmtAttr(RES_CHRATR_LANGUAGE); - if (pLang) - { - switch (pLang->GetLanguage()) - { - case LANGUAGE_CZECH: - eSrcCharSet = RTL_TEXTENCODING_MS_1250; - break; - default: - eSrcCharSet = RTL_TEXTENCODING_MS_1252; - break; - } - } - } + eSrcCharSet = GetCJKCharSetFromLanguage(); } return eSrcCharSet; } @@ -3040,8 +3033,51 @@ // the correct FilePos has already been reached. const sal_Int32 nStrLen = std::min(nValidStrLen, SAL_MAX_INT32-1); - const rtl_TextEncoding eSrcCharSet = bVer67 ? GetCurrentCharSet() : + rtl_TextEncoding eSrcCharSet = bVer67 ? GetCurrentCharSet() : RTL_TEXTENCODING_MS_1252; + if (bVer67 && eSrcCharSet == RTL_TEXTENCODING_MS_932) + { + /* + fdo#82904 + + Older documents exported as word 95 that use unicode aware fonts will + have the charset of those fonts set to RTL_TEXTENCODING_MS_932 on + export as the conversion from RTL_TEXTENCODING_UNICODE. This is a serious + pain. + + We will try and use a fallback encoding if the conversion from + RTL_TEXTENCODING_MS_932 fails, but you can get unlucky and get a document + which isn't really in RTL_TEXTENCODING_MS_932 but parts of it form + valid RTL_TEXTENCODING_MS_932 by chance :-( + + We're not the only ones that struggle with this: Here's the help from + MSOffice 2003 on the topic: + + << + Earlier versions of Microsoft Word were sometimes used in conjunction with + third-party language-processing add-in programs designed to support Chinese or + Korean on English versions of Microsoft Windows. Use of these add-ins sometimes + results in incorrect text display in more recent versions of Word. + + However, you can set options to convert these documents so that text is + displayed correctly. On the Tools menu, click Options, and then click the + General tab. In the English Word 6.0/95 documents list, select Contain Asian + text (to have Word interpret the text as Asian code page data, regardless of + its font) or Automatically detect Asian text (to have Word attempt to determine + which parts of the text are meant to be Asian). + >> + + What we can try here is to ignore a RTL_TEXTENCODING_MS_932 codepage if + the language is not Japanese + */ + + const SfxPoolItem * pItem = GetFmtAttr(RES_CHRATR_CJK_LANGUAGE); + if (pItem != NULL && LANGUAGE_JAPANESE != static_cast(pItem)->GetLanguage()) + { + SAL_WARN("sw.ww8", "discarding word95 RTL_TEXTENCODING_MS_932 encoding"); + eSrcCharSet = GetCharSetFromLanguage(); + } + } const rtl_TextEncoding eSrcCJKCharSet = bVer67 ? GetCurrentCJKCharSet() : RTL_TEXTENCODING_MS_1252; @@ -4320,15 +4356,12 @@ void wwSectionManager::SetUseOn(wwSection &rSection) { - bool bEven = (rSection.maSep.grpfIhdt & (WW8_HEADER_EVEN|WW8_FOOTER_EVEN)) ? - true : false; - bool bMirror = mrReader.pWDop->fMirrorMargins || mrReader.pWDop->doptypography.f2on1; UseOnPage eUseBase = bMirror ? nsUseOnPage::PD_MIRROR : nsUseOnPage::PD_ALL; UseOnPage eUse = eUseBase; - if (!bEven) + if (!mrReader.pWDop->fFacingPages) eUse = (UseOnPage)(eUse | nsUseOnPage::PD_HEADERSHARE | nsUseOnPage::PD_FOOTERSHARE); if (!rSection.HasTitlePage()) eUse = (UseOnPage)(eUse | nsUseOnPage::PD_FIRSTSHARE); @@ -5351,6 +5384,8 @@ UpdatePageDescs(rDoc, nPageDescOffset); + SAL_WARN_IF(mpTableEndPaM, "sw.ww8", "document ended without table ending"); + mpTableEndPaM.reset(); //ensure this is deleted before pPaM delete pPaM, pPaM = 0; return nErrRet; } diff -Nru libreoffice-l10n-4.3.1~rc2/sw/source/filter/ww8/ww8par.hxx libreoffice-l10n-4.3.2/sw/source/filter/ww8/ww8par.hxx --- libreoffice-l10n-4.3.1~rc2/sw/source/filter/ww8/ww8par.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/source/filter/ww8/ww8par.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -1345,6 +1345,8 @@ // a document position recorded the after-position of TOC section, managed by Read_F_TOX() and End_Field() SwPaM* mpPosAfterTOC; + boost::scoped_ptr< SwPosition > lastAnchorPos; + bool mbCareFirstParaEndInToc; bool mbCareLastParaEndInToc; cp_set maTOXEndCps; @@ -1881,6 +1883,8 @@ sal_uLong LoadDoc( SwPaM&,WW8Glossary *pGloss=0); rtl_TextEncoding GetCurrentCharSet(); rtl_TextEncoding GetCurrentCJKCharSet(); + rtl_TextEncoding GetCharSetFromLanguage(); + rtl_TextEncoding GetCJKCharSetFromLanguage(); void PostProcessAttrs(); static void ReadEmbeddedData(SvMemoryStream& rStrm, SwDocShell* pDocShell, struct HyperLinksTable& hlStr); diff -Nru libreoffice-l10n-4.3.1~rc2/sw/source/ui/table/tabledlg.cxx libreoffice-l10n-4.3.2/sw/source/ui/table/tabledlg.cxx --- libreoffice-l10n-4.3.1~rc2/sw/source/ui/table/tabledlg.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/sw/source/ui/table/tabledlg.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1591,6 +1591,7 @@ m_pHeadLineCB->Check( nRep > 0 ); m_pHeadLineCB->SaveValue(); m_pRepeatHeaderNF->SetValue( nRep ); + m_pRepeatHeaderNF->SetMin( 1 ); m_pRepeatHeaderNF->SaveValue(); } if ( rSet.GetItemState(FN_TABLE_BOX_TEXTORIENTATION) > SFX_ITEM_AVAILABLE ) diff -Nru libreoffice-l10n-4.3.1~rc2/tools/source/generic/poly2.cxx libreoffice-l10n-4.3.2/tools/source/generic/poly2.cxx --- libreoffice-l10n-4.3.1~rc2/tools/source/generic/poly2.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/tools/source/generic/poly2.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -154,7 +154,7 @@ void PolyPolygon::Remove( sal_uInt16 nPos ) { - DBG_ASSERT( nPos < Count(), "PolyPolygon::Remove(): nPos >= nSize" ); + assert(nPos < Count() && "PolyPolygon::Remove(): nPos >= nSize"); if ( mpImplPolyPolygon->mnRefCount > 1 ) { @@ -171,7 +171,7 @@ void PolyPolygon::Replace( const Polygon& rPoly, sal_uInt16 nPos ) { - DBG_ASSERT( nPos < Count(), "PolyPolygon::Replace(): nPos >= nSize" ); + assert(nPos < Count() && "PolyPolygon::Replace(): nPos >= nSize"); if ( mpImplPolyPolygon->mnRefCount > 1 ) { @@ -185,7 +185,7 @@ const Polygon& PolyPolygon::GetObject( sal_uInt16 nPos ) const { - DBG_ASSERT( nPos < Count(), "PolyPolygon::GetObject(): nPos >= nSize" ); + assert(nPos < Count() && "PolyPolygon::GetObject(): nPos >= nSize"); return *(mpImplPolyPolygon->mpPolyAry[nPos]); } @@ -508,7 +508,7 @@ Polygon& PolyPolygon::operator[]( sal_uInt16 nPos ) { - DBG_ASSERT( nPos < Count(), "PolyPolygon::[](): nPos >= nSize" ); + assert(nPos < Count() && "PolyPolygon::[](): nPos >= nSize"); if ( mpImplPolyPolygon->mnRefCount > 1 ) { diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/af/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/af/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/af/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/af/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-16 13:09+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -664,7 +664,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -673,7 +673,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -682,7 +682,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/am/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-08-17 18:35+0000\n" "Last-Translator: Samson \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408300515.000000\n" @@ -49,7 +49,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,7 +94,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -229,7 +229,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/auxiliary.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/auxiliary.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/auxiliary.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/auxiliary.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408199285.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/sbasic/shared.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/sbasic/shared.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:11+0200\n" -"PO-Revision-Date: 2014-08-20 02:21+0000\n" +"PO-Revision-Date: 2014-09-01 20:54+0000\n" "Last-Translator: Samson \n" "Language-Team: LANGUAGE \n" "Language: am\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408501314.000000\n" +"X-POOTLE-MTIME: 1409604865.000000\n" #: 00000002.xhp msgctxt "" @@ -652,7 +652,6 @@ msgstr "13 የ ዳታ አይነት አለመስማማት" #: 00000003.xhp -#, fuzzy msgctxt "" "00000003.xhp\n" "par_id3151197\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/scalc/05.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/scalc/05.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/scalc/05.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/scalc/05.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408833539.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/scalc/guide.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/scalc/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/scalc/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/scalc/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-24 23:38+0000\n" +"PO-Revision-Date: 2014-09-01 18:46+0000\n" "Last-Translator: Samson \n" "Language-Team: LANGUAGE \n" "Language: am\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408923529.000000\n" +"X-POOTLE-MTIME: 1409597181.000000\n" #: address_auto.xhp msgctxt "" @@ -6430,7 +6430,7 @@ "44\n" "help.text" msgid "Functions list" -msgstr "የ ተግባር ዝርዝር" +msgstr "የ ተግባር ዝርዝር" #: formulas.xhp msgctxt "" @@ -6439,7 +6439,7 @@ "43\n" "help.text" msgid "Function Wizard" -msgstr "የተግባር አዋቂ" +msgstr "የተግባር አዋቂ" #: fraction_enter.xhp msgctxt "" @@ -8721,7 +8721,7 @@ "3\n" "help.text" msgid "Row and column headers" -msgstr "" +msgstr "የ ረድፍ እና የ አምድ ራስጌዎች" #: print_details.xhp msgctxt "" @@ -8748,7 +8748,7 @@ "6\n" "help.text" msgid "Objects and images" -msgstr "" +msgstr "እቃዎች እና ምስሎች" #: print_details.xhp msgctxt "" @@ -8784,7 +8784,7 @@ "10\n" "help.text" msgid "To choose the details proceed as follows:" -msgstr "" +msgstr "ዝርዝሩን ለመምረጥ እንደሚቀጥለው ያድርጉ:" #: print_details.xhp msgctxt "" @@ -8793,7 +8793,7 @@ "11\n" "help.text" msgid "Select the sheet you want to print." -msgstr "" +msgstr "ማተም የሚፈልጉትን ወረቀት ይምረጡ" #: print_details.xhp msgctxt "" @@ -8829,7 +8829,7 @@ "15\n" "help.text" msgid "Print the document." -msgstr "" +msgstr "ሰነድ ማተሚያ" #: print_details.xhp msgctxt "" @@ -8846,7 +8846,7 @@ "tit\n" "help.text" msgid "Defining Number of Pages for Printing" -msgstr "" +msgstr "ለማተሚያ የ ገጽ ቁጥሮች መወሰኛ" #: print_exact.xhp msgctxt "" @@ -8854,7 +8854,7 @@ "bm_id3153194\n" "help.text" msgid "printing; sheet countssheets; printing sheet countspage breaks; spreadsheet previewediting;print rangesviewing;print rangespreviews;page breaks for printing" -msgstr "" +msgstr "ማተሚያ; ወረቀት መቁጠሪያወረቀቶች; ማተሚያ ወረቀት መቁጠሪያየ ገጽ መጨረሻ; ሰንጠረዥ ቅድመ እይታማረሚያ;የ ማተሚያ መጠንመመልከቻ;የ ማተሚያ መጠንቅድመ እይታ;የ ገጽ መጨረሻ ለ ማተሚያ" #: print_exact.xhp msgctxt "" @@ -8933,7 +8933,7 @@ "bm_id3153418\n" "help.text" msgid "printing; sheet selections sheets; printing in landscape printing; landscape landscape printing" -msgstr "" +msgstr "ማተሚያ; የ ወረቀት ምርጫዎች ወረቀቶች; ማተሚያ በ መሬት አቀማመጥ ማተሚያ;በ መሬት አቀማመጥ በ መሬት አቀማመጥ ማተሚያ" #: print_landscape.xhp msgctxt "" @@ -8942,7 +8942,7 @@ "1\n" "help.text" msgid "Printing Sheets in Landscape Format" -msgstr "" +msgstr "በ መሬት አቀማመጥ አቀራረብ ማተሚያ" #: print_landscape.xhp msgctxt "" @@ -8960,7 +8960,7 @@ "15\n" "help.text" msgid "To print in landscape format, proceed as follows:" -msgstr "" +msgstr "በ መሬት አቀማመጥ ለማተም እንደሚቀጥለው ያድርጉ:" #: print_landscape.xhp msgctxt "" @@ -8969,7 +8969,7 @@ "3\n" "help.text" msgid "Go to the sheet to be printed." -msgstr "" +msgstr "ወደሚታተመው ወረቀት ይሂዱ" #: print_landscape.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/shared/00.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/shared/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/shared/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-15 19:26+0000\n" +"PO-Revision-Date: 2014-09-01 20:55+0000\n" "Last-Translator: Samson \n" "Language-Team: LANGUAGE \n" "Language: am\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402860384.000000\n" +"X-POOTLE-MTIME: 1409604938.000000\n" #: 00000001.xhp msgctxt "" @@ -10228,14 +10228,13 @@ msgstr "ይምረጡ አቀራረብ - አንቀጽ - ድንበሮች tab" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3154149\n" "45\n" "help.text" msgid "Choose Format - Image - Borders tab" -msgstr "ይምረጡ አቅራረብ - ገጽ - ድንበሮች tab" +msgstr "ይምረጡ አቅራረብ - ምስል - ድንበሮች tab" #: 00040500.xhp msgctxt "" @@ -10337,14 +10336,13 @@ msgstr "ይምረጡ አቀራረብ - ባህሪ - መደብ tab" #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3149486\n" "59\n" "help.text" msgid "Choose Format - Image - Background tab" -msgstr "ይምረጡ አቀራረብ - ገጽ - መደብ tab" +msgstr "ይምረጡ አቀራረብ - ምስል - መደብ tab" #: 00040500.xhp msgctxt "" @@ -12867,7 +12865,7 @@ "par_id3149408\n" "help.text" msgid "Icon" -msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ ማሰለፊያ - በ ቀኝ" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" @@ -13304,14 +13302,13 @@ msgstr "ይምረጡ ማሻሻያ - መገልበጫ ($[officename] ለ መሳያ)" #: 00040503.xhp -#, fuzzy msgctxt "" "00040503.xhp\n" "par_id3155742\n" "17\n" "help.text" msgid "Choose Format - Image - Picture tab" -msgstr "ይምረጡ አቀራረብ - ገጽ - ገጽ tab" +msgstr "ይምረጡ አቀራረብ - ምስል - ገጽ tab" #: 00040503.xhp msgctxt "" @@ -13332,14 +13329,13 @@ msgstr "ይምረጡ ማሻሻያ - መገልበጫ - በ ቁመት ($[officename] ለ መሳያ)" #: 00040503.xhp -#, fuzzy msgctxt "" "00040503.xhp\n" "par_id3153179\n" "21\n" "help.text" msgid "Choose Format - Image - Picture tab" -msgstr "ይምረጡ አቀራረብ - ገጽ - ገጽ tab" +msgstr "ይምረጡ አቀራረብ - ምስል - ገጽ tab" #: 00040503.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/shared/02.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/shared/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/shared/02.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408818567.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/shared/autopi.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/shared/autopi.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408469675.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-02 18:31+0000\n" +"PO-Revision-Date: 2014-09-01 18:37+0000\n" "Last-Translator: Samson \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1388687491.0\n" +"X-POOTLE-MTIME: 1409596675.000000\n" #: 02000000.xhp msgctxt "" @@ -2557,7 +2557,7 @@ "265\n" "help.text" msgid "DateTime" -msgstr "{t 'HH:MI:SS[.SS]'} - [ ] በምርጫ" +msgstr "ቀን ሰአት" #: 02010100.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-06-08 22:14+0000\n" "Last-Translator: Samson \n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/shared/optionen.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/shared/optionen.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-19 16:25+0000\n" +"PO-Revision-Date: 2014-09-01 20:55+0000\n" "Last-Translator: Samson \n" "Language-Team: LANGUAGE \n" "Language: am\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408465513.000000\n" +"X-POOTLE-MTIME: 1409604959.000000\n" #: 01000000.xhp msgctxt "" @@ -2403,7 +2403,6 @@ msgstr "C" #: 01010500.xhp -#, fuzzy msgctxt "" "01010500.xhp\n" "par_id3145800\n" @@ -2422,7 +2421,6 @@ msgstr "M" #: 01010500.xhp -#, fuzzy msgctxt "" "01010500.xhp\n" "par_id3150093\n" @@ -6112,7 +6110,7 @@ "bm_id3156346\n" "help.text" msgid "snap lines; showing when moving frames (Writer)scrollbars; horizontal and vertical (Writer)horizontal scrollbars (Writer)vertical scrollbars (Writer)smooth scrolling (Writer)displaying; pictures and objects (Writer)pictures; displaying in Writer (Writer)objects; displaying in text documentsdisplaying; tables (Writer)tables in text; displayinglimits of tables (Writer)borders;table boundaries (Writer)boundaries of tables (Writer)showing; drawings and controls (Writer)drawings; showing (Writer)controls; showing (Writer)fields;displaying field codes (Writer)displaying; comments in text documents" -msgstr "መስመሮች መቁረጫ; ክፈፎች በሚንቀሳቀሱ ጊዜ ማሳያ (መጻፊያ)መሸብለያ; በ አግድም እና በ ቁመት (መጻፊያ) በ አግድም መሸብለያ (መጻፊያ) በ ቁመት መሸብለያ (መጻፊያ)ለስላሳ መሸብለያ (መጻፊያ)ማሳያ; ስእሎች እና እቃዎች (መጻፊያ)ስእሎች; ማሳያ በ መጻፊያ ውስጥ (መጻፊያ)እቃዎች; ማሳያ በ ጽሁፍ ሰነዶች ውስጥማሳያ; ሰንጠረዦች (መጻፊያ) ሰንጠረዦች በ ጽሁፍ; ማሳያ የ ሰንጠረዦች መጠን (መጻፊያ)ድንበሮች; የ ሰንጠረዦች (መጻፊያ) ድንበሮች የ ሰንጠረዦች (መጻፊያ)ማሳያ; መሳያ እና መቆጣጠሪያ (መጻፊያ)መሳያ; ማሳያ (መጻፊያ)መቆጣጠሪያ; ማሳያ (መጻፊያ)ሜዳዎች; ማሳያ field codes (መጻፊያ)ማሳያ; አስተያየት በ ጽሁፍ ሰነድ ውስጥ" +msgstr "መስመሮች መቁረጫ; ክፈፎች በሚንቀሳቀሱ ጊዜ ማሳያ (መጻፊያ)መሸብለያ; በ አግድም እና በ ቁመት (መጻፊያ) በ አግድም መሸብለያ (መጻፊያ) በ ቁመት መሸብለያ (መጻፊያ)ለስላሳ መሸብለያ (መጻፊያ)ማሳያ; ስእሎች እና እቃዎች (መጻፊያ)ስእሎች; ማሳያ በ መጻፊያ ውስጥ (መጻፊያ)እቃዎች; ማሳያ በ ጽሁፍ ሰነዶች ውስጥማሳያ; ሰንጠረዦች (መጻፊያ) ሰንጠረዦች በ ጽሁፍ; ማሳያ የ ሰንጠረዦች መጠን (መጻፊያ)ድንበሮች; የ ሰንጠረዦች (መጻፊያ) ድንበሮች የ ሰንጠረዦች (መጻፊያ)ማሳያ; መሳያ እና መቆጣጠሪያ (መጻፊያ)መሳያ; ማሳያ (መጻፊያ)መቆጣጠሪያ; ማሳያ (መጻፊያ)ሜዳዎች; ማሳያ field codes (መጻፊያ)ማሳያ; አስተያየት በ ጽሁፍ ሰነድ ውስጥ" #: 01040200.xhp msgctxt "" @@ -6893,7 +6891,7 @@ "19\n" "help.text" msgid "Right pages (not for HTML documents)" -msgstr "የ ቀኝ ገጾች (ለ HTML ሰነዶች አይደለም) " +msgstr "የ ቀኝ ገጾች (ለ HTML ሰነዶች አይደለም)" #: 01040400.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/shared.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/shared.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/shared.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/shared.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:10+0200\n" -"PO-Revision-Date: 2014-08-19 18:20+0000\n" +"PO-Revision-Date: 2014-09-01 19:05+0000\n" "Last-Translator: Samson \n" "Language-Team: LANGUAGE \n" "Language: am\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408472430.000000\n" +"X-POOTLE-MTIME: 1409598310.000000\n" #: 3dsettings_toolbar.xhp msgctxt "" @@ -965,7 +965,7 @@ "par_idN10753\n" "help.text" msgid "Inserts all fields of the marked record into the current document at the cursor position." -msgstr "ሁሉንም ሜዳዎች ምልክት የተደረገባቸውን መዝገቦች በ አሁኑ ሰነድ ውስጥ መጠቆሚያው ባለበት ቦታ ማስገቢያ" +msgstr "ሁሉንም ሜዳዎች ምልክት የተደረገባቸውን መዝገቦች በ አሁኑ ሰነድ ውስጥ መጠቆሚያው ባለበት ቦታ ማስገቢያ" #: main0212.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/simpress/01.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/simpress/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/simpress/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-25 17:41+0200\n" -"PO-Revision-Date: 2014-05-20 18:00+0000\n" +"PO-Revision-Date: 2014-09-01 19:02+0000\n" "Last-Translator: Samson \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1400608837.000000\n" +"X-POOTLE-MTIME: 1409598175.000000\n" #: 01170000.xhp msgctxt "" @@ -1650,7 +1650,7 @@ "3\n" "help.text" msgid "The Text Formatting bar contains the following icons for slide titles:Promote, Demote, Move Up and Move Down. If you want to reorder slide titles with the keyboard, ensure that the cursor is at the beginning of a title and press Tab to move the title one level lower in the hierarchy. To move the title up one level, press Shift+Tab." -msgstr "የ ጽሁፍ አቀራረብ መደርደሪያ የያዘው የሚከተሉት ምልክቶች ናቸው ለ ተንሸራታች አርእስቶች:ማሳደጊያ, መቀነሻ, ወደ ላይ ማንቀሳቀሻ እና ወደ ታች ማንቀሳቀሻ.የ ተንሸራታቹን አርእስት ቦታ መቀየየር ከፈለጉ በፊደል ገበታ መጠቆሚያው ከ አርእስቱ መጀመሪያ መሆኑን እርግጠኛ ይሁኑ እና ይጫኑTab አርእስቱን አንድ ደረጃ ዝቅ ለማድረግ በ ደረጃ ፡ አርእስቱን አንድ ደረጃ ከፍ ለማድረግ ይጫኑ Shift+Tab." +msgstr "የ ጽሁፍ አቀራረብ መደርደሪያ የያዘው የሚከተሉት ምልክቶች ናቸው ለ ተንሸራታች አርእስቶች:ማሳደጊያ, መቀነሻ, ወደ ላይ ማንቀሳቀሻ እና ወደ ታች ማንቀሳቀሻየ ተንሸራታቹን አርእስት ቦታ መቀየየር ከፈለጉ በፊደል ገበታ መጠቆሚያው ከ አርእስቱ መጀመሪያ መሆኑን እርግጠኛ ይሁኑ እና ይጫኑTab አርእስቱን አንድ ደረጃ ዝቅ ለማድረግ በ ደረጃ፡ አርእስቱን አንድ ደረጃ ከፍ ለማድረግ ይጫኑ Shift+Tab." #: 03090000.xhp msgctxt "" @@ -4603,7 +4603,7 @@ "13\n" "help.text" msgid "Right guide" -msgstr "የቀኝ መምሪያ " +msgstr "የቀኝ መምሪያ" #: 05150000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/swriter/00.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/swriter/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/swriter/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408473641.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/swriter/01.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/swriter/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/swriter/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-25 17:42+0200\n" -"PO-Revision-Date: 2014-08-23 02:39+0000\n" +"PO-Revision-Date: 2014-09-01 19:08+0000\n" "Last-Translator: Samson \n" "Language-Team: LANGUAGE \n" "Language: am\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408761591.000000\n" +"X-POOTLE-MTIME: 1409598527.000000\n" #: 01120000.xhp msgctxt "" @@ -847,7 +847,7 @@ "29\n" "help.text" msgid "Jumps to the previous item in the document. To specify the type of item to jump to, click the Navigation icon, and then click an item category - for example, \"Images\". Jumps to the previous item in the document. To specify the type of item to jump to, click the Navigation icon, and then click an item category - for example, \"Images\"." -msgstr "በ ሰነዱ ውስጥ ቀደም ወዳለው እቃ መዝለያ፡ ለመወሰን መዝለል ወደሚፈልጉት እቃ: ይጫኑ የ መቃኛ ምልክት እና ከዛ ይጫኑ የ እቃ ምድብ - ለምሳሌ \"ንድፎች\" በ ሰነዱ ውስጥ ቀደም ወዳለው እቃ ይዘላል፡ ለመወሰን መዝለል ወደሚፈልጉት እቃ ይጫኑ የ መቃኛ ምልክት እና ከዛ ይጫኑ የ እቃ ምድብ - ለምሳሌ \"ንድፎች\"" +msgstr "በ ሰነዱ ውስጥ ቀደም ወዳለው እቃ መዝለያ፡ ለመወሰን መዝለል ወደሚፈልጉት እቃ: ይጫኑ የ መቃኛ ምልክት እና ከዛ ይጫኑ የ እቃ ምድብ - ለምሳሌ \"ንድፎች\" በ ሰነዱ ውስጥ ቀደም ወዳለው እቃ ይዘላል፡ ለመወሰን መዝለል ወደሚፈልጉት እቃ ይጫኑ የ መቃኛ ምልክት እና ከዛ ይጫኑ የ እቃ ምድብ - ለምሳሌ \"ንድፎች\"" #: 02110000.xhp msgctxt "" @@ -12861,7 +12861,7 @@ "3\n" "help.text" msgid "An Index of Tables only has one index level." -msgstr "የ ማውጫ ሰንጠረዥ ያለው የ ማውጫ ደረጃ አንድ ነው " +msgstr "የ ማውጫ ሰንጠረዥ ያለው የ ማውጫ ደረጃ አንድ ነው" #: 04120225.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/swriter.po libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/swriter.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/helpcontent2/source/text/swriter.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/helpcontent2/source/text/swriter.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408470454.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/am/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/am/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/am/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/am/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408457241.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/an/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/an/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/an/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/an/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ar/cui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ar/cui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ar/cui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ar/cui/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408902935.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ar/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ar/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ar/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ar/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-02-08 10:09+0000\n" "Last-Translator: صفا \n" "Language-Team: LANGUAGE \n" @@ -49,7 +49,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,7 +94,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "مستند جريت‌ووركس" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -662,8 +662,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "مستند مايكروسوفت ووركس لماك (الإصدار 1 - الإصدار 4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -671,7 +671,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -680,7 +680,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ar/filter/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ar/filter/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ar/filter/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ar/filter/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408740332.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ar/sc/uiconfig/scalc/ui.po libreoffice-l10n-4.3.2/translations/source/ar/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ar/sc/uiconfig/scalc/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ar/sc/uiconfig/scalc/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407819096.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ar/sfx2/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ar/sfx2/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ar/sfx2/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ar/sfx2/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408898477.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ar/svx/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ar/svx/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ar/svx/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ar/svx/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408918313.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ar/sw/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/ar/sw/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ar/sw/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ar/sw/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408899436.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ar/sw/source/ui/fldui.po libreoffice-l10n-4.3.2/translations/source/ar/sw/source/ui/fldui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ar/sw/source/ui/fldui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ar/sw/source/ui/fldui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408915007.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ar/sw/source/ui/utlui.po libreoffice-l10n-4.3.2/translations/source/ar/sw/source/ui/utlui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ar/sw/source/ui/utlui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ar/sw/source/ui/utlui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408899571.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ar/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/ar/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ar/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ar/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408917434.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/as/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/as/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/as/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/as/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-07-24 14:35+0530\n" "Last-Translator: Nilamdyuti Goswami \n" "Language-Team: as_IN \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ast/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ast/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ast/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ast/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-01-21 03:51+0000\n" "Last-Translator: Xuacu \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documentu de BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documentu de ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documentu de GreatWorks" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,7 +670,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -679,7 +679,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ast/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/ast/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ast/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ast/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-01-22 21:10+0000\n" "Last-Translator: Xuacu \n" "Language-Team: Softastur \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programación en %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "La función de rexistru de macros namái ta disponible pa los documentos de testu en %PRODUCTNAME Writer y pa les fueyes de cálculu en %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/be/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/be/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/be/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/be/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: filters\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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2013-07-24 22:51+0300\n" "Last-Translator: \n" "Language-Team: \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bg/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/bg/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bg/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bg/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-20 16:05+0000\n" "Last-Translator: Mihail \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Документ на BeagleWorks/WordPerfect Works в.1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Документ на BeagleWorks/WordPerfect Works в.1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Документ на BeagleWorks/WordPerfect Works в.1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Документ на ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Документ на ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Документ на ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Документ на GreatWorks" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Документ на GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Документ на GreatWorks" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Документ на Microsoft Works за Mac (в.1-4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Документ на Microsoft Works за Mac (в.1-4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Документ на Microsoft Works за Mac (в.1-4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bg/formula/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/bg/formula/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bg/formula/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bg/formula/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407793093.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bg/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/bg/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bg/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bg/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-06-18 14:58+0000\n" "Last-Translator: Mihail \n" "Language-Team: .\n" @@ -13056,14 +13056,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Програмиране в %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Функционалността за записване на макроси е налице само за текстови документи в %PRODUCTNAME Writer и електронни таблици в %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bg/scaddins/source/pricing.po libreoffice-l10n-4.3.2/translations/source/bg/scaddins/source/pricing.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bg/scaddins/source/pricing.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bg/scaddins/source/pricing.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407761463.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bg/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/bg/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bg/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bg/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407754184.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bg/starmath/source.po libreoffice-l10n-4.3.2/translations/source/bg/starmath/source.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bg/starmath/source.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bg/starmath/source.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407761330.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bg/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/bg/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bg/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bg/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407779107.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bg/sw/source/ui/docvw.po libreoffice-l10n-4.3.2/translations/source/bg/sw/source/ui/docvw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bg/sw/source/ui/docvw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bg/sw/source/ui/docvw.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407754114.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bg/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/bg/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bg/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bg/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407754134.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bn/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/bn/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bn/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bn/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2011-10-22 23:06+0200\n" "Last-Translator: Andras \n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -663,7 +663,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -672,7 +672,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -681,7 +681,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bn/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/bn/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bn/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bn/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-11-30 16:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr " %PRODUCTNAME এ প্রোগ্রাম করছে" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "ম্যাক্রো রেকর্ডিং কার্যক্রমাদি %PRODUCTNAME Writer এর টেক্সট নথির এবং %PRODUCTNAME এ স্প্রেডশীটের জন্য কেবলমাত্র বিদ্যমান।" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bn-IN/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/bn-IN/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bn-IN/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bn-IN/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-09-06 07:13+0200\n" "Last-Translator: runab \n" "Language-Team: Bengali (India) \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bn-IN/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/bn-IN/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bn-IN/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bn-IN/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-11-30 17:29+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr " %PRODUCTNAME এ প্রোগ্রাম করছে" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "ম্যাক্রো রেকর্ডিং কার্যক্রমাদি %PRODUCTNAME Writer এর টেক্সট নথির এবং %PRODUCTNAME এ স্প্রেডশীটের জন্য কেবলমাত্র বিদ্যমান।" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bo/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/bo/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bo/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bo/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-16 13:28+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -663,7 +663,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -672,7 +672,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -681,7 +681,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bo/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/bo/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bo/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bo/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-11-18 15:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr " %PRODUCTNAME ནང་རྩོམ་སྒྲིག་" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "ཧུང་གསར་པའི་བྱེད་ནུས་ཕབ་བཟོ་བྱེད་ན་%PRODUCTNAME ཡི་གེ་ལས་སྣོན་དང་གློག་རྡུལ་རེའུ་མིག་ནུས་ལྡན་ཡིན།" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/br/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/br/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/br/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/br/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-02 20:42+0000\n" "Last-Translator: Alan \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1401741727.000000\n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Teul mod BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Teul mod BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Teul mod BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Teul mod ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Teul mod ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Teul mod ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Teul mod GreatWorks" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Teul mod GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Teul mod GreatWorks" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works evit un teul mod Mac (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works evit un teul mod Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works evit un teul mod Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/br/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/br/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/br/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/br/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407689948.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/br/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/br/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/br/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/br/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407689987.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/br/sw/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/br/sw/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/br/sw/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/br/sw/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407690002.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/br/sw/source/ui/docvw.po libreoffice-l10n-4.3.2/translations/source/br/sw/source/ui/docvw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/br/sw/source/ui/docvw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/br/sw/source/ui/docvw.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407690007.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/br/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/br/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/br/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/br/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407690025.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/brx/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/brx/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/brx/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/brx/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-04-28 07:25+0200\n" "Last-Translator: alayaran \n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -662,7 +662,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -671,7 +671,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -680,7 +680,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bs/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/bs/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bs/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bs/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-01-27 19:16+0000\n" "Last-Translator: vljubovic \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokument" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks dokument" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks dokument" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac dokument (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,7 +670,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -679,7 +679,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/bs/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/bs/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/bs/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/bs/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-01-28 06:58+0000\n" "Last-Translator: megaribi \n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/basctl/source/basicide.po libreoffice-l10n-4.3.2/translations/source/ca/basctl/source/basicide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/basctl/source/basicide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/basctl/source/basicide.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408970606.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/basctl/uiconfig/basicide/ui.po libreoffice-l10n-4.3.2/translations/source/ca/basctl/uiconfig/basicide/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/basctl/uiconfig/basicide/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/basctl/uiconfig/basicide/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408970827.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/chart2/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca/chart2/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/chart2/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/chart2/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-30 10:57+0200\n" -"PO-Revision-Date: 2014-07-21 06:47+0000\n" +"PO-Revision-Date: 2014-08-26 08:44+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1405925257.000000\n" +"X-POOTLE-MTIME: 1409042698.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -644,7 +644,7 @@ "3\n" "stringlist.text" msgid "Error Margin" -msgstr "" +msgstr "Marge d'error" #: dlg_InsertLegend.ui msgctxt "" @@ -653,7 +653,7 @@ "title\n" "string.text" msgid "Legend" -msgstr "" +msgstr "Llegenda" #: dlg_InsertLegend.ui msgctxt "" @@ -662,7 +662,7 @@ "label\n" "string.text" msgid "_Display legend" -msgstr "" +msgstr "_Mostra la llegenda" #: dlg_InsertLegend.ui msgctxt "" @@ -671,7 +671,7 @@ "label\n" "string.text" msgid "_Left" -msgstr "" +msgstr "_Esquerra" #: dlg_InsertLegend.ui msgctxt "" @@ -680,7 +680,7 @@ "label\n" "string.text" msgid "_Right" -msgstr "" +msgstr "_Dreta" #: dlg_InsertLegend.ui msgctxt "" @@ -689,7 +689,7 @@ "label\n" "string.text" msgid "_Top" -msgstr "" +msgstr "_Superior" #: dlg_InsertLegend.ui msgctxt "" @@ -698,7 +698,7 @@ "label\n" "string.text" msgid "_Bottom" -msgstr "" +msgstr "_Inferior" #: dlg_InsertLegend.ui msgctxt "" @@ -878,7 +878,7 @@ "title\n" "string.text" msgid "Titles" -msgstr "" +msgstr "Títols" #: inserttitledlg.ui #, fuzzy @@ -888,7 +888,7 @@ "label\n" "string.text" msgid "_Title" -msgstr "_Mosaic" +msgstr "_Títol" #: inserttitledlg.ui msgctxt "" @@ -897,7 +897,7 @@ "label\n" "string.text" msgid "_Subtitle" -msgstr "" +msgstr "_Subtítol" #: inserttitledlg.ui msgctxt "" @@ -954,7 +954,6 @@ msgstr "E_ix Y" #: inserttitledlg.ui -#, fuzzy msgctxt "" "inserttitledlg.ui\n" "label2\n" @@ -970,7 +969,7 @@ "title\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Paràgraf" #: paradialog.ui msgctxt "" @@ -979,7 +978,7 @@ "label\n" "string.text" msgid "Indents & Spacing" -msgstr "" +msgstr "Sagnats i espaiat" #: paradialog.ui msgctxt "" @@ -988,7 +987,7 @@ "label\n" "string.text" msgid "Alignment" -msgstr "" +msgstr "Alineació" #: paradialog.ui msgctxt "" @@ -997,7 +996,7 @@ "label\n" "string.text" msgid "Asian Typography" -msgstr "" +msgstr "Tipografia asiàtica" #: paradialog.ui msgctxt "" @@ -1006,7 +1005,7 @@ "label\n" "string.text" msgid "Tabs" -msgstr "" +msgstr "Tabuladors" #: smoothlinesdlg.ui msgctxt "" @@ -1177,17 +1176,16 @@ "label\n" "string.text" msgid "Sche_me" -msgstr "" +msgstr "Esque_ma" #: tp_3D_SceneAppearance.ui -#, fuzzy msgctxt "" "tp_3D_SceneAppearance.ui\n" "CB_SHADING\n" "label\n" "string.text" msgid "_Shading" -msgstr "E_spaiat" +msgstr "_Ombrejat" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1196,7 +1194,7 @@ "label\n" "string.text" msgid "_Object borders" -msgstr "" +msgstr "Vores de l'_objecte" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1205,7 +1203,7 @@ "label\n" "string.text" msgid "_Rounded edges" -msgstr "" +msgstr "Vores a_rrodonides" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1214,7 +1212,7 @@ "0\n" "stringlist.text" msgid "Simple" -msgstr "" +msgstr "Simple" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1223,7 +1221,7 @@ "1\n" "stringlist.text" msgid "Realistic" -msgstr "" +msgstr "Realista" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1232,7 +1230,7 @@ "2\n" "stringlist.text" msgid "Custom" -msgstr "" +msgstr "Personalitzat" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1241,7 +1239,7 @@ "label\n" "string.text" msgid "_Right-angled axes" -msgstr "" +msgstr "Eixos arrodonits cap a la _dreta" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1250,7 +1248,7 @@ "label\n" "string.text" msgid "_X rotation" -msgstr "" +msgstr "Rotació en _X" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1259,7 +1257,7 @@ "label\n" "string.text" msgid "_Y rotation" -msgstr "" +msgstr "Rotació en _Y" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1268,7 +1266,7 @@ "label\n" "string.text" msgid "_Z rotation" -msgstr "" +msgstr "Rotació en _Z" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1277,7 +1275,7 @@ "label\n" "string.text" msgid "_Perspective" -msgstr "" +msgstr "_Perspectiva" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1286,7 +1284,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 1" -msgstr "" +msgstr "Font de llum 1" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1295,7 +1293,7 @@ "tooltip_text\n" "string.text" msgid "Light source 1" -msgstr "" +msgstr "Font de llum 1" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1304,7 +1302,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 2" -msgstr "" +msgstr "Font de llum 2" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1313,7 +1311,7 @@ "tooltip_text\n" "string.text" msgid "Light source 2" -msgstr "" +msgstr "Font de llum 2" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1322,7 +1320,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 3" -msgstr "" +msgstr "Font de llum 3" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1331,7 +1329,7 @@ "tooltip_text\n" "string.text" msgid "Light source 3" -msgstr "" +msgstr "Font de llum 3" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1340,7 +1338,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 4" -msgstr "" +msgstr "Font de llum 4" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1349,7 +1347,7 @@ "tooltip_text\n" "string.text" msgid "Light source 4" -msgstr "" +msgstr "Font de llum 4" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1358,7 +1356,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 5" -msgstr "" +msgstr "Font de llum 5" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1367,7 +1365,7 @@ "tooltip_text\n" "string.text" msgid "Light source 5" -msgstr "" +msgstr "Font de llum 5" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1376,7 +1374,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 6" -msgstr "" +msgstr "Font de llum 6" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1574,7 +1572,7 @@ "1\n" "stringlist.text" msgid "Near axis (other side)" -msgstr "" +msgstr "Prop de l'eix (a l'altra banda)" #: tp_AxisPositions.ui msgctxt "" @@ -1601,7 +1599,7 @@ "label\n" "string.text" msgid "_Distance" -msgstr "" +msgstr "_Distància" #: tp_AxisPositions.ui msgctxt "" @@ -1610,7 +1608,7 @@ "label\n" "string.text" msgid "Labels" -msgstr "" +msgstr "Etiquetes" #: tp_AxisPositions.ui msgctxt "" @@ -1619,7 +1617,7 @@ "label\n" "string.text" msgid "Major:" -msgstr "" +msgstr "Principal:" #: tp_AxisPositions.ui msgctxt "" @@ -1628,7 +1626,7 @@ "label\n" "string.text" msgid "Minor:" -msgstr "" +msgstr "Secundari:" #: tp_AxisPositions.ui msgctxt "" @@ -1637,7 +1635,7 @@ "label\n" "string.text" msgid "_Inner" -msgstr "" +msgstr "_Interior" #: tp_AxisPositions.ui msgctxt "" @@ -1646,7 +1644,7 @@ "label\n" "string.text" msgid "_Outer" -msgstr "" +msgstr "_Exterior" #: tp_AxisPositions.ui msgctxt "" @@ -1655,7 +1653,7 @@ "label\n" "string.text" msgid "I_nner" -msgstr "" +msgstr "I_nterior" #: tp_AxisPositions.ui msgctxt "" @@ -1664,7 +1662,7 @@ "label\n" "string.text" msgid "O_uter" -msgstr "" +msgstr "E_xterior" #: tp_AxisPositions.ui msgctxt "" @@ -1673,7 +1671,7 @@ "label\n" "string.text" msgid "Place _marks" -msgstr "" +msgstr "Ubica les _marques" #: tp_AxisPositions.ui msgctxt "" @@ -1682,7 +1680,7 @@ "0\n" "stringlist.text" msgid "At labels" -msgstr "" +msgstr "A les etiquetes" #: tp_AxisPositions.ui msgctxt "" @@ -1691,7 +1689,7 @@ "1\n" "stringlist.text" msgid "At axis" -msgstr "" +msgstr "A l'eix" #: tp_AxisPositions.ui msgctxt "" @@ -1700,7 +1698,7 @@ "2\n" "stringlist.text" msgid "At axis and labels" -msgstr "" +msgstr "A l'eix i a les etiquetes" #: tp_AxisPositions.ui msgctxt "" @@ -1709,7 +1707,7 @@ "label\n" "string.text" msgid "Interval marks" -msgstr "" +msgstr "Marques d'interval" #: tp_AxisPositions.ui msgctxt "" @@ -1718,7 +1716,7 @@ "label\n" "string.text" msgid "Show major _grid" -msgstr "" +msgstr "Mostra la _graella principal" #: tp_AxisPositions.ui msgctxt "" @@ -1727,7 +1725,7 @@ "label\n" "string.text" msgid "_Show minor grid" -msgstr "" +msgstr "Mostra la graella _secundària" #: tp_AxisPositions.ui msgctxt "" @@ -1736,7 +1734,7 @@ "label\n" "string.text" msgid "Mo_re..." -msgstr "" +msgstr "_Més..." #: tp_AxisPositions.ui msgctxt "" @@ -1745,7 +1743,7 @@ "label\n" "string.text" msgid "Mor_e..." -msgstr "" +msgstr "_Més..." #: tp_AxisPositions.ui msgctxt "" @@ -1934,7 +1932,7 @@ "2\n" "stringlist.text" msgid "Cone" -msgstr "" +msgstr "Con" #: tp_ChartType.ui msgctxt "" @@ -1943,7 +1941,7 @@ "3\n" "stringlist.text" msgid "Pyramid" -msgstr "" +msgstr "Piràmide" #: tp_DataLabel.ui msgctxt "" @@ -1952,7 +1950,7 @@ "label\n" "string.text" msgid "Show value as _number" -msgstr "" +msgstr "Mostra el valor com a _nombre" #: tp_DataLabel.ui msgctxt "" @@ -1961,7 +1959,7 @@ "label\n" "string.text" msgid "Show value as _percentage" -msgstr "" +msgstr "Mostra el valor com a _percentatge" #: tp_DataLabel.ui msgctxt "" @@ -1970,7 +1968,7 @@ "label\n" "string.text" msgid "Show _category" -msgstr "" +msgstr "Mostra la _categoria" #: tp_DataLabel.ui msgctxt "" @@ -1979,7 +1977,7 @@ "label\n" "string.text" msgid "Show _legend key" -msgstr "" +msgstr "Mostra la clau de la _llegenda" #: tp_DataLabel.ui msgctxt "" @@ -1988,7 +1986,7 @@ "label\n" "string.text" msgid "Number _format..." -msgstr "" +msgstr "_Format numèric..." #: tp_DataLabel.ui msgctxt "" @@ -1997,7 +1995,7 @@ "label\n" "string.text" msgid "Percentage f_ormat..." -msgstr "" +msgstr "F_ormat de percentatge..." #: tp_DataLabel.ui msgctxt "" @@ -2015,16 +2013,17 @@ "label\n" "string.text" msgid "_Separator" -msgstr "" +msgstr "_Separador" #: tp_DataLabel.ui +#, fuzzy msgctxt "" "tp_DataLabel.ui\n" "FT_LABEL_PLACEMENT\n" "label\n" "string.text" msgid "Place_ment" -msgstr "" +msgstr "_Posicionament" #: tp_DataLabel.ui msgctxt "" @@ -2033,7 +2032,7 @@ "label\n" "string.text" msgid "Number Format for Percentage Value" -msgstr "" +msgstr "Format del nombre per al valor del percentatge" #: tp_DataLabel.ui msgctxt "" @@ -2042,7 +2041,7 @@ "label\n" "string.text" msgid "Text Attributes" -msgstr "" +msgstr "Atributs del text" #: tp_DataLabel.ui msgctxt "" @@ -2054,14 +2053,13 @@ msgstr "_Graus" #: tp_DataLabel.ui -#, fuzzy msgctxt "" "tp_DataLabel.ui\n" "FT_LABEL_TEXTDIR\n" "label\n" "string.text" msgid "Te_xt direction" -msgstr "Direcció del te_xt:" +msgstr "Direcció del te_xt" #: tp_DataLabel.ui msgctxt "" @@ -2070,7 +2068,7 @@ "label\n" "string.text" msgid "Rotate Text" -msgstr "" +msgstr "Gira el text" #: tp_DataLabel.ui msgctxt "" @@ -2097,7 +2095,7 @@ "2\n" "stringlist.text" msgid "Above" -msgstr "" +msgstr "Part superior" #: tp_DataLabel.ui msgctxt "" @@ -2106,7 +2104,7 @@ "3\n" "stringlist.text" msgid "Top left" -msgstr "" +msgstr "A dalt a l'esquerra" #: tp_DataLabel.ui msgctxt "" @@ -2115,7 +2113,7 @@ "4\n" "stringlist.text" msgid "Left" -msgstr "" +msgstr "Esquerra" #: tp_DataLabel.ui msgctxt "" @@ -2142,7 +2140,7 @@ "7\n" "stringlist.text" msgid "Bottom right" -msgstr "" +msgstr "A baix a la dreta" #: tp_DataLabel.ui msgctxt "" @@ -2314,7 +2312,7 @@ "label\n" "string.text" msgid "Data _labels" -msgstr "" +msgstr "Etiquetes de _dades" #: tp_ErrorBars.ui msgctxt "" @@ -2323,7 +2321,7 @@ "label\n" "string.text" msgid "_None" -msgstr "" +msgstr "_Cap" #: tp_ErrorBars.ui msgctxt "" @@ -2332,7 +2330,7 @@ "label\n" "string.text" msgid "_Constant Value" -msgstr "" +msgstr "Valor _constant" #: tp_ErrorBars.ui msgctxt "" @@ -2341,7 +2339,7 @@ "label\n" "string.text" msgid "_Percentage" -msgstr "" +msgstr "_Percentatge" #: tp_ErrorBars.ui msgctxt "" @@ -2350,7 +2348,7 @@ "label\n" "string.text" msgid "Cell _Range" -msgstr "" +msgstr "Inte_rval de cel·les" #: tp_ErrorBars.ui msgctxt "" @@ -2359,7 +2357,7 @@ "label\n" "string.text" msgid "Error Category" -msgstr "" +msgstr "Categoria d'error" #: tp_ErrorBars.ui msgctxt "" @@ -2368,7 +2366,7 @@ "label\n" "string.text" msgid "Positive _and Negative" -msgstr "" +msgstr "Positiu _i negatiu" #: tp_ErrorBars.ui msgctxt "" @@ -2377,7 +2375,7 @@ "label\n" "string.text" msgid "Pos_itive" -msgstr "" +msgstr "_Positiu" #: tp_ErrorBars.ui msgctxt "" @@ -2386,7 +2384,7 @@ "label\n" "string.text" msgid "Ne_gative" -msgstr "" +msgstr "Ne_gatiu" #: tp_ErrorBars.ui msgctxt "" @@ -2395,7 +2393,7 @@ "label\n" "string.text" msgid "Error Indicator" -msgstr "" +msgstr "Indicador d'error" #: tp_ErrorBars.ui msgctxt "" @@ -2404,7 +2402,7 @@ "label\n" "string.text" msgid "P_ositive (+)" -msgstr "" +msgstr "P_ositiu (+)" #: tp_ErrorBars.ui msgctxt "" @@ -2413,7 +2411,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Seleccioneu l'interval de dades" #: tp_ErrorBars.ui msgctxt "" @@ -2422,7 +2420,7 @@ "label\n" "string.text" msgid "_Negative (-)" -msgstr "" +msgstr "_Negatiu (-)" #: tp_ErrorBars.ui msgctxt "" @@ -2431,7 +2429,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Seleccioneu l'interval de dades" #: tp_ErrorBars.ui msgctxt "" @@ -2440,7 +2438,7 @@ "label\n" "string.text" msgid "Same value for both" -msgstr "" +msgstr "El mateix valor per a totes dues" #: tp_ErrorBars.ui msgctxt "" @@ -2449,7 +2447,7 @@ "label\n" "string.text" msgid "Parameters" -msgstr "" +msgstr "Paràmetres" #: tp_ErrorBars.ui msgctxt "" @@ -2458,7 +2456,7 @@ "label\n" "string.text" msgid "Select Range for Positive Error Bars" -msgstr "" +msgstr "Seleccioneu l'interval per a les barres d'error positives" #: tp_ErrorBars.ui msgctxt "" @@ -2467,7 +2465,7 @@ "label\n" "string.text" msgid "Select Range for Negative Error Bars" -msgstr "" +msgstr "Seleccioneu l'interval per a les barres d'error negatives" #: tp_ErrorBars.ui msgctxt "" @@ -2476,7 +2474,7 @@ "label\n" "string.text" msgid "From Data Table" -msgstr "" +msgstr "De la taula de dades" #: tp_ErrorBars.ui msgctxt "" @@ -2485,7 +2483,7 @@ "0\n" "stringlist.text" msgid "Standard Error" -msgstr "" +msgstr "Error estàndard" #: tp_ErrorBars.ui msgctxt "" @@ -2685,7 +2683,7 @@ "label\n" "string.text" msgid "Data series in _columns" -msgstr "" +msgstr "Sèries de dades en les _columnes" #: tp_RangeChooser.ui msgctxt "" @@ -2694,7 +2692,7 @@ "label\n" "string.text" msgid "_First row as label" -msgstr "" +msgstr "La _primera fila com a etiqueta" #: tp_RangeChooser.ui msgctxt "" @@ -2703,7 +2701,7 @@ "label\n" "string.text" msgid "F_irst column as label" -msgstr "" +msgstr "La p_rimera columna com a etiquetes" #: tp_RangeChooser.ui msgctxt "" @@ -2712,7 +2710,7 @@ "label\n" "string.text" msgid "Time based charting" -msgstr "" +msgstr "Diagrama basat en el temps" #: tp_RangeChooser.ui msgctxt "" @@ -2721,7 +2719,7 @@ "text\n" "string.text" msgid "0" -msgstr "" +msgstr "0" #: tp_RangeChooser.ui msgctxt "" @@ -2730,7 +2728,7 @@ "text\n" "string.text" msgid "0" -msgstr "" +msgstr "0" #: tp_RangeChooser.ui msgctxt "" @@ -2739,7 +2737,7 @@ "label\n" "string.text" msgid "Start Table Index" -msgstr "" +msgstr "Inicia l'índex de la taula" #: tp_RangeChooser.ui msgctxt "" @@ -2748,17 +2746,16 @@ "label\n" "string.text" msgid "End Table Index" -msgstr "" +msgstr "Finalitza l'índex de la taula" #: tp_RangeChooser.ui -#, fuzzy msgctxt "" "tp_RangeChooser.ui\n" "STR_PAGE_DATA_RANGE\n" "label\n" "string.text" msgid "Data Range" -msgstr "Intervals de dades" +msgstr "Interval de dades" #: tp_Scale.ui msgctxt "" @@ -3391,14 +3388,13 @@ msgstr "Eix _Z" #: wizelementspage.ui -#, fuzzy msgctxt "" "wizelementspage.ui\n" "labelMainTitle\n" "label\n" "string.text" msgid "_Title" -msgstr "_Mosaic" +msgstr "_Títol" #: wizelementspage.ui msgctxt "" @@ -3407,7 +3403,7 @@ "label\n" "string.text" msgid "_Subtitle" -msgstr "" +msgstr "_Subtítol" #: wizelementspage.ui msgctxt "" @@ -3434,7 +3430,7 @@ "label\n" "string.text" msgid "_Display legend" -msgstr "" +msgstr "_Mostra la llegenda" #: wizelementspage.ui msgctxt "" @@ -3443,7 +3439,7 @@ "label\n" "string.text" msgid "_Left" -msgstr "" +msgstr "_Esquerra" #: wizelementspage.ui msgctxt "" @@ -3452,7 +3448,7 @@ "label\n" "string.text" msgid "_Right" -msgstr "" +msgstr "_Dreta" #: wizelementspage.ui msgctxt "" @@ -3461,7 +3457,7 @@ "label\n" "string.text" msgid "_Top" -msgstr "" +msgstr "_Superior" #: wizelementspage.ui msgctxt "" @@ -3470,7 +3466,7 @@ "label\n" "string.text" msgid "_Bottom" -msgstr "" +msgstr "_Inferior" #: wizelementspage.ui msgctxt "" @@ -3479,17 +3475,16 @@ "label\n" "string.text" msgid "Choose titles, legend, and grid settings" -msgstr "" +msgstr "Trieu els títols, la llegenda i els paràmetres de la graella" #: wizelementspage.ui -#, fuzzy msgctxt "" "wizelementspage.ui\n" "x\n" "label\n" "string.text" msgid "X axis" -msgstr "Eix _X" +msgstr "Eix X" #: wizelementspage.ui msgctxt "" @@ -3516,4 +3511,4 @@ "label\n" "string.text" msgid "Display grids" -msgstr "" +msgstr "Mostra les graelles" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/cui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca/cui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/cui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/cui/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408971460.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/dbaccess/source/ui/querydesign.po libreoffice-l10n-4.3.2/translations/source/ca/dbaccess/source/ui/querydesign.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/dbaccess/source/ui/querydesign.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/dbaccess/source/ui/querydesign.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2012-03-10 12:11+0200\n" -"Last-Translator: Jesús \n" +"PO-Revision-Date: 2014-08-26 08:46+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1409042760.000000\n" #: query.src msgctxt "" @@ -499,7 +500,7 @@ "STR_QUERY_CROSS_JOIN\n" "string.text" msgid "Contains the Cartesian product of ALL records from '%1' and from '%2'." -msgstr "" +msgstr "Conté el producte cartesià de TOTS els registres de «%1» i de «%2»." #: querydlg.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/dbaccess/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca/dbaccess/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/dbaccess/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/dbaccess/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-12-04 14:31+0000\n" +"PO-Revision-Date: 2014-08-26 08:57+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1386167462.0\n" +"X-POOTLE-MTIME: 1409043427.000000\n" #: admindialog.ui msgctxt "" @@ -23,7 +23,7 @@ "title\n" "string.text" msgid "Database properties" -msgstr "" +msgstr "Propietats de la base de dades" #: admindialog.ui msgctxt "" @@ -32,7 +32,7 @@ "label\n" "string.text" msgid "Advanced Properties" -msgstr "" +msgstr "Propietats avançades" #: advancedsettingsdialog.ui msgctxt "" @@ -41,7 +41,7 @@ "title\n" "string.text" msgid "Advanced Settings" -msgstr "" +msgstr "Configuració avançada" #: advancedsettingsdialog.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "Generated Values" -msgstr "" +msgstr "Valors generats" #: advancedsettingsdialog.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "Special Settings" -msgstr "" +msgstr "Configuració especial" #: applycolpage.ui msgctxt "" @@ -68,7 +68,7 @@ "label\n" "string.text" msgid "Existing columns" -msgstr "" +msgstr "Columnes existents" #: choosedatasourcedialog.ui msgctxt "" @@ -77,7 +77,7 @@ "title\n" "string.text" msgid "Data Source" -msgstr "" +msgstr "Font de les dades" #: choosedatasourcedialog.ui msgctxt "" @@ -86,7 +86,7 @@ "label\n" "string.text" msgid "Or_ganize..." -msgstr "" +msgstr "Or_ganitza..." #: choosedatasourcedialog.ui msgctxt "" @@ -95,7 +95,7 @@ "label\n" "string.text" msgid "Choose a data source:" -msgstr "" +msgstr "Trieu una font de dades:" #: colwidthdialog.ui msgctxt "" @@ -104,7 +104,7 @@ "title\n" "string.text" msgid "Column Width" -msgstr "" +msgstr "Amplada de la columna" #: colwidthdialog.ui msgctxt "" @@ -113,7 +113,7 @@ "label\n" "string.text" msgid "_Width" -msgstr "" +msgstr "_Amplada" #: colwidthdialog.ui msgctxt "" @@ -122,7 +122,7 @@ "label\n" "string.text" msgid "_Automatic" -msgstr "" +msgstr "_Automàtica" #: copytablepage.ui msgctxt "" @@ -131,7 +131,7 @@ "label\n" "string.text" msgid "De_finition and data" -msgstr "" +msgstr "De_finició i dades" #: copytablepage.ui msgctxt "" @@ -140,16 +140,17 @@ "label\n" "string.text" msgid "Def_inition" -msgstr "" +msgstr "Def_inició" #: copytablepage.ui +#, fuzzy msgctxt "" "copytablepage.ui\n" "view\n" "label\n" "string.text" msgid "A_s table view" -msgstr "" +msgstr "Com a vista de _taula" #: copytablepage.ui msgctxt "" @@ -158,7 +159,7 @@ "label\n" "string.text" msgid "Append _data" -msgstr "" +msgstr "Afegeix _dades" #: copytablepage.ui msgctxt "" @@ -167,7 +168,7 @@ "label\n" "string.text" msgid "Use first _line as column names" -msgstr "" +msgstr "Usa la primera _línia com a noms de les columnes" #: copytablepage.ui msgctxt "" @@ -176,7 +177,7 @@ "label\n" "string.text" msgid "Crea_te primary key" -msgstr "" +msgstr "_Crea una clau primària" #: copytablepage.ui msgctxt "" @@ -185,7 +186,7 @@ "label\n" "string.text" msgid "Name" -msgstr "" +msgstr "Nom" #: copytablepage.ui msgctxt "" @@ -194,7 +195,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "Opcions" #: copytablepage.ui msgctxt "" @@ -203,7 +204,7 @@ "label\n" "string.text" msgid "Ta_ble name" -msgstr "" +msgstr "Nom de la _taula" #: dbaseindexdialog.ui msgctxt "" @@ -212,7 +213,7 @@ "title\n" "string.text" msgid "Indexes" -msgstr "" +msgstr "Índexs" #: dbaseindexdialog.ui msgctxt "" @@ -221,7 +222,7 @@ "label\n" "string.text" msgid "_Table" -msgstr "" +msgstr "_Taula" #: dbaseindexdialog.ui msgctxt "" @@ -230,7 +231,7 @@ "label\n" "string.text" msgid "T_able indexes" -msgstr "" +msgstr "Índexs de la t_aula" #: dbaseindexdialog.ui msgctxt "" @@ -239,7 +240,7 @@ "label\n" "string.text" msgid "_Free indexes" -msgstr "" +msgstr "Índexs l_liures" #: dbaseindexdialog.ui msgctxt "" @@ -248,7 +249,7 @@ "label\n" "string.text" msgid "Assignment" -msgstr "" +msgstr "Assignació" #: directsqldialog.ui msgctxt "" @@ -329,7 +330,7 @@ "title\n" "string.text" msgid "Field Format" -msgstr "" +msgstr "Format del camp" #: fielddialog.ui msgctxt "" @@ -338,7 +339,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Format" #: fielddialog.ui msgctxt "" @@ -347,7 +348,7 @@ "label\n" "string.text" msgid "Alignment" -msgstr "" +msgstr "Alineació" #: fielddialog.ui msgctxt "" @@ -356,7 +357,7 @@ "label\n" "string.text" msgid "Table Format" -msgstr "" +msgstr "Format de la taula" #: finalpagewizard.ui msgctxt "" @@ -365,7 +366,7 @@ "label\n" "string.text" msgid "Decide how to proceed after saving the database" -msgstr "" +msgstr "Decidiu com continuar després de desar la base de dades" #: finalpagewizard.ui msgctxt "" @@ -374,7 +375,7 @@ "label\n" "string.text" msgid "Do you want the wizard to register the database in %PRODUCTNAME?" -msgstr "" +msgstr "Voleu que l'auxiliar registri la base de dades al %PRODUCTNAME?" #: finalpagewizard.ui msgctxt "" @@ -383,7 +384,7 @@ "label\n" "string.text" msgid "_Yes, register the database for me" -msgstr "" +msgstr "_Sí, registra la base de dades" #: finalpagewizard.ui msgctxt "" @@ -392,7 +393,7 @@ "label\n" "string.text" msgid "N_o, do not register the database" -msgstr "" +msgstr "N_o, no registris la base de dades" #: finalpagewizard.ui msgctxt "" @@ -401,7 +402,7 @@ "label\n" "string.text" msgid "After the database file has been saved, what do you want to do?" -msgstr "" +msgstr "Després de desar la base de dades, què voleu fer?" #: finalpagewizard.ui msgctxt "" @@ -410,7 +411,7 @@ "label\n" "string.text" msgid "Open the database for editing" -msgstr "" +msgstr "Obrir la base de dades per editar-la" #: finalpagewizard.ui msgctxt "" @@ -419,7 +420,7 @@ "label\n" "string.text" msgid "Create tables using the table wizard" -msgstr "" +msgstr "Crear taules utilitzant l'auxiliar de taules" #: finalpagewizard.ui msgctxt "" @@ -428,7 +429,7 @@ "label\n" "string.text" msgid "Click 'Finish' to save the database." -msgstr "" +msgstr "Feu clic a «Finalitza» per desar la base de dades." #: generalpagedialog.ui msgctxt "" @@ -551,7 +552,7 @@ "label\n" "string.text" msgid "Re_trieve generated values" -msgstr "" +msgstr "Re_cupera els valors generats" #: generatedvaluespage.ui msgctxt "" @@ -740,7 +741,7 @@ "label\n" "string.text" msgid "Operator" -msgstr "" +msgstr "Operador" #: queryfilterdialog.ui msgctxt "" @@ -749,7 +750,7 @@ "label\n" "string.text" msgid "Field name" -msgstr "" +msgstr "Nom del camp" #: queryfilterdialog.ui msgctxt "" @@ -758,7 +759,7 @@ "label\n" "string.text" msgid "Condition" -msgstr "" +msgstr "Condició" #: queryfilterdialog.ui msgctxt "" @@ -767,7 +768,7 @@ "0\n" "stringlist.text" msgid "- none -" -msgstr "" +msgstr "- cap -" #: queryfilterdialog.ui msgctxt "" @@ -776,7 +777,7 @@ "0\n" "stringlist.text" msgid "=" -msgstr "" +msgstr "=" #: queryfilterdialog.ui msgctxt "" @@ -785,7 +786,7 @@ "1\n" "stringlist.text" msgid "<>" -msgstr "" +msgstr "<>" #: queryfilterdialog.ui msgctxt "" @@ -794,7 +795,7 @@ "2\n" "stringlist.text" msgid "<" -msgstr "" +msgstr "<" #: queryfilterdialog.ui msgctxt "" @@ -803,7 +804,7 @@ "3\n" "stringlist.text" msgid "=" -msgstr "" +msgstr "=" #: queryfilterdialog.ui msgctxt "" @@ -812,7 +813,7 @@ "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -821,7 +822,7 @@ "5\n" "stringlist.text" msgid "=" -msgstr "" +msgstr "=" #: queryfilterdialog.ui msgctxt "" @@ -830,7 +831,7 @@ "6\n" "stringlist.text" msgid "like" -msgstr "" +msgstr "com a" #: queryfilterdialog.ui msgctxt "" @@ -839,7 +840,7 @@ "7\n" "stringlist.text" msgid "not like" -msgstr "" +msgstr "no com" #: queryfilterdialog.ui msgctxt "" @@ -848,7 +849,7 @@ "8\n" "stringlist.text" msgid "null" -msgstr "" +msgstr "nul" #: queryfilterdialog.ui msgctxt "" @@ -857,7 +858,7 @@ "9\n" "stringlist.text" msgid "not null" -msgstr "" +msgstr "no és nul" #: queryfilterdialog.ui msgctxt "" @@ -866,7 +867,7 @@ "0\n" "stringlist.text" msgid "- none -" -msgstr "" +msgstr "- cap -" #: queryfilterdialog.ui msgctxt "" @@ -875,7 +876,7 @@ "0\n" "stringlist.text" msgid "- none -" -msgstr "" +msgstr "- cap -" #: queryfilterdialog.ui msgctxt "" @@ -884,7 +885,7 @@ "label\n" "string.text" msgid "Value" -msgstr "" +msgstr "Valor" #: queryfilterdialog.ui msgctxt "" @@ -893,7 +894,7 @@ "0\n" "stringlist.text" msgid "AND" -msgstr "" +msgstr "I" #: queryfilterdialog.ui msgctxt "" @@ -902,7 +903,7 @@ "1\n" "stringlist.text" msgid "OR" -msgstr "" +msgstr "O" #: queryfilterdialog.ui msgctxt "" @@ -911,7 +912,7 @@ "0\n" "stringlist.text" msgid "AND" -msgstr "" +msgstr "I" #: queryfilterdialog.ui msgctxt "" @@ -1154,7 +1155,7 @@ "title\n" "string.text" msgid "Row Height" -msgstr "" +msgstr "Alçada de la fila" #: rowheightdialog.ui msgctxt "" @@ -1163,7 +1164,7 @@ "label\n" "string.text" msgid "_Height" -msgstr "" +msgstr "A_lçada" #: rowheightdialog.ui msgctxt "" @@ -1172,7 +1173,7 @@ "label\n" "string.text" msgid "_Automatic" -msgstr "" +msgstr "_Automàtica" #: savedialog.ui msgctxt "" @@ -1181,7 +1182,7 @@ "title\n" "string.text" msgid "Save As" -msgstr "" +msgstr "Anomena i desa" #: savedialog.ui msgctxt "" @@ -1190,7 +1191,7 @@ "label\n" "string.text" msgid "Please enter a name for the object to be created:" -msgstr "" +msgstr "Introduïu un nom per a l'objecte que s'ha de crear:" #: savedialog.ui msgctxt "" @@ -1199,7 +1200,7 @@ "label\n" "string.text" msgid "_Catalog" -msgstr "" +msgstr "_Catàleg" #: savedialog.ui msgctxt "" @@ -1208,7 +1209,7 @@ "label\n" "string.text" msgid "_Schema" -msgstr "" +msgstr "E_squema" #: sortdialog.ui msgctxt "" @@ -1217,7 +1218,7 @@ "title\n" "string.text" msgid "Sort Order" -msgstr "" +msgstr "Criteri d'ordenació" #: sortdialog.ui msgctxt "" @@ -1226,7 +1227,7 @@ "label\n" "string.text" msgid "Operator" -msgstr "" +msgstr "Operador" #: sortdialog.ui msgctxt "" @@ -1235,7 +1236,7 @@ "label\n" "string.text" msgid "and then" -msgstr "" +msgstr "i aleshores" #: sortdialog.ui msgctxt "" @@ -1244,7 +1245,7 @@ "label\n" "string.text" msgid "and then" -msgstr "" +msgstr "i aleshores" #: sortdialog.ui msgctxt "" @@ -1253,7 +1254,7 @@ "label\n" "string.text" msgid "Field name" -msgstr "" +msgstr "Nom del camp" #: sortdialog.ui msgctxt "" @@ -1262,7 +1263,7 @@ "label\n" "string.text" msgid "Order" -msgstr "" +msgstr "Ordre" #: sortdialog.ui msgctxt "" @@ -1271,7 +1272,7 @@ "0\n" "stringlist.text" msgid "ascending" -msgstr "" +msgstr "ascendent" #: sortdialog.ui msgctxt "" @@ -1280,7 +1281,7 @@ "1\n" "stringlist.text" msgid "descending" -msgstr "" +msgstr "descendent" #: sortdialog.ui msgctxt "" @@ -1289,7 +1290,7 @@ "0\n" "stringlist.text" msgid "ascending" -msgstr "" +msgstr "ascendent" #: sortdialog.ui msgctxt "" @@ -1298,7 +1299,7 @@ "1\n" "stringlist.text" msgid "descending" -msgstr "" +msgstr "descendent" #: sortdialog.ui msgctxt "" @@ -1307,7 +1308,7 @@ "0\n" "stringlist.text" msgid "ascending" -msgstr "" +msgstr "ascendent" #: sortdialog.ui msgctxt "" @@ -1316,7 +1317,7 @@ "1\n" "stringlist.text" msgid "descending" -msgstr "" +msgstr "descendent" #: sortdialog.ui msgctxt "" @@ -1325,7 +1326,7 @@ "label\n" "string.text" msgid "Sort order" -msgstr "" +msgstr "Criteri d'ordenació" #: specialsettingspage.ui msgctxt "" @@ -1514,7 +1515,7 @@ "3\n" "stringlist.text" msgid "MS Access" -msgstr "" +msgstr "MS Access" #: specialsettingspage.ui msgctxt "" @@ -1523,7 +1524,7 @@ "label\n" "string.text" msgid "Rows to scan column types" -msgstr "" +msgstr "Files per escanejar els tipus de columna" #: specialsettingspage.ui msgctxt "" @@ -1532,7 +1533,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "Opcions" #: sqlexception.ui msgctxt "" @@ -1541,7 +1542,7 @@ "title\n" "string.text" msgid "%PRODUCTNAME Base" -msgstr "" +msgstr "%PRODUCTNAME Base" #: sqlexception.ui msgctxt "" @@ -1550,7 +1551,7 @@ "label\n" "string.text" msgid "Error _list:" -msgstr "" +msgstr "_Llista d'errors:" #: sqlexception.ui msgctxt "" @@ -1559,7 +1560,7 @@ "label\n" "string.text" msgid "_Description:" -msgstr "" +msgstr "_Descripció:" #: sqlexception.ui msgctxt "" @@ -1568,7 +1569,7 @@ "label\n" "string.text" msgid "Details" -msgstr "" +msgstr "Detalls" #: tablesfilterdialog.ui msgctxt "" @@ -1577,7 +1578,7 @@ "title\n" "string.text" msgid "Tables Filter" -msgstr "" +msgstr "Filtre de taules" #: tablesfilterpage.ui msgctxt "" @@ -1586,7 +1587,7 @@ "label\n" "string.text" msgid "Mark the tables that should be visible for the applications." -msgstr "" +msgstr "Marqueu les taules que han de ser visibles per a les aplicacions." #: tablesfilterpage.ui msgctxt "" @@ -1595,7 +1596,7 @@ "label\n" "string.text" msgid "Tables and table filter" -msgstr "" +msgstr "Taules i filtre de taula" #: tablesjoindialog.ui msgctxt "" @@ -1604,7 +1605,7 @@ "label\n" "string.text" msgid "Tables" -msgstr "" +msgstr "Taules" #: tablesjoindialog.ui msgctxt "" @@ -1613,7 +1614,7 @@ "label\n" "string.text" msgid "Queries" -msgstr "" +msgstr "Consultes" #: tablesjoindialog.ui msgctxt "" @@ -1622,7 +1623,7 @@ "label\n" "string.text" msgid "Add Tables" -msgstr "" +msgstr "Afegeix taules" #: tablesjoindialog.ui msgctxt "" @@ -1631,7 +1632,7 @@ "label\n" "string.text" msgid "Add Table or Query" -msgstr "" +msgstr "Addició d'una taula o una consulta" #: useradmindialog.ui msgctxt "" @@ -1640,13 +1641,14 @@ "title\n" "string.text" msgid "User administration" -msgstr "" +msgstr "Administració dels usuaris" #: useradmindialog.ui +#, fuzzy msgctxt "" "useradmindialog.ui\n" "settings\n" "label\n" "string.text" msgid "User Settings" -msgstr "" +msgstr "Configuració dels usuaris" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ca/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: Libreoffice42\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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-07-16 21:21+0000\n" "Last-Translator: Joan \n" "Language-Team: Softcatalà\n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Document del BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Document del BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Document del BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Document del ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Document del ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Document del ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Document del GreatWorks" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Document del GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Document del GreatWorks" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Document del Microsoft Works per a Mac (v1-v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Document del Microsoft Works per a Mac (v1-v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Document del Microsoft Works per a Mac (v1-v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/formula/source/core/resource.po libreoffice-l10n-4.3.2/translations/source/ca/formula/source/core/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/formula/source/core/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/formula/source/core/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-08-26 04:30+0200\n" +"POT-Creation-Date: 2014-09-04 14:52+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/formula/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/ca/formula/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/formula/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/formula/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408967412.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/ca/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-04-27 19:00+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" @@ -13056,14 +13056,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programació al %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "La funció d'enregistrament de macros només està disponible per als documents de text del %PRODUCTNAME Writer i per als fulls de càlcul del %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/ca/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408965175.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/starmath/source.po libreoffice-l10n-4.3.2/translations/source/ca/starmath/source.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/starmath/source.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/starmath/source.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408965214.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/ca/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408965257.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/svtools/source/control.po libreoffice-l10n-4.3.2/translations/source/ca/svtools/source/control.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/svtools/source/control.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/svtools/source/control.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408967606.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/svtools/source/misc.po libreoffice-l10n-4.3.2/translations/source/ca/svtools/source/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/svtools/source/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/svtools/source/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408970247.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/svtools/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca/svtools/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/svtools/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/svtools/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408970537.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/svx/inc.po libreoffice-l10n-4.3.2/translations/source/ca/svx/inc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/svx/inc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/svx/inc.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-01-26 20:53+0000\n" +"PO-Revision-Date: 2014-08-26 08:14+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1359233636.0\n" +"X-POOTLE-MTIME: 1409040842.000000\n" #: globlmn_tmpl.hrc msgctxt "" @@ -478,12 +478,13 @@ msgstr "De~sagrupa" #: globlmn_tmpl.hrc +#, fuzzy msgctxt "" "globlmn_tmpl.hrc\n" "ITEM_POPUP_ENTER_GROUP\n" "#define.text" msgid "~Enter Group" -msgstr "" +msgstr "Inclou-ho ~al grup" #: globlmn_tmpl.hrc msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/svx/source/dialog.po libreoffice-l10n-4.3.2/translations/source/ca/svx/source/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/svx/source/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/svx/source/dialog.po 2014-09-16 19:55:40.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: 2014-07-10 19:33+0200\n" -"PO-Revision-Date: 2014-04-27 19:06+0000\n" +"PO-Revision-Date: 2014-08-26 08:17+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1398625583.000000\n" +"X-POOTLE-MTIME: 1409041066.000000\n" #: bmpmask.src msgctxt "" @@ -157,7 +157,7 @@ "STR_IMAGE_GIF\n" "string.text" msgid "Gif image" -msgstr "" +msgstr "Imatge GIF" #: compressgraphicdialog.src msgctxt "" @@ -165,7 +165,7 @@ "STR_IMAGE_JPEG\n" "string.text" msgid "Jpeg image" -msgstr "" +msgstr "Imatge JPEG" #: compressgraphicdialog.src msgctxt "" @@ -173,7 +173,7 @@ "STR_IMAGE_PNG\n" "string.text" msgid "PNG image" -msgstr "" +msgstr "Imatge PNG" #: compressgraphicdialog.src msgctxt "" @@ -181,7 +181,7 @@ "STR_IMAGE_TIFF\n" "string.text" msgid "TIFF image" -msgstr "" +msgstr "Imatge TIFF" #: compressgraphicdialog.src msgctxt "" @@ -189,7 +189,7 @@ "STR_IMAGE_WMF\n" "string.text" msgid "WMF image" -msgstr "" +msgstr "Imatge WMF" #: compressgraphicdialog.src msgctxt "" @@ -197,7 +197,7 @@ "STR_IMAGE_MET\n" "string.text" msgid "MET image" -msgstr "" +msgstr "Imatge MET" #: compressgraphicdialog.src msgctxt "" @@ -205,7 +205,7 @@ "STR_IMAGE_PCT\n" "string.text" msgid "PCT image" -msgstr "" +msgstr "Imatge PICT" #: compressgraphicdialog.src msgctxt "" @@ -213,7 +213,7 @@ "STR_IMAGE_SVG\n" "string.text" msgid "SVG image" -msgstr "" +msgstr "Imatge SVG" #: compressgraphicdialog.src msgctxt "" @@ -221,7 +221,7 @@ "STR_IMAGE_BMP\n" "string.text" msgid "BMP image" -msgstr "" +msgstr "Imatge BMP" #: compressgraphicdialog.src msgctxt "" @@ -229,7 +229,7 @@ "STR_IMAGE_UNKNOWN\n" "string.text" msgid "Unknown" -msgstr "" +msgstr "Desconegut" #: contdlg.src msgctxt "" @@ -447,6 +447,9 @@ "\n" "The 'Status' column shows whether the document can be recovered." msgstr "" +"Premeu «Comença la recuperació» per començar el procés de recuperació dels documents llistats a sota.\n" +"\n" +"La columna «Estat» indica si el document es pot recuperar o no." #: docrecovery.src msgctxt "" @@ -3268,7 +3271,7 @@ "RID_SVXSTR_COLOR_LIBRE_GREEN_1\n" "string.text" msgid "Green 1 (%PRODUCTNAME Main Color)" -msgstr "" +msgstr "Verd 1 (color principal del %PRODUCTNAME)" #: sdstring.src msgctxt "" @@ -3476,7 +3479,7 @@ "RID_SVXSTR_SEARCH_END\n" "string.text" msgid "Reached the end of the document" -msgstr "" +msgstr "S'ha arribat a la fi del document" #: srchdlg.src msgctxt "" @@ -3484,7 +3487,7 @@ "RID_SVXSTR_SEARCH_END_SHEET\n" "string.text" msgid "Reached the end of the sheet" -msgstr "" +msgstr "S'ha arribat a la fi del full" #: srchdlg.src msgctxt "" @@ -3492,7 +3495,7 @@ "RID_SVXSTR_SEARCH_NOT_FOUND\n" "string.text" msgid "Search key not found" -msgstr "" +msgstr "No s'ha trobat l'expressió cercada" #: svxbmpnumvalueset.src msgctxt "" @@ -3564,7 +3567,7 @@ "RID_SVXSTR_SINGLENUM_DESCRIPTION_0\n" "string.text" msgid "Number 1) 2) 3)" -msgstr "" +msgstr "Número 1) 2) 3)" #: svxbmpnumvalueset.src msgctxt "" @@ -4719,7 +4722,7 @@ "RTL_TEXTENCODING_UCS2\n" "pairedlist.text" msgid "Unicode (UTF-16)" -msgstr "" +msgstr "Unicode (UTF-16)" #: txenctab.src msgctxt "" @@ -4935,7 +4938,7 @@ "RID_SUBSETSTR_ODIA\n" "string.text" msgid "Odia" -msgstr "" +msgstr "oriya" #: ucsubset.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/svx/source/form.po libreoffice-l10n-4.3.2/translations/source/ca/svx/source/form.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/svx/source/form.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/svx/source/form.po 2014-09-16 19:55:40.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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-02-22 22:13+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-08-26 08:18+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393107224.0\n" +"X-POOTLE-MTIME: 1409041124.000000\n" #: datanavi.src msgctxt "" @@ -348,7 +348,7 @@ "RID_STR_METHOD_PUT\n" "string.text" msgid "Put" -msgstr "" +msgstr "Posa" #: datanavi.src msgctxt "" @@ -356,7 +356,7 @@ "RID_STR_METHOD_GET\n" "string.text" msgid "Get" -msgstr "" +msgstr "Aconsegueix" #: datanavi.src msgctxt "" @@ -364,7 +364,7 @@ "RID_STR_REPLACE_NONE\n" "string.text" msgid "None" -msgstr "" +msgstr "Cap" #: datanavi.src msgctxt "" @@ -372,7 +372,7 @@ "RID_STR_REPLACE_INST\n" "string.text" msgid "Instance" -msgstr "" +msgstr "Instància" #: datanavi.src msgctxt "" @@ -380,7 +380,7 @@ "RID_STR_REPLACE_DOC\n" "string.text" msgid "Document" -msgstr "" +msgstr "Document" #: datanavi.src msgctxt "" @@ -548,7 +548,7 @@ "RID_STR_ELEMENT\n" "string.text" msgid "Element" -msgstr "" +msgstr "Element" #: datanavi.src msgctxt "" @@ -556,7 +556,7 @@ "RID_STR_ATTRIBUTE\n" "string.text" msgid "Attribute" -msgstr "" +msgstr "Atribut" #: datanavi.src msgctxt "" @@ -564,7 +564,7 @@ "RID_STR_BINDING\n" "string.text" msgid "Binding" -msgstr "" +msgstr "Vinculació" #: datanavi.src msgctxt "" @@ -572,7 +572,7 @@ "RID_STR_BINDING_EXPR\n" "string.text" msgid "Binding expression" -msgstr "" +msgstr "Expressió vinculant" #: filtnav.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/svx/source/gallery2.po libreoffice-l10n-4.3.2/translations/source/ca/svx/source/gallery2.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/svx/source/gallery2.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/svx/source/gallery2.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-01-29 23:44+0100\n" -"Last-Translator: Jordi Serratosa \n" +"PO-Revision-Date: 2014-08-26 08:19+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1371062565.0\n" +"X-POOTLE-MTIME: 1409041148.000000\n" #: gallery.src msgctxt "" @@ -778,7 +778,7 @@ "RID_GALLERYSTR_THEME_ARCHITECTURE_FURNITURES\n" "string.text" msgid "Architecture - furniture" -msgstr "" +msgstr "Arquitectura - mobles" #: galtheme.src msgctxt "" @@ -1346,7 +1346,7 @@ "RID_GALLERYSTR_THEME_SPECIAL_PICTOGRAMM\n" "string.text" msgid "Special Pictograms" -msgstr "" +msgstr "Pictogrames especials" #: galtheme.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/svx/source/items.po libreoffice-l10n-4.3.2/translations/source/ca/svx/source/items.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/svx/source/items.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/svx/source/items.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-01-30 00:01+0100\n" -"Last-Translator: Jordi Serratosa \n" +"POT-Creation-Date: 2014-07-30 10:58+0200\n" +"PO-Revision-Date: 2014-08-26 08:19+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1409041179.000000\n" #: svxerr.src msgctxt "" @@ -212,7 +213,7 @@ "ERRCODE_SVX_MODIFIED_VBASIC_STORAGE & ERRCODE_RES_MASK\n" "string.text" msgid "All changes to the Basic Code are lost. The original VBA Macro Code is saved instead." -msgstr "" +msgstr "Es perdran totes les modificacions del Basic Code del document. En el seu lloc es desarà el codi macro VBA original." #: svxerr.src msgctxt "" @@ -396,7 +397,7 @@ "Font color\n" "itemlist.text" msgid "Font color" -msgstr "" +msgstr "Color de la lletra" #: svxitems.src msgctxt "" @@ -567,7 +568,7 @@ "Page Style\n" "itemlist.text" msgid "Page Style" -msgstr "" +msgstr "Estil de la pàgina" #: svxitems.src msgctxt "" @@ -594,7 +595,7 @@ "Character background\n" "itemlist.text" msgid "Character background" -msgstr "" +msgstr "Fons del caràcter" #: svxitems.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/svx/source/sidebar/area.po libreoffice-l10n-4.3.2/translations/source/ca/svx/source/sidebar/area.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/svx/source/sidebar/area.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/svx/source/sidebar/area.po 2014-09-16 19:55:40.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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2013-07-14 23:13+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-08-26 08:20+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1373843591.0\n" +"X-POOTLE-MTIME: 1409041223.000000\n" #: AreaPropertyPanel.src msgctxt "" @@ -125,13 +125,14 @@ msgstr "~Vora:" #: AreaPropertyPanel.src +#, fuzzy msgctxt "" "AreaPropertyPanel.src\n" "RID_POPUPPANEL_AREAPAGE_TRGR\n" "MTR_TRGR_BORDER\n" "metricfield.quickhelptext" msgid "Specify the border value of gradient transparency." -msgstr "" +msgstr "Indiqueu el valor de la vora de la transparència del degradat." #: AreaPropertyPanel.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/svx/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca/svx/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/svx/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/svx/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-04-10 13:05+0000\n" +"PO-Revision-Date: 2014-08-26 08:29+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1397135145.000000\n" +"X-POOTLE-MTIME: 1409041772.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -203,7 +203,7 @@ "label\n" "string.text" msgid "Calc_ulate" -msgstr "" +msgstr "Calc_ula" #: adddataitemdialog.ui msgctxt "" @@ -212,7 +212,7 @@ "label\n" "string.text" msgid "Condition" -msgstr "" +msgstr "Condició" #: adddataitemdialog.ui msgctxt "" @@ -221,7 +221,7 @@ "label\n" "string.text" msgid "Condition" -msgstr "" +msgstr "Condició" #: adddataitemdialog.ui msgctxt "" @@ -230,16 +230,17 @@ "label\n" "string.text" msgid "Condition" -msgstr "" +msgstr "Condició" #: adddataitemdialog.ui +#, fuzzy msgctxt "" "adddataitemdialog.ui\n" "label4\n" "label\n" "string.text" msgid "Settings" -msgstr "" +msgstr "Paràmetres" #: addinstancedialog.ui msgctxt "" @@ -248,7 +249,7 @@ "title\n" "string.text" msgid "Add Instance" -msgstr "" +msgstr "Afegeix una instància" #: addinstancedialog.ui msgctxt "" @@ -257,7 +258,7 @@ "label\n" "string.text" msgid "_Name" -msgstr "" +msgstr "_Nom" #: addinstancedialog.ui msgctxt "" @@ -266,7 +267,7 @@ "label\n" "string.text" msgid "Edit Instance" -msgstr "" +msgstr "Edita la instància" #: addinstancedialog.ui msgctxt "" @@ -275,7 +276,7 @@ "label\n" "string.text" msgid "_URL" -msgstr "" +msgstr "_URL" #: addinstancedialog.ui msgctxt "" @@ -284,7 +285,7 @@ "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: addinstancedialog.ui msgctxt "" @@ -293,7 +294,7 @@ "label\n" "string.text" msgid "_Link instance" -msgstr "" +msgstr "En~llaça la instància" #: addinstancedialog.ui msgctxt "" @@ -302,7 +303,7 @@ "label\n" "string.text" msgid "Instance" -msgstr "" +msgstr "Instància" #: addmodeldialog.ui msgctxt "" @@ -311,7 +312,7 @@ "title\n" "string.text" msgid "Add Model" -msgstr "" +msgstr "Afegeix un model" #: addmodeldialog.ui msgctxt "" @@ -329,7 +330,7 @@ "label\n" "string.text" msgid "_Name" -msgstr "" +msgstr "_Nom" #: addmodeldialog.ui msgctxt "" @@ -338,7 +339,7 @@ "label\n" "string.text" msgid "Edit Model" -msgstr "" +msgstr "Edita el model" #: addmodeldialog.ui msgctxt "" @@ -347,7 +348,7 @@ "label\n" "string.text" msgid "Model" -msgstr "" +msgstr "Model" #: addnamespacedialog.ui msgctxt "" @@ -356,7 +357,7 @@ "title\n" "string.text" msgid "Add Namespace" -msgstr "" +msgstr "Afegeix un espai de nom" #: addnamespacedialog.ui msgctxt "" @@ -365,7 +366,7 @@ "label\n" "string.text" msgid "_Prefix" -msgstr "" +msgstr "_Prefix" #: addnamespacedialog.ui msgctxt "" @@ -374,7 +375,7 @@ "label\n" "string.text" msgid "_URL" -msgstr "" +msgstr "_URL" #: addnamespacedialog.ui msgctxt "" @@ -710,22 +711,24 @@ msgstr "" #: chinesedictionary.ui +#, fuzzy msgctxt "" "chinesedictionary.ui\n" "mappingft\n" "label\n" "string.text" msgid "Mapping" -msgstr "" +msgstr "Correspondència" #: chinesedictionary.ui +#, fuzzy msgctxt "" "chinesedictionary.ui\n" "propertyft\n" "label\n" "string.text" msgid "Property" -msgstr "" +msgstr "Propietat" #: chinesedictionary.ui msgctxt "" @@ -734,7 +737,7 @@ "0\n" "stringlist.text" msgid "Other" -msgstr "" +msgstr "Altre" #: chinesedictionary.ui msgctxt "" @@ -743,7 +746,7 @@ "1\n" "stringlist.text" msgid "Foreign" -msgstr "" +msgstr "Estranger" #: chinesedictionary.ui msgctxt "" @@ -752,7 +755,7 @@ "2\n" "stringlist.text" msgid "First name" -msgstr "" +msgstr "Nom" #: chinesedictionary.ui msgctxt "" @@ -761,7 +764,7 @@ "3\n" "stringlist.text" msgid "Last name" -msgstr "" +msgstr "Cognoms" #: chinesedictionary.ui msgctxt "" @@ -770,7 +773,7 @@ "4\n" "stringlist.text" msgid "Title" -msgstr "" +msgstr "Títol" #: chinesedictionary.ui msgctxt "" @@ -779,7 +782,7 @@ "5\n" "stringlist.text" msgid "Status" -msgstr "" +msgstr "Estat" #: chinesedictionary.ui msgctxt "" @@ -788,7 +791,7 @@ "6\n" "stringlist.text" msgid "Place name" -msgstr "" +msgstr "Nom del lloc" #: chinesedictionary.ui msgctxt "" @@ -797,7 +800,7 @@ "7\n" "stringlist.text" msgid "Business" -msgstr "" +msgstr "Negoci" #: chinesedictionary.ui msgctxt "" @@ -806,7 +809,7 @@ "8\n" "stringlist.text" msgid "Adjective" -msgstr "" +msgstr "Adjectiu" #: chinesedictionary.ui msgctxt "" @@ -815,7 +818,7 @@ "9\n" "stringlist.text" msgid "Idiom" -msgstr "" +msgstr "Frase feta" #: chinesedictionary.ui msgctxt "" @@ -824,16 +827,17 @@ "10\n" "stringlist.text" msgid "Abbreviation" -msgstr "" +msgstr "Abreviatura" #: chinesedictionary.ui +#, fuzzy msgctxt "" "chinesedictionary.ui\n" "property\n" "11\n" "stringlist.text" msgid "Numerical" -msgstr "" +msgstr "Numeral" #: chinesedictionary.ui msgctxt "" @@ -842,7 +846,7 @@ "12\n" "stringlist.text" msgid "Noun" -msgstr "" +msgstr "Substantiu" #: chinesedictionary.ui msgctxt "" @@ -851,7 +855,7 @@ "13\n" "stringlist.text" msgid "Verb" -msgstr "" +msgstr "Verb" #: chinesedictionary.ui msgctxt "" @@ -860,7 +864,7 @@ "14\n" "stringlist.text" msgid "Brand name" -msgstr "" +msgstr "Nom de marca" #: chinesedictionary.ui msgctxt "" @@ -869,7 +873,7 @@ "label\n" "string.text" msgid "_Modify" -msgstr "" +msgstr "_Modifica" #: compressgraphicdialog.ui msgctxt "" @@ -1139,7 +1143,7 @@ "title\n" "string.text" msgid "Extrusion Depth" -msgstr "" +msgstr "Profunditat d'extrusió" #: extrustiondepthdialog.ui msgctxt "" @@ -1148,7 +1152,7 @@ "label\n" "string.text" msgid "_Value" -msgstr "" +msgstr "_Valor" #: extrustiondepthdialog.ui msgctxt "" @@ -1733,7 +1737,7 @@ "label\n" "string.text" msgid "Namespaces" -msgstr "" +msgstr "Espais de nom" #: optgridpage.ui msgctxt "" @@ -1997,13 +2001,14 @@ msgstr "Contrasenya nova" #: querydeletecontourdialog.ui +#, fuzzy msgctxt "" "querydeletecontourdialog.ui\n" "QueryDeleteContourDialog\n" "title\n" "string.text" msgid "Delete the contour?" -msgstr "" +msgstr "Voleu suprimir la vora?" #: querydeletecontourdialog.ui msgctxt "" @@ -2023,7 +2028,7 @@ "secondary_text\n" "string.text" msgid "Are you sure you want to continue?" -msgstr "" +msgstr "Esteu segur que voleu continuar?" #: querydeleteobjectdialog.ui msgctxt "" @@ -2032,7 +2037,7 @@ "title\n" "string.text" msgid "Delete this object?" -msgstr "" +msgstr "Voleu suprimir aquest objecte?" #: querydeleteobjectdialog.ui msgctxt "" @@ -2041,7 +2046,7 @@ "text\n" "string.text" msgid "Do you really want to delete this object?" -msgstr "" +msgstr "Esteu segur de voler suprimir aquest objecte?" #: querydeletethemedialog.ui msgctxt "" @@ -2050,7 +2055,7 @@ "title\n" "string.text" msgid "Delete this theme?" -msgstr "" +msgstr "Voleu suprimir aquest tema?" #: querydeletethemedialog.ui msgctxt "" @@ -2059,7 +2064,7 @@ "text\n" "string.text" msgid "Do you really want to delete this theme?" -msgstr "" +msgstr "Esteu segur de voler suprimir aquest tema?" #: querymodifyimagemapchangesdialog.ui msgctxt "" @@ -2068,7 +2073,7 @@ "title\n" "string.text" msgid "Save ImageMap changes?" -msgstr "" +msgstr "Voleu desar els canvis del mapa d'imatge?" #: querymodifyimagemapchangesdialog.ui msgctxt "" @@ -2077,7 +2082,7 @@ "text\n" "string.text" msgid "The ImageMap has been modified." -msgstr "" +msgstr "S'ha modificat el mapa d'imatge." #: querymodifyimagemapchangesdialog.ui msgctxt "" @@ -2086,16 +2091,17 @@ "secondary_text\n" "string.text" msgid "Do you want to save the changes?" -msgstr "" +msgstr "Voleu desar els canvis?" #: querynewcontourdialog.ui +#, fuzzy msgctxt "" "querynewcontourdialog.ui\n" "QueryNewContourDialog\n" "title\n" "string.text" msgid "Create a new contour?" -msgstr "" +msgstr "Voleu crear una vora nova?" #: querynewcontourdialog.ui msgctxt "" @@ -2104,7 +2110,7 @@ "text\n" "string.text" msgid "Do you want to create a new contour?" -msgstr "" +msgstr "Voleu crear una vora nova?" #: querysavecontchangesdialog.ui msgctxt "" @@ -2113,7 +2119,7 @@ "title\n" "string.text" msgid "Save contour changes?" -msgstr "" +msgstr "Voleu desar els canvis de la vora?" #: querysavecontchangesdialog.ui msgctxt "" @@ -2122,7 +2128,7 @@ "text\n" "string.text" msgid "The contour has been modified." -msgstr "" +msgstr "S'ha modificat la vora." #: querysavecontchangesdialog.ui msgctxt "" @@ -2131,7 +2137,7 @@ "secondary_text\n" "string.text" msgid "Do you want to save the changes?" -msgstr "" +msgstr "Voleu desar els canvis?" #: querysaveimagemapchangesdialog.ui msgctxt "" @@ -2140,7 +2146,7 @@ "title\n" "string.text" msgid "Save ImageMap changes?" -msgstr "" +msgstr "Voleu desar els canvis del mapa d'imatge?" #: querysaveimagemapchangesdialog.ui msgctxt "" @@ -2149,7 +2155,7 @@ "text\n" "string.text" msgid "The ImageMap has been modified." -msgstr "" +msgstr "S'ha modificat el mapa d'imatge." #: querysaveimagemapchangesdialog.ui msgctxt "" @@ -2158,7 +2164,7 @@ "secondary_text\n" "string.text" msgid "Do you want to save the changes?" -msgstr "" +msgstr "Voleu desar els canvis?" #: queryunlinkgraphicsdialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/sw/source/core/uibase/misc.po libreoffice-l10n-4.3.2/translations/source/ca/sw/source/core/uibase/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/sw/source/core/uibase/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/sw/source/core/uibase/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:02+0200\n" -"PO-Revision-Date: 2014-07-17 11:04+0000\n" +"PO-Revision-Date: 2014-08-26 08:58+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1405595089.000000\n" +"X-POOTLE-MTIME: 1409043480.000000\n" #: redlndlg.src msgctxt "" @@ -59,7 +59,7 @@ "MN_SORT_COMMENT\n" "menuitem.text" msgid "Comment" -msgstr "" +msgstr "Comentari" #: redlndlg.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/sw/source/core/uibase/ribbar.po libreoffice-l10n-4.3.2/translations/source/ca/sw/source/core/uibase/ribbar.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/sw/source/core/uibase/ribbar.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/sw/source/core/uibase/ribbar.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:02+0200\n" -"PO-Revision-Date: 2014-07-17 11:21+0000\n" +"PO-Revision-Date: 2014-08-26 08:58+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1405596077.000000\n" +"X-POOTLE-MTIME: 1409043528.000000\n" #: inputwin.src msgctxt "" @@ -158,7 +158,7 @@ "MN_CALC_OR\n" "menuitem.text" msgid "Boolean Or" -msgstr "" +msgstr "Operador booleà O" #: inputwin.src msgctxt "" @@ -167,7 +167,7 @@ "MN_CALC_XOR\n" "menuitem.text" msgid "Boolean Xor" -msgstr "" +msgstr "Operador booleà O exclusiu" #: inputwin.src msgctxt "" @@ -176,7 +176,7 @@ "MN_CALC_AND\n" "menuitem.text" msgid "Boolean And" -msgstr "" +msgstr "Operador booleà I" #: inputwin.src msgctxt "" @@ -185,7 +185,7 @@ "MN_CALC_NOT\n" "menuitem.text" msgid "Boolean Not" -msgstr "" +msgstr "Operador booleà NO" #: inputwin.src msgctxt "" @@ -203,7 +203,7 @@ "MN_CALC_MEAN\n" "menuitem.text" msgid "Mean" -msgstr "" +msgstr "Mitjana" #: inputwin.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca/sw/source/core/uibase/uiview.po libreoffice-l10n-4.3.2/translations/source/ca/sw/source/core/uibase/uiview.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca/sw/source/core/uibase/uiview.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca/sw/source/core/uibase/uiview.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:02+0200\n" -"PO-Revision-Date: 2014-07-17 11:22+0000\n" +"PO-Revision-Date: 2014-08-26 08:59+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1405596178.000000\n" +"X-POOTLE-MTIME: 1409043544.000000\n" #: view.src msgctxt "" @@ -118,7 +118,7 @@ "STR_NB_REPLACED\n" "string.text" msgid "Search key replaced XX times." -msgstr "" +msgstr "La clau de cerca s'ha reemplaçat XX vegades." #: view.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/accessibility/source/helper.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/accessibility/source/helper.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/accessibility/source/helper.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/accessibility/source/helper.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:06+0200\n" -"PO-Revision-Date: 2013-07-11 21:15+0000\n" +"PO-Revision-Date: 2014-07-17 06:49+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1373577330.0\n" +"X-POOTLE-MTIME: 1405579791.000000\n" #: accessiblestrings.src msgctxt "" @@ -30,7 +30,7 @@ "STR_SVT_ACC_ACTION_EXPAND\n" "string.text" msgid "Expand" -msgstr "" +msgstr "Amplia" #: accessiblestrings.src msgctxt "" @@ -38,7 +38,7 @@ "STR_SVT_ACC_ACTION_COLLAPSE\n" "string.text" msgid "Collapse" -msgstr "" +msgstr "Redueix" #: accessiblestrings.src msgctxt "" @@ -46,7 +46,7 @@ "STR_SVT_ACC_LISTENTRY_SELCTED_STATE\n" "string.text" msgid "(Selected)" -msgstr "" +msgstr "(Seleccionat)" #: accessiblestrings.src msgctxt "" @@ -54,7 +54,7 @@ "RID_STR_ACC_NAME_PREVIEW\n" "string.text" msgid "Preview" -msgstr "" +msgstr "Previsualització" #: accessiblestrings.src msgctxt "" @@ -62,7 +62,7 @@ "RID_STR_ACC_ACTION_CHECK\n" "string.text" msgid "Check" -msgstr "" +msgstr "Marca" #: accessiblestrings.src msgctxt "" @@ -70,7 +70,7 @@ "RID_STR_ACC_ACTION_UNCHECK\n" "string.text" msgid "Uncheck" -msgstr "" +msgstr "Desmarca" #: accessiblestrings.src msgctxt "" @@ -78,7 +78,7 @@ "RID_STR_ACC_ACTION_DOUBLE_CLICK\n" "string.text" msgid "Double click" -msgstr "" +msgstr "Doble clic" #: accessiblestrings.src msgctxt "" @@ -86,7 +86,7 @@ "RID_STR_ACC_SCROLLBAR_NAME_VERTICAL\n" "string.text" msgid "Vertical scroll bar" -msgstr "" +msgstr "Barra de desplaçament vertical" #: accessiblestrings.src msgctxt "" @@ -94,7 +94,7 @@ "RID_STR_ACC_SCROLLBAR_NAME_HORIZONTAL\n" "string.text" msgid "Horizontal scroll bar" -msgstr "" +msgstr "Barra de desplaçament horitzontal" #: accessiblestrings.src msgctxt "" @@ -102,7 +102,7 @@ "RID_STR_ACC_PANEL_DESCRIPTION\n" "string.text" msgid "Please press enter to go into child control for more operations" -msgstr "" +msgstr "Premeu la tecla retorn per anar al control fill i accedir a més operacions" #: accessiblestrings.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/basctl/source/basicide.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/basctl/source/basicide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/basctl/source/basicide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/basctl/source/basicide.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" -"PO-Revision-Date: 2014-02-22 22:23+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-08-25 12:43+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393107808.0\n" +"X-POOTLE-MTIME: 1408970606.000000\n" #: basicprint.src msgctxt "" @@ -81,7 +81,7 @@ "RID_STR_SAVE\n" "string.text" msgid "Save" -msgstr "Alça" +msgstr "Guarda" #: basidesh.src msgctxt "" @@ -92,7 +92,7 @@ "The source text is too large and can be neither compiled nor saved.\n" "Delete some of the comments or transfer some methods into another module." msgstr "" -"El codi font és massa gran i no es pot compilar ni alçar.\n" +"El codi font és massa gran i no es pot compilar ni guardar.\n" "Suprimiu alguns dels comentaris o transferiu alguns mètodes a un altre mòdul." #: basidesh.src @@ -275,7 +275,7 @@ "RID_STR_COULDNTWRITE\n" "string.text" msgid "The file could not be saved" -msgstr "El fitxer no s'ha pogut alçar" +msgstr "El fitxer no s'ha pogut guardar" #: basidesh.src msgctxt "" @@ -427,7 +427,7 @@ "RID_STR_CANNOTSAVEVBA\n" "string.text" msgid "You are editing a VBA macro. Changes can be saved only in OpenDocument Format." -msgstr "" +msgstr "Esteu editant una macro VBA. Només podeu guardar els canvis en el format OpenDocument." #: basidesh.src msgctxt "" @@ -954,7 +954,7 @@ "RID_STR_RECORD\n" "string.text" msgid "~Save" -msgstr "~Alça" +msgstr "~Guarda" #: moduldlg.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/basctl/source/dlged.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/basctl/source/dlged.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/basctl/source/dlged.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/basctl/source/dlged.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:02+0200\n" -"PO-Revision-Date: 2013-12-08 21:47+0000\n" +"PO-Revision-Date: 2014-05-16 19:04+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1386539257.0\n" +"X-POOTLE-MTIME: 1400267092.000000\n" #: dlgresid.src msgctxt "" @@ -46,7 +46,7 @@ "RID_STR_DEF_LANG\n" "string.text" msgid "[Default Language]" -msgstr "" +msgstr "[llengua predeterminada]" #: dlgresid.src msgctxt "" @@ -54,7 +54,7 @@ "RID_STR_DELETE\n" "string.text" msgid "~Delete" -msgstr "" +msgstr "~Suprimeix" #: dlgresid.src msgctxt "" @@ -62,7 +62,7 @@ "RID_STR_CREATE_LANG\n" "string.text" msgid "" -msgstr "" +msgstr "" #: managelang.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/basctl/uiconfig/basicide/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/basctl/uiconfig/basicide/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/basctl/uiconfig/basicide/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/basctl/uiconfig/basicide/ui.po 2014-09-16 19:55:40.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: 2014-05-02 00:02+0200\n" -"PO-Revision-Date: 2013-01-18 20:53+0000\n" +"PO-Revision-Date: 2014-08-25 12:47+0000\n" "Last-Translator: Joan \n" "Language-Team: none\n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1358542411.0\n" +"X-POOTLE-MTIME: 1408970827.000000\n" #: basicmacrodialog.ui msgctxt "" @@ -104,7 +104,7 @@ "label\n" "string.text" msgid "Save macro in" -msgstr "Alça la macro a" +msgstr "Guarda la macro a" #: basicmacrodialog.ui msgctxt "" @@ -122,7 +122,7 @@ "title\n" "string.text" msgid "Set Default User Interface Language" -msgstr "" +msgstr "Defineix la llengua per defecte de la interfície d'usuari" #: defaultlanguage.ui msgctxt "" @@ -131,7 +131,7 @@ "label\n" "string.text" msgid "Default language" -msgstr "" +msgstr "Llengua predeterminada" #: defaultlanguage.ui msgctxt "" @@ -140,7 +140,7 @@ "label\n" "string.text" msgid "Available Languages" -msgstr "" +msgstr "Llengües disponibles" #: defaultlanguage.ui msgctxt "" @@ -149,7 +149,7 @@ "label\n" "string.text" msgid "Select a language to define the default user interface language. All currently present strings will be assigned to the resources created for the selected language." -msgstr "" +msgstr "Seleccioneu una llengua per definir la llengua per defecte de la interfície d'usuari. Totes les cadenes actuals s'assignaran als recursos creats per a la llengua seleccionada." #: defaultlanguage.ui msgctxt "" @@ -158,7 +158,7 @@ "label\n" "string.text" msgid "Select languages to be added. Resources for these languages will be created in the library. Strings of the current default user interface language will be copied to these new resources by default." -msgstr "" +msgstr "Seleccioneu les llengües que voleu afegir. Els recursos per estes llengües es crearan a la biblioteca. Les cadenes de la llengua per defecte actual de la interfície d'usuari es copiaran a estos nous recursos per defecte." #: defaultlanguage.ui msgctxt "" @@ -167,7 +167,7 @@ "label\n" "string.text" msgid "Add User Interface Languages" -msgstr "" +msgstr "Afig llengües de la interfície d'usuari" #: dialogpage.ui msgctxt "" @@ -176,7 +176,7 @@ "label\n" "string.text" msgid "Dialog" -msgstr "" +msgstr "Diàleg" #: dialogpage.ui msgctxt "" @@ -185,7 +185,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "_Nou..." #: dialogpage.ui msgctxt "" @@ -194,7 +194,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "_Nou..." #: dialogpage.ui msgctxt "" @@ -203,7 +203,7 @@ "label\n" "string.text" msgid "_Password..." -msgstr "" +msgstr "_Contrasenya..." #: dialogpage.ui msgctxt "" @@ -212,7 +212,7 @@ "label\n" "string.text" msgid "_Import..." -msgstr "" +msgstr "_Importa..." #: dialogpage.ui msgctxt "" @@ -221,7 +221,7 @@ "label\n" "string.text" msgid "_Export..." -msgstr "" +msgstr "_Exporta..." #: exportdialog.ui msgctxt "" @@ -230,7 +230,7 @@ "title\n" "string.text" msgid "Export Basic library" -msgstr "" +msgstr "Exporta biblioteca del Basic" #: exportdialog.ui msgctxt "" @@ -239,7 +239,7 @@ "label\n" "string.text" msgid "Export as _extension" -msgstr "" +msgstr "Exporta com a _extensió" #: exportdialog.ui msgctxt "" @@ -248,7 +248,7 @@ "label\n" "string.text" msgid "Export as BASIC library" -msgstr "" +msgstr "Exporta com a biblioteca del BASIC" #: gotolinedialog.ui msgctxt "" @@ -257,7 +257,7 @@ "title\n" "string.text" msgid "Goto Line" -msgstr "" +msgstr "Vés a la línia" #: gotolinedialog.ui msgctxt "" @@ -266,7 +266,7 @@ "label\n" "string.text" msgid "_Line Number:" -msgstr "" +msgstr "Número de _línia:" #: importlibdialog.ui msgctxt "" @@ -275,7 +275,7 @@ "title\n" "string.text" msgid "Import Libraries" -msgstr "" +msgstr "Importa les biblioteques" #: importlibdialog.ui msgctxt "" @@ -284,7 +284,7 @@ "label\n" "string.text" msgid "Insert as reference (read-only)" -msgstr "" +msgstr "Insereix com a referència (només de lectura)" #: importlibdialog.ui msgctxt "" @@ -293,7 +293,7 @@ "label\n" "string.text" msgid "Replace existing libraries" -msgstr "" +msgstr "Reemplaça les biblioteques existents" #: importlibdialog.ui msgctxt "" @@ -302,7 +302,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "Opcions" #: libpage.ui msgctxt "" @@ -311,7 +311,7 @@ "label\n" "string.text" msgid "L_ocation" -msgstr "" +msgstr "U_bicació:" #: libpage.ui msgctxt "" @@ -320,7 +320,7 @@ "label\n" "string.text" msgid "_Library" -msgstr "" +msgstr "_Biblioteca" #: libpage.ui msgctxt "" @@ -329,7 +329,7 @@ "label\n" "string.text" msgid "_Password..." -msgstr "" +msgstr "_Contrasenya..." #: libpage.ui msgctxt "" @@ -338,7 +338,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "_Nou..." #: libpage.ui msgctxt "" @@ -347,7 +347,7 @@ "label\n" "string.text" msgid "_Import..." -msgstr "" +msgstr "_Importa..." #: libpage.ui msgctxt "" @@ -356,7 +356,7 @@ "label\n" "string.text" msgid "_Export..." -msgstr "" +msgstr "_Exporta..." #: managebreakpoints.ui msgctxt "" @@ -365,7 +365,7 @@ "title\n" "string.text" msgid "Manage Breakpoints" -msgstr "" +msgstr "Gestiona els punts de ruptura" #: managebreakpoints.ui msgctxt "" @@ -374,7 +374,7 @@ "label\n" "string.text" msgid "Active" -msgstr "" +msgstr "Actiu" #: managebreakpoints.ui msgctxt "" @@ -383,7 +383,7 @@ "label\n" "string.text" msgid "Pass Count:" -msgstr "" +msgstr "Recompte de passades:" #: managebreakpoints.ui msgctxt "" @@ -392,7 +392,7 @@ "label\n" "string.text" msgid "Breakpoints" -msgstr "" +msgstr "Punts de ruptura" #: managelanguages.ui msgctxt "" @@ -401,7 +401,7 @@ "title\n" "string.text" msgid "Manage User Interface Languages [$1]" -msgstr "" +msgstr "Gestió de les llengües de la interfície d'usuari [$1]" #: managelanguages.ui msgctxt "" @@ -410,7 +410,7 @@ "label\n" "string.text" msgid "Present Languages" -msgstr "" +msgstr "Llengües presents" #: managelanguages.ui msgctxt "" @@ -419,7 +419,7 @@ "label\n" "string.text" msgid "The default language is used if no localization for a user interface locale is present. Furthermore all strings from the default language are copied to resources of newly added languages." -msgstr "" +msgstr "La llengua per defecte s'utilitza si no hi ha cap localització d'interfície d'usuari local present. A més, totes les cadenes de la llengua per defecte es copien als recursos de les llengües afegides." #: managelanguages.ui msgctxt "" @@ -428,7 +428,7 @@ "label\n" "string.text" msgid "Add..." -msgstr "" +msgstr "Afig..." #: managelanguages.ui msgctxt "" @@ -437,7 +437,7 @@ "label\n" "string.text" msgid "Default" -msgstr "" +msgstr "Per defecte" #: modulepage.ui msgctxt "" @@ -446,7 +446,7 @@ "label\n" "string.text" msgid "M_odule" -msgstr "" +msgstr "Mò_dul" #: modulepage.ui msgctxt "" @@ -455,7 +455,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "_Nou..." #: modulepage.ui msgctxt "" @@ -464,7 +464,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "_Nou..." #: modulepage.ui msgctxt "" @@ -473,7 +473,7 @@ "label\n" "string.text" msgid "_Password..." -msgstr "" +msgstr "_Contrasenya..." #: modulepage.ui msgctxt "" @@ -482,7 +482,7 @@ "label\n" "string.text" msgid "_Import..." -msgstr "" +msgstr "_Importa..." #: modulepage.ui msgctxt "" @@ -491,7 +491,7 @@ "label\n" "string.text" msgid "_Export..." -msgstr "" +msgstr "_Exporta..." #: newlibdialog.ui msgctxt "" @@ -500,7 +500,7 @@ "label\n" "string.text" msgid "_Name:" -msgstr "" +msgstr "_Nom:" #: organizedialog.ui msgctxt "" @@ -509,7 +509,7 @@ "title\n" "string.text" msgid "%PRODUCTNAME Basic Macro Organizer" -msgstr "" +msgstr "Organitzador de macros del %PRODUCTNAME Basic" #: organizedialog.ui msgctxt "" @@ -518,7 +518,7 @@ "label\n" "string.text" msgid "Modules" -msgstr "" +msgstr "Mòduls" #: organizedialog.ui msgctxt "" @@ -527,7 +527,7 @@ "label\n" "string.text" msgid "Dialogs" -msgstr "" +msgstr "Diàlegs" #: organizedialog.ui msgctxt "" @@ -536,4 +536,4 @@ "label\n" "string.text" msgid "Libraries" -msgstr "" +msgstr "Biblioteques" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/basic/source/classes.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/basic/source/classes.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/basic/source/classes.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/basic/source/classes.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,11 +3,11 @@ msgstr "" "Project-Id-Version: PACKAGE 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:01+0100\n" +"POT-Creation-Date: 2014-05-02 00:02+0200\n" "PO-Revision-Date: 2013-12-08 21:47+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" -"Language: ca-XV\n" +"Language: ca-valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -1182,7 +1182,7 @@ "IDS_SBERR_STOREREF\n" "string.text" msgid "Reference will not be saved: " -msgstr "No s'alçarà la referència: " +msgstr "No es guardarà la referència: " #: sb.src msgctxt "" @@ -1198,7 +1198,7 @@ "ERRCODE_BASMGR_LIBSAVE & ERRCODE_RES_MASK\n" "string.text" msgid "Error saving library: '$(ARG1)'." -msgstr "S'ha produït un error en alçar la biblioteca: \"$(ARG1)\"." +msgstr "S'ha produït un error en guardar la biblioteca: \"$(ARG1)\"." #: sb.src msgctxt "" @@ -1214,7 +1214,7 @@ "ERRCODE_BASMGR_MGRSAVE & ERRCODE_RES_MASK\n" "string.text" msgid "Error saving BASIC: '$(ARG1)'." -msgstr "S'ha produït un error en alçar el BASIC: \"$(ARG1)\"." +msgstr "S'ha produït un error en guardar el BASIC: \"$(ARG1)\"." #: sb.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/chart2/source/controller/dialogs.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/chart2/source/controller/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/chart2/source/controller/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/chart2/source/controller/dialogs.po 2014-09-16 19:55:40.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: 2014-05-02 00:01+0200\n" -"PO-Revision-Date: 2014-02-22 22:44+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-05-16 19:19+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393109054.0\n" +"X-POOTLE-MTIME: 1400267941.000000\n" #: Strings.src msgctxt "" @@ -1026,7 +1026,7 @@ "STR_PROPERTY_ROLE_FILLCOLOR\n" "string.text" msgid "Fill Color" -msgstr "" +msgstr "Color de l'emplenat" #: Strings.src msgctxt "" @@ -1034,7 +1034,7 @@ "STR_PROPERTY_ROLE_BORDERCOLOR\n" "string.text" msgid "Border Color" -msgstr "" +msgstr "Color de la vora" #: Strings_AdditionalControls.src msgctxt "" @@ -1282,7 +1282,7 @@ "STR_TYPE_GL3D_BAR\n" "string.text" msgid "GL3D Bar" -msgstr "" +msgstr "Barra GL3D" #: Strings_ChartTypes.src msgctxt "" @@ -1290,7 +1290,7 @@ "STR_GL3D_BAR\n" "string.text" msgid "GL3D Bar Chart" -msgstr "" +msgstr "Diagrama de barres GL3D" #: Strings_Scale.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/chart2/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/chart2/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/chart2/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/chart2/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:57+0200\n" -"PO-Revision-Date: 2014-02-22 22:22+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-08-26 08:44+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393107763.0\n" +"X-POOTLE-MTIME: 1409042698.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -23,7 +23,7 @@ "title\n" "string.text" msgid "3D View" -msgstr "" +msgstr "Vista 3D" #: chardialog.ui msgctxt "" @@ -32,7 +32,7 @@ "title\n" "string.text" msgid "Character" -msgstr "" +msgstr "Caràcter" #: chardialog.ui msgctxt "" @@ -41,7 +41,7 @@ "label\n" "string.text" msgid "Font" -msgstr "" +msgstr "Tipus de lletra" #: chardialog.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "Font Effects" -msgstr "" +msgstr "Efectes del tipus de lletra" #: chardialog.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "Position" -msgstr "" +msgstr "Posició" #: chartdatadialog.ui msgctxt "" @@ -68,7 +68,7 @@ "title\n" "string.text" msgid "Data Table" -msgstr "" +msgstr "Taula de dades" #: chartdatadialog.ui msgctxt "" @@ -77,7 +77,7 @@ "label\n" "string.text" msgid "Insert Row" -msgstr "" +msgstr "Insereix una fila" #: chartdatadialog.ui msgctxt "" @@ -86,7 +86,7 @@ "label\n" "string.text" msgid "Insert Series" -msgstr "" +msgstr "Insereix les sèries" #: chartdatadialog.ui msgctxt "" @@ -95,7 +95,7 @@ "label\n" "string.text" msgid "Insert Text Column" -msgstr "" +msgstr "Insereix una columna de text" #: chartdatadialog.ui msgctxt "" @@ -104,7 +104,7 @@ "label\n" "string.text" msgid "Delete Row" -msgstr "" +msgstr "Suprimeix la fila" #: chartdatadialog.ui msgctxt "" @@ -113,7 +113,7 @@ "label\n" "string.text" msgid "Delete Series" -msgstr "" +msgstr "Suprimeix les sèries" #: chartdatadialog.ui msgctxt "" @@ -122,7 +122,7 @@ "label\n" "string.text" msgid "Move Series Right" -msgstr "" +msgstr "Mou les sèries cap a la dreta" #: chartdatadialog.ui msgctxt "" @@ -131,7 +131,7 @@ "label\n" "string.text" msgid "Move Row Down" -msgstr "" +msgstr "Mou la fila cap avall" #: charttypedialog.ui msgctxt "" @@ -140,7 +140,7 @@ "title\n" "string.text" msgid "Chart Type" -msgstr "" +msgstr "Tipus de diagrama" #: datarangedialog.ui msgctxt "" @@ -149,7 +149,7 @@ "title\n" "string.text" msgid "Data Ranges" -msgstr "" +msgstr "Intervals de dades" #: dlg_DataLabel.ui msgctxt "" @@ -158,7 +158,7 @@ "title\n" "string.text" msgid "Data Labels for all Data Series" -msgstr "" +msgstr "Etiquetes de dades per totes les sèries de dades" #: dlg_DataLabel.ui msgctxt "" @@ -167,7 +167,7 @@ "label\n" "string.text" msgid "Show value as _number" -msgstr "" +msgstr "Mostra el valor com a _nombre" #: dlg_DataLabel.ui msgctxt "" @@ -176,7 +176,7 @@ "label\n" "string.text" msgid "Show value as _percentage" -msgstr "" +msgstr "Mostra el valor com a _percentatge" #: dlg_DataLabel.ui msgctxt "" @@ -185,7 +185,7 @@ "label\n" "string.text" msgid "Show _category" -msgstr "" +msgstr "Mostra la _categoria" #: dlg_DataLabel.ui msgctxt "" @@ -194,7 +194,7 @@ "label\n" "string.text" msgid "Show _legend key" -msgstr "" +msgstr "Mostra la clau de _llegenda" #: dlg_DataLabel.ui msgctxt "" @@ -203,7 +203,7 @@ "label\n" "string.text" msgid "Number _format..." -msgstr "" +msgstr "_Format numèric..." #: dlg_DataLabel.ui msgctxt "" @@ -212,7 +212,7 @@ "label\n" "string.text" msgid "Percentage f_ormat..." -msgstr "" +msgstr "F_ormat del percentatge..." #: dlg_DataLabel.ui msgctxt "" @@ -221,7 +221,7 @@ "label\n" "string.text" msgid "ABCD" -msgstr "" +msgstr "ABCD" #: dlg_DataLabel.ui msgctxt "" @@ -230,7 +230,7 @@ "label\n" "string.text" msgid "_Separator" -msgstr "" +msgstr "_Separador" #: dlg_DataLabel.ui msgctxt "" @@ -239,7 +239,7 @@ "label\n" "string.text" msgid "Place_ment" -msgstr "" +msgstr "Ubi_cació" #: dlg_DataLabel.ui msgctxt "" @@ -248,7 +248,7 @@ "label\n" "string.text" msgid "Number Format for Percentage Value" -msgstr "" +msgstr "Format del nombre per al valor del percentatge" #: dlg_DataLabel.ui msgctxt "" @@ -257,7 +257,7 @@ "label\n" "string.text" msgid "Text Attributes" -msgstr "" +msgstr "Atributs del text" #: dlg_DataLabel.ui msgctxt "" @@ -266,7 +266,7 @@ "label\n" "string.text" msgid "_Degrees" -msgstr "" +msgstr "_Graus" #: dlg_DataLabel.ui msgctxt "" @@ -275,7 +275,7 @@ "label\n" "string.text" msgid "Te_xt direction" -msgstr "" +msgstr "Direcció del te_xt" #: dlg_DataLabel.ui msgctxt "" @@ -284,7 +284,7 @@ "label\n" "string.text" msgid "Rotate Text" -msgstr "" +msgstr "Gira el text" #: dlg_DataLabel.ui msgctxt "" @@ -293,7 +293,7 @@ "0\n" "stringlist.text" msgid "Best fit" -msgstr "" +msgstr "Millor ajustament" #: dlg_DataLabel.ui msgctxt "" @@ -302,7 +302,7 @@ "1\n" "stringlist.text" msgid "Center" -msgstr "" +msgstr "Centre" #: dlg_DataLabel.ui msgctxt "" @@ -311,7 +311,7 @@ "2\n" "stringlist.text" msgid "Above" -msgstr "" +msgstr "A sobre" #: dlg_DataLabel.ui msgctxt "" @@ -320,7 +320,7 @@ "3\n" "stringlist.text" msgid "Top left" -msgstr "" +msgstr "A dalt a l'esquerra" #: dlg_DataLabel.ui msgctxt "" @@ -329,7 +329,7 @@ "4\n" "stringlist.text" msgid "Left" -msgstr "" +msgstr "Esquerra" #: dlg_DataLabel.ui msgctxt "" @@ -338,7 +338,7 @@ "5\n" "stringlist.text" msgid "Bottom left" -msgstr "" +msgstr "Inferior esquerra" #: dlg_DataLabel.ui msgctxt "" @@ -347,7 +347,7 @@ "6\n" "stringlist.text" msgid "Below" -msgstr "" +msgstr "Inferior" #: dlg_DataLabel.ui msgctxt "" @@ -356,7 +356,7 @@ "7\n" "stringlist.text" msgid "Bottom right" -msgstr "" +msgstr "A baix a la dreta" #: dlg_DataLabel.ui msgctxt "" @@ -365,7 +365,7 @@ "8\n" "stringlist.text" msgid "Right" -msgstr "" +msgstr "Dreta" #: dlg_DataLabel.ui msgctxt "" @@ -374,7 +374,7 @@ "9\n" "stringlist.text" msgid "Top right" -msgstr "" +msgstr "A dalt a la dreta" #: dlg_DataLabel.ui msgctxt "" @@ -383,7 +383,7 @@ "10\n" "stringlist.text" msgid "Inside" -msgstr "" +msgstr "Interior" #: dlg_DataLabel.ui msgctxt "" @@ -392,7 +392,7 @@ "11\n" "stringlist.text" msgid "Outside" -msgstr "" +msgstr "Exterior" #: dlg_DataLabel.ui msgctxt "" @@ -401,7 +401,7 @@ "12\n" "stringlist.text" msgid "Near origin" -msgstr "" +msgstr "Prop de l'origen" #: dlg_DataLabel.ui msgctxt "" @@ -410,7 +410,7 @@ "0\n" "stringlist.text" msgid "Space" -msgstr "" +msgstr "Espai" #: dlg_DataLabel.ui msgctxt "" @@ -419,7 +419,7 @@ "1\n" "stringlist.text" msgid "Comma" -msgstr "" +msgstr "Coma" #: dlg_DataLabel.ui msgctxt "" @@ -428,7 +428,7 @@ "2\n" "stringlist.text" msgid "Semicolon" -msgstr "" +msgstr "Punt i coma" #: dlg_DataLabel.ui msgctxt "" @@ -437,7 +437,7 @@ "3\n" "stringlist.text" msgid "New line" -msgstr "" +msgstr "Línia nova" #: dlg_InsertErrorBars.ui msgctxt "" @@ -446,7 +446,7 @@ "title\n" "string.text" msgid "Legend" -msgstr "" +msgstr "Llegenda" #: dlg_InsertErrorBars.ui msgctxt "" @@ -455,7 +455,7 @@ "label\n" "string.text" msgid "_None" -msgstr "" +msgstr "_Cap" #: dlg_InsertErrorBars.ui msgctxt "" @@ -464,7 +464,7 @@ "label\n" "string.text" msgid "_Constant Value" -msgstr "" +msgstr "Valor _constant" #: dlg_InsertErrorBars.ui msgctxt "" @@ -473,7 +473,7 @@ "label\n" "string.text" msgid "_Percentage" -msgstr "" +msgstr "_Percentatge" #: dlg_InsertErrorBars.ui msgctxt "" @@ -482,7 +482,7 @@ "label\n" "string.text" msgid "Cell _Range" -msgstr "" +msgstr "Inte_rval de cel·les" #: dlg_InsertErrorBars.ui msgctxt "" @@ -491,7 +491,7 @@ "label\n" "string.text" msgid "Error Category" -msgstr "" +msgstr "Categoria d'error" #: dlg_InsertErrorBars.ui msgctxt "" @@ -500,7 +500,7 @@ "label\n" "string.text" msgid "Positive _and Negative" -msgstr "" +msgstr "Positiu _i negatiu" #: dlg_InsertErrorBars.ui msgctxt "" @@ -509,7 +509,7 @@ "label\n" "string.text" msgid "Pos_itive" -msgstr "" +msgstr "Pos_itiu" #: dlg_InsertErrorBars.ui msgctxt "" @@ -518,7 +518,7 @@ "label\n" "string.text" msgid "Ne_gative" -msgstr "" +msgstr "Ne_gatiu" #: dlg_InsertErrorBars.ui msgctxt "" @@ -527,7 +527,7 @@ "label\n" "string.text" msgid "Error Indicator" -msgstr "" +msgstr "Indicador d'error" #: dlg_InsertErrorBars.ui msgctxt "" @@ -536,7 +536,7 @@ "label\n" "string.text" msgid "P_ositive (+)" -msgstr "" +msgstr "P_ositiu (+)" #: dlg_InsertErrorBars.ui msgctxt "" @@ -545,7 +545,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Seleccioneu l'interval de dades" #: dlg_InsertErrorBars.ui msgctxt "" @@ -554,7 +554,7 @@ "label\n" "string.text" msgid "_Negative (-)" -msgstr "" +msgstr "_Negatiu (-)" #: dlg_InsertErrorBars.ui msgctxt "" @@ -563,7 +563,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Seleccioneu l'interval de dades" #: dlg_InsertErrorBars.ui msgctxt "" @@ -572,7 +572,7 @@ "label\n" "string.text" msgid "Same value for both" -msgstr "" +msgstr "El mateix valor per a totes dues" #: dlg_InsertErrorBars.ui msgctxt "" @@ -581,7 +581,7 @@ "label\n" "string.text" msgid "Parameters" -msgstr "" +msgstr "Paràmetres" #: dlg_InsertErrorBars.ui msgctxt "" @@ -590,7 +590,7 @@ "label\n" "string.text" msgid "Select Range for Positive Error Bars" -msgstr "" +msgstr "Seleccioneu l'interval per a les barres d'error positives" #: dlg_InsertErrorBars.ui msgctxt "" @@ -599,7 +599,7 @@ "label\n" "string.text" msgid "Select Range for Negative Error Bars" -msgstr "" +msgstr "Seleccioneu l'interval per a les barres d'error negatives" #: dlg_InsertErrorBars.ui msgctxt "" @@ -608,7 +608,7 @@ "label\n" "string.text" msgid "From Data Table" -msgstr "" +msgstr "De la taula de dades" #: dlg_InsertErrorBars.ui msgctxt "" @@ -617,7 +617,7 @@ "0\n" "stringlist.text" msgid "Standard Error" -msgstr "" +msgstr "Error estàndard" #: dlg_InsertErrorBars.ui msgctxt "" @@ -626,7 +626,7 @@ "1\n" "stringlist.text" msgid "Standard Deviation" -msgstr "" +msgstr "Desviació estàndard" #: dlg_InsertErrorBars.ui msgctxt "" @@ -635,7 +635,7 @@ "2\n" "stringlist.text" msgid "Variance" -msgstr "" +msgstr "Variància" #: dlg_InsertErrorBars.ui msgctxt "" @@ -644,7 +644,7 @@ "3\n" "stringlist.text" msgid "Error Margin" -msgstr "" +msgstr "Marge d'error" #: dlg_InsertLegend.ui msgctxt "" @@ -653,7 +653,7 @@ "title\n" "string.text" msgid "Legend" -msgstr "" +msgstr "Llegenda" #: dlg_InsertLegend.ui msgctxt "" @@ -662,7 +662,7 @@ "label\n" "string.text" msgid "_Display legend" -msgstr "" +msgstr "_Mostra la llegenda" #: dlg_InsertLegend.ui msgctxt "" @@ -671,7 +671,7 @@ "label\n" "string.text" msgid "_Left" -msgstr "" +msgstr "_Esquerra" #: dlg_InsertLegend.ui msgctxt "" @@ -680,7 +680,7 @@ "label\n" "string.text" msgid "_Right" -msgstr "" +msgstr "_Dreta" #: dlg_InsertLegend.ui msgctxt "" @@ -689,7 +689,7 @@ "label\n" "string.text" msgid "_Top" -msgstr "" +msgstr "_Superior" #: dlg_InsertLegend.ui msgctxt "" @@ -698,7 +698,7 @@ "label\n" "string.text" msgid "_Bottom" -msgstr "" +msgstr "_Inferior" #: dlg_InsertLegend.ui msgctxt "" @@ -707,7 +707,7 @@ "label\n" "string.text" msgid "Position" -msgstr "" +msgstr "Posició" #: insertaxisdlg.ui msgctxt "" @@ -878,16 +878,17 @@ "title\n" "string.text" msgid "Titles" -msgstr "" +msgstr "Títols" #: inserttitledlg.ui +#, fuzzy msgctxt "" "inserttitledlg.ui\n" "labelMainTitle\n" "label\n" "string.text" msgid "_Title" -msgstr "" +msgstr "_Títol" #: inserttitledlg.ui msgctxt "" @@ -896,7 +897,7 @@ "label\n" "string.text" msgid "_Subtitle" -msgstr "" +msgstr "_Subtítol" #: inserttitledlg.ui msgctxt "" @@ -905,7 +906,7 @@ "label\n" "string.text" msgid "_X axis" -msgstr "" +msgstr "Eix _X" #: inserttitledlg.ui msgctxt "" @@ -914,7 +915,7 @@ "label\n" "string.text" msgid "_Y axis" -msgstr "" +msgstr "Eix _Y" #: inserttitledlg.ui msgctxt "" @@ -923,7 +924,7 @@ "label\n" "string.text" msgid "_Z axis" -msgstr "" +msgstr "Eix _Z" #: inserttitledlg.ui msgctxt "" @@ -932,7 +933,7 @@ "label\n" "string.text" msgid "Axes" -msgstr "" +msgstr "Eixos" #: inserttitledlg.ui msgctxt "" @@ -941,7 +942,7 @@ "label\n" "string.text" msgid "X _axis" -msgstr "" +msgstr "_Eix X" #: inserttitledlg.ui msgctxt "" @@ -950,7 +951,7 @@ "label\n" "string.text" msgid "Y ax_is" -msgstr "" +msgstr "E_ix Y" #: inserttitledlg.ui msgctxt "" @@ -959,7 +960,7 @@ "label\n" "string.text" msgid "Secondary Axes" -msgstr "" +msgstr "Eixos secundaris" #: paradialog.ui msgctxt "" @@ -968,7 +969,7 @@ "title\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Paràgraf" #: paradialog.ui msgctxt "" @@ -977,7 +978,7 @@ "label\n" "string.text" msgid "Indents & Spacing" -msgstr "" +msgstr "Sagnats i espaiat" #: paradialog.ui msgctxt "" @@ -986,7 +987,7 @@ "label\n" "string.text" msgid "Alignment" -msgstr "" +msgstr "Alineació" #: paradialog.ui msgctxt "" @@ -995,7 +996,7 @@ "label\n" "string.text" msgid "Asian Typography" -msgstr "" +msgstr "Tipografia asiàtica" #: paradialog.ui msgctxt "" @@ -1004,7 +1005,7 @@ "label\n" "string.text" msgid "Tabs" -msgstr "" +msgstr "Tabuladors" #: smoothlinesdlg.ui msgctxt "" @@ -1175,7 +1176,7 @@ "label\n" "string.text" msgid "Sche_me" -msgstr "" +msgstr "Esque_ma" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1184,7 +1185,7 @@ "label\n" "string.text" msgid "_Shading" -msgstr "" +msgstr "_Ombrejat" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1193,7 +1194,7 @@ "label\n" "string.text" msgid "_Object borders" -msgstr "" +msgstr "Vores de l'_objecte" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1202,7 +1203,7 @@ "label\n" "string.text" msgid "_Rounded edges" -msgstr "" +msgstr "Vores a_rrodonides" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1211,7 +1212,7 @@ "0\n" "stringlist.text" msgid "Simple" -msgstr "" +msgstr "Simple" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1220,7 +1221,7 @@ "1\n" "stringlist.text" msgid "Realistic" -msgstr "" +msgstr "Realista" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1229,7 +1230,7 @@ "2\n" "stringlist.text" msgid "Custom" -msgstr "" +msgstr "Personalitzat" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1238,7 +1239,7 @@ "label\n" "string.text" msgid "_Right-angled axes" -msgstr "" +msgstr "Eixos arrodonits cap a la _dreta" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1247,7 +1248,7 @@ "label\n" "string.text" msgid "_X rotation" -msgstr "" +msgstr "Rotació en _X" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1256,7 +1257,7 @@ "label\n" "string.text" msgid "_Y rotation" -msgstr "" +msgstr "Rotació en _Y" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1265,7 +1266,7 @@ "label\n" "string.text" msgid "_Z rotation" -msgstr "" +msgstr "Rotació en _Z" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1274,7 +1275,7 @@ "label\n" "string.text" msgid "_Perspective" -msgstr "" +msgstr "_Perspectiva" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1283,7 +1284,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 1" -msgstr "" +msgstr "Font de llum 1" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1292,7 +1293,7 @@ "tooltip_text\n" "string.text" msgid "Light source 1" -msgstr "" +msgstr "Font de llum 1" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1301,7 +1302,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 2" -msgstr "" +msgstr "Font de llum 2" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1310,7 +1311,7 @@ "tooltip_text\n" "string.text" msgid "Light source 2" -msgstr "" +msgstr "Font de llum 2" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1319,7 +1320,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 3" -msgstr "" +msgstr "Font de llum 3" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1328,7 +1329,7 @@ "tooltip_text\n" "string.text" msgid "Light source 3" -msgstr "" +msgstr "Font de llum 3" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1337,7 +1338,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 4" -msgstr "" +msgstr "Font de llum 4" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1346,7 +1347,7 @@ "tooltip_text\n" "string.text" msgid "Light source 4" -msgstr "" +msgstr "Font de llum 4" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1355,7 +1356,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 5" -msgstr "" +msgstr "Font de llum 5" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1364,7 +1365,7 @@ "tooltip_text\n" "string.text" msgid "Light source 5" -msgstr "" +msgstr "Font de llum 5" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1373,7 +1374,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 6" -msgstr "" +msgstr "Font de llum 6" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1571,7 +1572,7 @@ "1\n" "stringlist.text" msgid "Near axis (other side)" -msgstr "" +msgstr "Prop de l'eix (a l'altra banda)" #: tp_AxisPositions.ui msgctxt "" @@ -1598,7 +1599,7 @@ "label\n" "string.text" msgid "_Distance" -msgstr "" +msgstr "_Distància" #: tp_AxisPositions.ui msgctxt "" @@ -1607,7 +1608,7 @@ "label\n" "string.text" msgid "Labels" -msgstr "" +msgstr "Etiquetes" #: tp_AxisPositions.ui msgctxt "" @@ -1616,7 +1617,7 @@ "label\n" "string.text" msgid "Major:" -msgstr "" +msgstr "Principal:" #: tp_AxisPositions.ui msgctxt "" @@ -1625,7 +1626,7 @@ "label\n" "string.text" msgid "Minor:" -msgstr "" +msgstr "Secundari:" #: tp_AxisPositions.ui msgctxt "" @@ -1634,7 +1635,7 @@ "label\n" "string.text" msgid "_Inner" -msgstr "" +msgstr "_Interior" #: tp_AxisPositions.ui msgctxt "" @@ -1643,7 +1644,7 @@ "label\n" "string.text" msgid "_Outer" -msgstr "" +msgstr "_Exterior" #: tp_AxisPositions.ui msgctxt "" @@ -1652,7 +1653,7 @@ "label\n" "string.text" msgid "I_nner" -msgstr "" +msgstr "I_nterior" #: tp_AxisPositions.ui msgctxt "" @@ -1661,7 +1662,7 @@ "label\n" "string.text" msgid "O_uter" -msgstr "" +msgstr "E_xterior" #: tp_AxisPositions.ui msgctxt "" @@ -1670,7 +1671,7 @@ "label\n" "string.text" msgid "Place _marks" -msgstr "" +msgstr "Ubica les _marques" #: tp_AxisPositions.ui msgctxt "" @@ -1679,7 +1680,7 @@ "0\n" "stringlist.text" msgid "At labels" -msgstr "" +msgstr "A les etiquetes" #: tp_AxisPositions.ui msgctxt "" @@ -1688,7 +1689,7 @@ "1\n" "stringlist.text" msgid "At axis" -msgstr "" +msgstr "A l'eix" #: tp_AxisPositions.ui msgctxt "" @@ -1697,7 +1698,7 @@ "2\n" "stringlist.text" msgid "At axis and labels" -msgstr "" +msgstr "A l'eix i a les etiquetes" #: tp_AxisPositions.ui msgctxt "" @@ -1706,7 +1707,7 @@ "label\n" "string.text" msgid "Interval marks" -msgstr "" +msgstr "Marques d'interval" #: tp_AxisPositions.ui msgctxt "" @@ -1715,7 +1716,7 @@ "label\n" "string.text" msgid "Show major _grid" -msgstr "" +msgstr "Mostra la _graella principal" #: tp_AxisPositions.ui msgctxt "" @@ -1724,7 +1725,7 @@ "label\n" "string.text" msgid "_Show minor grid" -msgstr "" +msgstr "Mostra la graella _secundària" #: tp_AxisPositions.ui msgctxt "" @@ -1733,7 +1734,7 @@ "label\n" "string.text" msgid "Mo_re..." -msgstr "" +msgstr "_Més..." #: tp_AxisPositions.ui msgctxt "" @@ -1742,7 +1743,7 @@ "label\n" "string.text" msgid "Mor_e..." -msgstr "" +msgstr "_Més..." #: tp_AxisPositions.ui msgctxt "" @@ -1751,7 +1752,7 @@ "label\n" "string.text" msgid "Grids" -msgstr "" +msgstr "Graelles" #: tp_ChartType.ui msgctxt "" @@ -1931,7 +1932,7 @@ "2\n" "stringlist.text" msgid "Cone" -msgstr "" +msgstr "Con" #: tp_ChartType.ui msgctxt "" @@ -1940,7 +1941,7 @@ "3\n" "stringlist.text" msgid "Pyramid" -msgstr "" +msgstr "Piràmide" #: tp_DataLabel.ui msgctxt "" @@ -1949,7 +1950,7 @@ "label\n" "string.text" msgid "Show value as _number" -msgstr "" +msgstr "Mostra el valor com a _nombre" #: tp_DataLabel.ui msgctxt "" @@ -1958,7 +1959,7 @@ "label\n" "string.text" msgid "Show value as _percentage" -msgstr "" +msgstr "Mostra el valor com a _percentatge" #: tp_DataLabel.ui msgctxt "" @@ -1967,7 +1968,7 @@ "label\n" "string.text" msgid "Show _category" -msgstr "" +msgstr "Mostra la _categoria" #: tp_DataLabel.ui msgctxt "" @@ -1976,7 +1977,7 @@ "label\n" "string.text" msgid "Show _legend key" -msgstr "" +msgstr "Mostra la clau de la _llegenda" #: tp_DataLabel.ui msgctxt "" @@ -1985,7 +1986,7 @@ "label\n" "string.text" msgid "Number _format..." -msgstr "" +msgstr "_Format numèric..." #: tp_DataLabel.ui msgctxt "" @@ -1994,7 +1995,7 @@ "label\n" "string.text" msgid "Percentage f_ormat..." -msgstr "" +msgstr "F_ormat de percentatge..." #: tp_DataLabel.ui msgctxt "" @@ -2003,7 +2004,7 @@ "label\n" "string.text" msgid "ABCD" -msgstr "" +msgstr "ABCD" #: tp_DataLabel.ui msgctxt "" @@ -2012,16 +2013,17 @@ "label\n" "string.text" msgid "_Separator" -msgstr "" +msgstr "_Separador" #: tp_DataLabel.ui +#, fuzzy msgctxt "" "tp_DataLabel.ui\n" "FT_LABEL_PLACEMENT\n" "label\n" "string.text" msgid "Place_ment" -msgstr "" +msgstr "_Posicionament" #: tp_DataLabel.ui msgctxt "" @@ -2030,7 +2032,7 @@ "label\n" "string.text" msgid "Number Format for Percentage Value" -msgstr "" +msgstr "Format del nombre per al valor del percentatge" #: tp_DataLabel.ui msgctxt "" @@ -2039,7 +2041,7 @@ "label\n" "string.text" msgid "Text Attributes" -msgstr "" +msgstr "Atributs del text" #: tp_DataLabel.ui msgctxt "" @@ -2048,7 +2050,7 @@ "label\n" "string.text" msgid "_Degrees" -msgstr "" +msgstr "_Graus" #: tp_DataLabel.ui msgctxt "" @@ -2057,7 +2059,7 @@ "label\n" "string.text" msgid "Te_xt direction" -msgstr "" +msgstr "Direcció del te_xt" #: tp_DataLabel.ui msgctxt "" @@ -2066,7 +2068,7 @@ "label\n" "string.text" msgid "Rotate Text" -msgstr "" +msgstr "Gira el text" #: tp_DataLabel.ui msgctxt "" @@ -2093,7 +2095,7 @@ "2\n" "stringlist.text" msgid "Above" -msgstr "" +msgstr "Part superior" #: tp_DataLabel.ui msgctxt "" @@ -2102,7 +2104,7 @@ "3\n" "stringlist.text" msgid "Top left" -msgstr "" +msgstr "A dalt a l'esquerra" #: tp_DataLabel.ui msgctxt "" @@ -2111,7 +2113,7 @@ "4\n" "stringlist.text" msgid "Left" -msgstr "" +msgstr "Esquerra" #: tp_DataLabel.ui msgctxt "" @@ -2120,7 +2122,7 @@ "5\n" "stringlist.text" msgid "Bottom left" -msgstr "" +msgstr "Inferior esquerra" #: tp_DataLabel.ui msgctxt "" @@ -2129,7 +2131,7 @@ "6\n" "stringlist.text" msgid "Below" -msgstr "" +msgstr "Inferior" #: tp_DataLabel.ui msgctxt "" @@ -2138,7 +2140,7 @@ "7\n" "stringlist.text" msgid "Bottom right" -msgstr "" +msgstr "A baix a la dreta" #: tp_DataLabel.ui msgctxt "" @@ -2276,13 +2278,14 @@ msgstr "" #: tp_DataSource.ui +#, fuzzy msgctxt "" "tp_DataSource.ui\n" "FT_ROLE\n" "label\n" "string.text" msgid "_Data ranges:" -msgstr "" +msgstr "Intervals de dades" #: tp_DataSource.ui msgctxt "" @@ -2309,7 +2312,7 @@ "label\n" "string.text" msgid "Data _labels" -msgstr "" +msgstr "Etiquetes de _dades" #: tp_ErrorBars.ui msgctxt "" @@ -2318,7 +2321,7 @@ "label\n" "string.text" msgid "_None" -msgstr "" +msgstr "_Cap" #: tp_ErrorBars.ui msgctxt "" @@ -2327,7 +2330,7 @@ "label\n" "string.text" msgid "_Constant Value" -msgstr "" +msgstr "Valor _constant" #: tp_ErrorBars.ui msgctxt "" @@ -2336,7 +2339,7 @@ "label\n" "string.text" msgid "_Percentage" -msgstr "" +msgstr "_Percentatge" #: tp_ErrorBars.ui msgctxt "" @@ -2345,7 +2348,7 @@ "label\n" "string.text" msgid "Cell _Range" -msgstr "" +msgstr "Inte_rval de cel·les" #: tp_ErrorBars.ui msgctxt "" @@ -2354,7 +2357,7 @@ "label\n" "string.text" msgid "Error Category" -msgstr "" +msgstr "Categoria d'error" #: tp_ErrorBars.ui msgctxt "" @@ -2363,7 +2366,7 @@ "label\n" "string.text" msgid "Positive _and Negative" -msgstr "" +msgstr "Positiu _i negatiu" #: tp_ErrorBars.ui msgctxt "" @@ -2372,7 +2375,7 @@ "label\n" "string.text" msgid "Pos_itive" -msgstr "" +msgstr "_Positiu" #: tp_ErrorBars.ui msgctxt "" @@ -2381,7 +2384,7 @@ "label\n" "string.text" msgid "Ne_gative" -msgstr "" +msgstr "Ne_gatiu" #: tp_ErrorBars.ui msgctxt "" @@ -2390,7 +2393,7 @@ "label\n" "string.text" msgid "Error Indicator" -msgstr "" +msgstr "Indicador d'error" #: tp_ErrorBars.ui msgctxt "" @@ -2399,7 +2402,7 @@ "label\n" "string.text" msgid "P_ositive (+)" -msgstr "" +msgstr "P_ositiu (+)" #: tp_ErrorBars.ui msgctxt "" @@ -2408,7 +2411,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Seleccioneu l'interval de dades" #: tp_ErrorBars.ui msgctxt "" @@ -2417,7 +2420,7 @@ "label\n" "string.text" msgid "_Negative (-)" -msgstr "" +msgstr "_Negatiu (-)" #: tp_ErrorBars.ui msgctxt "" @@ -2426,7 +2429,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Seleccioneu l'interval de dades" #: tp_ErrorBars.ui msgctxt "" @@ -2435,7 +2438,7 @@ "label\n" "string.text" msgid "Same value for both" -msgstr "" +msgstr "El mateix valor per a totes dues" #: tp_ErrorBars.ui msgctxt "" @@ -2444,7 +2447,7 @@ "label\n" "string.text" msgid "Parameters" -msgstr "" +msgstr "Paràmetres" #: tp_ErrorBars.ui msgctxt "" @@ -2453,7 +2456,7 @@ "label\n" "string.text" msgid "Select Range for Positive Error Bars" -msgstr "" +msgstr "Seleccioneu l'interval per a les barres d'error positives" #: tp_ErrorBars.ui msgctxt "" @@ -2462,7 +2465,7 @@ "label\n" "string.text" msgid "Select Range for Negative Error Bars" -msgstr "" +msgstr "Seleccioneu l'interval per a les barres d'error negatives" #: tp_ErrorBars.ui msgctxt "" @@ -2471,7 +2474,7 @@ "label\n" "string.text" msgid "From Data Table" -msgstr "" +msgstr "De la taula de dades" #: tp_ErrorBars.ui msgctxt "" @@ -2480,7 +2483,7 @@ "0\n" "stringlist.text" msgid "Standard Error" -msgstr "" +msgstr "Error estàndard" #: tp_ErrorBars.ui msgctxt "" @@ -2552,16 +2555,17 @@ "label\n" "string.text" msgid "Position" -msgstr "" +msgstr "Posició" #: tp_LegendPosition.ui +#, fuzzy msgctxt "" "tp_LegendPosition.ui\n" "FT_LEGEND_TEXTDIR\n" "label\n" "string.text" msgid "Te_xt direction" -msgstr "" +msgstr "Direcció del te_xt:" #: tp_LegendPosition.ui msgctxt "" @@ -2570,7 +2574,7 @@ "label\n" "string.text" msgid "Text orientation" -msgstr "" +msgstr "Orientació del text" #: tp_PolarOptions.ui msgctxt "" @@ -2597,7 +2601,7 @@ "label\n" "string.text" msgid "_Degrees" -msgstr "" +msgstr "_Graus" #: tp_PolarOptions.ui msgctxt "" @@ -2615,7 +2619,7 @@ "label\n" "string.text" msgid "Include _values from hidden cells" -msgstr "" +msgstr "Inclou els _valors de les cel·les ocultes" #: tp_PolarOptions.ui msgctxt "" @@ -2624,7 +2628,7 @@ "label\n" "string.text" msgid "Plot options" -msgstr "" +msgstr "Opcions de traçat" #: tp_RangeChooser.ui msgctxt "" @@ -2645,13 +2649,14 @@ msgstr "" #: tp_RangeChooser.ui +#, fuzzy msgctxt "" "tp_RangeChooser.ui\n" "FT_RANGE\n" "label\n" "string.text" msgid "_Data range:" -msgstr "" +msgstr "Intervals de dades" #: tp_RangeChooser.ui msgctxt "" @@ -2678,7 +2683,7 @@ "label\n" "string.text" msgid "Data series in _columns" -msgstr "" +msgstr "Sèries de dades en les _columnes" #: tp_RangeChooser.ui msgctxt "" @@ -2687,7 +2692,7 @@ "label\n" "string.text" msgid "_First row as label" -msgstr "" +msgstr "La _primera fila com a etiqueta" #: tp_RangeChooser.ui msgctxt "" @@ -2696,7 +2701,7 @@ "label\n" "string.text" msgid "F_irst column as label" -msgstr "" +msgstr "La p_rimera columna com a etiquetes" #: tp_RangeChooser.ui msgctxt "" @@ -2705,7 +2710,7 @@ "label\n" "string.text" msgid "Time based charting" -msgstr "" +msgstr "Diagrama basat en el temps" #: tp_RangeChooser.ui msgctxt "" @@ -2714,7 +2719,7 @@ "text\n" "string.text" msgid "0" -msgstr "" +msgstr "0" #: tp_RangeChooser.ui msgctxt "" @@ -2723,7 +2728,7 @@ "text\n" "string.text" msgid "0" -msgstr "" +msgstr "0" #: tp_RangeChooser.ui msgctxt "" @@ -2732,7 +2737,7 @@ "label\n" "string.text" msgid "Start Table Index" -msgstr "" +msgstr "Inicia l'índex de la taula" #: tp_RangeChooser.ui msgctxt "" @@ -2741,7 +2746,7 @@ "label\n" "string.text" msgid "End Table Index" -msgstr "" +msgstr "Finalitza l'índex de la taula" #: tp_RangeChooser.ui msgctxt "" @@ -2750,7 +2755,7 @@ "label\n" "string.text" msgid "Data Range" -msgstr "" +msgstr "Interval de dades" #: tp_Scale.ui msgctxt "" @@ -3362,7 +3367,7 @@ "label\n" "string.text" msgid "_X axis" -msgstr "" +msgstr "Eix _X" #: wizelementspage.ui msgctxt "" @@ -3371,7 +3376,7 @@ "label\n" "string.text" msgid "_Y axis" -msgstr "" +msgstr "Eix _Y" #: wizelementspage.ui msgctxt "" @@ -3380,7 +3385,7 @@ "label\n" "string.text" msgid "_Z axis" -msgstr "" +msgstr "Eix _Z" #: wizelementspage.ui msgctxt "" @@ -3389,7 +3394,7 @@ "label\n" "string.text" msgid "_Title" -msgstr "" +msgstr "_Títol" #: wizelementspage.ui msgctxt "" @@ -3398,7 +3403,7 @@ "label\n" "string.text" msgid "_Subtitle" -msgstr "" +msgstr "_Subtítol" #: wizelementspage.ui msgctxt "" @@ -3407,7 +3412,7 @@ "label\n" "string.text" msgid "X _axis" -msgstr "" +msgstr "_Eix X" #: wizelementspage.ui msgctxt "" @@ -3416,7 +3421,7 @@ "label\n" "string.text" msgid "Y ax_is" -msgstr "" +msgstr "E_ix Y" #: wizelementspage.ui msgctxt "" @@ -3425,7 +3430,7 @@ "label\n" "string.text" msgid "_Display legend" -msgstr "" +msgstr "_Mostra la llegenda" #: wizelementspage.ui msgctxt "" @@ -3434,7 +3439,7 @@ "label\n" "string.text" msgid "_Left" -msgstr "" +msgstr "_Esquerra" #: wizelementspage.ui msgctxt "" @@ -3443,7 +3448,7 @@ "label\n" "string.text" msgid "_Right" -msgstr "" +msgstr "_Dreta" #: wizelementspage.ui msgctxt "" @@ -3452,7 +3457,7 @@ "label\n" "string.text" msgid "_Top" -msgstr "" +msgstr "_Superior" #: wizelementspage.ui msgctxt "" @@ -3461,7 +3466,7 @@ "label\n" "string.text" msgid "_Bottom" -msgstr "" +msgstr "_Inferior" #: wizelementspage.ui msgctxt "" @@ -3470,7 +3475,7 @@ "label\n" "string.text" msgid "Choose titles, legend, and grid settings" -msgstr "" +msgstr "Trieu els títols, la llegenda i els paràmetres de la graella" #: wizelementspage.ui msgctxt "" @@ -3479,7 +3484,7 @@ "label\n" "string.text" msgid "X axis" -msgstr "" +msgstr "Eix X" #: wizelementspage.ui msgctxt "" @@ -3488,7 +3493,7 @@ "label\n" "string.text" msgid "Y ax_is" -msgstr "" +msgstr "E_ix Y" #: wizelementspage.ui msgctxt "" @@ -3497,7 +3502,7 @@ "label\n" "string.text" msgid "Z axi_s" -msgstr "" +msgstr "Ei_x Z" #: wizelementspage.ui msgctxt "" @@ -3506,4 +3511,4 @@ "label\n" "string.text" msgid "Display grids" -msgstr "" +msgstr "Mostra les graelles" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/connectivity/source/resource.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/connectivity/source/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/connectivity/source/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/connectivity/source/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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: 2013-12-08 21:48+0000\n" +"PO-Revision-Date: 2014-07-16 20:25+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1386539303.0\n" +"X-POOTLE-MTIME: 1405542337.000000\n" #: conn_error_message.src msgctxt "" @@ -95,7 +95,7 @@ "STR_MOZILLA_ADDRESSBOOKS\n" "string.text" msgid "Mozilla/Seamonkey Address Book Directory" -msgstr "" +msgstr "Directori de la llibreta d'adreces del Mozilla/Seamonkey" #. This must be the term referring to address books in the user's Thunderbird profile in the system. #: conn_shared_res.src @@ -104,7 +104,7 @@ "STR_THUNDERBIRD_ADDRESSBOOKS\n" "string.text" msgid "Thunderbird Address Book Directory" -msgstr "" +msgstr "Directori de la llibreta d'adreces del Thunderbird" #: conn_shared_res.src msgctxt "" @@ -112,7 +112,7 @@ "STR_OE_ADDRESSBOOK\n" "string.text" msgid "Outlook Express Address Book" -msgstr "" +msgstr "Llibreta d'adreces de l'Outlook Express" #: conn_shared_res.src msgctxt "" @@ -120,7 +120,7 @@ "STR_OUTLOOK_MAPI_ADDRESSBOOK\n" "string.text" msgid "Outlook (MAPI) Address Book" -msgstr "" +msgstr "Llibreta d'adreces de l'Outlook (MAPI)" #: conn_shared_res.src msgctxt "" @@ -176,7 +176,7 @@ "STR_MOZILLA_IS_RUNNIG_NO_CHANGES\n" "string.text" msgid "You can't make any changes to Mozilla Address Book when Mozilla is running." -msgstr "" +msgstr "No podeu fer canvis a la llibreta d'adreces del Mozilla mentre este s'està executant." #: conn_shared_res.src msgctxt "" @@ -320,7 +320,7 @@ "STR_ROW_CAN_NOT_SAVE\n" "string.text" msgid "The current row can not be saved." -msgstr "No es pot alçar la fila actual." +msgstr "No es pot guardar la fila actual." #: conn_shared_res.src msgctxt "" @@ -1064,7 +1064,7 @@ "STR_NO_STORAGE\n" "string.text" msgid "The connection can not be established. No storage or URL was given." -msgstr "" +msgstr "No es pot establir la connexió. No s'ha proporcionat cap lloc d'emmagatzematge ni cap URL." #: conn_shared_res.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/cui/source/customize.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/cui/source/customize.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/cui/source/customize.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/cui/source/customize.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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: 2013-11-22 10:10+0000\n" +"PO-Revision-Date: 2014-07-16 21:30+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385115036.0\n" +"X-POOTLE-MTIME: 1405546213.000000\n" #: acccfg.src msgctxt "" @@ -65,7 +65,7 @@ "ID_DEFAULT_STYLE\n" "menuitem.text" msgid "Restore Default Settings" -msgstr "" +msgstr "Restaura la configuració per defecte" #: cfg.src msgctxt "" @@ -92,7 +92,7 @@ "ID_DEFAULT_COMMAND\n" "menuitem.text" msgid "Restore Default Command" -msgstr "" +msgstr "Restaura l'orde per defecte" #: cfg.src msgctxt "" @@ -101,7 +101,7 @@ "ID_BEGIN_GROUP\n" "menuitem.text" msgid "Add Separator" -msgstr "" +msgstr "Afig un separador" #: cfg.src msgctxt "" @@ -328,7 +328,7 @@ "RID_SVXSTR_TOOLBAR_NAME\n" "string.text" msgid "Toolbar Name" -msgstr "" +msgstr "Nom de la barra d'eines" #: cfg.src msgctxt "" @@ -352,7 +352,7 @@ "QBX_CONFIRM_RESET\n" "querybox.text" msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?" -msgstr "" +msgstr "La configuració de menú per a %SAVE IN SELECTION% es reinicialitzarà amb la configuració per defecte. Voleu continuar?" #: cfg.src msgctxt "" @@ -360,7 +360,7 @@ "RID_SVXSTR_CONFIRM_MENU_RESET\n" "string.text" msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?" -msgstr "" +msgstr "La configuració de menú per a %SAVE IN SELECTION% es reinicialitzarà amb la configuració per defecte. Voleu continuar?" #: cfg.src msgctxt "" @@ -368,7 +368,7 @@ "RID_SVXSTR_CONFIRM_TOOLBAR_RESET\n" "string.text" msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?" -msgstr "" +msgstr "La configuració de barra d'eines per a %SAVE IN SELECTION% es reinicialitzarà amb la configuració per defecte. Voleu continuar?" #: cfg.src msgctxt "" @@ -481,7 +481,7 @@ "RID_SVXSTR_EVENT_SAVEDOC\n" "string.text" msgid "Save Document" -msgstr "Alça el document" +msgstr "Guarda el document" #: macropg.src msgctxt "" @@ -489,7 +489,7 @@ "RID_SVXSTR_EVENT_SAVEASDOC\n" "string.text" msgid "Save Document As" -msgstr "Anomena i alça el document" +msgstr "Anomena i guarda el document" #: macropg.src msgctxt "" @@ -497,7 +497,7 @@ "RID_SVXSTR_EVENT_SAVEDOCDONE\n" "string.text" msgid "Document has been saved" -msgstr "El document s'ha alçat" +msgstr "El document s'ha guardat" #: macropg.src msgctxt "" @@ -505,7 +505,7 @@ "RID_SVXSTR_EVENT_SAVEASDOCDONE\n" "string.text" msgid "Document has been saved as" -msgstr "El document s'ha anomenat i alçat" +msgstr "El document s'ha anomenat i guardat" #: macropg.src msgctxt "" @@ -881,7 +881,7 @@ "RID_SVXSTR_EVENT_SAVEDOCFAILED\n" "string.text" msgid "Saving of document failed" -msgstr "No s'ha pogut alçar el document" +msgstr "No s'ha pogut guardar el document" #: macropg.src msgctxt "" @@ -889,7 +889,7 @@ "RID_SVXSTR_EVENT_SAVEASDOCFAILED\n" "string.text" msgid "'Save as' has failed" -msgstr "«Anomena i alça» ha fallat" +msgstr "«Anomena i guarda» ha fallat" #: macropg.src msgctxt "" @@ -969,7 +969,7 @@ "RID_SVXSTR_EVENT_STORAGECHANGED\n" "string.text" msgid "Document has got a new storage" -msgstr "El document s'alça en una ubicació nova" +msgstr "El document es guarda en una ubicació nova" #: macropg.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/cui/source/dialogs.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/cui/source/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/cui/source/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/cui/source/dialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-11-22 10:10+0000\n" +"PO-Revision-Date: 2014-07-16 21:30+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385115041.0\n" +"X-POOTLE-MTIME: 1405546259.000000\n" #: colorpicker.src msgctxt "" @@ -303,7 +303,7 @@ "RID_SVXSTR_PPI\n" "string.text" msgid "(%1 PPI)" -msgstr "" +msgstr "(%1 PPP)" #: cuires.src msgctxt "" @@ -335,7 +335,7 @@ "RID_SVXSTR_LOADACCELCONFIG\n" "string.text" msgid "Load Keyboard Configuration" -msgstr "" +msgstr "Carrega la configuració del teclat" #: cuires.src msgctxt "" @@ -343,7 +343,7 @@ "RID_SVXSTR_SAVEACCELCONFIG\n" "string.text" msgid "Save Keyboard Configuration" -msgstr "" +msgstr "Guarda la configuració del teclat" #: cuires.src msgctxt "" @@ -351,7 +351,7 @@ "RID_SVXSTR_FILTERNAME_CFG\n" "string.text" msgid "Configuration (*.cfg)" -msgstr "" +msgstr "Configuració (*.cfg)" #: fmsearch.src msgctxt "" @@ -702,7 +702,7 @@ "BT_APPLY\n" "pushbutton.text" msgid "Apply" -msgstr "" +msgstr "Aplica" #: hlmarkwn.src msgctxt "" @@ -761,7 +761,7 @@ "RB_LINKTYP_INTERNET\n" "radiobutton.text" msgid "~Web" -msgstr "~Internet" +msgstr "~Web" #: hyperdlg.src msgctxt "" @@ -860,7 +860,7 @@ "Text\n" "stringlist.text" msgid "Text" -msgstr "" +msgstr "Text" #: hyperdlg.src msgctxt "" @@ -869,7 +869,7 @@ "Button\n" "stringlist.text" msgid "Button" -msgstr "" +msgstr "Botó" #: hyperdlg.src msgctxt "" @@ -1588,7 +1588,7 @@ "RID_SVXSTR_PASSWD_MUST_BE_CONFIRMED\n" "string.text" msgid "Password must be confirmed" -msgstr "" +msgstr "Cal que confirmeu la contrasenya" #: passwdomdlg.src msgctxt "" @@ -1596,7 +1596,7 @@ "RID_SVXSTR_ONE_PASSWORD_MISMATCH\n" "string.text" msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes." -msgstr "" +msgstr "La contrasenya de confirmació no coincideix amb la contrasenya. Torneu a definir la contrasenya i introduïu la mateixa contrasenya a tots dos quadres." #: passwdomdlg.src msgctxt "" @@ -1604,7 +1604,7 @@ "RID_SVXSTR_TWO_PASSWORDS_MISMATCH\n" "string.text" msgid "The confirmation passwords did not match the original passwords. Set the passwords again." -msgstr "" +msgstr "Les contrasenyes de confirmació no coincideixen amb les contrasenyes originals. Torneu a definir les contrasenyes." #: passwdomdlg.src msgctxt "" @@ -1612,7 +1612,7 @@ "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON\n" "string.text" msgid "Please enter a password to open or to modify, or check the open read-only option to continue." -msgstr "" +msgstr "Per continuar, introduïu una contrasenya per obrir o modificar el document, o bé seleccioneu l'opció d'obrir en mode només de lectura." #: scriptdlg.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/cui/source/options.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/cui/source/options.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/cui/source/options.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/cui/source/options.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-11-22 10:13+0000\n" +"PO-Revision-Date: 2014-07-16 21:31+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385115200.0\n" +"X-POOTLE-MTIME: 1405546280.000000\n" #: connpooloptions.src msgctxt "" @@ -158,7 +158,7 @@ "RID_SVXSTR_COLOR_CONFIG_SAVE1\n" "string.text" msgid "Save scheme" -msgstr "Alça l'esquema" +msgstr "Guarda l'esquema" #: optcolor.src msgctxt "" @@ -316,7 +316,7 @@ "RID_SVXSTR_SPELL\n" "string.text" msgid "Spelling" -msgstr "" +msgstr "Ortografia" #: optlingu.src msgctxt "" @@ -324,7 +324,7 @@ "RID_SVXSTR_HYPH\n" "string.text" msgid "Hyphenation" -msgstr "" +msgstr "Partició de mots" #: optlingu.src msgctxt "" @@ -332,7 +332,7 @@ "RID_SVXSTR_THES\n" "string.text" msgid "Thesaurus" -msgstr "" +msgstr "Tesaurus" #: optlingu.src msgctxt "" @@ -340,7 +340,7 @@ "RID_SVXSTR_GRAMMAR\n" "string.text" msgid "Grammar" -msgstr "" +msgstr "Gramàtica" #: optlingu.src msgctxt "" @@ -784,7 +784,7 @@ "Advanced\n" "itemlist.text" msgid "Advanced" -msgstr "Opcions avançades" +msgstr "Avançades" #: treeopt.src msgctxt "" @@ -1324,7 +1324,7 @@ "Load/Save\n" "itemlist.text" msgid "Load/Save" -msgstr "Carrega/alça" +msgstr "Carrega/guarda" #: treeopt.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/cui/source/tabpages.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/cui/source/tabpages.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/cui/source/tabpages.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/cui/source/tabpages.po 2014-09-16 19:55:40.000000000 +0000 @@ -790,7 +790,7 @@ "The gradient was modified without saving. \n" "Modify the selected gradient or add a new gradient." msgstr "" -"El degradat s'ha modificat sense alçar-lo.\n" +"El degradat s'ha modificat sense guardar-lo.\n" "Podeu modificar-lo o afegir-ne un de nou." #: strings.src @@ -818,7 +818,7 @@ "The bitmap was modified without saving. \n" "Modify the selected bitmap or add a new bitmap." msgstr "" -"El mapa de bits s'ha modificat sense haver-lo alçat. \n" +"El mapa de bits s'ha modificat sense haver-lo guardat. \n" "Modifiqueu el mapa de bits seleccionat o afegiu-ne un de nou." #: strings.src @@ -838,7 +838,7 @@ "The line style was modified without saving. \n" "Modify the selected line style or add a new line style." msgstr "" -"L'estil de línia s'ha modificat sense alçar-lo.\n" +"L'estil de línia s'ha modificat sense guardar-lo.\n" "Podeu modificar l'estil de línia seleccionat o afegir-ne un de nou." #: strings.src @@ -858,7 +858,7 @@ "The hatching type was modified but not saved. \n" "Modify the selected hatching type or add a new hatching type." msgstr "" -"El tipus d'ombreig s'ha modificat sense haver-lo alçat. \n" +"El tipus d'ombreig s'ha modificat sense haver-lo guardat. \n" "Modifiqueu el tipus d'ombreig seleccionat o afegiu-ne un nou tipus." #: strings.src @@ -894,7 +894,7 @@ "The color was modified without saving.\n" "Modify the selected color or add a new color." msgstr "" -"El color s'ha modificat sense haver-lo alçat. \n" +"El color s'ha modificat sense haver-lo guardat. \n" "Modifiqueu el color seleccionat o afegiu un nou color." #: strings.src diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/cui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/cui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/cui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/cui/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-02-22 22:25+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-08-25 12:57+0000\n" +"Last-Translator: Joan \n" "Language-Team: none\n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393107934.0\n" +"X-POOTLE-MTIME: 1408971460.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -194,7 +194,7 @@ "label\n" "string.text" msgid "Shortcut keys" -msgstr "" +msgstr "Dreceres de teclat" #: accelconfigpage.ui msgctxt "" @@ -203,7 +203,7 @@ "label\n" "string.text" msgid "%PRODUCTNAME" -msgstr "" +msgstr "%PRODUCTNAME" #: accelconfigpage.ui msgctxt "" @@ -212,7 +212,7 @@ "label\n" "string.text" msgid "$(MODULE)" -msgstr "" +msgstr "$(MODULE)" #: accelconfigpage.ui msgctxt "" @@ -221,7 +221,7 @@ "label\n" "string.text" msgid "_Modify" -msgstr "" +msgstr "_Modifica" #: accelconfigpage.ui msgctxt "" @@ -230,7 +230,7 @@ "label\n" "string.text" msgid "_Load..." -msgstr "" +msgstr "_Carrega..." #: accelconfigpage.ui msgctxt "" @@ -239,7 +239,7 @@ "label\n" "string.text" msgid "_Save..." -msgstr "" +msgstr "Al_ça..." #: accelconfigpage.ui msgctxt "" @@ -248,7 +248,7 @@ "label\n" "string.text" msgid "_Category" -msgstr "" +msgstr "_Categoria" #: accelconfigpage.ui msgctxt "" @@ -257,7 +257,7 @@ "label\n" "string.text" msgid "_Function" -msgstr "" +msgstr "_Funció" #: accelconfigpage.ui msgctxt "" @@ -266,7 +266,7 @@ "label\n" "string.text" msgid "_Keys" -msgstr "" +msgstr "_Tecles" #: accelconfigpage.ui msgctxt "" @@ -275,7 +275,7 @@ "label\n" "string.text" msgid "Functions" -msgstr "" +msgstr "Funcions" #: acorexceptpage.ui msgctxt "" @@ -410,7 +410,7 @@ "title\n" "string.text" msgid "Aging" -msgstr "" +msgstr "Envelliment" #: agingdialog.ui msgctxt "" @@ -419,7 +419,7 @@ "label\n" "string.text" msgid "Aging degree" -msgstr "" +msgstr "Grau d'envelliment" #: agingdialog.ui msgctxt "" @@ -428,7 +428,7 @@ "label\n" "string.text" msgid "Parameters" -msgstr "" +msgstr "Paràmetres" #: applyautofmtpage.ui msgctxt "" @@ -1328,7 +1328,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Pattern Editor" -msgstr "" +msgstr "Editor de patrons" #: bitmaptabpage.ui msgctxt "" @@ -1400,7 +1400,7 @@ "tooltip_markup\n" "string.text" msgid "Save Bitmap List" -msgstr "Alça la llista de mapes de bits" +msgstr "Guarda la llista de mapes de bits" #: bitmaptabpage.ui msgctxt "" @@ -1409,7 +1409,7 @@ "tooltip_text\n" "string.text" msgid "Save Bitmap List" -msgstr "Alça la llista de mapes de bits" +msgstr "Guarda la llista de mapes de bits" #: bitmaptabpage.ui msgctxt "" @@ -1436,7 +1436,7 @@ "title\n" "string.text" msgid "Border / Background" -msgstr "" +msgstr "Vora / fons" #: borderbackgrounddialog.ui msgctxt "" @@ -1445,7 +1445,7 @@ "label\n" "string.text" msgid "Borders" -msgstr "" +msgstr "Vores" #: borderbackgrounddialog.ui msgctxt "" @@ -1454,7 +1454,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Fons" #: borderpage.ui msgctxt "" @@ -1679,7 +1679,7 @@ "title\n" "string.text" msgid "Position and size" -msgstr "" +msgstr "Posició i mida" #: calloutdialog.ui msgctxt "" @@ -1688,7 +1688,7 @@ "label\n" "string.text" msgid "Position and Size" -msgstr "" +msgstr "Posició i mida" #: calloutdialog.ui msgctxt "" @@ -1697,16 +1697,17 @@ "label\n" "string.text" msgid "Position and Size" -msgstr "" +msgstr "Posició i mida" #: calloutdialog.ui +#, fuzzy msgctxt "" "calloutdialog.ui\n" "RID_SVXPAGE_CAPTION\n" "label\n" "string.text" msgid "Callout" -msgstr "" +msgstr "Bafarada" #: calloutpage.ui msgctxt "" @@ -1715,7 +1716,7 @@ "label\n" "string.text" msgid "_Extension" -msgstr "" +msgstr "_Extensió" #: calloutpage.ui msgctxt "" @@ -1724,7 +1725,7 @@ "label\n" "string.text" msgid "_Length" -msgstr "" +msgstr "_Longitud" #: calloutpage.ui msgctxt "" @@ -1733,7 +1734,7 @@ "label\n" "string.text" msgid "_Optimal" -msgstr "" +msgstr "_Òptim" #: calloutpage.ui msgctxt "" @@ -1742,7 +1743,7 @@ "label\n" "string.text" msgid "_Position" -msgstr "" +msgstr "_Posició" #: calloutpage.ui msgctxt "" @@ -1751,7 +1752,7 @@ "label\n" "string.text" msgid "_By" -msgstr "" +msgstr "_Per" #: calloutpage.ui msgctxt "" @@ -1760,7 +1761,7 @@ "0\n" "stringlist.text" msgid "Top" -msgstr "" +msgstr "Superior" #: calloutpage.ui msgctxt "" @@ -1769,7 +1770,7 @@ "1\n" "stringlist.text" msgid "Middle" -msgstr "" +msgstr "Centre" #: calloutpage.ui msgctxt "" @@ -1778,7 +1779,7 @@ "2\n" "stringlist.text" msgid "Bottom" -msgstr "" +msgstr "Inferior" #: calloutpage.ui msgctxt "" @@ -1787,7 +1788,7 @@ "3\n" "stringlist.text" msgid "Left" -msgstr "" +msgstr "Esquerra" #: calloutpage.ui msgctxt "" @@ -1796,7 +1797,7 @@ "4\n" "stringlist.text" msgid "Middle" -msgstr "" +msgstr "Centre" #: calloutpage.ui msgctxt "" @@ -1805,7 +1806,7 @@ "5\n" "stringlist.text" msgid "Right" -msgstr "" +msgstr "Dreta" #: calloutpage.ui msgctxt "" @@ -1814,7 +1815,7 @@ "label\n" "string.text" msgid "_Spacing" -msgstr "" +msgstr "E_spaiat" #: calloutpage.ui msgctxt "" @@ -1823,7 +1824,7 @@ "0\n" "stringlist.text" msgid "Straight Line" -msgstr "" +msgstr "Línia recta" #: calloutpage.ui msgctxt "" @@ -1832,7 +1833,7 @@ "1\n" "stringlist.text" msgid "Angled Line" -msgstr "" +msgstr "Línia angular" #: calloutpage.ui msgctxt "" @@ -1841,7 +1842,7 @@ "2\n" "stringlist.text" msgid "Angled Connector Line" -msgstr "" +msgstr "Línia angular de connexió" #: calloutpage.ui msgctxt "" @@ -1850,16 +1851,17 @@ "0\n" "stringlist.text" msgid "Optimal" -msgstr "" +msgstr "Òptim" #: calloutpage.ui +#, fuzzy msgctxt "" "calloutpage.ui\n" "liststore1\n" "1\n" "stringlist.text" msgid "From top" -msgstr "" +msgstr "Des de la part superior" #: calloutpage.ui msgctxt "" @@ -1868,7 +1870,7 @@ "2\n" "stringlist.text" msgid "From left" -msgstr "" +msgstr "Des de l'esquerra" #: calloutpage.ui msgctxt "" @@ -1877,7 +1879,7 @@ "3\n" "stringlist.text" msgid "Horizontal" -msgstr "" +msgstr "Horitzontal" #: calloutpage.ui msgctxt "" @@ -1886,7 +1888,7 @@ "4\n" "stringlist.text" msgid "Vertical" -msgstr "" +msgstr "Vertical" #: cellalignment.ui msgctxt "" @@ -2174,7 +2176,7 @@ "title\n" "string.text" msgid "Certificate Path" -msgstr "" +msgstr "Camí del certificat" #: certdialog.ui msgctxt "" @@ -2183,7 +2185,7 @@ "label\n" "string.text" msgid "_Add..." -msgstr "" +msgstr "_Afig..." #: certdialog.ui msgctxt "" @@ -2192,7 +2194,7 @@ "label\n" "string.text" msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:" -msgstr "" +msgstr "Seleccioneu o afegiu el directori correcte de serveis de seguretat de xarxa que voleu utilitzar per a les signatures digitals:" #: certdialog.ui msgctxt "" @@ -2201,7 +2203,7 @@ "label\n" "string.text" msgid "manual" -msgstr "" +msgstr "manual" #: certdialog.ui msgctxt "" @@ -2210,7 +2212,7 @@ "label\n" "string.text" msgid "Profile" -msgstr "" +msgstr "Perfil" #: certdialog.ui msgctxt "" @@ -2219,7 +2221,7 @@ "label\n" "string.text" msgid "Directory" -msgstr "" +msgstr "Directori" #: certdialog.ui msgctxt "" @@ -2228,7 +2230,7 @@ "label\n" "string.text" msgid "Select a Certificate directory" -msgstr "" +msgstr "Seleccioneu un directori de certificats" #: certdialog.ui msgctxt "" @@ -2237,7 +2239,7 @@ "label\n" "string.text" msgid "Certificate Path" -msgstr "" +msgstr "Camí del certificat" #: charnamepage.ui msgctxt "" @@ -2930,7 +2932,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Old Color" -msgstr "" +msgstr "Color anterior" #: colorpage.ui msgctxt "" @@ -2939,7 +2941,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "New Color" -msgstr "" +msgstr "Color nou" #: colorpage.ui msgctxt "" @@ -3065,7 +3067,7 @@ "tooltip_markup\n" "string.text" msgid "Save Color List" -msgstr "Alça la llista de colors" +msgstr "Guarda la llista de colors" #: colorpage.ui msgctxt "" @@ -3074,7 +3076,7 @@ "tooltip_text\n" "string.text" msgid "Save Color List" -msgstr "Alça la llista de colors" +msgstr "Guarda la llista de colors" #: colorpage.ui msgctxt "" @@ -3263,7 +3265,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Example" -msgstr "" +msgstr "Exemple" #: connpooloptions.ui msgctxt "" @@ -3326,7 +3328,7 @@ "label\n" "string.text" msgid "Keep _scale" -msgstr "" +msgstr "Conserva l'e_scala" #: croppage.ui msgctxt "" @@ -3335,7 +3337,7 @@ "label\n" "string.text" msgid "Keep image si_ze" -msgstr "" +msgstr "Conserva la mi_da de la imatge" #: croppage.ui msgctxt "" @@ -3344,7 +3346,7 @@ "label\n" "string.text" msgid "_Left" -msgstr "" +msgstr "_Esquerra" #: croppage.ui msgctxt "" @@ -3353,7 +3355,7 @@ "label\n" "string.text" msgid "_Right" -msgstr "" +msgstr "_Dreta" #: croppage.ui msgctxt "" @@ -3362,7 +3364,7 @@ "label\n" "string.text" msgid "_Top" -msgstr "" +msgstr "_Superior" #: croppage.ui msgctxt "" @@ -3371,7 +3373,7 @@ "label\n" "string.text" msgid "_Bottom" -msgstr "" +msgstr "_Inferior" #: croppage.ui msgctxt "" @@ -3380,7 +3382,7 @@ "label\n" "string.text" msgid "Crop" -msgstr "" +msgstr "Escapça" #: croppage.ui msgctxt "" @@ -3389,7 +3391,7 @@ "label\n" "string.text" msgid "_Width" -msgstr "" +msgstr "_Amplada" #: croppage.ui msgctxt "" @@ -3398,7 +3400,7 @@ "label\n" "string.text" msgid "_Height" -msgstr "" +msgstr "_Alçada" #: croppage.ui msgctxt "" @@ -3407,7 +3409,7 @@ "label\n" "string.text" msgid "Scale" -msgstr "" +msgstr "Escala" #: croppage.ui msgctxt "" @@ -3416,7 +3418,7 @@ "label\n" "string.text" msgid "_Width" -msgstr "" +msgstr "_Amplada" #: croppage.ui msgctxt "" @@ -3425,7 +3427,7 @@ "label\n" "string.text" msgid "_Height" -msgstr "" +msgstr "_Alçada" #: croppage.ui msgctxt "" @@ -3434,7 +3436,7 @@ "label\n" "string.text" msgid "Image size" -msgstr "" +msgstr "Mida de la imatge" #: croppage.ui msgctxt "" @@ -3443,7 +3445,7 @@ "label\n" "string.text" msgid "_Original Size" -msgstr "" +msgstr "Mida _original" #: cuiimapdlg.ui msgctxt "" @@ -3506,7 +3508,7 @@ "title\n" "string.text" msgid "Customize" -msgstr "" +msgstr "Personalitza" #: customizedialog.ui msgctxt "" @@ -3515,7 +3517,7 @@ "label\n" "string.text" msgid "Menus" -msgstr "" +msgstr "Menús" #: customizedialog.ui msgctxt "" @@ -3524,7 +3526,7 @@ "label\n" "string.text" msgid "Keyboard" -msgstr "" +msgstr "Teclat" #: customizedialog.ui msgctxt "" @@ -3533,7 +3535,7 @@ "label\n" "string.text" msgid "Toolbars" -msgstr "" +msgstr "Barres d'eines" #: customizedialog.ui msgctxt "" @@ -3542,7 +3544,7 @@ "label\n" "string.text" msgid "Events" -msgstr "" +msgstr "Esdeveniments" #: databaselinkdialog.ui msgctxt "" @@ -3551,7 +3553,7 @@ "title\n" "string.text" msgid "Create Database Link" -msgstr "" +msgstr "Enllaça a una base de dades" #: databaselinkdialog.ui msgctxt "" @@ -3560,7 +3562,7 @@ "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: databaselinkdialog.ui msgctxt "" @@ -3569,7 +3571,7 @@ "label\n" "string.text" msgid "_Database file" -msgstr "" +msgstr "Fitxer de base de _dades" #: databaselinkdialog.ui msgctxt "" @@ -3578,7 +3580,7 @@ "label\n" "string.text" msgid "Registered _name" -msgstr "" +msgstr "_Nom registrat" #: databaselinkdialog.ui msgctxt "" @@ -3587,7 +3589,7 @@ "label\n" "string.text" msgid "Edit Database Link" -msgstr "" +msgstr "Edita l'enllaç a la base de dades" #: dbregisterpage.ui msgctxt "" @@ -3767,7 +3769,7 @@ "title\n" "string.text" msgid "Distribution" -msgstr "" +msgstr "Distribució" #: distributionpage.ui msgctxt "" @@ -3776,7 +3778,7 @@ "label\n" "string.text" msgid "_None" -msgstr "" +msgstr "_Cap" #: distributionpage.ui msgctxt "" @@ -3785,7 +3787,7 @@ "label\n" "string.text" msgid "_Left" -msgstr "" +msgstr "_Esquerra" #: distributionpage.ui msgctxt "" @@ -3794,7 +3796,7 @@ "label\n" "string.text" msgid "_Center" -msgstr "" +msgstr "_Centre" #: distributionpage.ui msgctxt "" @@ -3803,7 +3805,7 @@ "label\n" "string.text" msgid "_Right" -msgstr "" +msgstr "_Dreta" #: distributionpage.ui msgctxt "" @@ -3812,7 +3814,7 @@ "label\n" "string.text" msgid "_Spacing" -msgstr "" +msgstr "E_spaiat" #: distributionpage.ui msgctxt "" @@ -3821,7 +3823,7 @@ "label\n" "string.text" msgid "Horizontal" -msgstr "" +msgstr "Horitzontal" #: distributionpage.ui msgctxt "" @@ -3830,7 +3832,7 @@ "label\n" "string.text" msgid "N_one" -msgstr "" +msgstr "_Cap" #: distributionpage.ui msgctxt "" @@ -3839,7 +3841,7 @@ "label\n" "string.text" msgid "_Top" -msgstr "" +msgstr "_Superior" #: distributionpage.ui msgctxt "" @@ -3848,7 +3850,7 @@ "label\n" "string.text" msgid "C_enter" -msgstr "" +msgstr "C_entre" #: distributionpage.ui msgctxt "" @@ -3857,7 +3859,7 @@ "label\n" "string.text" msgid "S_pacing" -msgstr "" +msgstr "Es_paiat" #: distributionpage.ui msgctxt "" @@ -3866,7 +3868,7 @@ "label\n" "string.text" msgid "_Bottom" -msgstr "" +msgstr "_Inferior" #: distributionpage.ui msgctxt "" @@ -3875,7 +3877,7 @@ "label\n" "string.text" msgid "Vertical" -msgstr "" +msgstr "Vertical" #: editdictionarydialog.ui msgctxt "" @@ -3947,7 +3949,7 @@ "title\n" "string.text" msgid "Edit Modules" -msgstr "" +msgstr "Edita els mòduls" #: editmodulesdialog.ui msgctxt "" @@ -3956,7 +3958,7 @@ "label\n" "string.text" msgid "Get more dictionaries online..." -msgstr "" +msgstr "Obté més diccionaris en línia..." #: editmodulesdialog.ui msgctxt "" @@ -3965,7 +3967,7 @@ "label\n" "string.text" msgid "Language" -msgstr "" +msgstr "Llengua" #: editmodulesdialog.ui msgctxt "" @@ -3974,7 +3976,7 @@ "label\n" "string.text" msgid "Move Up" -msgstr "" +msgstr "Mou cap amunt" #: editmodulesdialog.ui msgctxt "" @@ -3983,7 +3985,7 @@ "label\n" "string.text" msgid "Move Down" -msgstr "" +msgstr "Mou cap avall" #: editmodulesdialog.ui msgctxt "" @@ -3992,7 +3994,7 @@ "label\n" "string.text" msgid "_Back" -msgstr "" +msgstr "_Enrere" #: editmodulesdialog.ui msgctxt "" @@ -4001,7 +4003,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "Opcions" #: effectspage.ui msgctxt "" @@ -4073,7 +4075,7 @@ "label\n" "string.text" msgid "Underline color" -msgstr "" +msgstr "Color del subratllat" #: effectspage.ui msgctxt "" @@ -4514,7 +4516,7 @@ "label\n" "string.text" msgid "_Light source" -msgstr "" +msgstr "Font de _llum" #: embossdialog.ui msgctxt "" @@ -4523,7 +4525,7 @@ "label\n" "string.text" msgid "Parameters" -msgstr "" +msgstr "Paràmetres" #: eventassigndialog.ui msgctxt "" @@ -4532,7 +4534,7 @@ "title\n" "string.text" msgid "Assign Macro" -msgstr "" +msgstr "Assigna una macro" #: eventassignpage.ui msgctxt "" @@ -4541,7 +4543,7 @@ "label\n" "string.text" msgid "Existing macros" -msgstr "" +msgstr "Macros existents" #: eventassignpage.ui msgctxt "" @@ -4550,7 +4552,7 @@ "label\n" "string.text" msgid "Macro from" -msgstr "" +msgstr "Macro des de" #: eventassignpage.ui msgctxt "" @@ -4559,7 +4561,7 @@ "label\n" "string.text" msgid "Event" -msgstr "" +msgstr "Esdeveniment" #: eventassignpage.ui msgctxt "" @@ -4568,7 +4570,7 @@ "label\n" "string.text" msgid "Assigned Action" -msgstr "" +msgstr "Acció assignada" #: eventassignpage.ui msgctxt "" @@ -4577,7 +4579,7 @@ "label\n" "string.text" msgid "Assignments" -msgstr "" +msgstr "Assignacions" #: eventassignpage.ui msgctxt "" @@ -4586,7 +4588,7 @@ "label\n" "string.text" msgid "Assign" -msgstr "" +msgstr "Assigna" #: eventassignpage.ui msgctxt "" @@ -4595,7 +4597,7 @@ "label\n" "string.text" msgid "Remove" -msgstr "" +msgstr "Suprimeix" #: eventsconfigpage.ui msgctxt "" @@ -4604,7 +4606,7 @@ "label\n" "string.text" msgid "Assign:" -msgstr "" +msgstr "Assigna:" #: eventsconfigpage.ui msgctxt "" @@ -4613,7 +4615,7 @@ "label\n" "string.text" msgid "M_acro..." -msgstr "" +msgstr "M_acro..." #: eventsconfigpage.ui msgctxt "" @@ -4622,7 +4624,7 @@ "label\n" "string.text" msgid "_Remove" -msgstr "" +msgstr "_Suprimeix" #: eventsconfigpage.ui msgctxt "" @@ -4631,7 +4633,7 @@ "label\n" "string.text" msgid "Save In" -msgstr "" +msgstr "Guarda a" #: eventsconfigpage.ui msgctxt "" @@ -4640,7 +4642,7 @@ "label\n" "string.text" msgid "Event" -msgstr "" +msgstr "Esdeveniment" #: eventsconfigpage.ui msgctxt "" @@ -4649,7 +4651,7 @@ "label\n" "string.text" msgid "Assigned Action" -msgstr "" +msgstr "Acció assignada" #: fmsearchdialog.ui msgctxt "" @@ -4658,7 +4660,7 @@ "title\n" "string.text" msgid "Record Search" -msgstr "" +msgstr "Cerca de registres" #: fmsearchdialog.ui msgctxt "" @@ -4667,7 +4669,7 @@ "label\n" "string.text" msgid "S_earch" -msgstr "" +msgstr "_Cerca" #: fmsearchdialog.ui msgctxt "" @@ -4676,7 +4678,7 @@ "label\n" "string.text" msgid "_Text" -msgstr "" +msgstr "_Text" #: fmsearchdialog.ui msgctxt "" @@ -4685,7 +4687,7 @@ "label\n" "string.text" msgid "Field content is _NULL" -msgstr "" +msgstr "El contingut del camp és _NUL" #: fmsearchdialog.ui msgctxt "" @@ -4694,7 +4696,7 @@ "label\n" "string.text" msgid "Field content is not NU_LL" -msgstr "" +msgstr "El contingut del camp no és NU_L" #: fmsearchdialog.ui msgctxt "" @@ -4703,7 +4705,7 @@ "label\n" "string.text" msgid "_Search for" -msgstr "" +msgstr "_Cerca" #: fmsearchdialog.ui msgctxt "" @@ -4712,7 +4714,7 @@ "label\n" "string.text" msgid "_Single field" -msgstr "" +msgstr "_Camp únic" #: fmsearchdialog.ui msgctxt "" @@ -4721,7 +4723,7 @@ "label\n" "string.text" msgid "_All fields" -msgstr "" +msgstr "_Tots els camps" #: fmsearchdialog.ui msgctxt "" @@ -4730,7 +4732,7 @@ "label\n" "string.text" msgid "Form" -msgstr "" +msgstr "Formulari" #: fmsearchdialog.ui msgctxt "" @@ -4739,7 +4741,7 @@ "label\n" "string.text" msgid "Where to search" -msgstr "" +msgstr "Àrea de cerca" #: fmsearchdialog.ui msgctxt "" @@ -4748,7 +4750,7 @@ "label\n" "string.text" msgid "_Position" -msgstr "" +msgstr "_Posició" #: fmsearchdialog.ui msgctxt "" @@ -4757,7 +4759,7 @@ "label\n" "string.text" msgid "Match character wi_dth" -msgstr "" +msgstr "Concorda amb l'ampla_da del caràcter" #: fmsearchdialog.ui msgctxt "" @@ -4766,7 +4768,7 @@ "label\n" "string.text" msgid "Sounds like (_Japanese)" -msgstr "" +msgstr "Semblança fonètica (japonés)" #: fmsearchdialog.ui msgctxt "" @@ -4775,7 +4777,7 @@ "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: fmsearchdialog.ui msgctxt "" @@ -4784,7 +4786,7 @@ "label\n" "string.text" msgid "S_imilarity Search" -msgstr "" +msgstr "Cerca per s_imilitud" #: fmsearchdialog.ui msgctxt "" @@ -4793,7 +4795,7 @@ "label\n" "string.text" msgid "..." -msgstr "" +msgstr "..." #: fmsearchdialog.ui msgctxt "" @@ -4802,7 +4804,7 @@ "label\n" "string.text" msgid "_Match case" -msgstr "" +msgstr "Coi_ncidència de majúscules i minúscules" #: fmsearchdialog.ui msgctxt "" @@ -4820,7 +4822,7 @@ "label\n" "string.text" msgid "_Regular expression" -msgstr "" +msgstr "Expressió _regular" #: fmsearchdialog.ui msgctxt "" @@ -4829,7 +4831,7 @@ "label\n" "string.text" msgid "Appl_y field format" -msgstr "" +msgstr "Apl_ica el format del camp" #: fmsearchdialog.ui msgctxt "" @@ -4838,7 +4840,7 @@ "label\n" "string.text" msgid "Search _backwards" -msgstr "" +msgstr "Ce_rca cap arrere" #: fmsearchdialog.ui msgctxt "" @@ -4847,7 +4849,7 @@ "label\n" "string.text" msgid "_Wildcard expression" -msgstr "" +msgstr "Expressió _comodí" #: fmsearchdialog.ui msgctxt "" @@ -4856,7 +4858,7 @@ "label\n" "string.text" msgid "Settings" -msgstr "" +msgstr "Configuració" #: fmsearchdialog.ui msgctxt "" @@ -4865,7 +4867,7 @@ "label\n" "string.text" msgid "Record :" -msgstr "" +msgstr "Registre:" #: fmsearchdialog.ui msgctxt "" @@ -4883,7 +4885,7 @@ "label\n" "string.text" msgid "State" -msgstr "" +msgstr "Província" #: formatcellsdialog.ui msgctxt "" @@ -4892,7 +4894,7 @@ "title\n" "string.text" msgid "Format Cells" -msgstr "" +msgstr "Formata les cel·les" #: formatcellsdialog.ui msgctxt "" @@ -4901,7 +4903,7 @@ "label\n" "string.text" msgid "Font" -msgstr "" +msgstr "Tipus de lletra" #: formatcellsdialog.ui msgctxt "" @@ -4910,7 +4912,7 @@ "label\n" "string.text" msgid "Font Effects" -msgstr "" +msgstr "Efectes de lletra" #: formatcellsdialog.ui msgctxt "" @@ -4919,7 +4921,7 @@ "label\n" "string.text" msgid "Borders" -msgstr "" +msgstr "Vores" #: formatcellsdialog.ui msgctxt "" @@ -4928,7 +4930,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Fons" #: formatnumberdialog.ui msgctxt "" @@ -4946,7 +4948,7 @@ "title\n" "string.text" msgid "Apply" -msgstr "" +msgstr "Aplica" #: galleryapplyprogress.ui msgctxt "" @@ -4955,7 +4957,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Fitxer" #: galleryfilespage.ui msgctxt "" @@ -4964,7 +4966,7 @@ "label\n" "string.text" msgid "_File type" -msgstr "" +msgstr "Tipus de _fitxer" #: galleryfilespage.ui msgctxt "" @@ -4973,7 +4975,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Files Found" -msgstr "" +msgstr "Fitxers trobats" #: galleryfilespage.ui msgctxt "" @@ -4982,7 +4984,7 @@ "label\n" "string.text" msgid "Pr_eview" -msgstr "" +msgstr "Previsualització" #: galleryfilespage.ui msgctxt "" @@ -4991,7 +4993,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Preview" -msgstr "" +msgstr "Previsualització" #: galleryfilespage.ui msgctxt "" @@ -5000,7 +5002,7 @@ "label\n" "string.text" msgid "_Find Files..." -msgstr "" +msgstr "Cerca _fitxers..." #: galleryfilespage.ui msgctxt "" @@ -5009,7 +5011,7 @@ "label\n" "string.text" msgid "A_dd All" -msgstr "" +msgstr "A_fig-ho tot" #: gallerygeneralpage.ui msgctxt "" @@ -5018,7 +5020,7 @@ "label\n" "string.text" msgid "Modified:" -msgstr "" +msgstr "Modificat:" #: gallerygeneralpage.ui msgctxt "" @@ -5027,7 +5029,7 @@ "label\n" "string.text" msgid "Type:" -msgstr "" +msgstr "Tipus:" #: gallerygeneralpage.ui msgctxt "" @@ -5036,7 +5038,7 @@ "label\n" "string.text" msgid "Location:" -msgstr "" +msgstr "Ubicació:" #: gallerygeneralpage.ui msgctxt "" @@ -5045,7 +5047,7 @@ "label\n" "string.text" msgid "Contents:" -msgstr "" +msgstr "Contingut:" #: gallerygeneralpage.ui msgctxt "" @@ -5054,7 +5056,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Theme Name" -msgstr "" +msgstr "Nom del tema" #: gallerysearchprogress.ui msgctxt "" @@ -5063,7 +5065,7 @@ "title\n" "string.text" msgid "Find" -msgstr "" +msgstr "Cerca" #: gallerysearchprogress.ui msgctxt "" @@ -5072,7 +5074,7 @@ "label\n" "string.text" msgid "File type" -msgstr "" +msgstr "Tipus de fitxer" #: gallerysearchprogress.ui msgctxt "" @@ -5081,7 +5083,7 @@ "label\n" "string.text" msgid "Directory" -msgstr "" +msgstr "Directori" #: gallerythemedialog.ui msgctxt "" @@ -5090,7 +5092,7 @@ "title\n" "string.text" msgid "Properties of " -msgstr "" +msgstr "Propietats de " #: gallerythemedialog.ui msgctxt "" @@ -5099,7 +5101,7 @@ "label\n" "string.text" msgid "General" -msgstr "" +msgstr "General" #: gallerythemedialog.ui msgctxt "" @@ -5108,7 +5110,7 @@ "label\n" "string.text" msgid "Files" -msgstr "" +msgstr "Fitxers" #: gallerythemeiddialog.ui msgctxt "" @@ -5117,7 +5119,7 @@ "title\n" "string.text" msgid "Theme ID" -msgstr "" +msgstr "Identificador del tema" #: gallerythemeiddialog.ui msgctxt "" @@ -5126,7 +5128,7 @@ "label\n" "string.text" msgid "ID" -msgstr "" +msgstr "Identificador" #: gallerytitledialog.ui msgctxt "" @@ -5135,7 +5137,7 @@ "title\n" "string.text" msgid "Enter Title" -msgstr "" +msgstr "Introduïu el títol" #: gallerytitledialog.ui msgctxt "" @@ -5144,7 +5146,7 @@ "label\n" "string.text" msgid "Title" -msgstr "" +msgstr "Títol" #: galleryupdateprogress.ui msgctxt "" @@ -5153,7 +5155,7 @@ "title\n" "string.text" msgid "Update" -msgstr "" +msgstr "Actualitza" #: galleryupdateprogress.ui msgctxt "" @@ -5162,7 +5164,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Fitxer" #: gradientpage.ui msgctxt "" @@ -5324,7 +5326,7 @@ "tooltip_markup\n" "string.text" msgid "Save Gradient List" -msgstr "Alça la llista de degradats" +msgstr "Guarda la llista de degradats" #: gradientpage.ui msgctxt "" @@ -5333,7 +5335,7 @@ "tooltip_text\n" "string.text" msgid "Save Gradient List" -msgstr "Alça la llista de degradats" +msgstr "Guarda la llista de degradats" #: gradientpage.ui msgctxt "" @@ -5351,7 +5353,7 @@ "title\n" "string.text" msgid "New Dictionary" -msgstr "" +msgstr "Diccionari nou" #: hangulhanjaadddialog.ui msgctxt "" @@ -5360,7 +5362,7 @@ "label\n" "string.text" msgid "_Name" -msgstr "" +msgstr "_Nom" #: hangulhanjaadddialog.ui msgctxt "" @@ -5369,7 +5371,7 @@ "label\n" "string.text" msgid "Dictionary" -msgstr "" +msgstr "Diccionari" #: hangulhanjaoptdialog.ui msgctxt "" @@ -5378,7 +5380,7 @@ "title\n" "string.text" msgid "Hangul/Hanja Options" -msgstr "" +msgstr "Opcions de hangul/hanja" #: hangulhanjaoptdialog.ui msgctxt "" @@ -5387,7 +5389,7 @@ "label\n" "string.text" msgid "New..." -msgstr "" +msgstr "Nou..." #: hangulhanjaoptdialog.ui msgctxt "" @@ -5396,16 +5398,17 @@ "label\n" "string.text" msgid "Edit..." -msgstr "" +msgstr "Edita..." #: hangulhanjaoptdialog.ui +#, fuzzy msgctxt "" "hangulhanjaoptdialog.ui\n" "label1\n" "label\n" "string.text" msgid "User-defined dictionaries" -msgstr "" +msgstr "Diccionaris definits per l'_usuari" #: hangulhanjaoptdialog.ui msgctxt "" @@ -5441,7 +5444,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "Opcions" #: hatchpage.ui msgctxt "" @@ -5549,7 +5552,7 @@ "tooltip_markup\n" "string.text" msgid "Save Hatching List" -msgstr "Alça la llista d'ombreigs" +msgstr "Guarda la llista d'ombreigs" #: hatchpage.ui msgctxt "" @@ -5558,7 +5561,7 @@ "tooltip_text\n" "string.text" msgid "Save Hatching List" -msgstr "Alça la llista d'ombreigs" +msgstr "Guarda la llista d'ombreigs" #: hatchpage.ui msgctxt "" @@ -6116,7 +6119,7 @@ "tooltip_markup\n" "string.text" msgid "Save arrow styles" -msgstr "Alça els estils de fletxa" +msgstr "Guarda els estils de fletxa" #: lineendstabpage.ui msgctxt "" @@ -6125,7 +6128,7 @@ "tooltip_text\n" "string.text" msgid "Save arrow styles" -msgstr "Alça els estils de fletxa" +msgstr "Guarda els estils de fletxa" #: lineendstabpage.ui msgctxt "" @@ -6224,7 +6227,7 @@ "tooltip_markup\n" "string.text" msgid "Save Line Styles" -msgstr "Alça els estils de línia" +msgstr "Guarda els estils de línia" #: linestyletabpage.ui msgctxt "" @@ -6233,7 +6236,7 @@ "tooltip_text\n" "string.text" msgid "Save Line Styles" -msgstr "Alça els estils de línia" +msgstr "Guarda els estils de línia" #: linestyletabpage.ui msgctxt "" @@ -6629,16 +6632,17 @@ "label\n" "string.text" msgid "Remove" -msgstr "" +msgstr "Suprimeix" #: macroassignpage.ui +#, fuzzy msgctxt "" "macroassignpage.ui\n" "label1\n" "label\n" "string.text" msgid "Assign" -msgstr "" +msgstr "_Assigna" #: macroselectordialog.ui msgctxt "" @@ -6722,13 +6726,14 @@ msgstr "Descripció" #: menuassignpage.ui +#, fuzzy msgctxt "" "menuassignpage.ui\n" "toplevelbutton\n" "label\n" "string.text" msgid "New..." -msgstr "" +msgstr "_Nou..." #: menuassignpage.ui msgctxt "" @@ -6737,7 +6742,7 @@ "label\n" "string.text" msgid "Menu" -msgstr "" +msgstr "Menú" #: menuassignpage.ui msgctxt "" @@ -6746,7 +6751,7 @@ "label\n" "string.text" msgid "Menu" -msgstr "" +msgstr "Menú" #: menuassignpage.ui msgctxt "" @@ -6758,22 +6763,24 @@ msgstr "" #: menuassignpage.ui +#, fuzzy msgctxt "" "menuassignpage.ui\n" "add\n" "label\n" "string.text" msgid "Add..." -msgstr "" +msgstr "_Afig..." #: menuassignpage.ui +#, fuzzy msgctxt "" "menuassignpage.ui\n" "modify\n" "label\n" "string.text" msgid "Modify" -msgstr "" +msgstr "_Modifica" #: menuassignpage.ui msgctxt "" @@ -6782,7 +6789,7 @@ "label\n" "string.text" msgid "_Save In" -msgstr "" +msgstr "Al_ça a" #: menuassignpage.ui msgctxt "" @@ -6800,7 +6807,7 @@ "label\n" "string.text" msgid "Menu Content" -msgstr "" +msgstr "Contingut del menú" #: menuassignpage.ui msgctxt "" @@ -6809,7 +6816,7 @@ "label\n" "string.text" msgid "_Description" -msgstr "" +msgstr "_Descripció" #: menuassignpage.ui msgctxt "" @@ -6818,7 +6825,7 @@ "label\n" "string.text" msgid "Move..." -msgstr "" +msgstr "Mou..." #: menuassignpage.ui msgctxt "" @@ -6827,7 +6834,7 @@ "label\n" "string.text" msgid "Rename..." -msgstr "" +msgstr "Canvia el nom..." #: menuassignpage.ui msgctxt "" @@ -6836,7 +6843,7 @@ "label\n" "string.text" msgid "Delete..." -msgstr "" +msgstr "Suprimeix..." #: menuassignpage.ui msgctxt "" @@ -6845,7 +6852,7 @@ "label\n" "string.text" msgid "Add Submenu..." -msgstr "" +msgstr "Afig un submenú..." #: menuassignpage.ui msgctxt "" @@ -6854,7 +6861,7 @@ "label\n" "string.text" msgid "Add Separator" -msgstr "" +msgstr "Afig un separador" #: menuassignpage.ui msgctxt "" @@ -6863,7 +6870,7 @@ "label\n" "string.text" msgid "Rename..." -msgstr "" +msgstr "Canvia el nom..." #: menuassignpage.ui msgctxt "" @@ -6872,7 +6879,7 @@ "label\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Suprimeix" #: mosaicdialog.ui msgctxt "" @@ -6881,7 +6888,7 @@ "title\n" "string.text" msgid "Mosaic" -msgstr "" +msgstr "Mosaic" #: mosaicdialog.ui msgctxt "" @@ -6890,7 +6897,7 @@ "label\n" "string.text" msgid "_Width" -msgstr "" +msgstr "_Amplada" #: mosaicdialog.ui msgctxt "" @@ -6899,7 +6906,7 @@ "text\n" "string.text" msgid "2" -msgstr "" +msgstr "2" #: mosaicdialog.ui msgctxt "" @@ -6908,7 +6915,7 @@ "label\n" "string.text" msgid "_Height" -msgstr "" +msgstr "_Alçada" #: mosaicdialog.ui msgctxt "" @@ -6920,13 +6927,14 @@ msgstr "" #: mosaicdialog.ui +#, fuzzy msgctxt "" "mosaicdialog.ui\n" "label1\n" "label\n" "string.text" msgid "Parameters" -msgstr "" +msgstr "Paràmetre" #: movemenu.ui msgctxt "" @@ -6989,7 +6997,7 @@ "label\n" "string.text" msgid "_Add..." -msgstr "" +msgstr "_Afig..." #: multipathdialog.ui msgctxt "" @@ -8897,7 +8905,7 @@ "label\n" "string.text" msgid "[S]: Convert and save the object" -msgstr "[D]: Converteix i alça l'objecte" +msgstr "[D]: Converteix i guarda l'objecte" #: optfltrembedpage.ui msgctxt "" @@ -8933,7 +8941,7 @@ "label\n" "string.text" msgid "Save _original Basic code" -msgstr "Alça el codi Basic _original" +msgstr "Guarda el codi Basic _original" #: optfltrpage.ui msgctxt "" @@ -8969,7 +8977,7 @@ "label\n" "string.text" msgid "Sa_ve original Basic code" -msgstr "Alça el codi _Basic original" +msgstr "Guarda el codi _Basic original" #: optfltrpage.ui msgctxt "" @@ -9203,7 +9211,7 @@ "label\n" "string.text" msgid "_Allow to save document even when the document is not modified " -msgstr "_Permet alçar el document encara que no s'haja modificat " +msgstr "_Permet guardar el document encara que no s'haja modificat " #: optgeneralpage.ui msgctxt "" @@ -10328,7 +10336,7 @@ "label\n" "string.text" msgid "Save _AutoRecovery information every" -msgstr "Alça la informació de restabliment _automàtic cada" +msgstr "Guarda la informació de restabliment _automàtic cada" #: optsavepage.ui msgctxt "" @@ -10346,7 +10354,7 @@ "label\n" "string.text" msgid "Automatically save the document too" -msgstr "Alça també automàticament el document" +msgstr "Guarda també automàticament el document" #: optsavepage.ui msgctxt "" @@ -10355,7 +10363,7 @@ "label\n" "string.text" msgid "Save URLs relative to file system" -msgstr "Alça els URL relatius al sistema de fitxers" +msgstr "Guarda els URL relatius al sistema de fitxers" #: optsavepage.ui msgctxt "" @@ -10364,7 +10372,7 @@ "label\n" "string.text" msgid "_Edit document properties before saving" -msgstr "_Edita les propietats del document abans d'alçar-lo" +msgstr "_Edita les propietats del document abans de guardar-lo" #: optsavepage.ui msgctxt "" @@ -10373,7 +10381,7 @@ "label\n" "string.text" msgid "Save URLs relative to internet" -msgstr "Alça els URL relatius a Internet" +msgstr "Guarda els URL relatius a Internet" #: optsavepage.ui msgctxt "" @@ -10391,7 +10399,7 @@ "label\n" "string.text" msgid "Save" -msgstr "Alça" +msgstr "Guarda" #: optsavepage.ui msgctxt "" @@ -10400,7 +10408,7 @@ "label\n" "string.text" msgid "Warn when not saving in ODF or default format" -msgstr "Avisa quan no s'alce en ODF o en el format per defecte" +msgstr "Avisa quan no es guarde en ODF o en el format per defecte" #: optsavepage.ui msgctxt "" @@ -10638,7 +10646,7 @@ "\n" "Do you want to delete password list and reset master password?" msgstr "" -"Si inhabiliteu l'emmagatzematge permanent de contrasenyes, se suprimirà la llista de contrasenyes alçades i es reinicialitzarà la contrasenya mestra.\n" +"Si inhabiliteu l'emmagatzematge permanent de contrasenyes, se suprimirà la llista de contrasenyes guardades i es reinicialitzarà la contrasenya mestra.\n" "\n" "Voleu suprimir la llista de contrasenyes i reinicialitzar la contrasenya mestra?" @@ -11009,7 +11017,7 @@ "label\n" "string.text" msgid "_Zip/City" -msgstr "_Codi postal/Població" +msgstr "_Codi postal/Ciutat" #: optuserpage.ui msgctxt "" @@ -12536,7 +12544,7 @@ "label\n" "string.text" msgid "_Options" -msgstr "" +msgstr "_Opcions" #: password.ui msgctxt "" @@ -13070,13 +13078,14 @@ msgstr "" #: posterdialog.ui +#, fuzzy msgctxt "" "posterdialog.ui\n" "label1\n" "label\n" "string.text" msgid "Parameters" -msgstr "" +msgstr "Paràmetre" #: querychangelineenddialog.ui msgctxt "" @@ -13085,7 +13094,7 @@ "title\n" "string.text" msgid "Save arrowhead ?" -msgstr "Voleu alçar l'extrem de la fletxa?" +msgstr "Voleu guardar l'extrem de la fletxa?" #: querychangelineenddialog.ui msgctxt "" @@ -13094,7 +13103,7 @@ "text\n" "string.text" msgid "The arrowhead was modified without saving." -msgstr "L'extrem de la fletxa s'ha modificat sense haver-lo alçat." +msgstr "L'extrem de la fletxa s'ha modificat sense haver-lo guardat." #: querychangelineenddialog.ui msgctxt "" @@ -13103,7 +13112,7 @@ "secondary_text\n" "string.text" msgid "Would you like to save the arrowhead now?" -msgstr "Voleu alçar l'extrem de la fletxa ara?" +msgstr "Voleu guardar l'extrem de la fletxa ara?" #: querydeletebitmapdialog.ui msgctxt "" @@ -13328,7 +13337,7 @@ "title\n" "string.text" msgid "No saved file" -msgstr "No s'ha alçat el fitxer" +msgstr "No s'ha guardat el fitxer" #: querynosavefiledialog.ui msgctxt "" @@ -13337,7 +13346,7 @@ "text\n" "string.text" msgid "The file could not be saved!" -msgstr "No s'ha pogut alçar el fitxer." +msgstr "No s'ha pogut guardar el fitxer." #: querysavelistdialog.ui msgctxt "" @@ -13346,7 +13355,7 @@ "title\n" "string.text" msgid "Save list?" -msgstr "Voleu alçar la llista?" +msgstr "Voleu guardar la llista?" #: querysavelistdialog.ui msgctxt "" @@ -13355,7 +13364,7 @@ "text\n" "string.text" msgid "The list was modified without saving." -msgstr "S'ha modificat la llista i no s'ha alçat." +msgstr "S'ha modificat la llista i no s'ha guardat." #: querysavelistdialog.ui msgctxt "" @@ -13364,7 +13373,7 @@ "secondary_text\n" "string.text" msgid "Would you like to save the list now?" -msgstr "Voleu alçar la llista ara?" +msgstr "Voleu guardar la llista ara?" #: queryupdategalleryfilelistdialog.ui msgctxt "" @@ -13571,7 +13580,7 @@ "label\n" "string.text" msgid "_Options" -msgstr "" +msgstr "_Opcions" #: searchformatdialog.ui msgctxt "" @@ -13589,7 +13598,7 @@ "label\n" "string.text" msgid "Font" -msgstr "" +msgstr "Tipus de lletra" #: searchformatdialog.ui msgctxt "" @@ -13607,7 +13616,7 @@ "label\n" "string.text" msgid "Position" -msgstr "" +msgstr "Posició" #: searchformatdialog.ui msgctxt "" @@ -13628,13 +13637,14 @@ msgstr "" #: searchformatdialog.ui +#, fuzzy msgctxt "" "searchformatdialog.ui\n" "labelTP_PARA_ALIGN\n" "label\n" "string.text" msgid "Alignment" -msgstr "" +msgstr "Alineació " #: searchformatdialog.ui msgctxt "" @@ -13679,7 +13689,7 @@ "label\n" "string.text" msgid "_When saving or sending" -msgstr "En alçar o en_viar" +msgstr "En guardar o en_viar" #: securityoptionsdialog.ui msgctxt "" @@ -13733,7 +13743,7 @@ "label\n" "string.text" msgid "_Remove personal information on saving" -msgstr "_Suprimeix la informació personal en alçar" +msgstr "_Suprimeix la informació personal en guardar" #: securityoptionsdialog.ui msgctxt "" @@ -13823,16 +13833,17 @@ "label\n" "string.text" msgid "_Add..." -msgstr "" +msgstr "_Afig..." #: selectpathdialog.ui +#, fuzzy msgctxt "" "selectpathdialog.ui\n" "label1\n" "label\n" "string.text" msgid "Paths" -msgstr "" +msgstr "Camí" #: shadowtabpage.ui msgctxt "" @@ -14006,13 +14017,14 @@ msgstr "" #: smarttagoptionspage.ui +#, fuzzy msgctxt "" "smarttagoptionspage.ui\n" "properties\n" "label\n" "string.text" msgid "Properties..." -msgstr "" +msgstr "Propietats" #: smarttagoptionspage.ui msgctxt "" @@ -14042,13 +14054,14 @@ msgstr "" #: smoothdialog.ui +#, fuzzy msgctxt "" "smoothdialog.ui\n" "label1\n" "label\n" "string.text" msgid "Parameters" -msgstr "" +msgstr "Paràmetre" #: solarizedialog.ui msgctxt "" @@ -14069,22 +14082,24 @@ msgstr "" #: solarizedialog.ui +#, fuzzy msgctxt "" "solarizedialog.ui\n" "invert\n" "label\n" "string.text" msgid "_Invert" -msgstr "" +msgstr "_Insereix" #: solarizedialog.ui +#, fuzzy msgctxt "" "solarizedialog.ui\n" "label1\n" "label\n" "string.text" msgid "Parameters" -msgstr "" +msgstr "Paràmetre" #: specialcharacters.ui msgctxt "" @@ -15653,13 +15668,14 @@ msgstr "" #: wordcompletionpage.ui +#, fuzzy msgctxt "" "wordcompletionpage.ui\n" "enablewordcomplete\n" "label\n" "string.text" msgid "Enable word _completion" -msgstr "" +msgstr "Habilita la compleció de codi" #: wordcompletionpage.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/core/resource.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/core/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/core/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/core/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,11 +3,11 @@ msgstr "" "Project-Id-Version: PACKAGE 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-12-17 14:13+0100\n" +"POT-Creation-Date: 2014-05-02 00:05+0200\n" "PO-Revision-Date: 2014-01-07 21:37+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" -"Language: ca-XV\n" +"Language: ca-valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -94,7 +94,7 @@ "RID_STR_DATASOURCE_NOT_STORED\n" "string.text" msgid "The data source was not saved. Please use the interface XStorable to save the data source." -msgstr "No s'ha alçat la font de dades. Utilitzeu la interfície XStorable per alçar-la." +msgstr "No s'ha guardat la font de dades. Utilitzeu la interfície XStorable per guardar-la." #: strings.src msgctxt "" @@ -411,7 +411,7 @@ "Could not save the document to $location$:\n" "$message$" msgstr "" -"No s'ha pogut alçar el document a $location$:\n" +"No s'ha pogut guardar el document a $location$:\n" "$message$" #: strings.src diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/ext/macromigration.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/ext/macromigration.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/ext/macromigration.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/ext/macromigration.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-05-02 00:05+0200\n" "PO-Revision-Date: 2012-12-06 08:57+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" @@ -126,7 +126,7 @@ "FT_SAVE_AS_LABEL\n" "fixedtext.text" msgid "Save To:" -msgstr "Alça a:" +msgstr "Guarda a:" #: macromigration.src msgctxt "" @@ -144,7 +144,7 @@ "FT_START_MIGRATION\n" "fixedtext.text" msgid "Press 'Next' to save a copy of your document, and to begin the migration." -msgstr "Premeu \"Següent\" per alçar una còpia del document i començar la migració." +msgstr "Premeu \"Següent\" per guardar una còpia del document i començar la migració." #: macromigration.src msgctxt "" @@ -276,7 +276,7 @@ "STR_SAVED_COPY_TO\n" "string.text" msgid "saved copy to $location$" -msgstr "s'ha alçat una còpia a $location$" +msgstr "s'ha guardat una còpia a $location$" #: macromigration.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/ui/app.po 2014-09-16 19:55:40.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: 2014-05-02 00:05+0200\n" -"PO-Revision-Date: 2012-03-10 12:09+0200\n" -"Last-Translator: Jesús \n" +"PO-Revision-Date: 2014-07-17 20:46+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405630009.000000\n" #: app.src msgctxt "" @@ -427,7 +428,7 @@ "Do you want to save the changes?" msgstr "" "S'ha modificat la base de dades.\n" -"Voleu alçar els canvis?" +"Voleu guardar els canvis?" #: app.src msgctxt "" @@ -568,7 +569,7 @@ "STR_PAGETITLE_GENERAL\n" "string.text" msgid "Advanced Properties" -msgstr "" +msgstr "Propietats avançades" #: app.src msgctxt "" @@ -576,7 +577,7 @@ "STR_PAGETITLE_ADVANCED\n" "string.text" msgid "Additional Settings" -msgstr "" +msgstr "Paràmetres addicionals" #: app.src msgctxt "" @@ -584,7 +585,7 @@ "STR_PAGETITLE_CONNECTION\n" "string.text" msgid "Connection settings" -msgstr "" +msgstr "Paràmetres de la connexió" #: app.src msgctxt "" @@ -592,7 +593,7 @@ "STR_TBL_LABEL\n" "string.text" msgid "~Table Name" -msgstr "" +msgstr "Nom de la ~taula" #: app.src msgctxt "" @@ -600,7 +601,7 @@ "STR_VW_LABEL\n" "string.text" msgid "~Name of table view" -msgstr "" +msgstr "~Nom de la vista de la taula" #: app.src msgctxt "" @@ -608,7 +609,7 @@ "STR_QRY_LABEL\n" "string.text" msgid "~Query name" -msgstr "" +msgstr "Nom de la ~consulta" #: app.src msgctxt "" @@ -616,7 +617,7 @@ "STR_TITLE_RENAME\n" "string.text" msgid "Rename to" -msgstr "" +msgstr "Canvia el nom a" #: app.src msgctxt "" @@ -624,4 +625,4 @@ "STR_TITLE_PASTE_AS\n" "string.text" msgid "Insert as" -msgstr "" +msgstr "Insereix com a" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/ui/browser.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/ui/browser.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/ui/browser.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/ui/browser.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-05-02 00:05+0200\n" "PO-Revision-Date: 2013-01-09 09:45+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" @@ -26,7 +26,7 @@ "Do you want to save the changes?" msgstr "" "El registre actual ha canviat.\n" -"Voleu alçar els canvis?" +"Voleu guardar els canvis?" #: sbabrw.src msgctxt "" @@ -255,7 +255,7 @@ "RID_STR_SAVE_CURRENT_RECORD\n" "string.text" msgid "Save current record" -msgstr "Alça el registre actual" +msgstr "Guarda el registre actual" #: sbagrid.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07 21:37+0000\n" +"PO-Revision-Date: 2014-07-17 20:48+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1389130671.0\n" +"X-POOTLE-MTIME: 1405630093.000000\n" #: AutoControls.src msgctxt "" @@ -118,7 +118,7 @@ "STR_ADD_TABLES\n" "string.text" msgid "Add Tables" -msgstr "" +msgstr "Afig taules" #: AutoControls.src msgctxt "" @@ -126,7 +126,7 @@ "STR_ADD_TABLE_OR_QUERY\n" "string.text" msgid "Add Table or Query" -msgstr "" +msgstr "Afig una taula o una consulta" #: AutoControls_tmpl.hrc msgctxt "" @@ -399,7 +399,7 @@ "BTN_EXPLORERFILE_SAVE\n" "pushbutton.text" msgid "Save" -msgstr "Alça" +msgstr "Guarda" #: CollectionView.src msgctxt "" @@ -416,7 +416,7 @@ "DLG_COLLECTION_VIEW\n" "modaldialog.text" msgid "Save" -msgstr "Alça" +msgstr "Guarda" #: CollectionView.src msgctxt "" @@ -1156,7 +1156,7 @@ "STR_PAGETITLE_FINAL\n" "string.text" msgid "Save and proceed" -msgstr "Alça i continua" +msgstr "Guarda i continua" #: dbadminsetup.src msgctxt "" @@ -1351,7 +1351,7 @@ "STR_DBASE_HELPTEXT\n" "string.text" msgid "Select the folder where the dBASE files are stored." -msgstr "Selecciona la carpeta on són alçats els fitxers dBASE." +msgstr "Selecciona la carpeta on són guardats els fitxers dBASE." #: dbadminsetup.src msgctxt "" @@ -1545,6 +1545,8 @@ "Please enter the required information to connect to an Oracle database. Note that a JDBC Driver Class must be installed on your system and registered with %PRODUCTNAME.\n" "Please contact your system administrator if you are unsure about the following settings." msgstr "" +"Introduïu la informació sol·licitada per connectar a una base de dades Oracle. Recordeu que cal tindre una classe de controlador JDBC instal·lada al vostre sistema i registrada al %PRODUCTNAME.\n" +"Poseu-vos en contacte amb l'administrador de sistemes si teniu dubtes sobre els paràmetres següents." #: dbadminsetup.src msgctxt "" @@ -1636,7 +1638,7 @@ "ID_INDEX_SAVE\n" "toolboxitem.text" msgid "Save Current Index" -msgstr "Alça l'índex actual" +msgstr "Guarda l'índex actual" #: indexdialog.src msgctxt "" @@ -1762,7 +1764,7 @@ "ERR_NEED_INDEX_FIELDS\n" "errorbox.title" msgid "Save Index" -msgstr "Alça l'índex" +msgstr "Guarda l'índex" #: indexdialog.src msgctxt "" @@ -1770,7 +1772,7 @@ "QUERY_SAVE_CURRENT_INDEX\n" "querybox.text" msgid "Do you want to save the changes made to the current index?" -msgstr "Voleu alçar els canvis realitzats a l'índex actual?" +msgstr "Voleu guardar els canvis realitzats a l'índex actual?" #: indexdialog.src msgctxt "" @@ -1846,7 +1848,7 @@ "STR_EXCEPTION_STATUS\n" "string.text" msgid "SQL Status" -msgstr "" +msgstr "Estat de l'SQL" #: sqlmessage.src msgctxt "" @@ -1854,7 +1856,7 @@ "STR_EXCEPTION_ERRORCODE\n" "string.text" msgid "Error code" -msgstr "" +msgstr "Codi d'error" #: sqlmessage.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/ui/querydesign.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/ui/querydesign.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/ui/querydesign.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/ui/querydesign.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2012-03-10 12:11+0200\n" -"Last-Translator: Jesús \n" +"PO-Revision-Date: 2014-08-26 08:46+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1409042760.000000\n" #: query.src msgctxt "" @@ -337,7 +338,7 @@ "STR_DATASOURCE_DELETED\n" "string.text" msgid "The corresponding data source has been deleted. Therefore, data relevant to that data source cannot be saved." -msgstr "La font de dades corresponent s'ha suprimit. No és possible alçar-hi dades rellevants." +msgstr "La font de dades corresponent s'ha suprimit. No és possible guardar-hi dades rellevants." #: query.src msgctxt "" @@ -398,7 +399,7 @@ "Do you want to save the changes?" msgstr "" "S'ha modificat l'objecte $object$.\n" -"Voleu alçar els canvis?" +"Voleu guardar els canvis?" #. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource (except "SQL command", which doesn't make sense here) will be inserted. #: query.src @@ -499,7 +500,7 @@ "STR_QUERY_CROSS_JOIN\n" "string.text" msgid "Contains the Cartesian product of ALL records from '%1' and from '%2'." -msgstr "" +msgstr "Conté el producte cartesià de TOTS els registres de «%1» i de «%2»." #: querydlg.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/ui/relationdesign.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/ui/relationdesign.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/ui/relationdesign.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/ui/relationdesign.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-05-02 00:05+0200\n" "PO-Revision-Date: 2012-03-10 12:12+0200\n" "Last-Translator: Jesús \n" "Language-Team: LANGUAGE \n" @@ -65,7 +65,7 @@ "Do you want to save the changes?" msgstr "" "El disseny de la relació ha canviat.\n" -"Voleu alçar els canvis?" +"Voleu guardar els canvis?" #: relation.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/ui/tabledesign.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/ui/tabledesign.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/source/ui/tabledesign.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/source/ui/tabledesign.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-05-02 00:05+0200\n" "PO-Revision-Date: 2012-03-10 12:12+0200\n" "Last-Translator: Jesús \n" "Language-Team: LANGUAGE \n" @@ -415,7 +415,7 @@ "STR_TABLEDESIGN_DUPLICATE_NAME\n" "string.text" msgid "The table cannot be saved because column name \"$column$\" was assigned twice." -msgstr "No es pot alçar la taula perquè el nom de la columna \"$column$\" s'ha assignat dos cops." +msgstr "No es pot guardar la taula perquè el nom de la columna \"$column$\" s'ha assignat dos cops." #: table.src msgctxt "" @@ -467,7 +467,7 @@ "Do you want to save the changes?" msgstr "" "S'ha canviat la taula.\n" -"Voleu alçar els canvis?" +"Voleu guardar els canvis?" #: table.src msgctxt "" @@ -487,7 +487,7 @@ "STR_TABLEDESIGN_CONNECTION_MISSING\n" "string.text" msgid "The table could not be saved due to problems connecting to the database." -msgstr "No s'ha pogut alçar la taula per problemes de connexió." +msgstr "No s'ha pogut guardar la taula per problemes de connexió." #: table.src msgctxt "" @@ -495,7 +495,7 @@ "STR_TABLEDESIGN_DATASOURCE_DELETED\n" "string.text" msgid "The table filter could not be adjusted because the data source has been deleted." -msgstr "El filtre de la taula no s'ha pogut alçar perquè la font de dades s'ha suprimit anteriorment." +msgstr "El filtre de la taula no s'ha pogut guardar perquè la font de dades s'ha suprimit anteriorment." #: table.src msgctxt "" @@ -506,8 +506,8 @@ "Before you can edit the indexes of a table, you have to save it.\n" "Do you want to save the changes now?" msgstr "" -"S'ha d'alçar la taula abans de poder editar els índexs.\n" -"Voleu alçar els canvis ara?" +"S'ha de guardar la taula abans de poder editar els índexs.\n" +"Voleu guardar els canvis ara?" #: table.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dbaccess/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/dbaccess/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-12-04 14:31+0000\n" +"PO-Revision-Date: 2014-08-26 08:57+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1386167462.0\n" +"X-POOTLE-MTIME: 1409043427.000000\n" #: admindialog.ui msgctxt "" @@ -23,7 +23,7 @@ "title\n" "string.text" msgid "Database properties" -msgstr "" +msgstr "Propietats de la base de dades" #: admindialog.ui msgctxt "" @@ -32,7 +32,7 @@ "label\n" "string.text" msgid "Advanced Properties" -msgstr "" +msgstr "Propietats avançades" #: advancedsettingsdialog.ui msgctxt "" @@ -41,7 +41,7 @@ "title\n" "string.text" msgid "Advanced Settings" -msgstr "" +msgstr "Configuració avançada" #: advancedsettingsdialog.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "Generated Values" -msgstr "" +msgstr "Valors generats" #: advancedsettingsdialog.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "Special Settings" -msgstr "" +msgstr "Configuració especial" #: applycolpage.ui msgctxt "" @@ -68,7 +68,7 @@ "label\n" "string.text" msgid "Existing columns" -msgstr "" +msgstr "Columnes existents" #: choosedatasourcedialog.ui msgctxt "" @@ -77,7 +77,7 @@ "title\n" "string.text" msgid "Data Source" -msgstr "" +msgstr "Font de les dades" #: choosedatasourcedialog.ui msgctxt "" @@ -86,7 +86,7 @@ "label\n" "string.text" msgid "Or_ganize..." -msgstr "" +msgstr "Or_ganitza..." #: choosedatasourcedialog.ui msgctxt "" @@ -95,7 +95,7 @@ "label\n" "string.text" msgid "Choose a data source:" -msgstr "" +msgstr "Trieu una font de dades:" #: colwidthdialog.ui msgctxt "" @@ -104,7 +104,7 @@ "title\n" "string.text" msgid "Column Width" -msgstr "" +msgstr "Amplada de la columna" #: colwidthdialog.ui msgctxt "" @@ -113,7 +113,7 @@ "label\n" "string.text" msgid "_Width" -msgstr "" +msgstr "_Amplada" #: colwidthdialog.ui msgctxt "" @@ -122,7 +122,7 @@ "label\n" "string.text" msgid "_Automatic" -msgstr "" +msgstr "_Automàtica" #: copytablepage.ui msgctxt "" @@ -131,7 +131,7 @@ "label\n" "string.text" msgid "De_finition and data" -msgstr "" +msgstr "De_finició i dades" #: copytablepage.ui msgctxt "" @@ -140,16 +140,17 @@ "label\n" "string.text" msgid "Def_inition" -msgstr "" +msgstr "Def_inició" #: copytablepage.ui +#, fuzzy msgctxt "" "copytablepage.ui\n" "view\n" "label\n" "string.text" msgid "A_s table view" -msgstr "" +msgstr "Com a vista de _taula" #: copytablepage.ui msgctxt "" @@ -158,7 +159,7 @@ "label\n" "string.text" msgid "Append _data" -msgstr "" +msgstr "Afig _dades" #: copytablepage.ui msgctxt "" @@ -167,7 +168,7 @@ "label\n" "string.text" msgid "Use first _line as column names" -msgstr "" +msgstr "Usa la primera _línia com a noms de les columnes" #: copytablepage.ui msgctxt "" @@ -176,7 +177,7 @@ "label\n" "string.text" msgid "Crea_te primary key" -msgstr "" +msgstr "_Crea una clau primària" #: copytablepage.ui msgctxt "" @@ -185,7 +186,7 @@ "label\n" "string.text" msgid "Name" -msgstr "" +msgstr "Nom" #: copytablepage.ui msgctxt "" @@ -194,7 +195,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "Opcions" #: copytablepage.ui msgctxt "" @@ -203,7 +204,7 @@ "label\n" "string.text" msgid "Ta_ble name" -msgstr "" +msgstr "Nom de la _taula" #: dbaseindexdialog.ui msgctxt "" @@ -212,7 +213,7 @@ "title\n" "string.text" msgid "Indexes" -msgstr "" +msgstr "Índexs" #: dbaseindexdialog.ui msgctxt "" @@ -221,7 +222,7 @@ "label\n" "string.text" msgid "_Table" -msgstr "" +msgstr "_Taula" #: dbaseindexdialog.ui msgctxt "" @@ -230,7 +231,7 @@ "label\n" "string.text" msgid "T_able indexes" -msgstr "" +msgstr "Índexs de la t_aula" #: dbaseindexdialog.ui msgctxt "" @@ -239,7 +240,7 @@ "label\n" "string.text" msgid "_Free indexes" -msgstr "" +msgstr "Índexs l_liures" #: dbaseindexdialog.ui msgctxt "" @@ -248,7 +249,7 @@ "label\n" "string.text" msgid "Assignment" -msgstr "" +msgstr "Assignació" #: directsqldialog.ui msgctxt "" @@ -329,7 +330,7 @@ "title\n" "string.text" msgid "Field Format" -msgstr "" +msgstr "Format del camp" #: fielddialog.ui msgctxt "" @@ -338,7 +339,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Format" #: fielddialog.ui msgctxt "" @@ -347,7 +348,7 @@ "label\n" "string.text" msgid "Alignment" -msgstr "" +msgstr "Alineació" #: fielddialog.ui msgctxt "" @@ -356,7 +357,7 @@ "label\n" "string.text" msgid "Table Format" -msgstr "" +msgstr "Format de la taula" #: finalpagewizard.ui msgctxt "" @@ -365,7 +366,7 @@ "label\n" "string.text" msgid "Decide how to proceed after saving the database" -msgstr "" +msgstr "Decidiu com continuar després de guardar la base de dades" #: finalpagewizard.ui msgctxt "" @@ -374,7 +375,7 @@ "label\n" "string.text" msgid "Do you want the wizard to register the database in %PRODUCTNAME?" -msgstr "" +msgstr "Voleu que l'auxiliar registri la base de dades al %PRODUCTNAME?" #: finalpagewizard.ui msgctxt "" @@ -383,7 +384,7 @@ "label\n" "string.text" msgid "_Yes, register the database for me" -msgstr "" +msgstr "_Sí, registra la base de dades" #: finalpagewizard.ui msgctxt "" @@ -392,7 +393,7 @@ "label\n" "string.text" msgid "N_o, do not register the database" -msgstr "" +msgstr "N_o, no registris la base de dades" #: finalpagewizard.ui msgctxt "" @@ -401,7 +402,7 @@ "label\n" "string.text" msgid "After the database file has been saved, what do you want to do?" -msgstr "" +msgstr "Després de guardar la base de dades, què voleu fer?" #: finalpagewizard.ui msgctxt "" @@ -410,7 +411,7 @@ "label\n" "string.text" msgid "Open the database for editing" -msgstr "" +msgstr "Obrir la base de dades per editar-la" #: finalpagewizard.ui msgctxt "" @@ -419,7 +420,7 @@ "label\n" "string.text" msgid "Create tables using the table wizard" -msgstr "" +msgstr "Crear taules utilitzant l'auxiliar de taules" #: finalpagewizard.ui msgctxt "" @@ -428,7 +429,7 @@ "label\n" "string.text" msgid "Click 'Finish' to save the database." -msgstr "" +msgstr "Feu clic a «Finalitza» per guardar la base de dades." #: generalpagedialog.ui msgctxt "" @@ -551,7 +552,7 @@ "label\n" "string.text" msgid "Re_trieve generated values" -msgstr "" +msgstr "Re_cupera els valors generats" #: generatedvaluespage.ui msgctxt "" @@ -740,7 +741,7 @@ "label\n" "string.text" msgid "Operator" -msgstr "" +msgstr "Operador" #: queryfilterdialog.ui msgctxt "" @@ -749,7 +750,7 @@ "label\n" "string.text" msgid "Field name" -msgstr "" +msgstr "Nom del camp" #: queryfilterdialog.ui msgctxt "" @@ -758,7 +759,7 @@ "label\n" "string.text" msgid "Condition" -msgstr "" +msgstr "Condició" #: queryfilterdialog.ui msgctxt "" @@ -767,7 +768,7 @@ "0\n" "stringlist.text" msgid "- none -" -msgstr "" +msgstr "- cap -" #: queryfilterdialog.ui msgctxt "" @@ -776,7 +777,7 @@ "0\n" "stringlist.text" msgid "=" -msgstr "" +msgstr "=" #: queryfilterdialog.ui msgctxt "" @@ -785,7 +786,7 @@ "1\n" "stringlist.text" msgid "<>" -msgstr "" +msgstr "<>" #: queryfilterdialog.ui msgctxt "" @@ -794,7 +795,7 @@ "2\n" "stringlist.text" msgid "<" -msgstr "" +msgstr "<" #: queryfilterdialog.ui msgctxt "" @@ -803,7 +804,7 @@ "3\n" "stringlist.text" msgid "=" -msgstr "" +msgstr "=" #: queryfilterdialog.ui msgctxt "" @@ -812,7 +813,7 @@ "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -821,7 +822,7 @@ "5\n" "stringlist.text" msgid "=" -msgstr "" +msgstr "=" #: queryfilterdialog.ui msgctxt "" @@ -830,7 +831,7 @@ "6\n" "stringlist.text" msgid "like" -msgstr "" +msgstr "com a" #: queryfilterdialog.ui msgctxt "" @@ -839,7 +840,7 @@ "7\n" "stringlist.text" msgid "not like" -msgstr "" +msgstr "no com" #: queryfilterdialog.ui msgctxt "" @@ -848,7 +849,7 @@ "8\n" "stringlist.text" msgid "null" -msgstr "" +msgstr "nul" #: queryfilterdialog.ui msgctxt "" @@ -857,7 +858,7 @@ "9\n" "stringlist.text" msgid "not null" -msgstr "" +msgstr "no és nul" #: queryfilterdialog.ui msgctxt "" @@ -866,7 +867,7 @@ "0\n" "stringlist.text" msgid "- none -" -msgstr "" +msgstr "- cap -" #: queryfilterdialog.ui msgctxt "" @@ -875,7 +876,7 @@ "0\n" "stringlist.text" msgid "- none -" -msgstr "" +msgstr "- cap -" #: queryfilterdialog.ui msgctxt "" @@ -884,7 +885,7 @@ "label\n" "string.text" msgid "Value" -msgstr "" +msgstr "Valor" #: queryfilterdialog.ui msgctxt "" @@ -893,7 +894,7 @@ "0\n" "stringlist.text" msgid "AND" -msgstr "" +msgstr "I" #: queryfilterdialog.ui msgctxt "" @@ -902,7 +903,7 @@ "1\n" "stringlist.text" msgid "OR" -msgstr "" +msgstr "O" #: queryfilterdialog.ui msgctxt "" @@ -911,7 +912,7 @@ "0\n" "stringlist.text" msgid "AND" -msgstr "" +msgstr "I" #: queryfilterdialog.ui msgctxt "" @@ -1154,7 +1155,7 @@ "title\n" "string.text" msgid "Row Height" -msgstr "" +msgstr "Alçada de la fila" #: rowheightdialog.ui msgctxt "" @@ -1163,7 +1164,7 @@ "label\n" "string.text" msgid "_Height" -msgstr "" +msgstr "A_lçada" #: rowheightdialog.ui msgctxt "" @@ -1172,7 +1173,7 @@ "label\n" "string.text" msgid "_Automatic" -msgstr "" +msgstr "_Automàtica" #: savedialog.ui msgctxt "" @@ -1181,7 +1182,7 @@ "title\n" "string.text" msgid "Save As" -msgstr "" +msgstr "Anomena i guarda" #: savedialog.ui msgctxt "" @@ -1190,7 +1191,7 @@ "label\n" "string.text" msgid "Please enter a name for the object to be created:" -msgstr "" +msgstr "Introduïu un nom per a l'objecte que s'ha de crear:" #: savedialog.ui msgctxt "" @@ -1199,7 +1200,7 @@ "label\n" "string.text" msgid "_Catalog" -msgstr "" +msgstr "_Catàleg" #: savedialog.ui msgctxt "" @@ -1208,7 +1209,7 @@ "label\n" "string.text" msgid "_Schema" -msgstr "" +msgstr "E_squema" #: sortdialog.ui msgctxt "" @@ -1217,7 +1218,7 @@ "title\n" "string.text" msgid "Sort Order" -msgstr "" +msgstr "Criteri d'ordenació" #: sortdialog.ui msgctxt "" @@ -1226,7 +1227,7 @@ "label\n" "string.text" msgid "Operator" -msgstr "" +msgstr "Operador" #: sortdialog.ui msgctxt "" @@ -1235,7 +1236,7 @@ "label\n" "string.text" msgid "and then" -msgstr "" +msgstr "i aleshores" #: sortdialog.ui msgctxt "" @@ -1244,7 +1245,7 @@ "label\n" "string.text" msgid "and then" -msgstr "" +msgstr "i aleshores" #: sortdialog.ui msgctxt "" @@ -1253,7 +1254,7 @@ "label\n" "string.text" msgid "Field name" -msgstr "" +msgstr "Nom del camp" #: sortdialog.ui msgctxt "" @@ -1262,7 +1263,7 @@ "label\n" "string.text" msgid "Order" -msgstr "" +msgstr "Orde" #: sortdialog.ui msgctxt "" @@ -1271,7 +1272,7 @@ "0\n" "stringlist.text" msgid "ascending" -msgstr "" +msgstr "ascendent" #: sortdialog.ui msgctxt "" @@ -1280,7 +1281,7 @@ "1\n" "stringlist.text" msgid "descending" -msgstr "" +msgstr "descendent" #: sortdialog.ui msgctxt "" @@ -1289,7 +1290,7 @@ "0\n" "stringlist.text" msgid "ascending" -msgstr "" +msgstr "ascendent" #: sortdialog.ui msgctxt "" @@ -1298,7 +1299,7 @@ "1\n" "stringlist.text" msgid "descending" -msgstr "" +msgstr "descendent" #: sortdialog.ui msgctxt "" @@ -1307,7 +1308,7 @@ "0\n" "stringlist.text" msgid "ascending" -msgstr "" +msgstr "ascendent" #: sortdialog.ui msgctxt "" @@ -1316,7 +1317,7 @@ "1\n" "stringlist.text" msgid "descending" -msgstr "" +msgstr "descendent" #: sortdialog.ui msgctxt "" @@ -1325,7 +1326,7 @@ "label\n" "string.text" msgid "Sort order" -msgstr "" +msgstr "Criteri d'ordenació" #: specialsettingspage.ui msgctxt "" @@ -1514,7 +1515,7 @@ "3\n" "stringlist.text" msgid "MS Access" -msgstr "" +msgstr "MS Access" #: specialsettingspage.ui msgctxt "" @@ -1523,7 +1524,7 @@ "label\n" "string.text" msgid "Rows to scan column types" -msgstr "" +msgstr "Files per escanejar els tipus de columna" #: specialsettingspage.ui msgctxt "" @@ -1532,7 +1533,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "Opcions" #: sqlexception.ui msgctxt "" @@ -1541,7 +1542,7 @@ "title\n" "string.text" msgid "%PRODUCTNAME Base" -msgstr "" +msgstr "%PRODUCTNAME Base" #: sqlexception.ui msgctxt "" @@ -1550,7 +1551,7 @@ "label\n" "string.text" msgid "Error _list:" -msgstr "" +msgstr "_Llista d'errors:" #: sqlexception.ui msgctxt "" @@ -1559,7 +1560,7 @@ "label\n" "string.text" msgid "_Description:" -msgstr "" +msgstr "_Descripció:" #: sqlexception.ui msgctxt "" @@ -1568,7 +1569,7 @@ "label\n" "string.text" msgid "Details" -msgstr "" +msgstr "Detalls" #: tablesfilterdialog.ui msgctxt "" @@ -1577,7 +1578,7 @@ "title\n" "string.text" msgid "Tables Filter" -msgstr "" +msgstr "Filtre de taules" #: tablesfilterpage.ui msgctxt "" @@ -1586,7 +1587,7 @@ "label\n" "string.text" msgid "Mark the tables that should be visible for the applications." -msgstr "" +msgstr "Marqueu les taules que han de ser visibles per a les aplicacions." #: tablesfilterpage.ui msgctxt "" @@ -1595,7 +1596,7 @@ "label\n" "string.text" msgid "Tables and table filter" -msgstr "" +msgstr "Taules i filtre de taula" #: tablesjoindialog.ui msgctxt "" @@ -1604,7 +1605,7 @@ "label\n" "string.text" msgid "Tables" -msgstr "" +msgstr "Taules" #: tablesjoindialog.ui msgctxt "" @@ -1613,7 +1614,7 @@ "label\n" "string.text" msgid "Queries" -msgstr "" +msgstr "Consultes" #: tablesjoindialog.ui msgctxt "" @@ -1622,7 +1623,7 @@ "label\n" "string.text" msgid "Add Tables" -msgstr "" +msgstr "Afig taules" #: tablesjoindialog.ui msgctxt "" @@ -1631,7 +1632,7 @@ "label\n" "string.text" msgid "Add Table or Query" -msgstr "" +msgstr "Addició d'una taula o una consulta" #: useradmindialog.ui msgctxt "" @@ -1640,13 +1641,14 @@ "title\n" "string.text" msgid "User administration" -msgstr "" +msgstr "Administració dels usuaris" #: useradmindialog.ui +#, fuzzy msgctxt "" "useradmindialog.ui\n" "settings\n" "label\n" "string.text" msgid "User Settings" -msgstr "" +msgstr "Configuració dels usuaris" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/desktop/source/app.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/desktop/source/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/desktop/source/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/desktop/source/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-11-22 10:03+0000\n" +"PO-Revision-Date: 2014-07-14 21:17+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385114625.0\n" +"X-POOTLE-MTIME: 1405372671.000000\n" #: desktop.src msgctxt "" @@ -45,7 +45,7 @@ msgstr "" "S'ha produït un error irreparable.\n" "\n" -"Tots els fitxers modificats s'han alçat i \n" +"Tots els fitxers modificats s'han guardat i \n" "probablement es podran recuperar quan torneu a iniciar el programa." #: desktop.src @@ -190,7 +190,7 @@ "STR_CONFIG_ERR_NO_WRITE_ACCESS\n" "string.text" msgid "The changes to your personal settings cannot be stored centrally because of missing access rights. " -msgstr "Els canvis a la vostra configuració personal no es poden alçar a la configuració central perquè no teniu permisos suficients. " +msgstr "Els canvis a la vostra configuració personal no es poden guardar a la configuració central perquè no teniu permisos suficients. " #: desktop.src msgctxt "" @@ -220,7 +220,7 @@ "STR_LO_MUST_BE_RESTARTED\n" "string.text" msgid "%PRODUCTNAME must unfortunately be manually restarted once after installation or update." -msgstr "" +msgstr "Heu de reiniciar el %PRODUCTNAME manualment després de la instal·lació o actualització." #: desktop.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/desktop/source/deployment/misc.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/desktop/source/deployment/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/desktop/source/deployment/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/desktop/source/deployment/misc.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2011-11-26 11:28+0200\n" -"Last-Translator: Jesús \n" +"PO-Revision-Date: 2014-07-14 21:18+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405372682.000000\n" #: dp_misc.src msgctxt "" @@ -45,4 +46,4 @@ "RID_DEPLOYMENT_DEPENDENCIES_LO_MIN\n" "string.text" msgid "Extension requires at least %PRODUCTNAME version %VERSION" -msgstr "" +msgstr "L'extensió requereix com a mínim la versió del %PRODUCTNAME %VERSION" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/desktop/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/desktop/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/desktop/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/desktop/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-05-26 12:54+0000\n" +"PO-Revision-Date: 2014-07-16 20:18+0000\n" "Last-Translator: Joan \n" "Language-Team: none\n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369572878.0\n" +"X-POOTLE-MTIME: 1405541926.000000\n" #: cmdlinehelp.ui msgctxt "" @@ -113,7 +113,7 @@ "title\n" "string.text" msgid "Extension Software License Agreement" -msgstr "" +msgstr "Acord de llicència de l'extensió" #: licensedialog.ui msgctxt "" @@ -122,7 +122,7 @@ "label\n" "string.text" msgid "Accept" -msgstr "" +msgstr "Accepta" #: licensedialog.ui msgctxt "" @@ -131,7 +131,7 @@ "label\n" "string.text" msgid "Decline" -msgstr "" +msgstr "Declina" #: licensedialog.ui msgctxt "" @@ -140,7 +140,7 @@ "label\n" "string.text" msgid "Please follow these steps to proceed with the installation of the extension:" -msgstr "" +msgstr "Seguiu els passos següents per instal·lar l'extensió:" #: licensedialog.ui msgctxt "" @@ -149,7 +149,7 @@ "label\n" "string.text" msgid "1." -msgstr "" +msgstr "1." #: licensedialog.ui msgctxt "" @@ -158,7 +158,7 @@ "label\n" "string.text" msgid "2." -msgstr "" +msgstr "2." #: licensedialog.ui msgctxt "" @@ -167,7 +167,7 @@ "label\n" "string.text" msgid "Read the complete License Agreement. Use the scroll bar or the 'Scroll Down' button in this dialog to view the entire license text.\"" -msgstr "" +msgstr "Llegiu completament l'acord de llicència. Utilitzeu la barra de desplaçament o el botó «Desplaça avall» en el quadre de diàleg per veure el text complet de la llicència." #: licensedialog.ui msgctxt "" @@ -176,7 +176,7 @@ "label\n" "string.text" msgid "Accept the License Agreement for the extension by pressing the 'Accept' button." -msgstr "" +msgstr "Accepteu l'acord de llicència de l'extensió fent clic al botó «Accepta»." #: licensedialog.ui msgctxt "" @@ -185,7 +185,7 @@ "label\n" "string.text" msgid "_Scroll Down" -msgstr "" +msgstr "Desplaçament a_vall" #: showlicensedialog.ui msgctxt "" @@ -194,7 +194,7 @@ "title\n" "string.text" msgid "Extension Software License Agreement" -msgstr "" +msgstr "Acord de llicència de l'extensió" #: updatedialog.ui msgctxt "" @@ -203,7 +203,7 @@ "title\n" "string.text" msgid "Extension Update" -msgstr "" +msgstr "Actualització d'extensions" #: updatedialog.ui msgctxt "" @@ -212,7 +212,7 @@ "label\n" "string.text" msgid "_Install" -msgstr "" +msgstr "_Instal·la" #: updatedialog.ui msgctxt "" @@ -221,7 +221,7 @@ "label\n" "string.text" msgid "_Available extension updates" -msgstr "" +msgstr "_Actualitzacions d'extensions disponibles" #: updatedialog.ui msgctxt "" @@ -230,7 +230,7 @@ "label\n" "string.text" msgid "Checking..." -msgstr "" +msgstr "S'està comprovant..." #: updatedialog.ui msgctxt "" @@ -239,7 +239,7 @@ "label\n" "string.text" msgid "_Show all updates" -msgstr "" +msgstr "_Mostra totes les actualitzacions" #: updatedialog.ui msgctxt "" @@ -248,7 +248,7 @@ "label\n" "string.text" msgid "Description" -msgstr "" +msgstr "Descripció" #: updatedialog.ui msgctxt "" @@ -257,7 +257,7 @@ "label\n" "string.text" msgid "Publisher:" -msgstr "" +msgstr "Editor:" #: updatedialog.ui msgctxt "" @@ -266,7 +266,7 @@ "label\n" "string.text" msgid "button" -msgstr "" +msgstr "botó" #: updatedialog.ui msgctxt "" @@ -275,7 +275,7 @@ "label\n" "string.text" msgid "What is new:" -msgstr "" +msgstr "El que és nou:" #: updatedialog.ui msgctxt "" @@ -284,4 +284,4 @@ "label\n" "string.text" msgid "Release notes" -msgstr "" +msgstr "Notes de la versió" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dictionaries/hu_HU/dialog.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/dictionaries/hu_HU/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/dictionaries/hu_HU/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/dictionaries/hu_HU/dialog.po 2014-09-16 19:55:40.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:01+0100\n" -"PO-Revision-Date: 2014-02-22 22:29+0000\n" -"Last-Translator: Jordi \n" +"POT-Creation-Date: 2014-05-02 00:01+0200\n" +"PO-Revision-Date: 2014-04-21 19:28+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" -"Language: ca-XV\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: Pootle 2.5.0\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393108177.0\n" +"X-POOTLE-MTIME: 1398108511.000000\n" #: hu_HU_en_US.properties msgctxt "" @@ -142,7 +142,7 @@ "dup3\n" "property.text" msgid "Allow previous checkings with affixes" -msgstr "Permet les comprovacions anteriors amb prefixes" +msgstr "Permet les comprovacions anteriors amb prefixos" #: hu_HU_en_US.properties msgctxt "" @@ -198,7 +198,7 @@ "ligature\n" "property.text" msgid "Ligature suggestion" -msgstr "Sugeriment de lligadura" +msgstr "Suggeriment de lligadura" #: hu_HU_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/editeng/source/accessibility.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/editeng/source/accessibility.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/editeng/source/accessibility.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/editeng/source/accessibility.po 2014-09-16 19:55:40.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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2011-04-05 19:11+0200\n" -"Last-Translator: jmontane \n" +"PO-Revision-Date: 2014-07-16 20:22+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405542136.000000\n" #: accessibility.src msgctxt "" @@ -37,7 +38,7 @@ "RID_SVXSTR_A11Y_PARAGRAPH_DESCRIPTION\n" "string.text" msgid "Paragraph: $(ARG) " -msgstr "" +msgstr "Paràgraf: $(ARG) " #: accessibility.src msgctxt "" @@ -45,4 +46,4 @@ "RID_SVXSTR_A11Y_PARAGRAPH_NAME\n" "string.text" msgid "Paragraph $(ARG)" -msgstr "" +msgstr "Paràgraf $(ARG)" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/editeng/source/items.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/editeng/source/items.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/editeng/source/items.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/editeng/source/items.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:06+0200\n" -"PO-Revision-Date: 2013-06-08 21:17+0000\n" +"PO-Revision-Date: 2014-07-16 20:23+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1370726232.0\n" +"X-POOTLE-MTIME: 1405542226.000000\n" #: page.src msgctxt "" @@ -1022,7 +1022,7 @@ "RID_FINE_DASHED\n" "string.text" msgid "Single, fine dashed" -msgstr "" +msgstr "Simple, discontínua fina" #: svxitems.src msgctxt "" @@ -1030,7 +1030,7 @@ "RID_DOUBLE_THIN\n" "string.text" msgid "Double, fixed thin lines" -msgstr "" +msgstr "Doble, línies fines fixes" #: svxitems.src msgctxt "" @@ -1038,7 +1038,7 @@ "RID_DASH_DOT\n" "string.text" msgid "Single, dash-dot" -msgstr "" +msgstr "Simple, traç-punt" #: svxitems.src msgctxt "" @@ -1046,7 +1046,7 @@ "RID_DASH_DOT_DOT\n" "string.text" msgid "Single, dash-dot-dot" -msgstr "" +msgstr "Simple, traç-punt-punt" #: svxitems.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/extensions/source/dbpilots.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/extensions/source/dbpilots.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/extensions/source/dbpilots.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/extensions/source/dbpilots.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,12 +2,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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:05+0200\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:06+0200\n" "PO-Revision-Date: 2011-04-05 19:11+0200\n" "Last-Translator: jmontane \n" "Language-Team: LANGUAGE \n" -"Language: ca_XV\n" +"Language: ca-valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -87,7 +87,7 @@ "FT_DATABASEFIELD_QUEST\n" "fixedtext.text" msgid "Do you want to save the value in a database field?" -msgstr "Voleu alçar el valor en un camp de la base de dades?" +msgstr "Voleu guardar el valor en un camp de la base de dades?" #: commonpagesdbp.src msgctxt "" @@ -96,7 +96,7 @@ "RB_STOREINFIELD_YES\n" "radiobutton.text" msgid "~Yes, I want to save it in the following database field:" -msgstr "~Sí, vull alçar-lo en el camp següent:" +msgstr "~Sí, vull guardar-lo en el camp següent:" #: commonpagesdbp.src msgctxt "" @@ -105,7 +105,7 @@ "RB_STOREINFIELD_NO\n" "radiobutton.text" msgid "~No, I only want to save the value in the form." -msgstr "~No, només vull alçar el valor en el formulari." +msgstr "~No, només vull guardar el valor en el formulari." #: commonpagesdbp.src msgctxt "" @@ -394,7 +394,7 @@ "RID_STR_GROUPWIZ_DBFIELD\n" "string.text" msgid "You can either save the value of the option group in a database field or use it for a later action." -msgstr "Podeu alçar el valor del grup d'opcions a un camp de base de dades o bé utilitzar-lo per a una acció posterior." +msgstr "Podeu guardar el valor del grup d'opcions a un camp de base de dades o bé utilitzar-lo per a una acció posterior." #: listcombopages.src msgctxt "" @@ -515,4 +515,4 @@ "RID_STR_COMBOWIZ_DBFIELD\n" "string.text" msgid "You can either save the value of the combo box in a database field or use it for display purposes." -msgstr "Podeu alçar el valor del quadre combinat en un camp d'una base de dades o bé utilitzar-lo amb finalitats de visualització." +msgstr "Podeu guardar el valor del quadre combinat en un camp d'una base de dades o bé utilitzar-lo amb finalitats de visualització." diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/extensions/source/propctrlr.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/extensions/source/propctrlr.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/extensions/source/propctrlr.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/extensions/source/propctrlr.po 2014-09-16 19:55:40.000000000 +0000 @@ -1106,7 +1106,7 @@ "9\n" "string.text" msgid "Save record" -msgstr "Alça el registre" +msgstr "Guarda el registre" #: formres.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/extensions/uiconfig/sabpilot/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/extensions/uiconfig/sabpilot/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/extensions/uiconfig/sabpilot/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/extensions/uiconfig/sabpilot/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,15 +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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2014-07-16 22:18+0000\n" +"Last-Translator: Joan \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-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405549115.000000\n" #: datasourcepage.ui msgctxt "" @@ -25,6 +27,9 @@ "\n" "Now, just enter the name under which you want to register the data source in %PRODUCTNAME." msgstr "" +"Esta és tota la informació necessària per integrar les vostres dades d'adreces en el %PRODUCTNAME.\n" +"\n" +"Ara escriviu el nom amb què voleu registrar la font de dades en el %PRODUCTNAME." #: datasourcepage.ui msgctxt "" @@ -33,7 +38,7 @@ "label\n" "string.text" msgid "Location" -msgstr "" +msgstr "Ubicació" #: datasourcepage.ui msgctxt "" @@ -42,7 +47,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Navega..." #: datasourcepage.ui msgctxt "" @@ -51,7 +56,7 @@ "label\n" "string.text" msgid "Make this address book available to all modules in %PRODUCTNAME." -msgstr "" +msgstr "Fes disponible esta llibreta d'adreces per a tots els mòduls del %PRODUCTNAME." #: datasourcepage.ui msgctxt "" @@ -60,7 +65,7 @@ "label\n" "string.text" msgid "Address book name" -msgstr "" +msgstr "Nom de la llibreta d'adreces" #: datasourcepage.ui msgctxt "" @@ -69,7 +74,7 @@ "label\n" "string.text" msgid "Another data source already has this name. As data sources have to have globally unique names, you need to choose another one." -msgstr "" +msgstr "Ja existeix una altra font de dades amb este nom. Heu de triar-ne un altre perquè el nom de la font de dades ha de ser globalment únic." #: fieldassignpage.ui msgctxt "" @@ -84,6 +89,11 @@ "\n" "Click the button below to open another dialog where you can enter the settings for your data source." msgstr "" +"Per incorporar les dades d'adreces de les plantilles, cal que el %PRODUCTNAME sàpiga quins camps contenen quines dades.\n" +"\n" +"Per exemple, podríeu haver guardat les adreces de correu en un camp anomenat «email», «E-mail», «EM» o qualsevol altra cosa.\n" +"\n" +"Feu clic al botó de sota per obrir un altre diàleg on entrar els paràmetres de la vostra font de dades." #: fieldassignpage.ui msgctxt "" @@ -92,7 +102,7 @@ "label\n" "string.text" msgid "Field Assignment" -msgstr "" +msgstr "Assignació de camps" #: invokeadminpage.ui msgctxt "" @@ -105,6 +115,9 @@ "\n" "Click the following button to open another dialog in which you then enter the necessary information." msgstr "" +"Per establir la nova font de dades cal informació addicional.\n" +"\n" +"Feu clic al botó següent per obrir un altre diàleg i especificar-hi la informació necessària." #: invokeadminpage.ui msgctxt "" @@ -113,7 +126,7 @@ "label\n" "string.text" msgid "Settings" -msgstr "" +msgstr "Paràmetres" #: invokeadminpage.ui msgctxt "" @@ -125,6 +138,8 @@ "The connection to the data source could not be established.\n" "Before you proceed, please check the settings made, or (on the previous page) choose another address data source type." msgstr "" +"No s'ha pogut establir la connexió amb la font de dades.\n" +"Abans de continuar, comproveu els paràmetres o trieu en la pàgina anterior un altre tipus de font de dades d'adreces." #: selecttablepage.ui msgctxt "" @@ -136,6 +151,8 @@ "The external data source you have chosen contains more than one address book.\n" "Please select the one you mainly want to work with:" msgstr "" +"La font de dades externes que heu triat conté més d'una llibreta d'adreces.\n" +"Trieu aquella amb què vulgueu treballar principalment:" #: selecttypepage.ui msgctxt "" @@ -144,7 +161,7 @@ "label\n" "string.text" msgid "Evolution" -msgstr "" +msgstr "Evolució" #: selecttypepage.ui msgctxt "" @@ -153,7 +170,7 @@ "label\n" "string.text" msgid "Groupwise" -msgstr "" +msgstr "Groupwise" #: selecttypepage.ui msgctxt "" @@ -162,7 +179,7 @@ "label\n" "string.text" msgid "Evolution LDAP" -msgstr "" +msgstr "LDAP de l'Evolution" #: selecttypepage.ui msgctxt "" @@ -171,7 +188,7 @@ "label\n" "string.text" msgid "Firefox/Iceweasel" -msgstr "" +msgstr "Firefox/Iceweasel" #: selecttypepage.ui msgctxt "" @@ -180,7 +197,7 @@ "label\n" "string.text" msgid "Thunderbird/Icedove" -msgstr "" +msgstr "Thunderbird/Icedove" #: selecttypepage.ui msgctxt "" @@ -189,7 +206,7 @@ "label\n" "string.text" msgid "KDE address book" -msgstr "" +msgstr "Llibreta d'adreces del KDE" #: selecttypepage.ui msgctxt "" @@ -198,7 +215,7 @@ "label\n" "string.text" msgid "Mac OS X address book" -msgstr "" +msgstr "Llibreta d'adreces del Mac OS X" #: selecttypepage.ui msgctxt "" @@ -207,7 +224,7 @@ "label\n" "string.text" msgid "LDAP address data" -msgstr "" +msgstr "Dades d'adreça LDAP" #: selecttypepage.ui msgctxt "" @@ -216,7 +233,7 @@ "label\n" "string.text" msgid "Outlook address book" -msgstr "" +msgstr "Llibreta d'adreces de l'Outlook" #: selecttypepage.ui msgctxt "" @@ -225,7 +242,7 @@ "label\n" "string.text" msgid "Windows system address book" -msgstr "" +msgstr "Llibreta d'adreces del Windows" #: selecttypepage.ui msgctxt "" @@ -234,7 +251,7 @@ "label\n" "string.text" msgid "Other external data source" -msgstr "" +msgstr "Un altre tipus de dades externes" #: selecttypepage.ui msgctxt "" @@ -243,7 +260,7 @@ "label\n" "string.text" msgid "Please select the type of your external address book" -msgstr "" +msgstr "Seleccioneu el tipus de la llibreta d'adreces externa" #: selecttypepage.ui msgctxt "" @@ -256,3 +273,6 @@ "\n" "This wizard helps you create the data source." msgstr "" +"El %PRODUCTNAME vos permet accedir a les dades d'adreces present al sistema. Per fer-ho, es crearà una font de dades del %PRODUCTNAME que contindrà les dades d'adreces en forma tabular.\n" +"\n" +"Este auxiliar vos ajuda a crear la font de dades esmentada." diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/extensions/uiconfig/sbibliography/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/extensions/uiconfig/sbibliography/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/extensions/uiconfig/sbibliography/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/extensions/uiconfig/sbibliography/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,15 +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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2014-07-14 21:16+0000\n" +"Last-Translator: Joan \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-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405372586.000000\n" #: choosedatasourcedialog.ui msgctxt "" @@ -21,7 +23,7 @@ "title\n" "string.text" msgid "Choose Data Source" -msgstr "" +msgstr "Seleccioneu la font de dades" #: choosedatasourcedialog.ui msgctxt "" @@ -30,4 +32,4 @@ "label\n" "string.text" msgid "Entry" -msgstr "" +msgstr "Entrada" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/extensions/uiconfig/spropctrlr/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/extensions/uiconfig/spropctrlr/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/extensions/uiconfig/spropctrlr/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/extensions/uiconfig/spropctrlr/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:06+0200\n" -"PO-Revision-Date: 2014-01-07 21:30+0000\n" +"PO-Revision-Date: 2014-07-14 21:16+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1389130236.0\n" +"X-POOTLE-MTIME: 1405372614.000000\n" #: controlfontdialog.ui msgctxt "" @@ -23,7 +23,7 @@ "title\n" "string.text" msgid "Character" -msgstr "" +msgstr "Caràcter" #: controlfontdialog.ui msgctxt "" @@ -32,7 +32,7 @@ "label\n" "string.text" msgid "Font" -msgstr "" +msgstr "Tipus de lletra" #: controlfontdialog.ui msgctxt "" @@ -41,7 +41,7 @@ "label\n" "string.text" msgid "Font Effects" -msgstr "" +msgstr "Efectes de lletra" #: datatypedialog.ui msgctxt "" @@ -50,7 +50,7 @@ "title\n" "string.text" msgid "New Data Type" -msgstr "" +msgstr "Tipus de dades nou" #: datatypedialog.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "Type a name for the new data type:" -msgstr "" +msgstr "Escriviu un nom per al tipus de dades nou:" #: taborder.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: Libreoffice42\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-01-29 21:06+0100\n" -"Last-Translator: Jordi Serratosa \n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" +"PO-Revision-Date: 2014-07-16 21:21+0000\n" +"Last-Translator: Joan \n" "Language-Team: Softcatalà\n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1390683528.0\n" +"X-POOTLE-MTIME: 1405545665.000000\n" #: AbiWord.xcu msgctxt "" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Document del BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Document del ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -122,7 +122,7 @@ "UIName\n" "value.text" msgid "ClarisResolve Document" -msgstr "" +msgstr "Document del ClarisResolve" #: CorelDrawDocument.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Document del GreatWorks" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -581,7 +581,7 @@ "UIName\n" "value.text" msgid "Microsoft Works Document" -msgstr "" +msgstr "Document del Microsoft Works" #: MacDoc.xcu msgctxt "" @@ -599,7 +599,7 @@ "UIName\n" "value.text" msgid "MacPaint (v1)" -msgstr "" +msgstr "MacPaint (v1)" #: MacWrite.xcu msgctxt "" @@ -644,7 +644,7 @@ "UIName\n" "value.text" msgid "Wingz for Mac Document" -msgstr "" +msgstr "Document del Wingz per a Mac" #: Mac_Word.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Document del Microsoft Works per a Mac (v1-v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,7 +670,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -679,7 +679,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu @@ -1022,7 +1022,7 @@ "UIName\n" "value.text" msgid "SuperPaint (v1)" -msgstr "" +msgstr "SuperPaint (v1)" #: T602Document.xcu msgctxt "" @@ -1103,7 +1103,7 @@ "UIName\n" "value.text" msgid "Text - Choose Encoding (Master Document)" -msgstr "" +msgstr "Text - trieu la codificació (document mestre)" #: Text__encoded___StarWriter_Web__ui.xcu msgctxt "" @@ -1112,7 +1112,7 @@ "UIName\n" "value.text" msgid "Text - Choose Encoding (Writer/Web)" -msgstr "" +msgstr "Text - trieu la codificació (Writer/Web)" #: Text__encoded__ui.xcu msgctxt "" @@ -1121,7 +1121,7 @@ "UIName\n" "value.text" msgid "Text - Choose Encoding" -msgstr "" +msgstr "Text - trieu la codificació" #: Text_ui.xcu msgctxt "" @@ -1931,7 +1931,7 @@ "UIName\n" "value.text" msgid "MOV - QuickTime File Format" -msgstr "" +msgstr "MOV - Format de fitxer del QuickTime" #: placeware_Export.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/filter/source/config/fragments/internalgraphicfilters.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/filter/source/config/fragments/internalgraphicfilters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/filter/source/config/fragments/internalgraphicfilters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/filter/source/config/fragments/internalgraphicfilters.po 2014-09-16 19:55:40.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: 2014-05-02 00:04+0200\n" -"PO-Revision-Date: 2011-04-05 19:11+0200\n" -"Last-Translator: jmontane \n" +"PO-Revision-Date: 2014-07-16 21:20+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405545654.000000\n" #: bmp_Export.xcu msgctxt "" @@ -139,7 +140,7 @@ "UIName\n" "value.text" msgid "MOV - QuickTime File Format" -msgstr "" +msgstr "MOV - Format de fitxer del QuickTime" #: pbm_Export.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/filter/source/graphicfilter/eps.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/filter/source/graphicfilter/eps.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/filter/source/graphicfilter/eps.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/filter/source/graphicfilter/eps.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,12 +2,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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" +"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:02+0200\n" "PO-Revision-Date: 2011-04-05 19:11+0200\n" "Last-Translator: jmontane \n" "Language-Team: LANGUAGE \n" -"Language: ca_XV\n" +"Language: ca-valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,5 +24,5 @@ "Warning: Not all of the imported EPS graphics could be saved at level1\n" "as some are at a higher level!" msgstr "" -"Avís: No s'han pogut alçar en el nivell 1 tots els gràfics EPS importats,\n" +"Avís: No s'han pogut guardar en el nivell 1 tots els gràfics EPS importats,\n" "ja que alguns es troben en un nivell superior." diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/filter/source/pdf.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/filter/source/pdf.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/filter/source/pdf.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/filter/source/pdf.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:02+0200\n" -"PO-Revision-Date: 2013-12-08 21:49+0000\n" +"PO-Revision-Date: 2014-07-16 21:22+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1386539370.0\n" +"X-POOTLE-MTIME: 1405545745.000000\n" #: impdialog.src msgctxt "" @@ -54,7 +54,7 @@ "STR_WARN_TRANSP_PDFA_SHORT\n" "string.text" msgid "PDF/A transparency" -msgstr "" +msgstr "Transparència PDF/A" #: impdialog.src msgctxt "" @@ -62,7 +62,7 @@ "STR_WARN_TRANSP_PDFA\n" "string.text" msgid "PDF/A forbids transparency. A transparent object was painted opaque instead." -msgstr "" +msgstr "El PDF/A prohibeix la transparència. S'ha pintat com a opac un objecte transparent." #: impdialog.src msgctxt "" @@ -70,7 +70,7 @@ "STR_WARN_TRANSP_VERSION_SHORT\n" "string.text" msgid "PDF version conflict" -msgstr "" +msgstr "Conflicte de versions de PDF" #: impdialog.src msgctxt "" @@ -78,7 +78,7 @@ "STR_WARN_TRANSP_VERSION\n" "string.text" msgid "Transparency is not supported in PDF versions earlier than PDF 1.4. A transparent object was painted opaque instead" -msgstr "" +msgstr "La transparència no és compatible amb versions de PDF anteriors a la PDF 1.4. S'ha pintat com a opac un objecte transparent." #: impdialog.src msgctxt "" @@ -86,7 +86,7 @@ "STR_WARN_FORMACTION_PDFA_SHORT\n" "string.text" msgid "PDF/A form action" -msgstr "" +msgstr "Acció de formulari PDF/A" #: impdialog.src msgctxt "" @@ -94,7 +94,7 @@ "STR_WARN_FORMACTION_PDFA\n" "string.text" msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped" -msgstr "" +msgstr "Un control de formulari contenia una acció no compatible amb l'estàndard PDF/A. Esta acció ha estat ignorada." #: impdialog.src msgctxt "" @@ -102,7 +102,7 @@ "STR_WARN_TRANSP_CONVERTED\n" "string.text" msgid "Some objects were converted to an image in order to remove transparencies, because the target PDF format does not support transparencies. Possibly better results can be achieved if you remove the transparent objects before exporting." -msgstr "" +msgstr "Alguns objectes s'han convertit en imatges per eliminar les transparències, perquè el format PDF de destinació no permet l'ús de transparències. És possible que obtingueu millors resultats si elimineu els objectes transparents abans d'exportar." #: impdialog.src msgctxt "" @@ -110,7 +110,7 @@ "STR_WARN_TRANSP_CONVERTED_SHORT\n" "string.text" msgid "Transparencies removed" -msgstr "" +msgstr "S'han eliminat les transparències" #: pdf.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/filter/source/xsltdialog.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/filter/source/xsltdialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/filter/source/xsltdialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/filter/source/xsltdialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,11 +3,11 @@ msgstr "" "Project-Id-Version: PACKAGE 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:01+0100\n" +"POT-Creation-Date: 2014-05-02 00:04+0200\n" "PO-Revision-Date: 2013-10-28 08:53+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" -"Language: ca-XV\n" +"Language: ca-valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -150,7 +150,7 @@ "STR_FILTER_HAS_BEEN_SAVED\n" "string.text" msgid "The XML filter '%s' has been saved as package '%s'. " -msgstr "S'ha alçat el filtre XML «%s» amb el nom de paquet «%s». " +msgstr "S'ha guardat el filtre XML «%s» amb el nom de paquet «%s». " #: xmlfilterdialogstrings.src msgctxt "" @@ -158,7 +158,7 @@ "STR_FILTERS_HAVE_BEEN_SAVED\n" "string.text" msgid "%s XML filters have been saved in the package '%s'." -msgstr "S'han alçat %s filtres XML en el paquet «%s»." +msgstr "S'han guardat %s filtres XML en el paquet «%s»." #: xmlfilterdialogstrings.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/filter/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/filter/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/filter/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/filter/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-05-02 00:02+0200\n" -"PO-Revision-Date: 2014-02-22 22:55+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-07-14 21:42+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393109711.0\n" +"X-POOTLE-MTIME: 1405374144.000000\n" #: impswfdialog.ui msgctxt "" @@ -1278,7 +1278,7 @@ "title\n" "string.text" msgid "Problems during PDF export" -msgstr "" +msgstr "Problemes en l'exportació a PDF" #: warnpdfdialog.ui msgctxt "" @@ -1287,7 +1287,7 @@ "text\n" "string.text" msgid "During PDF export the following problems occurred:" -msgstr "" +msgstr "Durant l'exportació a PDF, s'han produït els problemes següents:" #: xmlfiltersettings.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/forms/source/resource.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/forms/source/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/forms/source/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/forms/source/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,16 +3,16 @@ msgstr "" "Project-Id-Version: PACKAGE 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:01+0100\n" +"POT-Creation-Date: 2014-05-02 00:02+0200\n" "PO-Revision-Date: 2014-02-22 22:31+0000\n" "Last-Translator: Jordi \n" "Language-Team: LANGUAGE \n" -"Language: ca-XV\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: Pootle 2.5.0\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1393108267.0\n" @@ -194,7 +194,7 @@ "Do you want to save your changes?" msgstr "" "S'ha modificat el contingut del formulari actual.\n" -"Voleu alçar els canvis?" +"Voleu guardar els canvis?" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/formula/source/core/resource.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/formula/source/core/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/formula/source/core/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/formula/source/core/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-04 18:20+0200\n" +"POT-Creation-Date: 2014-09-04 14:52+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -821,7 +821,7 @@ "SC_OPCODE_STD_NORM_DIST_MS\n" "string.text" msgid "NORM.S.DIST" -msgstr "" +msgstr "DIST.NORM.EST" #: core_resource.src msgctxt "" @@ -857,7 +857,7 @@ "SC_OPCODE_S_NORM_INV_MS\n" "string.text" msgid "NORM.S.INV" -msgstr "" +msgstr "INV.NORM.EST" #: core_resource.src msgctxt "" @@ -875,7 +875,7 @@ "SC_OPCODE_GAMMA_LN_MS\n" "string.text" msgid "GAMMALN.PRECISE" -msgstr "" +msgstr "LNGAMMA.PRECIS" #: core_resource.src msgctxt "" @@ -929,7 +929,7 @@ "SC_OPCODE_CEIL_MS\n" "string.text" msgid "CEILING.PRECISE" -msgstr "" +msgstr "ARRODMULTSUP.PRECIS" #: core_resource.src msgctxt "" @@ -938,7 +938,7 @@ "SC_OPCODE_CEIL_ISO\n" "string.text" msgid "ISO.CEILING" -msgstr "" +msgstr "ARRODMULTSUP.ISO" #: core_resource.src msgctxt "" @@ -947,7 +947,7 @@ "SC_OPCODE_FLOOR_MS\n" "string.text" msgid "FLOOR.PRECISE" -msgstr "" +msgstr "ARRODMULTINF.PRECIS" #: core_resource.src msgctxt "" @@ -1388,7 +1388,7 @@ "SC_OPCODE_NORM_DIST_MS\n" "string.text" msgid "NORM.DIST" -msgstr "" +msgstr "DIST.NORM" #: core_resource.src msgctxt "" @@ -2216,7 +2216,7 @@ "SC_OPCODE_LOG_NORM_DIST_MS\n" "string.text" msgid "LOGNORM.DIST" -msgstr "" +msgstr "DIST.LOGNORM" #: core_resource.src msgctxt "" @@ -2234,7 +2234,7 @@ "SC_OPCODE_T_DIST_2T\n" "string.text" msgid "T.DIST.2T" -msgstr "" +msgstr "DIST.T.BILATERAL" #: core_resource.src msgctxt "" @@ -2243,7 +2243,7 @@ "SC_OPCODE_T_DIST_MS\n" "string.text" msgid "T.DIST" -msgstr "" +msgstr "DIST.T" #: core_resource.src msgctxt "" @@ -2252,7 +2252,7 @@ "SC_OPCODE_T_DIST_RT\n" "string.text" msgid "T.DIST.RT" -msgstr "" +msgstr "DIST.T.DRETA" #: core_resource.src msgctxt "" @@ -2333,7 +2333,7 @@ "SC_OPCODE_NEG_BINOM_DIST_MS\n" "string.text" msgid "NEGBINOM.DIST" -msgstr "" +msgstr "DIST.BINOMNEG" #: core_resource.src msgctxt "" @@ -2450,7 +2450,7 @@ "SC_OPCODE_MODAL_VALUE_MS\n" "string.text" msgid "MODE.SNGL" -msgstr "" +msgstr "MODA.UN" #: core_resource.src msgctxt "" @@ -2459,7 +2459,7 @@ "SC_OPCODE_MODAL_VALUE_MULTI\n" "string.text" msgid "MODE.MULT" -msgstr "" +msgstr "MODA.MULT" #: core_resource.src msgctxt "" @@ -2477,7 +2477,7 @@ "SC_OPCODE_Z_TEST_MS\n" "string.text" msgid "Z.TEST" -msgstr "" +msgstr "PROVA.Z" #: core_resource.src msgctxt "" @@ -2495,7 +2495,7 @@ "SC_OPCODE_T_TEST_MS\n" "string.text" msgid "T.TEST" -msgstr "" +msgstr "PROVA.T" #: core_resource.src msgctxt "" @@ -2531,7 +2531,7 @@ "SC_OPCODE_PERCENTILE_INC\n" "string.text" msgid "PERCENTILE.INC" -msgstr "" +msgstr "PERCENTIL.INC" #: core_resource.src msgctxt "" @@ -2540,7 +2540,7 @@ "SC_OPCODE_PERCENT_RANK_INC\n" "string.text" msgid "PERCENTRANK.INC" -msgstr "" +msgstr "RANG.PERCENT.INC" #: core_resource.src msgctxt "" @@ -2549,7 +2549,7 @@ "SC_OPCODE_QUARTILE_INC\n" "string.text" msgid "QUARTILE.INC" -msgstr "" +msgstr "QUARTIL.INC" #: core_resource.src msgctxt "" @@ -2558,7 +2558,7 @@ "SC_OPCODE_RANK_EQ\n" "string.text" msgid "RANK.EQ" -msgstr "" +msgstr "RANG.EQ" #: core_resource.src msgctxt "" @@ -2567,7 +2567,7 @@ "SC_OPCODE_PERCENTILE_EXC\n" "string.text" msgid "PERCENTILE.EXC" -msgstr "" +msgstr "PERCENTIL.EXC" #: core_resource.src msgctxt "" @@ -2576,7 +2576,7 @@ "SC_OPCODE_PERCENT_RANK_EXC\n" "string.text" msgid "PERCENTRANK.EXC" -msgstr "" +msgstr "RANG.PERCENT.EXC" #: core_resource.src msgctxt "" @@ -2585,7 +2585,7 @@ "SC_OPCODE_QUARTILE_EXC\n" "string.text" msgid "QUARTILE.EXC" -msgstr "" +msgstr "QUARTIL.EXC" #: core_resource.src msgctxt "" @@ -2594,7 +2594,7 @@ "SC_OPCODE_RANK_AVG\n" "string.text" msgid "RANK.AVG" -msgstr "" +msgstr "RANG.MITJANA" #: core_resource.src msgctxt "" @@ -2648,7 +2648,7 @@ "SC_OPCODE_NORM_INV_MS\n" "string.text" msgid "NORM.INV" -msgstr "" +msgstr "INV.NORM" #: core_resource.src msgctxt "" @@ -2873,7 +2873,7 @@ "SC_OPCODE_GAMMA_DIST_MS\n" "string.text" msgid "GAMMA.DIST" -msgstr "" +msgstr "DIST.GAMMA" #: core_resource.src msgctxt "" @@ -2891,7 +2891,7 @@ "SC_OPCODE_GAMMA_INV_MS\n" "string.text" msgid "GAMMA.INV" -msgstr "" +msgstr "INV.GAMMA" #: core_resource.src msgctxt "" @@ -2909,7 +2909,7 @@ "SC_OPCODE_T_INV_2T\n" "string.text" msgid "T.INV.2T" -msgstr "" +msgstr "INV.T.BILATERAL" #: core_resource.src msgctxt "" @@ -2918,7 +2918,7 @@ "SC_OPCODE_T_INV_MS\n" "string.text" msgid "T.INV" -msgstr "" +msgstr "INV.T" #: core_resource.src msgctxt "" @@ -2972,7 +2972,7 @@ "SC_OPCODE_LOG_INV_MS\n" "string.text" msgid "LOGNORM.INV" -msgstr "" +msgstr "INV.LOGNORM" #: core_resource.src msgctxt "" @@ -3053,7 +3053,7 @@ "SC_OPCODE_NETWORKDAYS_MS\n" "string.text" msgid "NETWORKDAYS.INTL" -msgstr "" +msgstr "DIESFEINERSNETS.INTL" #: core_resource.src msgctxt "" @@ -3062,7 +3062,7 @@ "SC_OPCODE_WORKDAY_MS\n" "string.text" msgid "WORKDAY.INTL" -msgstr "" +msgstr "DIAFEINER.INTL" #: core_resource.src msgctxt "" @@ -3341,7 +3341,7 @@ "SC_OPCODE_COLOR\n" "string.text" msgid "COLOR" -msgstr "" +msgstr "COLOR" #: core_resource.src msgctxt "" @@ -3359,7 +3359,7 @@ "SC_OPCODE_ERF_MS\n" "string.text" msgid "ERF.PRECISE" -msgstr "" +msgstr "FER.PRECIS" #: core_resource.src msgctxt "" @@ -3368,4 +3368,4 @@ "SC_OPCODE_ERFC_MS\n" "string.text" msgid "ERFC.PRECISE" -msgstr "" +msgstr "FERC.PRECIS" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/formula/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/formula/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/formula/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/formula/source/ui/dlg.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" -"PO-Revision-Date: 2011-04-05 19:11+0200\n" -"Last-Translator: jmontane \n" +"PO-Revision-Date: 2014-08-25 11:50+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1408967412.000000\n" #: formdlgs.src msgctxt "" @@ -121,7 +122,7 @@ "WND_RESULT\n" "fixedtext.text" msgid "Function result" -msgstr "" +msgstr "Resultat de la funció" #: formdlgs.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/fpicker/source/office.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/fpicker/source/office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/fpicker/source/office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/fpicker/source/office.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:01+0200\n" -"PO-Revision-Date: 2012-11-22 20:20+0000\n" +"PO-Revision-Date: 2014-07-16 21:12+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1353615645.0\n" +"X-POOTLE-MTIME: 1405545178.000000\n" #: OfficeFilePicker.src msgctxt "" @@ -30,7 +30,7 @@ "STR_SVT_FILEPICKER_PASSWORD\n" "string.text" msgid "Save with pass~word" -msgstr "Alça amb contrasen~ya" +msgstr "Guarda amb contrasen~ya" #: OfficeFilePicker.src msgctxt "" @@ -153,7 +153,7 @@ "BTN_EXPLORERFILE_CONNECT_TO_SERVER\n" "pushbutton.text" msgid "Servers..." -msgstr "" +msgstr "Servidors..." #: iodlg.src msgctxt "" @@ -198,7 +198,7 @@ "CB_EXPLORERFILE_PASSWORD\n" "checkbox.text" msgid "Save with password" -msgstr "Alça amb contrasenya" +msgstr "Guarda amb contrasenya" #: iodlg.src msgctxt "" @@ -243,7 +243,7 @@ "STR_EXPLORERFILE_SAVE\n" "string.text" msgid "Save as" -msgstr "Anomena i alça" +msgstr "Anomena i guarda" #: iodlg.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/fpicker/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/fpicker/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/fpicker/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/fpicker/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,15 +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: 2014-05-02 00:01+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2014-07-16 21:13+0000\n" +"Last-Translator: Joan \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-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405545206.000000\n" #: foldernamedialog.ui msgctxt "" @@ -21,7 +23,7 @@ "title\n" "string.text" msgid "Folder Name ?" -msgstr "" +msgstr "Nom de la carpeta?" #: foldernamedialog.ui msgctxt "" @@ -30,7 +32,7 @@ "label\n" "string.text" msgid "Na_me" -msgstr "" +msgstr "No_m" #: foldernamedialog.ui msgctxt "" @@ -39,4 +41,4 @@ "label\n" "string.text" msgid "Create new folder" -msgstr "" +msgstr "Crea una carpeta nova" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/framework/source/classes.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/framework/source/classes.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/framework/source/classes.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/framework/source/classes.po 2014-09-16 19:55:40.000000000 +0000 @@ -116,7 +116,7 @@ "STR_SAVECOPYDOC\n" "string.text" msgid "Save Copy ~as..." -msgstr "~Anomena i alça la còpia..." +msgstr "~Anomena i guarda la còpia..." #: resource.src msgctxt "" @@ -172,7 +172,7 @@ "Press the 'Retry' button after you have allocated more free disk space to retry saving the data.\n" "\n" msgstr "" -"El %PRODUCTNAME no ha pogut alçar informació interna important perquè no hi ha espai de disc suficient a:\n" +"El %PRODUCTNAME no ha pogut guardar informació interna important perquè no hi ha espai de disc suficient a:\n" "%PATH\n" "\n" "No podreu continuar treballant amb el %PRODUCTNAME sense fer més espai de disc en aquella ubicació.\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2013-05-24 18:45+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" @@ -13056,14 +13056,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programació al %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "La funció d'enregistrament de macros només està disponible per als documents de text del %PRODUCTNAME Writer i per als fulls de càlcul del %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/librelogo/source/pythonpath.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/librelogo/source/pythonpath.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/librelogo/source/pythonpath.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/librelogo/source/pythonpath.po 2014-09-16 19:55:40.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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-01-29 22:12+0100\n" -"Last-Translator: Jordi Serratosa \n" +"PO-Revision-Date: 2014-07-16 20:21+0000\n" +"Last-Translator: Joan \n" "Language-Team: none\n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369559553.0\n" +"X-POOTLE-MTIME: 1405542085.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -254,7 +254,7 @@ "FILLTRANSPARENCY\n" "property.text" msgid "filltransparency" -msgstr "" +msgstr "transparència.emplenament" #: LibreLogo_en_US.properties msgctxt "" @@ -262,7 +262,7 @@ "PENTRANSPARENCY\n" "property.text" msgid "pentransparency|linetransparency" -msgstr "" +msgstr "llapis.transparència|línia.transparència" #: LibreLogo_en_US.properties msgctxt "" @@ -638,7 +638,7 @@ "LOG10\n" "property.text" msgid "log10" -msgstr "" +msgstr "log10" #: LibreLogo_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/nlpsolver/src/locale.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/nlpsolver/src/locale.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/nlpsolver/src/locale.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/nlpsolver/src/locale.po 2014-09-16 19:55:40.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-02-22 22:58+0000\n" -"Last-Translator: Jordi \n" +"POT-Creation-Date: 2014-05-02 00:07+0200\n" +"PO-Revision-Date: 2014-04-27 18:59+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" -"Language: ca-XV\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: Pootle 2.5.0\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393109925.0\n" +"X-POOTLE-MTIME: 1398625185.000000\n" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -238,7 +238,7 @@ "NLPSolverStatusDialog.Message.StopStagnation\n" "property.text" msgid "Process stopped due to stagnation." -msgstr "S'ha aturat el procés degut a l'estancament." +msgstr "S'ha aturat el procés a causa de l'estancament." #: NLPSolverStatusDialog_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po 2014-09-16 19:55:40.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: 2014-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-02-22 22:39+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-07-17 06:52+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393108788.0\n" +"X-POOTLE-MTIME: 1405579968.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -1184,7 +1184,7 @@ "Label\n" "value.text" msgid "~Clear Print Area" -msgstr "" +msgstr "~Neteja l'àrea d'impressió" #: CalcCommands.xcu msgctxt "" @@ -1193,7 +1193,7 @@ "ContextLabel\n" "value.text" msgid "~Clear" -msgstr "" +msgstr "~Neteja" #: CalcCommands.xcu msgctxt "" @@ -1346,7 +1346,7 @@ "Label\n" "value.text" msgid "Fill Single ~Edit" -msgstr "" +msgstr "Omple una ~edició única" #: CalcCommands.xcu msgctxt "" @@ -1355,7 +1355,7 @@ "ContextLabel\n" "value.text" msgid "Single ~Edit" -msgstr "" +msgstr "~Edició senzilla" #: CalcCommands.xcu msgctxt "" @@ -1418,7 +1418,7 @@ "Label\n" "value.text" msgid "Statistics" -msgstr "" +msgstr "Estadístiques" #: CalcCommands.xcu msgctxt "" @@ -1490,7 +1490,7 @@ "Label\n" "value.text" msgid "~t-test..." -msgstr "" +msgstr "Prova ~t..." #: CalcCommands.xcu msgctxt "" @@ -1499,7 +1499,7 @@ "Label\n" "value.text" msgid "~F-test..." -msgstr "" +msgstr "Prova ~F..." #: CalcCommands.xcu msgctxt "" @@ -13433,7 +13433,7 @@ "Label\n" "value.text" msgid "~Zoom" -msgstr "" +msgstr "~Escala" #: GenericCommands.xcu msgctxt "" @@ -13703,7 +13703,7 @@ "Label\n" "value.text" msgid "Close Find Bar" -msgstr "" +msgstr "Tanca la barra de cerca" #: GenericCommands.xcu msgctxt "" @@ -14234,7 +14234,7 @@ "Label\n" "value.text" msgid "Save ~As..." -msgstr "~Anomena i alça..." +msgstr "~Anomena i guarda..." #: GenericCommands.xcu msgctxt "" @@ -14243,7 +14243,7 @@ "Label\n" "value.text" msgid "Save a Copy..." -msgstr "Alça una còpia..." +msgstr "Guarda una còpia..." #. This is the action to create a private working copy of the document on a server #: GenericCommands.xcu @@ -14785,7 +14785,7 @@ "Label\n" "value.text" msgid "Save As Template..." -msgstr "Alça com a plantilla..." +msgstr "Guarda com a plantilla..." #: GenericCommands.xcu msgctxt "" @@ -15766,7 +15766,7 @@ "Label\n" "value.text" msgid "Save Document As URL" -msgstr "Alça el document com a URL" +msgstr "Guarda el document com a URL" #: GenericCommands.xcu msgctxt "" @@ -16108,7 +16108,7 @@ "Label\n" "value.text" msgid "Paste Unformatted Text" -msgstr "" +msgstr "Enganxa text sense format" #: GenericCommands.xcu msgctxt "" @@ -17332,7 +17332,7 @@ "Label\n" "value.text" msgid "Save configuration" -msgstr "Alça la configuració" +msgstr "Guarda la configuració" #: GenericCommands.xcu msgctxt "" @@ -17359,7 +17359,7 @@ "Label\n" "value.text" msgid "Save BASIC" -msgstr "Alça el BASIC" +msgstr "Guarda el BASIC" #: GenericCommands.xcu msgctxt "" @@ -17755,7 +17755,7 @@ "Label\n" "value.text" msgid "Save Record" -msgstr "Alça el registre" +msgstr "Guarda el registre" #: GenericCommands.xcu msgctxt "" @@ -17854,7 +17854,7 @@ "Label\n" "value.text" msgid "Sa~ve All" -msgstr "Alça-~ho tot" +msgstr "Guarda-~ho tot" #: GenericCommands.xcu msgctxt "" @@ -18664,7 +18664,7 @@ "Label\n" "value.text" msgid "Format All Comments" -msgstr "" +msgstr "Formata tots els comentaris" #: GenericCommands.xcu msgctxt "" @@ -18700,7 +18700,7 @@ "Label\n" "value.text" msgid "Top" -msgstr "" +msgstr "Superior" #: GenericCommands.xcu msgctxt "" @@ -18709,7 +18709,7 @@ "Label\n" "value.text" msgid "Center ( vertical )" -msgstr "" +msgstr "Centrat (vertical)" #: GenericCommands.xcu msgctxt "" @@ -18718,7 +18718,7 @@ "Label\n" "value.text" msgid "Bottom" -msgstr "" +msgstr "Inferior" #: GenericCommands.xcu msgctxt "" @@ -19204,7 +19204,7 @@ "Label\n" "value.text" msgid "3D Model..." -msgstr "" +msgstr "Model 3D..." #: ImpressWindowState.xcu msgctxt "" @@ -19681,7 +19681,7 @@ "Label\n" "value.text" msgid "A~lignment..." -msgstr "A~lineació...." +msgstr "A~lineació..." #: MathCommands.xcu msgctxt "" @@ -20914,7 +20914,7 @@ "Label\n" "value.text" msgid "Save ~As..." -msgstr "~Anomena i alça..." +msgstr "~Anomena i guarda..." #: StartModuleCommands.xcu msgctxt "" @@ -22246,7 +22246,7 @@ "Label\n" "value.text" msgid "Borders" -msgstr "" +msgstr "Vores" #: WriterCommands.xcu msgctxt "" @@ -24469,7 +24469,7 @@ "Label\n" "value.text" msgid "Save Images..." -msgstr "Alça les imatges..." +msgstr "Guarda les imatges..." #: WriterCommands.xcu msgctxt "" @@ -24487,7 +24487,7 @@ "Label\n" "value.text" msgid "Navigate by" -msgstr "" +msgstr "Navega per" #: WriterCommands.xcu msgctxt "" @@ -24496,7 +24496,7 @@ "Label\n" "value.text" msgid "Previous Element" -msgstr "" +msgstr "Element anterior" #: WriterCommands.xcu msgctxt "" @@ -24505,7 +24505,7 @@ "Label\n" "value.text" msgid "Next Element" -msgstr "" +msgstr "Element següent" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office.po 2014-09-16 19:55:40.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: 2014-05-02 00:07+0200\n" -"PO-Revision-Date: 2014-02-22 22:35+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-07-17 06:51+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393108546.0\n" +"X-POOTLE-MTIME: 1405579913.000000\n" #: Addons.xcu msgctxt "" @@ -59,7 +59,7 @@ "Title\n" "value.text" msgid "Start Logo program (text or selected text of the documents) or an example (in empty documents)" -msgstr "" +msgstr "Inicia el programa Logo (el text o la la selecció de text dels documents) o un exemple (en documents buits)" #: Addons.xcu msgctxt "" @@ -104,7 +104,7 @@ "Title\n" "value.text" msgid "Set editing layout, format program or translate it into the language of the document" -msgstr "" +msgstr "Estableix el disseny d'edició, formata el programa o el tradueix a la llengua del document" #: Common.xcu msgctxt "" @@ -302,7 +302,7 @@ "HisDescription\n" "value.text" msgid "Collected Addresses" -msgstr "Adreces alçades" +msgstr "Adreces guardades" #: DataAccess.xcu msgctxt "" @@ -437,7 +437,7 @@ "HomeCity\n" "value.text" msgid "City" -msgstr "Població" +msgstr "Ciutat" #: DataAccess.xcu msgctxt "" @@ -671,7 +671,7 @@ "VerbUIName\n" "value.text" msgid "Save Copy ~as..." -msgstr "~Anomena i alça la còpia..." +msgstr "~Anomena i guarda la còpia..." #: Embedding.xcu msgctxt "" @@ -2399,7 +2399,7 @@ "Name\n" "value.text" msgid "City" -msgstr "Població" +msgstr "Ciutat" #: TableWizard.xcu msgctxt "" @@ -2408,7 +2408,7 @@ "ShortName\n" "value.text" msgid "City" -msgstr "Població" +msgstr "Ciutat" #: TableWizard.xcu msgctxt "" @@ -2732,7 +2732,7 @@ "Name\n" "value.text" msgid "City" -msgstr "Població" +msgstr "Ciutat" #: TableWizard.xcu msgctxt "" @@ -2741,7 +2741,7 @@ "ShortName\n" "value.text" msgid "City" -msgstr "Població" +msgstr "Ciutat" #: TableWizard.xcu msgctxt "" @@ -3173,7 +3173,7 @@ "Name\n" "value.text" msgid "City" -msgstr "Població" +msgstr "Ciutat" #: TableWizard.xcu msgctxt "" @@ -3182,7 +3182,7 @@ "ShortName\n" "value.text" msgid "City" -msgstr "Població" +msgstr "Ciutat" #: TableWizard.xcu msgctxt "" @@ -3614,7 +3614,7 @@ "Name\n" "value.text" msgid "City" -msgstr "Població" +msgstr "Ciutat" #: TableWizard.xcu msgctxt "" @@ -3623,7 +3623,7 @@ "ShortName\n" "value.text" msgid "City" -msgstr "Població" +msgstr "Ciutat" #: TableWizard.xcu msgctxt "" @@ -4001,7 +4001,7 @@ "Name\n" "value.text" msgid "City" -msgstr "Població" +msgstr "Ciutat" #: TableWizard.xcu msgctxt "" @@ -4010,7 +4010,7 @@ "ShortName\n" "value.text" msgid "City" -msgstr "Població" +msgstr "Ciutat" #: TableWizard.xcu msgctxt "" @@ -8105,7 +8105,7 @@ "Name\n" "value.text" msgid "City" -msgstr "Població" +msgstr "Ciutat" #: TableWizard.xcu msgctxt "" @@ -8114,7 +8114,7 @@ "ShortName\n" "value.text" msgid "City" -msgstr "Població" +msgstr "Ciutat" #: TableWizard.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/readlicense_oo/docs.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/readlicense_oo/docs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/readlicense_oo/docs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/readlicense_oo/docs.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:06+0200\n" -"PO-Revision-Date: 2014-01-20 20:11+0000\n" +"PO-Revision-Date: 2014-07-16 22:17+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1390248683.0\n" +"X-POOTLE-MTIME: 1405549040.000000\n" #: readme.xrm msgctxt "" @@ -118,7 +118,7 @@ "macxiOSX\n" "readmeitem.text" msgid "MacOSX 10.5 (Leopard) or higher, Intel or PowerPC processor" -msgstr "" +msgstr "MacOSX 10.5 (Leopard) o superior, processador Intel o PowerPC" #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/reportdesign/uiconfig/dbreport/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/reportdesign/uiconfig/dbreport/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/reportdesign/uiconfig/dbreport/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:02+0200\n" -"PO-Revision-Date: 2014-01-08 14:34+0000\n" +"PO-Revision-Date: 2014-07-16 20:27+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1389191692.0\n" +"X-POOTLE-MTIME: 1405542452.000000\n" #: backgrounddialog.ui msgctxt "" @@ -23,7 +23,7 @@ "title\n" "string.text" msgid "Section Setup" -msgstr "" +msgstr "Configuració de la secció" #: backgrounddialog.ui msgctxt "" @@ -32,7 +32,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Fons" #: chardialog.ui msgctxt "" @@ -41,7 +41,7 @@ "title\n" "string.text" msgid "Character Settings" -msgstr "" +msgstr "Configuració del caràcter" #: chardialog.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "Font" -msgstr "" +msgstr "Tipus de lletra" #: chardialog.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "Font Effects" -msgstr "" +msgstr "Efectes del tipus de lletra" #: chardialog.ui msgctxt "" @@ -68,7 +68,7 @@ "label\n" "string.text" msgid "Position" -msgstr "" +msgstr "Posició" #: chardialog.ui msgctxt "" @@ -77,7 +77,7 @@ "label\n" "string.text" msgid "Asian Layout" -msgstr "" +msgstr "Disposició asiàtica" #: chardialog.ui msgctxt "" @@ -86,7 +86,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Fons" #: chardialog.ui msgctxt "" @@ -95,7 +95,7 @@ "label\n" "string.text" msgid "Alignment" -msgstr "" +msgstr "Alineació" #: datetimedialog.ui msgctxt "" @@ -149,7 +149,7 @@ "title\n" "string.text" msgid "Page Setup" -msgstr "" +msgstr "Configuració de la pàgina" #: pagedialog.ui msgctxt "" @@ -158,7 +158,7 @@ "label\n" "string.text" msgid "Page" -msgstr "" +msgstr "Pàgina" #: pagedialog.ui msgctxt "" @@ -167,7 +167,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Fons" #: pagenumberdialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sc/source/ui/miscdlgs.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sc/source/ui/miscdlgs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sc/source/ui/miscdlgs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sc/source/ui/miscdlgs.po 2014-09-16 19:55:40.000000000 +0000 @@ -214,7 +214,7 @@ "FT_CONFLICTS\n" "fixedtext.text" msgid "There are conflicting changes in this shared spreadsheet. Conflicts must be resolved before saving the spreadsheet. Keep either own or other changes." -msgstr "Hi ha canvis en conflicte en este full de càlcul compartit. Estos conflictes s'han de resoldre abans d'alçar el full de càlcul. Podeu conservar els canvis propis o els aliens." +msgstr "Hi ha canvis en conflicte en este full de càlcul compartit. Estos conflictes s'han de resoldre abans de guardar el full de càlcul. Podeu conservar els canvis propis o els aliens." #: conflictsdlg.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sc/source/ui/src.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sc/source/ui/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sc/source/ui/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sc/source/ui/src.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-02-22 22:50+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-07-18 11:32+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393109400.0\n" +"X-POOTLE-MTIME: 1405683141.000000\n" #: condformatdlg.src msgctxt "" @@ -41,7 +41,7 @@ "Cell value is\n" "stringlist.text" msgid "Cell value is" -msgstr "" +msgstr "El valor de la cel·la és" #: condformatdlg.src msgctxt "" @@ -50,7 +50,7 @@ "Formula is\n" "stringlist.text" msgid "Formula is" -msgstr "" +msgstr "La fórmula és" #: condformatdlg.src msgctxt "" @@ -59,7 +59,7 @@ "Date is\n" "stringlist.text" msgid "Date is" -msgstr "" +msgstr "La data és" #: condformatdlg.src msgctxt "" @@ -122,7 +122,7 @@ "between\n" "stringlist.text" msgid "between" -msgstr "" +msgstr "entre" #: condformatdlg.src msgctxt "" @@ -131,7 +131,7 @@ "not between\n" "stringlist.text" msgid "not between" -msgstr "" +msgstr "fora de l'interval entre" #: condformatdlg.src msgctxt "" @@ -140,7 +140,7 @@ "duplicate\n" "stringlist.text" msgid "duplicate" -msgstr "" +msgstr "duplicat" #: condformatdlg.src msgctxt "" @@ -248,7 +248,7 @@ "Begins with\n" "stringlist.text" msgid "Begins with" -msgstr "" +msgstr "Comença per" #: condformatdlg.src msgctxt "" @@ -257,7 +257,7 @@ "Ends with\n" "stringlist.text" msgid "Ends with" -msgstr "" +msgstr "Acaba en" #: condformatdlg.src msgctxt "" @@ -266,7 +266,7 @@ "Contains\n" "stringlist.text" msgid "Contains" -msgstr "" +msgstr "Conté" #: condformatdlg.src msgctxt "" @@ -275,7 +275,7 @@ "Not Contains\n" "stringlist.text" msgid "Not Contains" -msgstr "" +msgstr "No conté" #: condformatdlg.src msgctxt "" @@ -338,7 +338,7 @@ "Automatic\n" "stringlist.text" msgid "Automatic" -msgstr "" +msgstr "Automàtic" #: condformatdlg.src msgctxt "" @@ -347,7 +347,7 @@ "Min\n" "stringlist.text" msgid "Min" -msgstr "" +msgstr "Mín" #: condformatdlg.src msgctxt "" @@ -356,7 +356,7 @@ "Max\n" "stringlist.text" msgid "Max" -msgstr "" +msgstr "Màx" #: condformatdlg.src msgctxt "" @@ -374,7 +374,7 @@ "Value\n" "stringlist.text" msgid "Value" -msgstr "" +msgstr "Valor" #: condformatdlg.src msgctxt "" @@ -2137,7 +2137,7 @@ "STR_PIVOTFUNC_COUNT\n" "string.text" msgid "COUNT" -msgstr "COUNT" +msgstr "COMPTA" #: globstr.src msgctxt "" @@ -2146,7 +2146,7 @@ "STR_PIVOTFUNC_AVG\n" "string.text" msgid "AVERAGE" -msgstr "AVERAGE" +msgstr "MITJANA" #: globstr.src msgctxt "" @@ -2173,7 +2173,7 @@ "STR_PIVOTFUNC_PROD\n" "string.text" msgid "PRODUCT" -msgstr "PRODUCT" +msgstr "PRODUCTE" #: globstr.src msgctxt "" @@ -2182,7 +2182,7 @@ "STR_PIVOTFUNC_COUNT2\n" "string.text" msgid "COUNTA" -msgstr "COUNTA" +msgstr "COMPTAA" #: globstr.src msgctxt "" @@ -2191,7 +2191,7 @@ "STR_PIVOTFUNC_STDDEV\n" "string.text" msgid "STDEV" -msgstr "STDEV" +msgstr "DESVEST" #: globstr.src msgctxt "" @@ -2200,7 +2200,7 @@ "STR_PIVOTFUNC_STDDEV2\n" "string.text" msgid "STDEVP" -msgstr "STDEVP" +msgstr "DESVESTP" #: globstr.src msgctxt "" @@ -2236,7 +2236,7 @@ "STR_ROWCOL_SELCOUNT\n" "string.text" msgid "Selected $1 rows, $2 columns" -msgstr "" +msgstr "$1 files, $2 columnes seleccionades" #: globstr.src msgctxt "" @@ -2290,7 +2290,7 @@ "STR_SAVE_DOC\n" "string.text" msgid "Save document" -msgstr "Alça el document" +msgstr "Guarda el document" #: globstr.src msgctxt "" @@ -3965,7 +3965,7 @@ "This file contains queries. The results of these queries were not saved.\n" "Do you want these queries to be repeated?" msgstr "" -"Este fitxer conté consultes. Els resultats d'estes consultes no s'han alçat.\n" +"Este fitxer conté consultes. Els resultats d'estes consultes no s'han guardat.\n" "Voleu repetir-les?" #: globstr.src @@ -4055,7 +4055,7 @@ "STR_ERR_LINKOVERLAP\n" "string.text" msgid "Source and destination must not overlap." -msgstr "Cal que la font i la destinació no es superposen." +msgstr "Cal que la font i la destinació no se superposin." #: globstr.src msgctxt "" @@ -4586,7 +4586,7 @@ "STR_DOC_UPDATED\n" "string.text" msgid "Your spreadsheet has been updated with changes saved by other users." -msgstr "S'ha actualitzat el full de càlcul amb els canvis alçats per altres usuaris." +msgstr "S'ha actualitzat el full de càlcul amb els canvis guardats per altres usuaris." #: globstr.src msgctxt "" @@ -4599,7 +4599,7 @@ "\n" "Do you want to continue?" msgstr "" -"Cal que alceu el full de càlcul ara per activar el mode compartit.\n" +"Cal que guardeu el full de càlcul ara per activar el mode compartit.\n" "\n" "Voleu continuar?" @@ -4614,7 +4614,7 @@ "\n" "Do you want to continue?" msgstr "" -"Els conflictes ja resolts deguts a la fusió es perdran, i no s'alçaran els canvis que hàgeu fet al full de càlcul compartit.\n" +"Els conflictes ja resolts deguts a la fusió es perdran, i no es guardaran els canvis que hàgeu fet al full de càlcul compartit.\n" "\n" "Voleu continuar?" @@ -4646,7 +4646,7 @@ msgstr "" "Este full de càlcul ja no està en mode compartit.\n" "\n" -"Alceu este full de càlcul en un altre fitxer i incorporeu manualment els canvis que heu fet al full de càlcul compartit." +"Guardeu este full de càlcul en un altre fitxer i incorporeu manualment els canvis que heu fet al full de càlcul compartit." #: globstr.src msgctxt "" @@ -4661,7 +4661,7 @@ msgstr "" "El full de càlcul està en mode compartit. Això permet que diversos usuaris accedisquen i editin el full de càlcul a la vegada.\n" "\n" -"Els canvis als atributs de format com els tipus de lletra, els colors i els nombres no s'alçaran, i algunes funcionalitats (com l'edició de diagrames i el dibuix d'objectes) no estaran disponibles en el mode compartit. Inhabiliteu el mode compartit per obtindre l'accés exclusiu necessari per a estos canvis i funcionalitats." +"Els canvis als atributs de format com els tipus de lletra, els colors i els nombres no es guardaran, i algunes funcionalitats (com l'edició de diagrames i el dibuix d'objectes) no estaran disponibles en el mode compartit. Inhabiliteu el mode compartit per obtindre l'accés exclusiu necessari per a estos canvis i funcionalitats." #: globstr.src msgctxt "" @@ -4691,7 +4691,7 @@ msgstr "" "El fitxer de full de càlcul compartit està blocat degut a una fusió en curs per part de l'usuari: \"%1\"\n" "\n" -"Proveu d'alçar els canvis més tard." +"Proveu de guardar els canvis més tard." #: globstr.src msgctxt "" @@ -4983,7 +4983,7 @@ "\n" "Do you want to continue?" msgstr "" -"Este document conté referències externes a documents que no s'han alçat.\n" +"Este document conté referències externes a documents que no s'han guardat.\n" "\n" "Voleu continuar?" @@ -4994,7 +4994,7 @@ "STR_CLOSE_WITH_UNSAVED_REFS\n" "string.text" msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss." -msgstr "Un altre document fa referència a este document i encara s'ha alçat. Si el tanqueu sense alçar-lo, es perdran dades." +msgstr "Un altre document fa referència a este document i encara s'ha guardat. Si el tanqueu sense guardar-lo, es perdran dades." #: globstr.src msgctxt "" @@ -5373,7 +5373,7 @@ "\n" "Do you want to recalculate all formula cells in this document now?" msgstr "" -"Este document es va alçar amb una aplicació diferent del %PRODUCTNAME. Algunes cel·les de fórmula poden donar resultats diferents en recalcular-se.\n" +"Este document es va guardar amb una aplicació diferent del %PRODUCTNAME. Algunes cel·les de fórmula poden donar resultats diferents en recalcular-se.\n" "\n" "Voleu recalcular ara totes les cel·les de fórmula?" @@ -5388,7 +5388,7 @@ "\n" "Do you want to recalculate all formula cells now?" msgstr "" -"Este document es va alçar amb l'Excel. Algunes cel·les de fórmula poden donar resultats diferents en recalcular-se.\n" +"Este document es va guardar amb l'Excel. Algunes cel·les de fórmula poden donar resultats diferents en recalcular-se.\n" "\n" "Voleu recalcular ara totes les cel·les de fórmula?" @@ -5507,7 +5507,7 @@ "STR_NOFORMULA\n" "string.text" msgid "Formula cell must contain a formula." -msgstr "" +msgstr "La cel·la de destinació ha de contindre una fórmula." #: globstr.src msgctxt "" @@ -5593,7 +5593,7 @@ "STR_PRINT_PREVIEW_NODATA\n" "string.text" msgid "No Data" -msgstr "" +msgstr "Sense dades" #: globstr.src msgctxt "" @@ -5602,7 +5602,7 @@ "STR_PRINT_PREVIEW_EMPTY_RANGE\n" "string.text" msgid "Print Range Empty" -msgstr "" +msgstr "L'interval d'impressió és buit" #: globstr.src msgctxt "" @@ -5611,7 +5611,7 @@ "STR_UNDO_CONDFORMAT\n" "string.text" msgid "Conditional Format" -msgstr "" +msgstr "Formatació condicional" #: hdrcont.src msgctxt "" @@ -6647,7 +6647,7 @@ "SCWARN_EXPORT_ASCII & ERRCODE_RES_MASK\n" "string.text" msgid "Only the active sheet was saved." -msgstr "Només s'ha alçat el full actiu." +msgstr "Només s'ha guardat el full actiu." #: scerrors.src msgctxt "" @@ -6689,7 +6689,7 @@ msgstr "" "No s'han carregat tots els fulls perquè s'ha excedit el nombre màxim de fulls.\n" "\n" -"Tingueu en compte que si torneu a alçar este document, tots els fulls que no s'hagen carregat s'eliminaran de forma permanent!" +"Tingueu en compte que si torneu a guardar este document, tots els fulls que no s'hagen carregat s'eliminaran de forma permanent!" #: scerrors.src msgctxt "" @@ -6738,7 +6738,7 @@ "Additional rows were not saved." msgstr "" "El document conté més files que les permeses en el format seleccionat.\n" -"No s'han alçat les files addicionals." +"No s'han guardat les files addicionals." #: scerrors.src msgctxt "" @@ -6751,7 +6751,7 @@ "Additional columns were not saved." msgstr "" "El document conté més columnes que les que permet el format seleccionat.\n" -"No s'han alçat les columnes addicionals." +"No s'han guardat les columnes addicionals." #: scerrors.src msgctxt "" @@ -6764,7 +6764,7 @@ "Additional sheets were not saved." msgstr "" "El document conté més fulls que els que permet el format seleccionats.\n" -"No s'han alçat els fulls addicionals." +"No s'han guardat els fulls addicionals." #: scerrors.src msgctxt "" @@ -6777,7 +6777,7 @@ "Resaving the document will delete this information!" msgstr "" "El document conté informació que esta versió del programa no reconeix.\n" -"Si alceu el document, esta informació es perdrà." +"Si guardeu el document, esta informació es perdrà." #: scerrors.src msgctxt "" @@ -6786,7 +6786,7 @@ "SCWARN_EXPORT_DATALOST & ERRCODE_RES_MASK\n" "string.text" msgid "Not all cell contents could be saved in the specified format." -msgstr "No s'ha pogut alçar tot el contingut de les cel·les en el format especificat." +msgstr "No s'ha pogut guardar tot el contingut de les cel·les en el format especificat." #: scerrors.src msgctxt "" @@ -7766,7 +7766,7 @@ "1\n" "string.text" msgid "Returns the number of workdays between two dates using arguments to indicate weekend days and holidays." -msgstr "" +msgstr "Retorna el nombre de dies feiners entre dues dates usant arguments per a indicar els caps de setmana i festius." #: scfuncs.src msgctxt "" @@ -7775,7 +7775,7 @@ "2\n" "string.text" msgid "Start Date" -msgstr "" +msgstr "Data inicial" #: scfuncs.src msgctxt "" @@ -7784,7 +7784,7 @@ "3\n" "string.text" msgid "Start date for calculation." -msgstr "" +msgstr "Data d'inici per al càlcul." #: scfuncs.src msgctxt "" @@ -7793,7 +7793,7 @@ "4\n" "string.text" msgid "End Date" -msgstr "" +msgstr "Data final" #: scfuncs.src msgctxt "" @@ -7802,7 +7802,7 @@ "5\n" "string.text" msgid "End date for calculation." -msgstr "" +msgstr "Data de finalització del càlcul." #: scfuncs.src msgctxt "" @@ -7811,7 +7811,7 @@ "6\n" "string.text" msgid "number or string" -msgstr "" +msgstr "nombre o cadena" #: scfuncs.src msgctxt "" @@ -7829,7 +7829,7 @@ "8\n" "string.text" msgid "array" -msgstr "" +msgstr "matriu" #: scfuncs.src msgctxt "" @@ -7856,7 +7856,7 @@ "2\n" "string.text" msgid "Start Date" -msgstr "" +msgstr "Data inicial" #: scfuncs.src msgctxt "" @@ -7874,7 +7874,7 @@ "4\n" "string.text" msgid "Days" -msgstr "" +msgstr "Dies" #: scfuncs.src msgctxt "" @@ -7883,7 +7883,7 @@ "5\n" "string.text" msgid "The number of workdays before or after start date." -msgstr "" +msgstr "El nombre de dies feiners abans o després de la data inicial." #: scfuncs.src msgctxt "" @@ -7892,7 +7892,7 @@ "6\n" "string.text" msgid "number or string" -msgstr "" +msgstr "nombre o cadena" #: scfuncs.src msgctxt "" @@ -7910,7 +7910,7 @@ "8\n" "string.text" msgid "array" -msgstr "" +msgstr "matriu" #: scfuncs.src msgctxt "" @@ -12347,7 +12347,7 @@ "1\n" "string.text" msgid "Calculates the exponent for basis e." -msgstr "Calcula la potència d'e." +msgstr "Calcula la potència en base e." #: scfuncs.src msgctxt "" @@ -12626,7 +12626,7 @@ "2\n" "string.text" msgid "Function" -msgstr "" +msgstr "Funció" #: scfuncs.src msgctxt "" @@ -12635,7 +12635,7 @@ "3\n" "string.text" msgid "Function index. Is an index of the possible functions Total, Max, ..." -msgstr "" +msgstr "Índex de funcions. És un índex de les funcions possibles Total, Max..." #: scfuncs.src msgctxt "" @@ -12644,7 +12644,7 @@ "4\n" "string.text" msgid "Options" -msgstr "" +msgstr "Opcions" #: scfuncs.src msgctxt "" @@ -12665,13 +12665,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_AGGREGATE\n" "7\n" "string.text" msgid "The cell(s) of the range which are to be taken into account." -msgstr "" +msgstr "Cel·les de l'interval que s'han de considerar." #: scfuncs.src msgctxt "" @@ -13031,7 +13032,7 @@ "2\n" "string.text" msgid "Number" -msgstr "" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -13040,7 +13041,7 @@ "3\n" "string.text" msgid "The number to be rounded up." -msgstr "" +msgstr "Nombre que s'ha d'arrodonir a l'alça." #: scfuncs.src msgctxt "" @@ -13049,7 +13050,7 @@ "4\n" "string.text" msgid "Significance" -msgstr "" +msgstr "Importància" #: scfuncs.src msgctxt "" @@ -13058,7 +13059,7 @@ "5\n" "string.text" msgid "The number to whose multiple the value is rounded." -msgstr "" +msgstr "Nombre al múltiple del qual s'arrodoneix el valor." #: scfuncs.src msgctxt "" @@ -13076,7 +13077,7 @@ "2\n" "string.text" msgid "Number" -msgstr "" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -13085,7 +13086,7 @@ "3\n" "string.text" msgid "The number to be rounded up." -msgstr "" +msgstr "Nombre que s'ha d'arrodonir a l'alça." #: scfuncs.src msgctxt "" @@ -13094,7 +13095,7 @@ "4\n" "string.text" msgid "Significance" -msgstr "" +msgstr "Importància" #: scfuncs.src msgctxt "" @@ -13103,7 +13104,7 @@ "5\n" "string.text" msgid "The number to whose multiple the value is rounded." -msgstr "" +msgstr "Nombre al múltiple del qual s'arrodoneix el valor." #: scfuncs.src msgctxt "" @@ -13184,7 +13185,7 @@ "2\n" "string.text" msgid "Number" -msgstr "" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -13193,7 +13194,7 @@ "3\n" "string.text" msgid "The number to be rounded down." -msgstr "" +msgstr "Nombre que s'ha d'arrodonir a la baixa." #: scfuncs.src msgctxt "" @@ -13202,7 +13203,7 @@ "4\n" "string.text" msgid "Significance" -msgstr "" +msgstr "Importància" #: scfuncs.src msgctxt "" @@ -13211,7 +13212,7 @@ "5\n" "string.text" msgid "The number to whose multiple the value is to be rounded down." -msgstr "" +msgstr "Nombre al múltiple del qual s'arrodoneix el valor a la baixa." #: scfuncs.src msgctxt "" @@ -14708,13 +14709,14 @@ msgstr "Nombre 1, nombre 2... són entre 1 i 30 arguments numèrics que representen una mostra." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MS\n" "1\n" "string.text" msgid "Returns the most common value in a sample." -msgstr "" +msgstr "Retorna el valor més freqüent en un una mostra." #: scfuncs.src msgctxt "" @@ -14723,7 +14725,7 @@ "2\n" "string.text" msgid "number " -msgstr "" +msgstr "nombre " #: scfuncs.src msgctxt "" @@ -14735,13 +14737,14 @@ msgstr "" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MULTI\n" "1\n" "string.text" msgid "Returns the most common value in a sample." -msgstr "" +msgstr "Retorna el valor més freqüent en una mostra." #: scfuncs.src msgctxt "" @@ -14750,7 +14753,7 @@ "2\n" "string.text" msgid "number " -msgstr "" +msgstr "nombre " #: scfuncs.src msgctxt "" @@ -14840,7 +14843,7 @@ "1\n" "string.text" msgid "Returns the alpha percentile of a sample." -msgstr "" +msgstr "Retorna el percentil alfa d'una mostra." #: scfuncs.src msgctxt "" @@ -14849,7 +14852,7 @@ "2\n" "string.text" msgid "data" -msgstr "" +msgstr "dades" #: scfuncs.src msgctxt "" @@ -14858,7 +14861,7 @@ "3\n" "string.text" msgid "The array of the data in the sample." -msgstr "" +msgstr "Matriu de les dades de la mostra." #: scfuncs.src msgctxt "" @@ -14867,7 +14870,7 @@ "4\n" "string.text" msgid "Alpha" -msgstr "" +msgstr "Alfa" #: scfuncs.src msgctxt "" @@ -14885,7 +14888,7 @@ "1\n" "string.text" msgid "Returns the alpha percentile of a sample." -msgstr "" +msgstr "Retorna el percentil alfa d'una mostra." #: scfuncs.src msgctxt "" @@ -14894,7 +14897,7 @@ "2\n" "string.text" msgid "data" -msgstr "" +msgstr "dades" #: scfuncs.src msgctxt "" @@ -14903,7 +14906,7 @@ "3\n" "string.text" msgid "The array of the data in the sample." -msgstr "" +msgstr "La matriu de dades de la mostra." #: scfuncs.src msgctxt "" @@ -14912,7 +14915,7 @@ "4\n" "string.text" msgid "Alpha" -msgstr "" +msgstr "Alfa" #: scfuncs.src msgctxt "" @@ -14975,7 +14978,7 @@ "1\n" "string.text" msgid "Returns the quartile of a sample." -msgstr "" +msgstr "Retorna el quartil d'una mostra." #: scfuncs.src msgctxt "" @@ -14984,7 +14987,7 @@ "2\n" "string.text" msgid "data" -msgstr "" +msgstr "dades" #: scfuncs.src msgctxt "" @@ -14993,7 +14996,7 @@ "3\n" "string.text" msgid "The array of the data in the sample." -msgstr "" +msgstr "Matriu de les dades de la mostra." #: scfuncs.src msgctxt "" @@ -15002,7 +15005,7 @@ "4\n" "string.text" msgid "Type" -msgstr "" +msgstr "Tipus" #: scfuncs.src msgctxt "" @@ -15020,7 +15023,7 @@ "1\n" "string.text" msgid "Returns the quartile of a sample." -msgstr "" +msgstr "Retorna el quartil d'una mostra." #: scfuncs.src msgctxt "" @@ -15029,7 +15032,7 @@ "2\n" "string.text" msgid "data" -msgstr "" +msgstr "dades" #: scfuncs.src msgctxt "" @@ -15038,7 +15041,7 @@ "3\n" "string.text" msgid "The array of the data in the sample." -msgstr "" +msgstr "La matriu de les dades de la mostra." #: scfuncs.src msgctxt "" @@ -15047,7 +15050,7 @@ "4\n" "string.text" msgid "Type" -msgstr "" +msgstr "Tipus" #: scfuncs.src msgctxt "" @@ -15194,13 +15197,14 @@ msgstr "Valor el rang del percentatge del qual s'ha de determinar." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PERCENT_RANK\n" "6\n" "string.text" msgid "significance" -msgstr "" +msgstr "Importància" #: scfuncs.src msgctxt "" @@ -15227,7 +15231,7 @@ "2\n" "string.text" msgid "data" -msgstr "" +msgstr "dades" #: scfuncs.src msgctxt "" @@ -15236,7 +15240,7 @@ "3\n" "string.text" msgid "The array of the data in the sample." -msgstr "" +msgstr "La matriu de les dades de la mostra." #: scfuncs.src msgctxt "" @@ -15245,7 +15249,7 @@ "4\n" "string.text" msgid "value" -msgstr "" +msgstr "valor" #: scfuncs.src msgctxt "" @@ -15254,16 +15258,17 @@ "5\n" "string.text" msgid "The value for which percentage ranking is to be determined." -msgstr "" +msgstr "Valor el rang del percentatge del qual s'ha de determinar." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PERCENT_RANK_EXC\n" "6\n" "string.text" msgid "significance" -msgstr "" +msgstr "Importància" #: scfuncs.src msgctxt "" @@ -15290,7 +15295,7 @@ "2\n" "string.text" msgid "data" -msgstr "" +msgstr "dades" #: scfuncs.src msgctxt "" @@ -15299,7 +15304,7 @@ "3\n" "string.text" msgid "The array of the data in the sample." -msgstr "" +msgstr "Matriu de les dades de la mostra." #: scfuncs.src msgctxt "" @@ -15308,7 +15313,7 @@ "4\n" "string.text" msgid "value" -msgstr "" +msgstr "valor" #: scfuncs.src msgctxt "" @@ -15317,16 +15322,17 @@ "5\n" "string.text" msgid "The value for which percentage ranking is to be determined." -msgstr "" +msgstr "Valor el rang del percentatge del qual s'ha de determinar." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PERCENT_RANK_INC\n" "6\n" "string.text" msgid "significance" -msgstr "" +msgstr "Importància" #: scfuncs.src msgctxt "" @@ -15416,7 +15422,7 @@ "2\n" "string.text" msgid "value" -msgstr "" +msgstr "valor" #: scfuncs.src msgctxt "" @@ -15425,7 +15431,7 @@ "3\n" "string.text" msgid "The value for which the rank is to be determined." -msgstr "" +msgstr "Valor el rang del qual s'ha de determinar." #: scfuncs.src msgctxt "" @@ -15434,7 +15440,7 @@ "4\n" "string.text" msgid "Data" -msgstr "" +msgstr "Dades" #: scfuncs.src msgctxt "" @@ -15443,7 +15449,7 @@ "5\n" "string.text" msgid "The array of the data in the sample." -msgstr "" +msgstr "Matriu de les dades de la mostra." #: scfuncs.src msgctxt "" @@ -15452,7 +15458,7 @@ "6\n" "string.text" msgid "Type" -msgstr "" +msgstr "Tipus" #: scfuncs.src msgctxt "" @@ -15479,7 +15485,7 @@ "2\n" "string.text" msgid "value" -msgstr "" +msgstr "valor" #: scfuncs.src msgctxt "" @@ -15488,7 +15494,7 @@ "3\n" "string.text" msgid "The value for which the rank is to be determined." -msgstr "" +msgstr "Valor el rang del qual s'ha de determinar." #: scfuncs.src msgctxt "" @@ -15497,7 +15503,7 @@ "4\n" "string.text" msgid "Data" -msgstr "" +msgstr "Dades" #: scfuncs.src msgctxt "" @@ -15506,7 +15512,7 @@ "5\n" "string.text" msgid "The array of the data in the sample." -msgstr "" +msgstr "Matriu de les dades de la mostra." #: scfuncs.src msgctxt "" @@ -15515,7 +15521,7 @@ "6\n" "string.text" msgid "Type" -msgstr "" +msgstr "Tipus" #: scfuncs.src msgctxt "" @@ -16073,7 +16079,7 @@ "1\n" "string.text" msgid "Values of the negative binomial distribution." -msgstr "" +msgstr "Valors de la distribució binomial negativa." #: scfuncs.src msgctxt "" @@ -16091,7 +16097,7 @@ "3\n" "string.text" msgid "The number of failures in the trial range." -msgstr "" +msgstr "Nombre de fallades en l'interval d'avaluació." #: scfuncs.src msgctxt "" @@ -16109,7 +16115,7 @@ "5\n" "string.text" msgid "The number of successes in the trial sequence." -msgstr "" +msgstr "Nombre d'èxits en la seqüència d'avaluació." #: scfuncs.src msgctxt "" @@ -16118,7 +16124,7 @@ "6\n" "string.text" msgid "SP" -msgstr "" +msgstr "SP" #: scfuncs.src msgctxt "" @@ -16127,7 +16133,7 @@ "7\n" "string.text" msgid "The success probability of a trial." -msgstr "" +msgstr "La probabilitat d'èxit d'una avaluació." #: scfuncs.src msgctxt "" @@ -16136,7 +16142,7 @@ "8\n" "string.text" msgid "Cumulative" -msgstr "" +msgstr "Acumulada" #: scfuncs.src msgctxt "" @@ -16487,7 +16493,7 @@ "1\n" "string.text" msgid "Values of the normal distribution." -msgstr "" +msgstr "Valors de la distribució normal." #: scfuncs.src msgctxt "" @@ -16496,7 +16502,7 @@ "2\n" "string.text" msgid "Number" -msgstr "" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -16505,7 +16511,7 @@ "3\n" "string.text" msgid "The value for which the normal distribution is to be calculated." -msgstr "" +msgstr "Valor la distribució normal del qual s'ha de calcular." #: scfuncs.src msgctxt "" @@ -16514,7 +16520,7 @@ "4\n" "string.text" msgid "Mean" -msgstr "" +msgstr "Mitjana" #: scfuncs.src msgctxt "" @@ -16523,7 +16529,7 @@ "5\n" "string.text" msgid "The mean value. The mean value of the normal distribution." -msgstr "" +msgstr "El valor de la mitjana. El valor de la mitjana de la distribució normal." #: scfuncs.src msgctxt "" @@ -16532,7 +16538,7 @@ "6\n" "string.text" msgid "STDEV" -msgstr "" +msgstr "DESVEST" #: scfuncs.src msgctxt "" @@ -16541,7 +16547,7 @@ "7\n" "string.text" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "" +msgstr "Desviació estàndard. La desviació estàndard de la distribució normal." #: scfuncs.src msgctxt "" @@ -16631,7 +16637,7 @@ "1\n" "string.text" msgid "Values of the inverse normal distribution." -msgstr "" +msgstr "Valors de la distribució normal inversa." #: scfuncs.src msgctxt "" @@ -16640,7 +16646,7 @@ "2\n" "string.text" msgid "number" -msgstr "" +msgstr "nombre" #: scfuncs.src msgctxt "" @@ -16658,7 +16664,7 @@ "4\n" "string.text" msgid "mean" -msgstr "" +msgstr "mitjana" #: scfuncs.src msgctxt "" @@ -16667,7 +16673,7 @@ "5\n" "string.text" msgid "The mean value. The mean value of the normal distribution." -msgstr "" +msgstr "El valor de la mitjana. El valor de la mitjana de la distribució normal." #: scfuncs.src msgctxt "" @@ -16676,7 +16682,7 @@ "6\n" "string.text" msgid "STDEV" -msgstr "" +msgstr "DESVEST" #: scfuncs.src msgctxt "" @@ -16685,7 +16691,7 @@ "7\n" "string.text" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "" +msgstr "Desviació estàndard. La desviació estàndard de la distribució normal." #: scfuncs.src msgctxt "" @@ -16721,7 +16727,7 @@ "1\n" "string.text" msgid "The values of the standard normal cumulative distribution." -msgstr "" +msgstr "Valors de la distribució acumulativa normal estàndard." #: scfuncs.src msgctxt "" @@ -16730,16 +16736,17 @@ "2\n" "string.text" msgid "Number" -msgstr "" +msgstr "Nombre" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STD_NORM_DIST_MS\n" "3\n" "string.text" msgid "The value for which the standard normal distribution is to be calculated." -msgstr "" +msgstr "Valor la distribució log normal del qual s'ha de calcular." #: scfuncs.src msgctxt "" @@ -16748,7 +16755,7 @@ "4\n" "string.text" msgid "Cumulative" -msgstr "" +msgstr "Acumulada" #: scfuncs.src msgctxt "" @@ -16793,7 +16800,7 @@ "1\n" "string.text" msgid "Values of the inverse standard normal distribution." -msgstr "" +msgstr "Valors de la distribució normal estàndard inversa." #: scfuncs.src msgctxt "" @@ -16802,7 +16809,7 @@ "2\n" "string.text" msgid "number" -msgstr "" +msgstr "nombre" #: scfuncs.src msgctxt "" @@ -16901,7 +16908,7 @@ "1\n" "string.text" msgid "Values of the log normal distribution." -msgstr "" +msgstr "Valors de la distribució log normal." #: scfuncs.src msgctxt "" @@ -16910,7 +16917,7 @@ "2\n" "string.text" msgid "Number" -msgstr "" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -16919,7 +16926,7 @@ "3\n" "string.text" msgid "The value for which the log normal distribution is to be calculated." -msgstr "" +msgstr "Valor la distribució log normal del qual s'ha de calcular." #: scfuncs.src msgctxt "" @@ -16928,16 +16935,17 @@ "4\n" "string.text" msgid "mean" -msgstr "" +msgstr "mitjana" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST_MS\n" "5\n" "string.text" msgid "The mean value of the log normal distribution." -msgstr "" +msgstr "Valor de la mitjana. El valor de la mitjana de la distribució log normal." #: scfuncs.src msgctxt "" @@ -16946,7 +16954,7 @@ "6\n" "string.text" msgid "STDEV" -msgstr "" +msgstr "DESVEST" #: scfuncs.src msgctxt "" @@ -16955,7 +16963,7 @@ "7\n" "string.text" msgid "The standard deviation of the log normal distribution." -msgstr "" +msgstr "La desviació estàndard de la distribució log-normal." #: scfuncs.src msgctxt "" @@ -16964,7 +16972,7 @@ "8\n" "string.text" msgid "Cumulative" -msgstr "" +msgstr "Acumulada" #: scfuncs.src msgctxt "" @@ -16973,7 +16981,7 @@ "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 "" @@ -17045,7 +17053,7 @@ "1\n" "string.text" msgid "Values of the inverse of the lognormal distribution." -msgstr "" +msgstr "Valors de la inversa de la distribució log normal." #: scfuncs.src msgctxt "" @@ -17054,7 +17062,7 @@ "2\n" "string.text" msgid "number" -msgstr "" +msgstr "nombre" #: scfuncs.src msgctxt "" @@ -17063,7 +17071,7 @@ "3\n" "string.text" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "" +msgstr "Valor de probabilitat la distribució log-normal inversa del qual s'ha de calcular." #: scfuncs.src msgctxt "" @@ -17072,7 +17080,7 @@ "4\n" "string.text" msgid "mean" -msgstr "" +msgstr "mitjana" #: scfuncs.src msgctxt "" @@ -17081,7 +17089,7 @@ "5\n" "string.text" msgid "Mean value. The mean value of the log normal distribution." -msgstr "" +msgstr "Valor de la mitjana. El valor de la mitjana de la distribució log normal." #: scfuncs.src msgctxt "" @@ -17090,16 +17098,17 @@ "6\n" "string.text" msgid "STDEV" -msgstr "" +msgstr "DESVEST" #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV_MS\n" "7\n" "string.text" msgid "Standard deviation. The standard deviation of the log normal distribution." -msgstr "" +msgstr "Desviació estàndard. La desviació estàndard de la distribució normal." #: scfuncs.src msgctxt "" @@ -17324,7 +17333,7 @@ "2\n" "string.text" msgid "Number" -msgstr "" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -17333,7 +17342,7 @@ "3\n" "string.text" msgid "The value for which the gamma distribution is to be calculated." -msgstr "" +msgstr "Valor la distribució gamma del qual s'ha de calcular." #: scfuncs.src msgctxt "" @@ -17342,7 +17351,7 @@ "4\n" "string.text" msgid "alpha" -msgstr "" +msgstr "alfa" #: scfuncs.src msgctxt "" @@ -17351,7 +17360,7 @@ "5\n" "string.text" msgid "The Alpha parameter of the Gamma distribution." -msgstr "" +msgstr "Paràmetre alfa de la distribució gamma." #: scfuncs.src msgctxt "" @@ -17360,7 +17369,7 @@ "6\n" "string.text" msgid "beta" -msgstr "" +msgstr "beta" #: scfuncs.src msgctxt "" @@ -17369,7 +17378,7 @@ "7\n" "string.text" msgid "The Beta parameter of the Gamma distribution." -msgstr "" +msgstr "Paràmetre beta de la distribució gamma." #: scfuncs.src msgctxt "" @@ -17378,7 +17387,7 @@ "8\n" "string.text" msgid "Cumulative" -msgstr "" +msgstr "Acumulada" #: scfuncs.src msgctxt "" @@ -17459,7 +17468,7 @@ "1\n" "string.text" msgid "Values of the inverse gamma distribution." -msgstr "" +msgstr "Valors de la distribució gamma inversa." #: scfuncs.src msgctxt "" @@ -17468,7 +17477,7 @@ "2\n" "string.text" msgid "Number" -msgstr "" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -17477,7 +17486,7 @@ "3\n" "string.text" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "" +msgstr "Valor de probabilitat la distribució gamma inversa del qual s'ha de calcular." #: scfuncs.src msgctxt "" @@ -17486,7 +17495,7 @@ "4\n" "string.text" msgid "alpha" -msgstr "" +msgstr "alfa" #: scfuncs.src msgctxt "" @@ -17495,7 +17504,7 @@ "5\n" "string.text" msgid "The Alpha (shape) parameter of the Gamma distribution." -msgstr "" +msgstr "Paràmetre alfa (forma) de la distribució gamma." #: scfuncs.src msgctxt "" @@ -17504,7 +17513,7 @@ "6\n" "string.text" msgid "beta" -msgstr "" +msgstr "beta" #: scfuncs.src msgctxt "" @@ -17513,7 +17522,7 @@ "7\n" "string.text" msgid "The Beta (scale) parameter of the Gamma distribution." -msgstr "" +msgstr "Paràmetre beta (escala) de la distribució gamma." #: scfuncs.src msgctxt "" @@ -17549,7 +17558,7 @@ "1\n" "string.text" msgid "Returns the natural logarithm of the gamma function." -msgstr "" +msgstr "Retorna el logaritme natural de la funció gamma." #: scfuncs.src msgctxt "" @@ -17558,7 +17567,7 @@ "2\n" "string.text" msgid "Number" -msgstr "" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -17567,7 +17576,7 @@ "3\n" "string.text" msgid "The value for which the natural logarithm of the gamma function is to be calculated." -msgstr "" +msgstr "Valor el logaritme natural de la funció gamma del qual s'ha de calcular." #: scfuncs.src msgctxt "" @@ -18440,7 +18449,7 @@ "1\n" "string.text" msgid "Returns the two-tailed t-distribution." -msgstr "" +msgstr "Retorna la distribució t bilateral." #: scfuncs.src msgctxt "" @@ -18449,7 +18458,7 @@ "2\n" "string.text" msgid "Number" -msgstr "" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -18458,7 +18467,7 @@ "3\n" "string.text" msgid "The value for which the T distribution is to be calculated." -msgstr "" +msgstr "Valor la distribució T del qual s'ha de calcular." #: scfuncs.src msgctxt "" @@ -18467,7 +18476,7 @@ "4\n" "string.text" msgid "degrees_freedom" -msgstr "" +msgstr "graus_de_llibertat" #: scfuncs.src msgctxt "" @@ -18476,7 +18485,7 @@ "5\n" "string.text" msgid "The degrees of freedom of the T distribution." -msgstr "" +msgstr "Els graus de llibertat de la distribució T." #: scfuncs.src msgctxt "" @@ -18485,7 +18494,7 @@ "1\n" "string.text" msgid "Returns the t-distribution." -msgstr "" +msgstr "Retorna la distribució T." #: scfuncs.src msgctxt "" @@ -18494,7 +18503,7 @@ "2\n" "string.text" msgid "Number" -msgstr "" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -18503,7 +18512,7 @@ "3\n" "string.text" msgid "The value for which the T distribution is to be calculated." -msgstr "" +msgstr "Valor la distribució T del qual s'ha de calcular." #: scfuncs.src msgctxt "" @@ -18512,7 +18521,7 @@ "4\n" "string.text" msgid "degrees_freedom" -msgstr "" +msgstr "graus_de_llibertat" #: scfuncs.src msgctxt "" @@ -18521,7 +18530,7 @@ "5\n" "string.text" msgid "The degrees of freedom of the T distribution." -msgstr "" +msgstr "Els graus de llibertat de la distribució T." #: scfuncs.src msgctxt "" @@ -18530,7 +18539,7 @@ "6\n" "string.text" msgid "cumulative" -msgstr "" +msgstr "acumulada" #: scfuncs.src msgctxt "" @@ -18557,7 +18566,7 @@ "2\n" "string.text" msgid "Number" -msgstr "" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -18566,7 +18575,7 @@ "3\n" "string.text" msgid "The value for which the T distribution is to be calculated." -msgstr "" +msgstr "Valor la distribució T del qual s'ha de calcular." #: scfuncs.src msgctxt "" @@ -18575,7 +18584,7 @@ "4\n" "string.text" msgid "degrees_freedom" -msgstr "" +msgstr "graus_de_llibertat" #: scfuncs.src msgctxt "" @@ -18584,7 +18593,7 @@ "5\n" "string.text" msgid "The degrees of freedom of the T distribution." -msgstr "" +msgstr "Els graus de llibertat de la distribució T." #: scfuncs.src msgctxt "" @@ -18632,13 +18641,14 @@ msgstr "Els graus de llibertat de la distribució T." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_MS\n" "1\n" "string.text" msgid "Values of the left-tailed inverse t-distribution." -msgstr "" +msgstr "Valors de la distribució T inversa." #: scfuncs.src msgctxt "" @@ -18647,7 +18657,7 @@ "2\n" "string.text" msgid "number" -msgstr "" +msgstr "nombre" #: scfuncs.src msgctxt "" @@ -18656,7 +18666,7 @@ "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "Valor de probabilitat la distribució T inversa del qual s'ha de calcular." #: scfuncs.src msgctxt "" @@ -18665,7 +18675,7 @@ "4\n" "string.text" msgid "degrees_freedom" -msgstr "" +msgstr "graus_de_llibertat" #: scfuncs.src msgctxt "" @@ -18674,7 +18684,7 @@ "5\n" "string.text" msgid "The degrees of freedom of the T distribution." -msgstr "" +msgstr "Els graus de llibertat de la distribució T." #: scfuncs.src msgctxt "" @@ -18683,7 +18693,7 @@ "1\n" "string.text" msgid "Values of the two-tailed inverse t-distribution." -msgstr "" +msgstr "Valors de la distribució t inversa bilateral." #: scfuncs.src msgctxt "" @@ -18692,7 +18702,7 @@ "2\n" "string.text" msgid "number" -msgstr "" +msgstr "nombre" #: scfuncs.src msgctxt "" @@ -18701,7 +18711,7 @@ "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "" +msgstr "Valor de probabilitat la distribució T inversa del qual s'ha de calcular." #: scfuncs.src msgctxt "" @@ -18710,7 +18720,7 @@ "4\n" "string.text" msgid "degrees_freedom" -msgstr "" +msgstr "graus_de_llibertat" #: scfuncs.src msgctxt "" @@ -18719,7 +18729,7 @@ "5\n" "string.text" msgid "The degrees of freedom of the T distribution." -msgstr "" +msgstr "Els graus de llibertat de la distribució T." #: scfuncs.src msgctxt "" @@ -19925,7 +19935,7 @@ "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 probabilitat d'observar una estadística z major que la calculada en base a una mostra." #: scfuncs.src msgctxt "" @@ -19934,7 +19944,7 @@ "2\n" "string.text" msgid "data" -msgstr "" +msgstr "dades" #: scfuncs.src msgctxt "" @@ -19943,7 +19953,7 @@ "3\n" "string.text" msgid "The given sample, drawn from a normally distributed population." -msgstr "" +msgstr "La mostra donada, extreta d'una població distribuïda normalment." #: scfuncs.src msgctxt "" @@ -19952,7 +19962,7 @@ "4\n" "string.text" msgid "mu" -msgstr "" +msgstr "mu" #: scfuncs.src msgctxt "" @@ -19961,7 +19971,7 @@ "5\n" "string.text" msgid "The known mean of the population." -msgstr "" +msgstr "La mitjana coneguda de la població." #: scfuncs.src msgctxt "" @@ -19970,7 +19980,7 @@ "6\n" "string.text" msgid "sigma" -msgstr "" +msgstr "sigma" #: scfuncs.src msgctxt "" @@ -19979,7 +19989,7 @@ "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ó estàndard coneguda de la població. Si s'omet, es fa servir la desviació estàndard de la mostra donada." #: scfuncs.src msgctxt "" @@ -20249,7 +20259,7 @@ "1\n" "string.text" msgid "Calculates the T test." -msgstr "" +msgstr "Calcula la verificació T." #: scfuncs.src msgctxt "" @@ -20258,7 +20268,7 @@ "2\n" "string.text" msgid "data_1" -msgstr "" +msgstr "dada_1" #: scfuncs.src msgctxt "" @@ -20267,7 +20277,7 @@ "3\n" "string.text" msgid "The first record array." -msgstr "" +msgstr "Primera matriu de registres." #: scfuncs.src msgctxt "" @@ -20276,7 +20286,7 @@ "4\n" "string.text" msgid "data_2" -msgstr "" +msgstr "dada_2" #: scfuncs.src msgctxt "" @@ -20285,7 +20295,7 @@ "5\n" "string.text" msgid "The second record array." -msgstr "" +msgstr "Segona matriu de registres." #: scfuncs.src msgctxt "" @@ -20294,7 +20304,7 @@ "6\n" "string.text" msgid "mode" -msgstr "" +msgstr "mode" #: scfuncs.src msgctxt "" @@ -20303,7 +20313,7 @@ "7\n" "string.text" msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" -msgstr "" +msgstr "El mode indica el nombre de cues de distribució a retornar. 1 = una cua, 2 = bilateral" #: scfuncs.src msgctxt "" @@ -20312,7 +20322,7 @@ "8\n" "string.text" msgid "Type" -msgstr "" +msgstr "Tipus" #: scfuncs.src msgctxt "" @@ -20321,7 +20331,7 @@ "9\n" "string.text" msgid "The type of the T test." -msgstr "" +msgstr "Tipus de la verificació T." #: scfuncs.src msgctxt "" @@ -20375,7 +20385,7 @@ "1\n" "string.text" msgid "Returns the intercept of the linear regression line and the Y axis." -msgstr "Retorna la intersecció entre la l?nia de regressió lineal i l'eix Y." +msgstr "Retorna la intersecció entre la línia de regressió lineal i l'eix Y." #: scfuncs.src msgctxt "" @@ -20420,7 +20430,7 @@ "1\n" "string.text" msgid "Returns the slope of the linear regression line." -msgstr "Retorna la pendent de la l?nia de regressió lineal." +msgstr "Retorna el pendent de la línia de regressió lineal." #: scfuncs.src msgctxt "" @@ -22150,7 +22160,7 @@ "3\n" "string.text" msgid "Text for the concatenation." -msgstr "" +msgstr "Text per a la concatenació." #: scfuncs.src msgctxt "" @@ -23483,7 +23493,7 @@ "2\n" "string.text" msgid "Number1" -msgstr "" +msgstr "Número1" #: scfuncs.src msgctxt "" @@ -23501,7 +23511,7 @@ "4\n" "string.text" msgid "Number2" -msgstr "" +msgstr "Número2" #: scfuncs.src msgctxt "" @@ -23528,7 +23538,7 @@ "2\n" "string.text" msgid "Number1" -msgstr "" +msgstr "Número1" #: scfuncs.src msgctxt "" @@ -23546,7 +23556,7 @@ "4\n" "string.text" msgid "Number2" -msgstr "" +msgstr "Número2" #: scfuncs.src msgctxt "" @@ -23567,13 +23577,14 @@ msgstr "\"O exclusiu\" a nivell de bits de dos enters." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITXOR\n" "2\n" "string.text" msgid "Number1" -msgstr "" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -23585,13 +23596,14 @@ msgstr "Enter positiu menor de 2^48." #: scfuncs.src +#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITXOR\n" "4\n" "string.text" msgid "Number2" -msgstr "" +msgstr "Nombre" #: scfuncs.src msgctxt "" @@ -23933,7 +23945,7 @@ "2\n" "string.text" msgid "Red" -msgstr "" +msgstr "Roig" #: scfuncs.src msgctxt "" @@ -23942,7 +23954,7 @@ "3\n" "string.text" msgid "Value of red" -msgstr "" +msgstr "Valor de roig" #: scfuncs.src msgctxt "" @@ -23951,7 +23963,7 @@ "4\n" "string.text" msgid "Green" -msgstr "" +msgstr "Verd" #: scfuncs.src msgctxt "" @@ -23960,7 +23972,7 @@ "5\n" "string.text" msgid "Value of green" -msgstr "" +msgstr "Valor de verd" #: scfuncs.src msgctxt "" @@ -23969,7 +23981,7 @@ "6\n" "string.text" msgid "Blue" -msgstr "" +msgstr "Blau" #: scfuncs.src msgctxt "" @@ -23978,7 +23990,7 @@ "7\n" "string.text" msgid "Value of blue" -msgstr "" +msgstr "Valor de blau" #: scfuncs.src msgctxt "" @@ -23987,7 +23999,7 @@ "8\n" "string.text" msgid "Alpha" -msgstr "" +msgstr "Alfa" #: scfuncs.src msgctxt "" @@ -23996,7 +24008,7 @@ "9\n" "string.text" msgid "Value of alpha" -msgstr "" +msgstr "Valor d'alfa" #: scfuncs.src msgctxt "" @@ -24032,7 +24044,7 @@ "1\n" "string.text" msgid "Returns the error function." -msgstr "" +msgstr "Retorna la funció d'error" #: scfuncs.src msgctxt "" @@ -24041,7 +24053,7 @@ "2\n" "string.text" msgid "Lower Limit" -msgstr "" +msgstr "Límit inferior" #: scfuncs.src msgctxt "" @@ -24050,7 +24062,7 @@ "3\n" "string.text" msgid "The lower limit for integration" -msgstr "" +msgstr "Límit d'integració inferior" #: scfuncs.src msgctxt "" @@ -24059,7 +24071,7 @@ "1\n" "string.text" msgid "Returns the complementary error function." -msgstr "" +msgstr "Retorna la funció d'error complementària." #: scfuncs.src msgctxt "" @@ -24068,7 +24080,7 @@ "2\n" "string.text" msgid "Lower Limit" -msgstr "" +msgstr "Límit inferior" #: scfuncs.src msgctxt "" @@ -24077,7 +24089,7 @@ "3\n" "string.text" msgid "The lower limit for integration" -msgstr "" +msgstr "Límit d'integració inferior" #: scstring.src msgctxt "" @@ -24706,7 +24718,7 @@ "You have a large amount of data saved in the clipboard.\n" "Do you want the clipboard contents to be available in other applications?" msgstr "" -"Heu alçat una gran quantitat de dades al porta-retalls.\n" +"Heu guardat una gran quantitat de dades al porta-retalls.\n" "Voleu que el contingut del porta-retalls quede disponible per a altres aplicacions?" #: scstring.src @@ -25303,7 +25315,7 @@ "SCSTR_UPDATE_EXTDOCS\n" "string.text" msgid "Updating external links." -msgstr "" +msgstr "S'estan actualitzant externs." #: scstring.src msgctxt "" @@ -25448,7 +25460,7 @@ "SCSTR_SELECT\n" "string.text" msgid "Selection area" -msgstr "" +msgstr "Àrea de selecció" #: scstring.src msgctxt "" @@ -25456,7 +25468,7 @@ "STR_NOFORMULASPECIFIED\n" "string.text" msgid "No formula specified." -msgstr "" +msgstr "No s'ha indicat cap fórmula." #: scstring.src msgctxt "" @@ -25464,7 +25476,7 @@ "STR_NOCOLROW\n" "string.text" msgid "Neither row or column specified." -msgstr "" +msgstr "No s'ha indicat cap fila ni cap columna." #: scstring.src msgctxt "" @@ -25472,7 +25484,7 @@ "STR_WRONGFORMULA\n" "string.text" msgid "Undefined name or range." -msgstr "" +msgstr "El nom o l'interval no s'ha definit." #: scstring.src msgctxt "" @@ -25480,7 +25492,7 @@ "STR_WRONGROWCOL\n" "string.text" msgid "Undefined name or wrong cell reference." -msgstr "" +msgstr "El nom no s'ha definit o bé la referència a la cel·la és incorrecta." #: scstring.src msgctxt "" @@ -25488,7 +25500,7 @@ "STR_NOCOLFORMULA\n" "string.text" msgid "Formulas don't form a column." -msgstr "" +msgstr "Les fórmules no formen una columna." #: scstring.src msgctxt "" @@ -25496,7 +25508,7 @@ "STR_NOROWFORMULA\n" "string.text" msgid "Formulas don't form a row." -msgstr "" +msgstr "Les fórmules no formen una fila." #: scstring.src msgctxt "" @@ -25504,7 +25516,7 @@ "STR_ADD_AUTOFORMAT_TITLE\n" "string.text" msgid "Add AutoFormat" -msgstr "" +msgstr "Afig una formatació automàtica" #: scstring.src msgctxt "" @@ -25512,7 +25524,7 @@ "STR_RENAME_AUTOFORMAT_TITLE\n" "string.text" msgid "Rename AutoFormat" -msgstr "" +msgstr "Canvia el nom a la formatació automàtica" #: scstring.src msgctxt "" @@ -25520,7 +25532,7 @@ "STR_ADD_AUTOFORMAT_LABEL\n" "string.text" msgid "Name" -msgstr "" +msgstr "Nom" #: scstring.src msgctxt "" @@ -25528,7 +25540,7 @@ "STR_DEL_AUTOFORMAT_TITLE\n" "string.text" msgid "Delete AutoFormat" -msgstr "" +msgstr "Suprimeix la formatació automàtica" #: scstring.src msgctxt "" @@ -25536,7 +25548,7 @@ "STR_DEL_AUTOFORMAT_MSG\n" "string.text" msgid "Do you really want to delete the # AutoFomat?" -msgstr "" +msgstr "Esteu segur que voleu suprimir la formatació automàtica #?" #: scstring.src msgctxt "" @@ -25544,7 +25556,7 @@ "STR_BTN_AUTOFORMAT_CLOSE\n" "string.text" msgid "~Close" -msgstr "" +msgstr "Tan~ca" #: scstring.src msgctxt "" @@ -25552,7 +25564,7 @@ "STR_JAN\n" "string.text" msgid "Jan" -msgstr "" +msgstr "Gen" #: scstring.src msgctxt "" @@ -25560,7 +25572,7 @@ "STR_FEB\n" "string.text" msgid "Feb" -msgstr "" +msgstr "Febr" #: scstring.src msgctxt "" @@ -25568,7 +25580,7 @@ "STR_MAR\n" "string.text" msgid "Mar" -msgstr "" +msgstr "Març" #: scstring.src msgctxt "" @@ -25576,7 +25588,7 @@ "STR_NORTH\n" "string.text" msgid "North" -msgstr "" +msgstr "Nord" #: scstring.src msgctxt "" @@ -25592,7 +25604,7 @@ "STR_SOUTH\n" "string.text" msgid "South" -msgstr "" +msgstr "Sud" #: scstring.src msgctxt "" @@ -25600,7 +25612,7 @@ "STR_SUM\n" "string.text" msgid "Total" -msgstr "" +msgstr "Total" #: scwarngs.src msgctxt "" @@ -25609,7 +25621,7 @@ "ERRCODE_SC_EXPORT_WRN_ASCII & SH_MAX\n" "string.text" msgid "Only the active sheet could be saved." -msgstr "Només s'ha pogut alçar el full actiu." +msgstr "Només s'ha pogut guardar el full actiu." #: scwarngs.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sc/source/ui/StatisticsDialogs.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sc/source/ui/StatisticsDialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sc/source/ui/StatisticsDialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sc/source/ui/StatisticsDialogs.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-02-22 22:37+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-07-18 07:25+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393108637.0\n" +"X-POOTLE-MTIME: 1405668321.000000\n" #: StatisticsDialogs.src msgctxt "" @@ -59,7 +59,7 @@ "STR_ANOVA_TWO_FACTOR_LABEL\n" "string.text" msgid "ANOVA - Two Factor" -msgstr "" +msgstr "ANOVA - dos factors" #: StatisticsDialogs.src msgctxt "" @@ -239,7 +239,7 @@ "STRID_CALC_MEDIAN\n" "string.text" msgid "Median" -msgstr "Mitjana" +msgstr "Mediana" #: StatisticsDialogs.src msgctxt "" @@ -509,7 +509,7 @@ "STR_TTEST\n" "string.text" msgid "t-test" -msgstr "" +msgstr "Prova t" #: StatisticsDialogs.src msgctxt "" @@ -518,7 +518,7 @@ "STR_FTEST\n" "string.text" msgid "F-test" -msgstr "" +msgstr "Prova F" #: StatisticsDialogs.src msgctxt "" @@ -527,7 +527,7 @@ "STR_TTEST_UNDO_NAME\n" "string.text" msgid "t-test" -msgstr "" +msgstr "Prova t" #: StatisticsDialogs.src msgctxt "" @@ -536,7 +536,7 @@ "STR_FTEST_UNDO_NAME\n" "string.text" msgid "F-test" -msgstr "" +msgstr "Prova F" #: StatisticsDialogs.src msgctxt "" @@ -572,7 +572,7 @@ "STR_VARIABLE_1_LABEL\n" "string.text" msgid "Variable 1" -msgstr "" +msgstr "Variable 1" #: StatisticsDialogs.src msgctxt "" @@ -581,7 +581,7 @@ "STR_VARIABLE_2_LABEL\n" "string.text" msgid "Variable 2" -msgstr "" +msgstr "Variable 2" #: StatisticsDialogs.src msgctxt "" @@ -590,7 +590,7 @@ "STR_FTEST_OBSERVATIONS_LABEL\n" "string.text" msgid "Observations" -msgstr "" +msgstr "Observacions" #: StatisticsDialogs.src msgctxt "" @@ -599,7 +599,7 @@ "STR_FTEST_P_RIGHT_TAIL\n" "string.text" msgid "P (F<=f) right-tail" -msgstr "" +msgstr "P (F<=f) cua dreta" #: StatisticsDialogs.src msgctxt "" @@ -608,7 +608,7 @@ "STR_FTEST_F_CRITICAL_RIGHT_TAIL\n" "string.text" msgid "F Critical right-tail" -msgstr "" +msgstr "F cua dreta crítica" #: StatisticsDialogs.src msgctxt "" @@ -617,7 +617,7 @@ "STR_FTEST_P_LEFT_TAIL\n" "string.text" msgid "P (F<=f) left-tail" -msgstr "" +msgstr "P (F<=f) cua esquerra" #: StatisticsDialogs.src msgctxt "" @@ -626,7 +626,7 @@ "STR_FTEST_F_CRITICAL_LEFT_TAIL\n" "string.text" msgid "F Critical left-tail" -msgstr "" +msgstr "F cua esquerra crítica" #: StatisticsDialogs.src msgctxt "" @@ -635,7 +635,7 @@ "STR_FTEST_P_TWO_TAIL\n" "string.text" msgid "P two-tail" -msgstr "" +msgstr "P bilateral" #: StatisticsDialogs.src msgctxt "" @@ -644,7 +644,7 @@ "STR_FTEST_F_CRITICAL_TWO_TAIL\n" "string.text" msgid "F Critical two-tail" -msgstr "" +msgstr "F bilateral crítica" #: StatisticsDialogs.src msgctxt "" @@ -653,7 +653,7 @@ "STR_TTEST_PEARSON_CORRELATION\n" "string.text" msgid "Pearson Correlation" -msgstr "" +msgstr "Correlació de Pearson" #: StatisticsDialogs.src msgctxt "" @@ -662,7 +662,7 @@ "STR_TTEST_HYPOTHESIZED_MEAN_DIFFERENCE\n" "string.text" msgid "Hypothesized Mean Difference" -msgstr "" +msgstr "Diferència de mitjana hipotètica" #: StatisticsDialogs.src msgctxt "" @@ -671,7 +671,7 @@ "STR_TTEST_OBSERVED_MEAN_DIFFERENCE\n" "string.text" msgid "Observed Mean Difference" -msgstr "" +msgstr "Diferència de mitjana observada" #: StatisticsDialogs.src msgctxt "" @@ -680,7 +680,7 @@ "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES\n" "string.text" msgid "Variance of the Differences" -msgstr "" +msgstr "Variància de les diferències" #: StatisticsDialogs.src msgctxt "" @@ -689,7 +689,7 @@ "STR_TTEST_T_STAT\n" "string.text" msgid "t Stat" -msgstr "" +msgstr "Estadístic t" #: StatisticsDialogs.src msgctxt "" @@ -698,7 +698,7 @@ "STR_TTEST_P_ONE_TAIL\n" "string.text" msgid "P (T<=t) one-tail" -msgstr "" +msgstr "P (T<=t) unilateral" #: StatisticsDialogs.src msgctxt "" @@ -707,7 +707,7 @@ "STR_TTEST_T_CRITICAL_ONE_TAIL\n" "string.text" msgid "t Critical one-tail" -msgstr "" +msgstr "t unilateral crítica" #: StatisticsDialogs.src msgctxt "" @@ -716,7 +716,7 @@ "STR_TTEST_P_TWO_TAIL\n" "string.text" msgid "P (T<=t) two-tail" -msgstr "" +msgstr "P (T<=t) bilateral" #: StatisticsDialogs.src msgctxt "" @@ -725,4 +725,4 @@ "STR_TTEST_T_CRITICAL_TWO_TAIL\n" "string.text" msgid "t Critical two-tail" -msgstr "" +msgstr "t bilateral crítica" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sc/uiconfig/scalc/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sc/uiconfig/scalc/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sc/uiconfig/scalc/ui.po 2014-09-16 19:55:40.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: 2014-06-25 17:39+0200\n" -"PO-Revision-Date: 2014-02-22 22:57+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-07-17 13:25+0000\n" +"Last-Translator: Joan \n" "Language-Team: none\n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393109856.0\n" +"X-POOTLE-MTIME: 1405603513.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -230,7 +230,7 @@ "label\n" "string.text" msgid "Rows per sample" -msgstr "" +msgstr "Files per mostra" #: analysisofvariancedialog.ui msgctxt "" @@ -248,7 +248,7 @@ "label\n" "string.text" msgid "Single factor" -msgstr "" +msgstr "Factor únic" #: analysisofvariancedialog.ui msgctxt "" @@ -257,7 +257,7 @@ "label\n" "string.text" msgid "Two factor" -msgstr "" +msgstr "Factor doble" #: analysisofvariancedialog.ui msgctxt "" @@ -266,7 +266,7 @@ "label\n" "string.text" msgid "Type" -msgstr "" +msgstr "Tipus" #: autoformattable.ui msgctxt "" @@ -275,7 +275,7 @@ "title\n" "string.text" msgid "AutoFormat" -msgstr "" +msgstr "Formatació automàtica" #: autoformattable.ui msgctxt "" @@ -284,7 +284,7 @@ "label\n" "string.text" msgid "Rename" -msgstr "" +msgstr "Canvia el nom" #: autoformattable.ui msgctxt "" @@ -293,7 +293,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Format" #: autoformattable.ui msgctxt "" @@ -302,7 +302,7 @@ "label\n" "string.text" msgid "_Number format" -msgstr "" +msgstr "Format _numèric" #: autoformattable.ui msgctxt "" @@ -311,7 +311,7 @@ "label\n" "string.text" msgid "_Borders" -msgstr "" +msgstr "_Vores" #: autoformattable.ui msgctxt "" @@ -320,7 +320,7 @@ "label\n" "string.text" msgid "F_ont" -msgstr "" +msgstr "_Tipus de lletra" #: autoformattable.ui msgctxt "" @@ -329,7 +329,7 @@ "label\n" "string.text" msgid "_Pattern" -msgstr "" +msgstr "_Patró" #: autoformattable.ui msgctxt "" @@ -338,7 +338,7 @@ "label\n" "string.text" msgid "Alignmen_t" -msgstr "" +msgstr "_Alineació" #: autoformattable.ui msgctxt "" @@ -347,7 +347,7 @@ "label\n" "string.text" msgid "A_utoFit width and height" -msgstr "" +msgstr "Ajusta a_utomàticament l'amplada i l'alçada" #: autoformattable.ui msgctxt "" @@ -356,7 +356,7 @@ "label\n" "string.text" msgid "Formatting" -msgstr "" +msgstr "Formatació" #: cellprotectionpage.ui msgctxt "" @@ -443,7 +443,7 @@ "title\n" "string.text" msgid "Change Source Data Range" -msgstr "" +msgstr "Modifica l'interval de les dades font" #: changesourcedialog.ui msgctxt "" @@ -452,7 +452,7 @@ "label\n" "string.text" msgid "First _column as label" -msgstr "" +msgstr "La primera _columna com a etiqueta" #: changesourcedialog.ui msgctxt "" @@ -461,7 +461,7 @@ "label\n" "string.text" msgid "First _row as label" -msgstr "" +msgstr "La primera _fila com a etiqueta" #: changesourcedialog.ui msgctxt "" @@ -470,7 +470,7 @@ "label\n" "string.text" msgid "Labels" -msgstr "" +msgstr "Etiquetes" #: chardialog.ui msgctxt "" @@ -479,7 +479,7 @@ "title\n" "string.text" msgid "Character" -msgstr "" +msgstr "Caràcter" #: chardialog.ui msgctxt "" @@ -488,7 +488,7 @@ "label\n" "string.text" msgid "Font" -msgstr "" +msgstr "Tipus de lletra" #: chardialog.ui msgctxt "" @@ -497,7 +497,7 @@ "label\n" "string.text" msgid "Font Effects" -msgstr "" +msgstr "Efectes del tipus de lletra" #: chardialog.ui msgctxt "" @@ -506,7 +506,7 @@ "label\n" "string.text" msgid "Position" -msgstr "" +msgstr "Posició" #: colorrowdialog.ui msgctxt "" @@ -515,7 +515,7 @@ "title\n" "string.text" msgid "Copy List" -msgstr "" +msgstr "Copia la llista" #: colorrowdialog.ui msgctxt "" @@ -524,7 +524,7 @@ "label\n" "string.text" msgid "_Columns" -msgstr "" +msgstr "_Columnes" #: colorrowdialog.ui msgctxt "" @@ -533,7 +533,7 @@ "label\n" "string.text" msgid "_Rows" -msgstr "" +msgstr "_Files" #: colorrowdialog.ui msgctxt "" @@ -542,7 +542,7 @@ "label\n" "string.text" msgid "List from" -msgstr "" +msgstr "Llista des de" #: colwidthdialog.ui msgctxt "" @@ -551,7 +551,7 @@ "title\n" "string.text" msgid "Column Width" -msgstr "" +msgstr "Amplada de la columna" #: colwidthdialog.ui msgctxt "" @@ -560,7 +560,7 @@ "label\n" "string.text" msgid "Width" -msgstr "" +msgstr "Amplada" #: colwidthdialog.ui msgctxt "" @@ -569,7 +569,7 @@ "label\n" "string.text" msgid "_Default value" -msgstr "" +msgstr "Valor per _defecte" #: conditionalformatdialog.ui msgctxt "" @@ -578,7 +578,7 @@ "title\n" "string.text" msgid "Conditional Formatting for" -msgstr "" +msgstr "Formatació condicional per a" #: conditionalformatdialog.ui msgctxt "" @@ -587,7 +587,7 @@ "label\n" "string.text" msgid "Range:" -msgstr "" +msgstr "Interval:" #: consolidatedialog.ui msgctxt "" @@ -956,7 +956,7 @@ "title\n" "string.text" msgid "Data Bar" -msgstr "" +msgstr "Barra de dades" #: databaroptions.ui msgctxt "" @@ -965,7 +965,7 @@ "label\n" "string.text" msgid "Minimum:" -msgstr "" +msgstr "Mínim:" #: databaroptions.ui msgctxt "" @@ -974,7 +974,7 @@ "label\n" "string.text" msgid "Maximum:" -msgstr "" +msgstr "Màxim:" #: databaroptions.ui msgctxt "" @@ -983,7 +983,7 @@ "0\n" "stringlist.text" msgid "Automatic" -msgstr "" +msgstr "Automàtic" #: databaroptions.ui msgctxt "" @@ -992,7 +992,7 @@ "1\n" "stringlist.text" msgid "Minimum" -msgstr "" +msgstr "Mínim" #: databaroptions.ui msgctxt "" @@ -1001,7 +1001,7 @@ "2\n" "stringlist.text" msgid "Maximum" -msgstr "" +msgstr "Màxim" #: databaroptions.ui msgctxt "" @@ -1010,7 +1010,7 @@ "3\n" "stringlist.text" msgid "Percentile" -msgstr "" +msgstr "Percentil" #: databaroptions.ui msgctxt "" @@ -1019,7 +1019,7 @@ "4\n" "stringlist.text" msgid "Value" -msgstr "" +msgstr "Valor" #: databaroptions.ui msgctxt "" @@ -1028,7 +1028,7 @@ "5\n" "stringlist.text" msgid "Percent" -msgstr "" +msgstr "Percentatge" #: databaroptions.ui msgctxt "" @@ -1037,7 +1037,7 @@ "6\n" "stringlist.text" msgid "Formula" -msgstr "" +msgstr "Fórmula" #: databaroptions.ui msgctxt "" @@ -1046,7 +1046,7 @@ "0\n" "stringlist.text" msgid "Automatic" -msgstr "" +msgstr "Automàtic" #: databaroptions.ui msgctxt "" @@ -1055,7 +1055,7 @@ "1\n" "stringlist.text" msgid "Minimum" -msgstr "" +msgstr "Mínim" #: databaroptions.ui msgctxt "" @@ -1064,7 +1064,7 @@ "2\n" "stringlist.text" msgid "Maximum" -msgstr "" +msgstr "Màxim" #: databaroptions.ui msgctxt "" @@ -1073,7 +1073,7 @@ "3\n" "stringlist.text" msgid "Percentile" -msgstr "" +msgstr "Percentil" #: databaroptions.ui msgctxt "" @@ -1082,7 +1082,7 @@ "4\n" "stringlist.text" msgid "Value" -msgstr "" +msgstr "Valor" #: databaroptions.ui msgctxt "" @@ -1091,7 +1091,7 @@ "5\n" "stringlist.text" msgid "Percent" -msgstr "" +msgstr "Percentatge" #: databaroptions.ui msgctxt "" @@ -1100,7 +1100,7 @@ "6\n" "stringlist.text" msgid "Formula" -msgstr "" +msgstr "Fórmula" #: databaroptions.ui msgctxt "" @@ -1109,7 +1109,7 @@ "label\n" "string.text" msgid "Entry Values" -msgstr "" +msgstr "Valors d'entrada" #: databaroptions.ui msgctxt "" @@ -1118,7 +1118,7 @@ "label\n" "string.text" msgid "Positive:" -msgstr "" +msgstr "Positiu:" #: databaroptions.ui msgctxt "" @@ -1127,7 +1127,7 @@ "label\n" "string.text" msgid "Negative:" -msgstr "" +msgstr "Negatiu:" #: databaroptions.ui msgctxt "" @@ -1136,7 +1136,7 @@ "label\n" "string.text" msgid "Bar Colors" -msgstr "" +msgstr "Colors de les barres" #: databaroptions.ui msgctxt "" @@ -1145,7 +1145,7 @@ "label\n" "string.text" msgid "Position of vertical axis:" -msgstr "" +msgstr "Posició de l'eix vertical:" #: databaroptions.ui msgctxt "" @@ -1154,7 +1154,7 @@ "label\n" "string.text" msgid "Color of vertical axis:" -msgstr "" +msgstr "Color de l'eix vertical:" #: databaroptions.ui msgctxt "" @@ -1163,7 +1163,7 @@ "0\n" "stringlist.text" msgid "Automatic" -msgstr "" +msgstr "Automàtic" #: databaroptions.ui msgctxt "" @@ -1181,7 +1181,7 @@ "2\n" "stringlist.text" msgid "None" -msgstr "" +msgstr "Cap" #: databaroptions.ui msgctxt "" @@ -1190,7 +1190,7 @@ "label\n" "string.text" msgid "Axis" -msgstr "" +msgstr "Eix" #: databaroptions.ui msgctxt "" @@ -1199,7 +1199,7 @@ "label\n" "string.text" msgid "Min value must be smaller than max value!" -msgstr "" +msgstr "El valor mínim ha de ser inferior al valor màxim!" #: datafielddialog.ui msgctxt "" @@ -1208,7 +1208,7 @@ "title\n" "string.text" msgid "Data Field" -msgstr "" +msgstr "Camp de dades" #: datafielddialog.ui msgctxt "" @@ -1217,7 +1217,7 @@ "label\n" "string.text" msgid "Function" -msgstr "" +msgstr "Funció" #: datafielddialog.ui msgctxt "" @@ -1226,7 +1226,7 @@ "label\n" "string.text" msgid "Show it_ems without data" -msgstr "" +msgstr "Mostra els _elements sense dades" #: datafielddialog.ui msgctxt "" @@ -1235,7 +1235,7 @@ "label\n" "string.text" msgid "Name:" -msgstr "" +msgstr "Nom:" #: datafielddialog.ui msgctxt "" @@ -1244,7 +1244,7 @@ "label\n" "string.text" msgid "_Type" -msgstr "" +msgstr "_Tipus" #: datafielddialog.ui msgctxt "" @@ -1253,7 +1253,7 @@ "label\n" "string.text" msgid "_Base field" -msgstr "" +msgstr "Camp _base" #: datafielddialog.ui msgctxt "" @@ -1262,7 +1262,7 @@ "label\n" "string.text" msgid "Ba_se item" -msgstr "" +msgstr "Element ba_se" #: datafielddialog.ui msgctxt "" @@ -1271,7 +1271,7 @@ "0\n" "stringlist.text" msgid "Normal" -msgstr "" +msgstr "Normal" #: datafielddialog.ui msgctxt "" @@ -1280,7 +1280,7 @@ "1\n" "stringlist.text" msgid "Difference from" -msgstr "" +msgstr "Diferència de" #: datafielddialog.ui msgctxt "" @@ -1289,7 +1289,7 @@ "2\n" "stringlist.text" msgid "% of" -msgstr "" +msgstr "% de" #: datafielddialog.ui msgctxt "" @@ -1298,7 +1298,7 @@ "3\n" "stringlist.text" msgid "% difference from" -msgstr "" +msgstr "% de diferència de" #: datafielddialog.ui msgctxt "" @@ -1307,7 +1307,7 @@ "4\n" "stringlist.text" msgid "Running total in" -msgstr "" +msgstr "D'un total de" #: datafielddialog.ui msgctxt "" @@ -1316,7 +1316,7 @@ "5\n" "stringlist.text" msgid "% of row" -msgstr "" +msgstr "% de la fila" #: datafielddialog.ui msgctxt "" @@ -1325,7 +1325,7 @@ "6\n" "stringlist.text" msgid "% of column" -msgstr "" +msgstr "% de la columna" #: datafielddialog.ui msgctxt "" @@ -1334,7 +1334,7 @@ "7\n" "stringlist.text" msgid "% of total" -msgstr "" +msgstr "% del total" #: datafielddialog.ui msgctxt "" @@ -1343,7 +1343,7 @@ "8\n" "stringlist.text" msgid "Index" -msgstr "" +msgstr "Índex" #: datafielddialog.ui msgctxt "" @@ -1352,7 +1352,7 @@ "0\n" "stringlist.text" msgid "- previous item -" -msgstr "" +msgstr "- element anterior -" #: datafielddialog.ui msgctxt "" @@ -1361,7 +1361,7 @@ "1\n" "stringlist.text" msgid "- next item -" -msgstr "" +msgstr "- element següent -" #: datafielddialog.ui msgctxt "" @@ -1370,7 +1370,7 @@ "label\n" "string.text" msgid "Displayed value" -msgstr "" +msgstr "Valor mostrat" #: datafieldoptionsdialog.ui msgctxt "" @@ -1379,7 +1379,7 @@ "title\n" "string.text" msgid "Data Field Options" -msgstr "" +msgstr "Opcions del camp de dades" #: datafieldoptionsdialog.ui msgctxt "" @@ -1388,7 +1388,7 @@ "label\n" "string.text" msgid "_Ascending" -msgstr "" +msgstr "_Ascendent" #: datafieldoptionsdialog.ui msgctxt "" @@ -1397,7 +1397,7 @@ "label\n" "string.text" msgid "_Descending" -msgstr "" +msgstr "_Descendent" #: datafieldoptionsdialog.ui msgctxt "" @@ -1406,7 +1406,7 @@ "label\n" "string.text" msgid "_Manual" -msgstr "" +msgstr "_Manual" #: datafieldoptionsdialog.ui msgctxt "" @@ -1415,7 +1415,7 @@ "label\n" "string.text" msgid "Sort by" -msgstr "" +msgstr "Ordena per" #: datafieldoptionsdialog.ui msgctxt "" @@ -1424,7 +1424,7 @@ "label\n" "string.text" msgid "_Empty line after each item" -msgstr "" +msgstr "Línia buida després de cada _element" #: datafieldoptionsdialog.ui msgctxt "" @@ -1433,7 +1433,7 @@ "label\n" "string.text" msgid "_Layout" -msgstr "" +msgstr "_Disposició" #: datafieldoptionsdialog.ui msgctxt "" @@ -1442,7 +1442,7 @@ "0\n" "stringlist.text" msgid "Tabular layout" -msgstr "" +msgstr "Format dels tabuladors" #: datafieldoptionsdialog.ui msgctxt "" @@ -1451,7 +1451,7 @@ "1\n" "stringlist.text" msgid "Outline layout with subtotals at the top" -msgstr "" +msgstr "Disseny de ressaltat amb els subtotals a la part superior" #: datafieldoptionsdialog.ui msgctxt "" @@ -1460,7 +1460,7 @@ "2\n" "stringlist.text" msgid "Outline layout with subtotals at the bottom" -msgstr "" +msgstr "Disseny de ressaltat amb els subtotals a la part inferior" #: datafieldoptionsdialog.ui msgctxt "" @@ -1469,7 +1469,7 @@ "label\n" "string.text" msgid "Display options" -msgstr "" +msgstr "Opcions de visualització" #: datafieldoptionsdialog.ui msgctxt "" @@ -1478,7 +1478,7 @@ "label\n" "string.text" msgid "_Show" -msgstr "" +msgstr "_Mostra" #: datafieldoptionsdialog.ui msgctxt "" @@ -1487,7 +1487,7 @@ "label\n" "string.text" msgid "_From" -msgstr "" +msgstr "_Des de" #: datafieldoptionsdialog.ui msgctxt "" @@ -1496,7 +1496,7 @@ "label\n" "string.text" msgid "_Using field" -msgstr "" +msgstr "_Utilitzant els camps" #: datafieldoptionsdialog.ui msgctxt "" @@ -1505,7 +1505,7 @@ "label\n" "string.text" msgid "items" -msgstr "" +msgstr "elements" #: datafieldoptionsdialog.ui msgctxt "" @@ -1514,7 +1514,7 @@ "0\n" "stringlist.text" msgid "Top" -msgstr "" +msgstr "Part superior" #: datafieldoptionsdialog.ui msgctxt "" @@ -1523,7 +1523,7 @@ "1\n" "stringlist.text" msgid "Bottom" -msgstr "" +msgstr "Part inferior" #: datafieldoptionsdialog.ui msgctxt "" @@ -1532,7 +1532,7 @@ "label\n" "string.text" msgid "Show automatically" -msgstr "" +msgstr "Mostra automàticament" #: datafieldoptionsdialog.ui msgctxt "" @@ -1541,7 +1541,7 @@ "label\n" "string.text" msgid "Hide items" -msgstr "" +msgstr "Amaga els elements" #: datafieldoptionsdialog.ui msgctxt "" @@ -1550,7 +1550,7 @@ "label\n" "string.text" msgid "Hierarch_y" -msgstr "" +msgstr "_Jerarquia" #: dataform.ui msgctxt "" @@ -1865,7 +1865,7 @@ "label\n" "string.text" msgid "Don't save _imported data" -msgstr "No alces les dades _importades" +msgstr "No guardes les dades _importades" #: definedatabaserangedialog.ui msgctxt "" @@ -2756,7 +2756,7 @@ "label\n" "string.text" msgid "Conversion from text to number" -msgstr "" +msgstr "Conversió de text a número" #: formulacalculationoptions.ui msgctxt "" @@ -2783,7 +2783,7 @@ "label\n" "string.text" msgid "Treat as zero" -msgstr "" +msgstr "Tracta com a zero" #: formulacalculationoptions.ui msgctxt "" @@ -2981,7 +2981,7 @@ "title\n" "string.text" msgid "Grouping" -msgstr "" +msgstr "Agrupació" #: groupbydate.ui msgctxt "" @@ -2990,7 +2990,7 @@ "label\n" "string.text" msgid "_Automatically" -msgstr "" +msgstr "_Automàticament" #: groupbydate.ui msgctxt "" @@ -2999,7 +2999,7 @@ "label\n" "string.text" msgid "_Manually at:" -msgstr "" +msgstr "_Manualment a" #: groupbydate.ui msgctxt "" @@ -3008,7 +3008,7 @@ "label\n" "string.text" msgid "Start" -msgstr "" +msgstr "Inici" #: groupbydate.ui msgctxt "" @@ -3017,7 +3017,7 @@ "label\n" "string.text" msgid "A_utomatically" -msgstr "" +msgstr "A_utomàticament" #: groupbydate.ui msgctxt "" @@ -3026,7 +3026,7 @@ "label\n" "string.text" msgid "Ma_nually at:" -msgstr "" +msgstr "Ma_nualment a:" #: groupbydate.ui msgctxt "" @@ -3035,7 +3035,7 @@ "label\n" "string.text" msgid "End" -msgstr "" +msgstr "Fi" #: groupbydate.ui msgctxt "" @@ -3044,7 +3044,7 @@ "label\n" "string.text" msgid "Number of _days" -msgstr "" +msgstr "Nombre de _dies" #: groupbydate.ui msgctxt "" @@ -3053,7 +3053,7 @@ "label\n" "string.text" msgid "_Intervals" -msgstr "" +msgstr "_Intervals" #: groupbydate.ui msgctxt "" @@ -3062,7 +3062,7 @@ "label\n" "string.text" msgid "Group by" -msgstr "" +msgstr "Agrupa per" #: groupbynumber.ui msgctxt "" @@ -3080,7 +3080,7 @@ "label\n" "string.text" msgid "_Automatically" -msgstr "" +msgstr "_Automàticament" #: groupbynumber.ui msgctxt "" @@ -3089,7 +3089,7 @@ "label\n" "string.text" msgid "_Manually at:" -msgstr "" +msgstr "_Manualment a:" #: groupbynumber.ui msgctxt "" @@ -3098,7 +3098,7 @@ "label\n" "string.text" msgid "Start" -msgstr "" +msgstr "Inicia" #: groupbynumber.ui msgctxt "" @@ -3107,7 +3107,7 @@ "label\n" "string.text" msgid "A_utomatically" -msgstr "" +msgstr "Au_tomàticament" #: groupbynumber.ui msgctxt "" @@ -3116,7 +3116,7 @@ "label\n" "string.text" msgid "Ma_nually at:" -msgstr "" +msgstr "Ma_nualment a:" #: groupbynumber.ui msgctxt "" @@ -3125,7 +3125,7 @@ "label\n" "string.text" msgid "End" -msgstr "" +msgstr "Final" #: groupbynumber.ui msgctxt "" @@ -3134,7 +3134,7 @@ "label\n" "string.text" msgid "Group by" -msgstr "" +msgstr "Agrupat per" #: groupdialog.ui msgctxt "" @@ -3521,7 +3521,7 @@ "title\n" "string.text" msgid "Import File" -msgstr "" +msgstr "Importa un fitxer" #: imoptdialog.ui msgctxt "" @@ -3530,7 +3530,7 @@ "label\n" "string.text" msgid "_Character set" -msgstr "" +msgstr "Joc de _caràcters" #: imoptdialog.ui msgctxt "" @@ -3539,7 +3539,7 @@ "label\n" "string.text" msgid "_Field delimiter" -msgstr "" +msgstr "_Delimitador de text" #: imoptdialog.ui msgctxt "" @@ -3548,7 +3548,7 @@ "label\n" "string.text" msgid "_Text delimiter" -msgstr "" +msgstr "Delimitador de _text" #: imoptdialog.ui msgctxt "" @@ -3557,7 +3557,7 @@ "label\n" "string.text" msgid "Save cell content as _shown" -msgstr "" +msgstr "Guarda els continguts de la cel·la com es mo_stren" #: imoptdialog.ui msgctxt "" @@ -3566,7 +3566,7 @@ "label\n" "string.text" msgid "Save cell fo_rmulas instead of calculated values" -msgstr "" +msgstr "Guarda les fó_rmules de les cel·les en lloc dels valors calculats" #: imoptdialog.ui msgctxt "" @@ -3575,7 +3575,7 @@ "label\n" "string.text" msgid "_Quote all text cells" -msgstr "" +msgstr "Posa les cel·les de text entre _cometes" #: imoptdialog.ui msgctxt "" @@ -3584,7 +3584,7 @@ "label\n" "string.text" msgid "Fixed column _width" -msgstr "" +msgstr "_Amplada fixa de columna" #: imoptdialog.ui msgctxt "" @@ -3593,7 +3593,7 @@ "label\n" "string.text" msgid "Field options" -msgstr "" +msgstr "Opcions de camp" #: insertcells.ui msgctxt "" @@ -4115,7 +4115,7 @@ "title\n" "string.text" msgid "Multiple operations" -msgstr "" +msgstr "Operacions múltiples" #: multipleoperationsdialog.ui msgctxt "" @@ -4124,7 +4124,7 @@ "label\n" "string.text" msgid "_Formulas" -msgstr "" +msgstr "_Fórmules" #: multipleoperationsdialog.ui msgctxt "" @@ -4133,7 +4133,7 @@ "label\n" "string.text" msgid "_Row input cell" -msgstr "" +msgstr "Entrada de la _fila" #: multipleoperationsdialog.ui msgctxt "" @@ -4142,7 +4142,7 @@ "label\n" "string.text" msgid "_Column input cell" -msgstr "" +msgstr "Cel·la d'entrada de la _columna" #: multipleoperationsdialog.ui msgctxt "" @@ -4151,7 +4151,7 @@ "label\n" "string.text" msgid "Default settings" -msgstr "" +msgstr "Paràmetres per defecte" #: namerangesdialog.ui msgctxt "" @@ -4205,7 +4205,7 @@ "title\n" "string.text" msgid "No Solution" -msgstr "" +msgstr "Sense solució" #: nosolutiondialog.ui msgctxt "" @@ -4664,7 +4664,7 @@ "label\n" "string.text" msgid "ODF Spreadsheet (not saved by %PRODUCTNAME)" -msgstr "Full de càlcul ODF (no alçat amb el %PRODUCTNAME)" +msgstr "Full de càlcul ODF (no guardat amb el %PRODUCTNAME)" #: optformula.ui msgctxt "" @@ -4739,13 +4739,14 @@ msgstr "" #: optimalcolwidthdialog.ui +#, fuzzy msgctxt "" "optimalcolwidthdialog.ui\n" "label1\n" "label\n" "string.text" msgid "Add" -msgstr "" +msgstr "_Afig" #: optimalcolwidthdialog.ui msgctxt "" @@ -4766,13 +4767,14 @@ msgstr "" #: optimalrowheightdialog.ui +#, fuzzy msgctxt "" "optimalrowheightdialog.ui\n" "label1\n" "label\n" "string.text" msgid "Add" -msgstr "" +msgstr "_Afig" #: optimalrowheightdialog.ui msgctxt "" @@ -4961,7 +4963,7 @@ "label\n" "string.text" msgid "Alignment" -msgstr "" +msgstr "Alineació" #: paradialog.ui msgctxt "" @@ -4970,7 +4972,7 @@ "label\n" "string.text" msgid "Asian Typography" -msgstr "" +msgstr "Tipografia asiàtica" #: paradialog.ui msgctxt "" @@ -5090,22 +5092,24 @@ msgstr "" #: pastespecial.ui +#, fuzzy msgctxt "" "pastespecial.ui\n" "paste_all\n" "label\n" "string.text" msgid "_Paste all" -msgstr "" +msgstr "_Enganxa-ho tot" #: pastespecial.ui +#, fuzzy msgctxt "" "pastespecial.ui\n" "text\n" "label\n" "string.text" msgid "Te_xt" -msgstr "" +msgstr "Text" #: pastespecial.ui msgctxt "" @@ -5114,7 +5118,7 @@ "label\n" "string.text" msgid "_Numbers" -msgstr "" +msgstr "_Números" #: pastespecial.ui msgctxt "" @@ -5123,7 +5127,7 @@ "label\n" "string.text" msgid "_Date & time" -msgstr "" +msgstr "_Dia i hora" #: pastespecial.ui msgctxt "" @@ -5132,7 +5136,7 @@ "label\n" "string.text" msgid "_Formulas" -msgstr "" +msgstr "_Fórmules" #: pastespecial.ui msgctxt "" @@ -5141,7 +5145,7 @@ "label\n" "string.text" msgid "_Comments" -msgstr "" +msgstr "_Comentaris" #: pastespecial.ui msgctxt "" @@ -5150,7 +5154,7 @@ "label\n" "string.text" msgid "For_mats" -msgstr "" +msgstr "For_mats" #: pastespecial.ui msgctxt "" @@ -5159,7 +5163,7 @@ "label\n" "string.text" msgid "_Objects" -msgstr "" +msgstr "_Objectes" #: pastespecial.ui msgctxt "" @@ -5168,16 +5172,17 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Selecció" #: pastespecial.ui +#, fuzzy msgctxt "" "pastespecial.ui\n" "none\n" "label\n" "string.text" msgid "Non_e" -msgstr "" +msgstr "Nota" #: pastespecial.ui msgctxt "" @@ -5186,7 +5191,7 @@ "label\n" "string.text" msgid "_Add" -msgstr "" +msgstr "_Afig" #: pastespecial.ui msgctxt "" @@ -5216,13 +5221,14 @@ msgstr "" #: pastespecial.ui +#, fuzzy msgctxt "" "pastespecial.ui\n" "label2\n" "label\n" "string.text" msgid "Operations" -msgstr "" +msgstr "Operacions:" #: pastespecial.ui msgctxt "" @@ -5240,7 +5246,7 @@ "label\n" "string.text" msgid "_Transpose" -msgstr "" +msgstr "_Transposa" #: pastespecial.ui msgctxt "" @@ -5249,7 +5255,7 @@ "label\n" "string.text" msgid "_Link" -msgstr "" +msgstr "En_llaç" #: pastespecial.ui msgctxt "" @@ -5258,7 +5264,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "Opcions" #: pastespecial.ui msgctxt "" @@ -5267,7 +5273,7 @@ "label\n" "string.text" msgid "Don't sh_ift" -msgstr "" +msgstr "No desplac_is" #: pastespecial.ui msgctxt "" @@ -5276,7 +5282,7 @@ "label\n" "string.text" msgid "Do_wn" -msgstr "" +msgstr "A_vall" #: pastespecial.ui msgctxt "" @@ -5285,7 +5291,7 @@ "label\n" "string.text" msgid "_Right" -msgstr "" +msgstr "_Dreta" #: pastespecial.ui msgctxt "" @@ -5294,7 +5300,7 @@ "label\n" "string.text" msgid "Shift cells" -msgstr "" +msgstr "Desplaça les cel·les" #: pivotfielddialog.ui msgctxt "" @@ -5303,7 +5309,7 @@ "title\n" "string.text" msgid "Data Field" -msgstr "" +msgstr "Camp de dades" #: pivotfielddialog.ui msgctxt "" @@ -5312,7 +5318,7 @@ "label\n" "string.text" msgid "_Options..." -msgstr "" +msgstr "_Opcions..." #: pivotfielddialog.ui msgctxt "" @@ -5321,7 +5327,7 @@ "label\n" "string.text" msgid "_None" -msgstr "" +msgstr "_Nota" #: pivotfielddialog.ui msgctxt "" @@ -5330,7 +5336,7 @@ "label\n" "string.text" msgid "_Automatic" -msgstr "" +msgstr "_Automàtic" #: pivotfielddialog.ui msgctxt "" @@ -5339,7 +5345,7 @@ "label\n" "string.text" msgid "_User-defined" -msgstr "" +msgstr "Definit per l'_usuari" #: pivotfielddialog.ui msgctxt "" @@ -5348,7 +5354,7 @@ "label\n" "string.text" msgid "Subtotals" -msgstr "" +msgstr "Subtotals" #: pivotfielddialog.ui msgctxt "" @@ -5357,7 +5363,7 @@ "label\n" "string.text" msgid "Show it_ems without data" -msgstr "" +msgstr "Mostra els _elements sense dades" #: pivotfielddialog.ui msgctxt "" @@ -5366,7 +5372,7 @@ "label\n" "string.text" msgid "Name:" -msgstr "" +msgstr "Nom:" #: pivotfilterdialog.ui msgctxt "" @@ -5375,7 +5381,7 @@ "title\n" "string.text" msgid "Filter" -msgstr "" +msgstr "Filtre" #: pivotfilterdialog.ui msgctxt "" @@ -5384,7 +5390,7 @@ "0\n" "stringlist.text" msgid "AND" -msgstr "" +msgstr "I" #: pivotfilterdialog.ui msgctxt "" @@ -5393,7 +5399,7 @@ "1\n" "stringlist.text" msgid "OR" -msgstr "" +msgstr "O" #: pivotfilterdialog.ui msgctxt "" @@ -5402,7 +5408,7 @@ "0\n" "stringlist.text" msgid "AND" -msgstr "" +msgstr "I" #: pivotfilterdialog.ui msgctxt "" @@ -5411,7 +5417,7 @@ "1\n" "stringlist.text" msgid "OR" -msgstr "" +msgstr "O" #: pivotfilterdialog.ui msgctxt "" @@ -5420,7 +5426,7 @@ "label\n" "string.text" msgid "Operator" -msgstr "" +msgstr "Operador" #: pivotfilterdialog.ui msgctxt "" @@ -5429,7 +5435,7 @@ "label\n" "string.text" msgid "Field name" -msgstr "" +msgstr "Nom del camp" #: pivotfilterdialog.ui msgctxt "" @@ -5438,7 +5444,7 @@ "label\n" "string.text" msgid "Condition" -msgstr "" +msgstr "Condició" #: pivotfilterdialog.ui msgctxt "" @@ -5447,7 +5453,7 @@ "label\n" "string.text" msgid "Value" -msgstr "" +msgstr "Valor" #: pivotfilterdialog.ui msgctxt "" @@ -5456,7 +5462,7 @@ "label\n" "string.text" msgid "Filter criteria" -msgstr "" +msgstr "Criteris de filtre" #: pivotfilterdialog.ui msgctxt "" @@ -5465,7 +5471,7 @@ "label\n" "string.text" msgid "_Case sensitive" -msgstr "" +msgstr "_Distingeix entre majúscules i minúscules" #: pivotfilterdialog.ui msgctxt "" @@ -5474,7 +5480,7 @@ "label\n" "string.text" msgid "Regular _expressions" -msgstr "" +msgstr "_Expressions regulars" #: pivotfilterdialog.ui msgctxt "" @@ -5483,7 +5489,7 @@ "label\n" "string.text" msgid "_No duplications" -msgstr "" +msgstr "_Sense duplicacions" #: pivotfilterdialog.ui msgctxt "" @@ -5492,7 +5498,7 @@ "label\n" "string.text" msgid "Data range:" -msgstr "" +msgstr "Interval de dades:" #: pivotfilterdialog.ui msgctxt "" @@ -5501,7 +5507,7 @@ "label\n" "string.text" msgid "dummy" -msgstr "" +msgstr "fictici" #: pivotfilterdialog.ui msgctxt "" @@ -5510,7 +5516,7 @@ "label\n" "string.text" msgid "Op_tions" -msgstr "" +msgstr "Op_cions" #: pivottablelayoutdialog.ui msgctxt "" @@ -5528,7 +5534,7 @@ "label\n" "string.text" msgid "Column Fields:" -msgstr "" +msgstr "Camps de columna:" #: pivottablelayoutdialog.ui msgctxt "" @@ -5537,7 +5543,7 @@ "label\n" "string.text" msgid "Data Fields:" -msgstr "" +msgstr "Camps de dades:" #: pivottablelayoutdialog.ui msgctxt "" @@ -5546,7 +5552,7 @@ "label\n" "string.text" msgid "Row Fields:" -msgstr "" +msgstr "Camps de fila:" #: pivottablelayoutdialog.ui msgctxt "" @@ -5555,7 +5561,7 @@ "label\n" "string.text" msgid "Page Fields:" -msgstr "" +msgstr "Camps de pàgina:" #: pivottablelayoutdialog.ui msgctxt "" @@ -5564,7 +5570,7 @@ "label\n" "string.text" msgid "Available Fields:" -msgstr "" +msgstr "Camps disponibles:" #: pivottablelayoutdialog.ui msgctxt "" @@ -5573,7 +5579,7 @@ "label\n" "string.text" msgid "Drag the items into the desired position" -msgstr "" +msgstr "Arrossegueu els elements a la posició desitjada." #: pivottablelayoutdialog.ui msgctxt "" @@ -5582,7 +5588,7 @@ "label\n" "string.text" msgid "Ignore empty rows" -msgstr "" +msgstr "Ignora les files buides" #: pivottablelayoutdialog.ui msgctxt "" @@ -5591,7 +5597,7 @@ "label\n" "string.text" msgid "Identify categories" -msgstr "" +msgstr "Identifica les categories" #: pivottablelayoutdialog.ui msgctxt "" @@ -5600,7 +5606,7 @@ "label\n" "string.text" msgid "Total rows" -msgstr "" +msgstr "Total de files" #: pivottablelayoutdialog.ui msgctxt "" @@ -5609,7 +5615,7 @@ "label\n" "string.text" msgid "Total columns" -msgstr "" +msgstr "Total de columnes" #: pivottablelayoutdialog.ui msgctxt "" @@ -5618,7 +5624,7 @@ "label\n" "string.text" msgid "Add filter" -msgstr "" +msgstr "Afig un filtre" #: pivottablelayoutdialog.ui msgctxt "" @@ -5627,7 +5633,7 @@ "label\n" "string.text" msgid "Enable drill to details" -msgstr "" +msgstr "Habilita l'anàlisi dels detalls" #: pivottablelayoutdialog.ui msgctxt "" @@ -5636,7 +5642,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "Opcions" #: pivottablelayoutdialog.ui msgctxt "" @@ -5645,7 +5651,7 @@ "label\n" "string.text" msgid "New sheet" -msgstr "" +msgstr "Full nou" #: pivottablelayoutdialog.ui msgctxt "" @@ -5654,7 +5660,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Selecció" #: pivottablelayoutdialog.ui msgctxt "" @@ -5663,7 +5669,7 @@ "label\n" "string.text" msgid "Named range" -msgstr "" +msgstr "Interval amb nom" #: pivottablelayoutdialog.ui msgctxt "" @@ -5672,7 +5678,7 @@ "label\n" "string.text" msgid "Destination" -msgstr "" +msgstr "Destinació" #: pivottablelayoutdialog.ui msgctxt "" @@ -5681,7 +5687,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Selecció" #: pivottablelayoutdialog.ui msgctxt "" @@ -5690,7 +5696,7 @@ "label\n" "string.text" msgid "Named range" -msgstr "" +msgstr "Interval amb nom" #: pivottablelayoutdialog.ui msgctxt "" @@ -5699,7 +5705,7 @@ "label\n" "string.text" msgid "Source" -msgstr "" +msgstr "Origen" #: pivottablelayoutdialog.ui msgctxt "" @@ -6005,7 +6011,7 @@ "label\n" "string.text" msgid "Decimal Places" -msgstr "" +msgstr "Nombre de decimals" #: randomnumbergenerator.ui msgctxt "" @@ -6095,7 +6101,7 @@ "title\n" "string.text" msgid "Re-type Password" -msgstr "" +msgstr "Torneu a introduir la contrasenya" #: retypepassworddialog.ui msgctxt "" @@ -6104,7 +6110,7 @@ "label\n" "string.text" msgid "Re-type password" -msgstr "" +msgstr "Torneu a introduir la contrasenya" #: retypepassworddialog.ui msgctxt "" @@ -6113,7 +6119,7 @@ "label\n" "string.text" msgid "Pa_ssword" -msgstr "" +msgstr "Contra_senya" #: retypepassworddialog.ui msgctxt "" @@ -6122,7 +6128,7 @@ "label\n" "string.text" msgid "Confi_rm" -msgstr "" +msgstr "Confi_rma" #: retypepassworddialog.ui msgctxt "" @@ -6131,7 +6137,7 @@ "label\n" "string.text" msgid "New password must match the original password." -msgstr "" +msgstr "La contrasenya nova ha de coincidir amb la contrasenya original." #: retypepassworddialog.ui msgctxt "" @@ -6140,7 +6146,7 @@ "label\n" "string.text" msgid "Remove password from this protected item." -msgstr "" +msgstr "Suprimeix la contrasenya d'este element protegit." #: rightfooterdialog.ui msgctxt "" @@ -6185,7 +6191,7 @@ "title\n" "string.text" msgid "Row Height" -msgstr "" +msgstr "Alçada de la fila" #: rowheightdialog.ui msgctxt "" @@ -6194,7 +6200,7 @@ "label\n" "string.text" msgid "Height" -msgstr "" +msgstr "Alçada" #: rowheightdialog.ui msgctxt "" @@ -6203,7 +6209,7 @@ "label\n" "string.text" msgid "_Default value" -msgstr "" +msgstr "Valor per _defecte" #: samplingdialog.ui msgctxt "" @@ -6284,7 +6290,7 @@ "title\n" "string.text" msgid "Create Scenario" -msgstr "" +msgstr "Crea un escenari" #: scenariodialog.ui msgctxt "" @@ -6293,7 +6299,7 @@ "label\n" "string.text" msgid "Name of scenario" -msgstr "" +msgstr "Nom de l'escenari" #: scenariodialog.ui msgctxt "" @@ -6302,7 +6308,7 @@ "label\n" "string.text" msgid "Comment" -msgstr "" +msgstr "Comentari" #: scenariodialog.ui msgctxt "" @@ -6311,7 +6317,7 @@ "label\n" "string.text" msgid "Copy _back" -msgstr "" +msgstr "Copia _enrere" #: scenariodialog.ui msgctxt "" @@ -6320,7 +6326,7 @@ "label\n" "string.text" msgid "Copy _entire sheet" -msgstr "" +msgstr "Copia _tot el full" #: scenariodialog.ui msgctxt "" @@ -6329,7 +6335,7 @@ "label\n" "string.text" msgid "_Prevent changes" -msgstr "" +msgstr "E_vita els canvis" #: scenariodialog.ui msgctxt "" @@ -6338,7 +6344,7 @@ "label\n" "string.text" msgid "_Display border" -msgstr "" +msgstr "_Visualitza la vora" #: scenariodialog.ui msgctxt "" @@ -6347,7 +6353,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Display border in" -msgstr "" +msgstr "Visualitza la vora a" #: scenariodialog.ui msgctxt "" @@ -6356,7 +6362,7 @@ "label\n" "string.text" msgid "Settings" -msgstr "" +msgstr "Configuració" #: scenariodialog.ui msgctxt "" @@ -6365,7 +6371,7 @@ "label\n" "string.text" msgid "Edit Scenario" -msgstr "" +msgstr "Edita l'escenari" #: scenariodialog.ui msgctxt "" @@ -6374,7 +6380,7 @@ "label\n" "string.text" msgid "Created by" -msgstr "" +msgstr "Creat per" #: scenariodialog.ui msgctxt "" @@ -6383,7 +6389,7 @@ "label\n" "string.text" msgid "on" -msgstr "" +msgstr "el" #: scgeneralpage.ui msgctxt "" @@ -6590,7 +6596,7 @@ "title\n" "string.text" msgid "Select Data Source" -msgstr "" +msgstr "Seleccioneu la font de dades" #: selectdatasource.ui msgctxt "" @@ -6599,7 +6605,7 @@ "label\n" "string.text" msgid "_Database" -msgstr "" +msgstr "Base de _dades" #: selectdatasource.ui msgctxt "" @@ -6608,7 +6614,7 @@ "label\n" "string.text" msgid "Data so_urce" -msgstr "" +msgstr "_Font de dades" #: selectdatasource.ui msgctxt "" @@ -6617,7 +6623,7 @@ "label\n" "string.text" msgid "_Type" -msgstr "" +msgstr "_Tipus" #: selectdatasource.ui msgctxt "" @@ -6626,7 +6632,7 @@ "0\n" "stringlist.text" msgid "Sheet" -msgstr "" +msgstr "Full" #: selectdatasource.ui msgctxt "" @@ -6635,7 +6641,7 @@ "1\n" "stringlist.text" msgid "Query" -msgstr "" +msgstr "Consulta" #: selectdatasource.ui msgctxt "" @@ -6644,7 +6650,7 @@ "2\n" "stringlist.text" msgid "Sql" -msgstr "" +msgstr "Sql" #: selectdatasource.ui msgctxt "" @@ -6662,7 +6668,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Selecció" #: selectrange.ui msgctxt "" @@ -6833,7 +6839,7 @@ "label\n" "string.text" msgid "Note: Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities." -msgstr "Nota: Els canvis als atributs de format com els tipus de lletra, els colors i els nombres no s'alçaran, i algunes característiques (com l'edició de diagrames i el dibuix d'objectes) no estaran disponibles en mode compartit. Inhabiliteu el mode compartit per obtindre l'accés exclusiu necessari per a estos canvis i característiques." +msgstr "Nota: Els canvis als atributs de format com els tipus de lletra, els colors i els nombres no es guardaran, i algunes característiques (com l'edició de diagrames i el dibuix d'objectes) no estaran disponibles en mode compartit. Inhabiliteu el mode compartit per obtindre l'accés exclusiu necessari per a estos canvis i característiques." #: sharedocumentdlg.ui msgctxt "" @@ -8057,7 +8063,7 @@ "title\n" "string.text" msgid "Options" -msgstr "" +msgstr "Opcions" #: solveroptionsdialog.ui msgctxt "" @@ -8075,7 +8081,7 @@ "label\n" "string.text" msgid "Settings:" -msgstr "" +msgstr "Paràmetres:" #: solveroptionsdialog.ui msgctxt "" @@ -8084,7 +8090,7 @@ "label\n" "string.text" msgid "Edit..." -msgstr "" +msgstr "Edita..." #: solverprogressdialog.ui msgctxt "" @@ -8093,7 +8099,7 @@ "title\n" "string.text" msgid "Solving..." -msgstr "" +msgstr "S'està calculant la solució..." #: solverprogressdialog.ui msgctxt "" @@ -8102,7 +8108,7 @@ "label\n" "string.text" msgid "Solving in progress..." -msgstr "" +msgstr "S'està calculant la solució..." #: solverprogressdialog.ui msgctxt "" @@ -8111,7 +8117,7 @@ "label\n" "string.text" msgid "(time limit # seconds)" -msgstr "" +msgstr "(temps límit # segons)" #: solversuccessdialog.ui msgctxt "" @@ -8120,7 +8126,7 @@ "title\n" "string.text" msgid "Solving Result" -msgstr "" +msgstr "Solució" #: solversuccessdialog.ui msgctxt "" @@ -8129,7 +8135,7 @@ "label\n" "string.text" msgid "Do you want to keep the result or do you want to restore previous values?" -msgstr "" +msgstr "Voleu conservar el resultat o preferiu restaurar els valors anteriors?" #: solversuccessdialog.ui msgctxt "" @@ -8138,7 +8144,7 @@ "label\n" "string.text" msgid "Solving successfully finished." -msgstr "" +msgstr "El càlcul de la solució ha finalitzat amb èxit." #: solversuccessdialog.ui msgctxt "" @@ -8147,7 +8153,7 @@ "label\n" "string.text" msgid "Result:" -msgstr "" +msgstr "Resultat:" #: solversuccessdialog.ui msgctxt "" @@ -8156,7 +8162,7 @@ "label\n" "string.text" msgid "Keep Result" -msgstr "" +msgstr "Conserva el resultat" #: solversuccessdialog.ui msgctxt "" @@ -8165,7 +8171,7 @@ "label\n" "string.text" msgid "Restore Previous" -msgstr "" +msgstr "Restaura l'anterior" #: sortdialog.ui msgctxt "" @@ -8174,7 +8180,7 @@ "title\n" "string.text" msgid "Sort" -msgstr "" +msgstr "Ordena" #: sortdialog.ui msgctxt "" @@ -8183,7 +8189,7 @@ "label\n" "string.text" msgid "Sort Criteria" -msgstr "" +msgstr "Criteris d'ordenació" #: sortdialog.ui msgctxt "" @@ -8192,7 +8198,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "Opcions" #: sortkey.ui msgctxt "" @@ -8984,7 +8990,7 @@ "title\n" "string.text" msgid "Subtotals" -msgstr "" +msgstr "Subtotals" #: subtotaldialog.ui msgctxt "" @@ -8993,7 +8999,7 @@ "label\n" "string.text" msgid "1st Group" -msgstr "" +msgstr "1r grup" #: subtotaldialog.ui msgctxt "" @@ -9002,7 +9008,7 @@ "label\n" "string.text" msgid "2nd Group" -msgstr "" +msgstr "2n grup" #: subtotaldialog.ui msgctxt "" @@ -9011,7 +9017,7 @@ "label\n" "string.text" msgid "3rd Group" -msgstr "" +msgstr "3r grup" #: subtotaldialog.ui msgctxt "" @@ -9020,7 +9026,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "Opcions" #: subtotalgrppage.ui msgctxt "" @@ -9029,7 +9035,7 @@ "label\n" "string.text" msgid "Group by:" -msgstr "" +msgstr "Agrupa per:" #: subtotalgrppage.ui msgctxt "" @@ -9038,7 +9044,7 @@ "label\n" "string.text" msgid "Calculate subtotals for:" -msgstr "" +msgstr "Calcula els subtotals per a:" #: subtotalgrppage.ui msgctxt "" @@ -9047,7 +9053,7 @@ "label\n" "string.text" msgid "Use function:" -msgstr "" +msgstr "Usa funció:" #: subtotalgrppage.ui msgctxt "" @@ -9056,7 +9062,7 @@ "0\n" "stringlist.text" msgid "Sum" -msgstr "" +msgstr "Suma" #: subtotalgrppage.ui msgctxt "" @@ -9065,7 +9071,7 @@ "1\n" "stringlist.text" msgid "Count" -msgstr "" +msgstr "Compta" #: subtotalgrppage.ui msgctxt "" @@ -9074,7 +9080,7 @@ "2\n" "stringlist.text" msgid "Average" -msgstr "" +msgstr "Mitjana" #: subtotalgrppage.ui msgctxt "" @@ -9083,7 +9089,7 @@ "3\n" "stringlist.text" msgid "Max" -msgstr "" +msgstr "Màx" #: subtotalgrppage.ui msgctxt "" @@ -9092,7 +9098,7 @@ "4\n" "stringlist.text" msgid "Min" -msgstr "" +msgstr "Mín" #: subtotalgrppage.ui msgctxt "" @@ -9101,7 +9107,7 @@ "5\n" "stringlist.text" msgid "Count (numbers only)" -msgstr "" +msgstr "Compta (només els nombres)" #: subtotalgrppage.ui msgctxt "" @@ -9110,34 +9116,37 @@ "6\n" "stringlist.text" msgid "StDev (Sample)" -msgstr "" +msgstr "DesvEst (mostra)" #: subtotalgrppage.ui +#, fuzzy msgctxt "" "subtotalgrppage.ui\n" "liststore1\n" "7\n" "stringlist.text" msgid "StDevP (Population)" -msgstr "" +msgstr "DesvEstP (població)" #: subtotalgrppage.ui +#, fuzzy msgctxt "" "subtotalgrppage.ui\n" "liststore1\n" "8\n" "stringlist.text" msgid "Var (Sample)" -msgstr "" +msgstr "Var (mostra)" #: subtotalgrppage.ui +#, fuzzy msgctxt "" "subtotalgrppage.ui\n" "liststore1\n" "9\n" "stringlist.text" msgid "VarP (Population)" -msgstr "" +msgstr "VarP (població)" #: subtotaloptionspage.ui msgctxt "" @@ -9794,7 +9803,7 @@ "label\n" "string.text" msgid "Results to" -msgstr "" +msgstr "Resultats a" #: ttestdialog.ui msgctxt "" @@ -9803,7 +9812,7 @@ "label\n" "string.text" msgid "Columns" -msgstr "" +msgstr "Columnes" #: ttestdialog.ui msgctxt "" @@ -9812,7 +9821,7 @@ "label\n" "string.text" msgid "Rows" -msgstr "" +msgstr "Files" #: ttestdialog.ui msgctxt "" @@ -9821,7 +9830,7 @@ "label\n" "string.text" msgid "Grouped by" -msgstr "" +msgstr "Agrupat per" #: ungroupdialog.ui msgctxt "" @@ -9866,7 +9875,7 @@ "label\n" "string.text" msgid "_Allow" -msgstr "" +msgstr "_Permet" #: validationcriteriapage.ui msgctxt "" @@ -9875,7 +9884,7 @@ "label\n" "string.text" msgid "_Data" -msgstr "" +msgstr "_Dades" #: validationcriteriapage.ui msgctxt "" @@ -9884,7 +9893,7 @@ "label\n" "string.text" msgid "_Minimum" -msgstr "" +msgstr "_Mínim" #: validationcriteriapage.ui msgctxt "" @@ -9893,7 +9902,7 @@ "label\n" "string.text" msgid "Ma_ximum" -msgstr "" +msgstr "Mà_xim" #: validationcriteriapage.ui msgctxt "" @@ -9965,7 +9974,7 @@ "3\n" "stringlist.text" msgid "Date" -msgstr "" +msgstr "Data" #: validationcriteriapage.ui msgctxt "" @@ -9974,16 +9983,17 @@ "4\n" "stringlist.text" msgid "Time" -msgstr "" +msgstr "Hora" #: validationcriteriapage.ui +#, fuzzy msgctxt "" "validationcriteriapage.ui\n" "liststore1\n" "5\n" "stringlist.text" msgid "Cell range" -msgstr "" +msgstr "Interval de cel·les" #: validationcriteriapage.ui msgctxt "" @@ -10010,7 +10020,7 @@ "0\n" "stringlist.text" msgid "equal" -msgstr "" +msgstr "igual" #: validationcriteriapage.ui msgctxt "" @@ -10019,7 +10029,7 @@ "1\n" "stringlist.text" msgid "less than" -msgstr "" +msgstr "menor que" #: validationcriteriapage.ui msgctxt "" @@ -10028,7 +10038,7 @@ "2\n" "stringlist.text" msgid "greater than" -msgstr "" +msgstr "major que" #: validationcriteriapage.ui msgctxt "" @@ -10037,7 +10047,7 @@ "3\n" "stringlist.text" msgid "less than or equal" -msgstr "" +msgstr "menor o igual que" #: validationcriteriapage.ui msgctxt "" @@ -10046,7 +10056,7 @@ "4\n" "stringlist.text" msgid "greater than or equal to" -msgstr "" +msgstr "major o igual que" #: validationcriteriapage.ui msgctxt "" @@ -10055,7 +10065,7 @@ "5\n" "stringlist.text" msgid "not equal" -msgstr "" +msgstr "no és igual" #: validationcriteriapage.ui msgctxt "" @@ -10064,7 +10074,7 @@ "6\n" "stringlist.text" msgid "valid range" -msgstr "" +msgstr "interval vàlid" #: validationcriteriapage.ui msgctxt "" @@ -10073,7 +10083,7 @@ "7\n" "stringlist.text" msgid "invalid range" -msgstr "" +msgstr "interval no vàlid" #: validationdialog.ui msgctxt "" @@ -10082,7 +10092,7 @@ "title\n" "string.text" msgid "Validity" -msgstr "" +msgstr "Validesa" #: validationdialog.ui msgctxt "" @@ -10091,7 +10101,7 @@ "label\n" "string.text" msgid "Criteria" -msgstr "" +msgstr "Criteri" #: validationdialog.ui msgctxt "" @@ -10100,7 +10110,7 @@ "label\n" "string.text" msgid "Input Help" -msgstr "" +msgstr "Ajuda d'entrada" #: validationdialog.ui msgctxt "" @@ -10109,7 +10119,7 @@ "label\n" "string.text" msgid "Error Alert" -msgstr "" +msgstr "Avís d'error" #: validationhelptabpage.ui msgctxt "" @@ -10154,7 +10164,7 @@ "title\n" "string.text" msgid "XML Source" -msgstr "" +msgstr "Codi font XML" #: xmlsourcedialog.ui msgctxt "" @@ -10163,7 +10173,7 @@ "tooltip_markup\n" "string.text" msgid "Browse to set source file." -msgstr "" +msgstr "Exploreu per definir el fitxer font." #: xmlsourcedialog.ui msgctxt "" @@ -10172,7 +10182,7 @@ "label\n" "string.text" msgid "- not set -" -msgstr "" +msgstr "- sense definir -" #: xmlsourcedialog.ui msgctxt "" @@ -10181,7 +10191,7 @@ "label\n" "string.text" msgid "Source file" -msgstr "" +msgstr "Fitxer font" #: xmlsourcedialog.ui msgctxt "" @@ -10190,7 +10200,7 @@ "label\n" "string.text" msgid "Mapped cell" -msgstr "" +msgstr "Cel·la assignada" #: xmlsourcedialog.ui msgctxt "" @@ -10199,7 +10209,7 @@ "label\n" "string.text" msgid "Map to document" -msgstr "" +msgstr "Assigna al document" #: xmlsourcedialog.ui msgctxt "" @@ -10208,4 +10218,4 @@ "label\n" "string.text" msgid "_Import" -msgstr "" +msgstr "_Importa" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/scaddins/source/analysis.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/scaddins/source/analysis.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/scaddins/source/analysis.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/scaddins/source/analysis.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:06+0200\n" -"PO-Revision-Date: 2014-01-09 12:31+0000\n" +"PO-Revision-Date: 2014-07-16 22:17+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1389270661.0\n" +"X-POOTLE-MTIME: 1405549076.000000\n" #: analysis.src msgctxt "" @@ -1544,7 +1544,7 @@ "5\n" "string.text" msgid "The threshold value" -msgstr "" +msgstr "El valor llindar" #: analysis.src msgctxt "" @@ -6215,7 +6215,7 @@ "ANALYSIS_FUNCNAME_Effect\n" "string.text" msgid "EFFECT" -msgstr "EFFECTIU" +msgstr "EFECTIU" #: analysis_funcnames.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sccomp/source/solver.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sccomp/source/solver.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sccomp/source/solver.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sccomp/source/solver.po 2014-09-16 19:55:40.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: 2014-05-02 00:14+0200\n" -"PO-Revision-Date: 2011-11-26 21:51+0200\n" -"Last-Translator: Jesús \n" +"PO-Revision-Date: 2014-07-16 22:12+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405548766.000000\n" #: solver.src msgctxt "" @@ -29,7 +30,7 @@ "RID_COINMP_SOLVER_COMPONENT\n" "string.text" msgid "%PRODUCTNAME CoinMP Linear Solver" -msgstr "" +msgstr "Solucionador lineal CoinMP del %PRODUCTNAME" #: solver.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/scp2/source/accessories.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/scp2/source/accessories.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/scp2/source/accessories.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/scp2/source/accessories.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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: 2013-12-04 17:30+0000\n" +"PO-Revision-Date: 2014-07-17 07:04+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1386178255.0\n" +"X-POOTLE-MTIME: 1405580648.000000\n" #: module_accessories.ulf msgctxt "" @@ -542,7 +542,7 @@ "STR_DESC_MODULE_LANGPACK_PA_IN\n" "LngText.text" msgid "Installs Punjabi support in %PRODUCTNAME %PRODUCTVERSION" -msgstr "Instal·la els fitxers per al punjabi del %PRODUCTNAME %PRODUCTVERSION" +msgstr "Instal·la els fitxers per al panjabi del %PRODUCTNAME %PRODUCTVERSION" #: module_samples_accessories.ulf msgctxt "" @@ -806,7 +806,7 @@ "STR_NAME_MODULE_LANGPACK_BN_BD\n" "LngText.text" msgid "Bengali (Bangladesh)" -msgstr "bengalí (Bangladesh)" +msgstr "bengalí (Bangla Desh)" #: module_samples_accessories.ulf msgctxt "" @@ -814,7 +814,7 @@ "STR_DESC_MODULE_LANGPACK_BN_BD\n" "LngText.text" msgid "Installs Bengali (Bangladesh) support in %PRODUCTNAME %PRODUCTVERSION" -msgstr "Instal·la els fitxers per al bengalí (Bangladesh) del %PRODUCTNAME %PRODUCTVERSION" +msgstr "Instal·la els fitxers per al bengalí (Bangla Desh) del %PRODUCTNAME %PRODUCTVERSION" #: module_samples_accessories.ulf msgctxt "" @@ -838,7 +838,7 @@ "STR_NAME_MODULE_LANGPACK_OR\n" "LngText.text" msgid "Odia" -msgstr "" +msgstr "Oriya" #: module_samples_accessories.ulf msgctxt "" @@ -846,7 +846,7 @@ "STR_DESC_MODULE_LANGPACK_OR\n" "LngText.text" msgid "Installs Odia support in %PRODUCTNAME %PRODUCTVERSION" -msgstr "" +msgstr "Instal·la els fitxers per l'oriya del %PRODUCTNAME %PRODUCTVERSION" #: module_samples_accessories.ulf msgctxt "" @@ -854,7 +854,7 @@ "STR_NAME_MODULE_LANGPACK_OR_IN\n" "LngText.text" msgid "Odia" -msgstr "" +msgstr "Oriya" #: module_samples_accessories.ulf msgctxt "" @@ -862,7 +862,7 @@ "STR_DESC_MODULE_LANGPACK_OR_IN\n" "LngText.text" msgid "Installs Odia support in %PRODUCTNAME %PRODUCTVERSION" -msgstr "" +msgstr "Instal·la els fitxers per a l'oriya del %PRODUCTNAME %PRODUCTVERSION" #: module_samples_accessories.ulf msgctxt "" @@ -1398,7 +1398,7 @@ "STR_NAME_MODULE_LANGPACK_RW\n" "LngText.text" msgid "Kinyarwanda" -msgstr "kinyarwanda" +msgstr "ruandés" #: module_samples_accessories.ulf msgctxt "" @@ -1406,7 +1406,7 @@ "STR_DESC_MODULE_LANGPACK_RW\n" "LngText.text" msgid "Installs Kinyarwanda support in %PRODUCTNAME %PRODUCTVERSION" -msgstr "Instal·la els fitxers per al kinyarwanda del %PRODUCTNAME %PRODUCTVERSION" +msgstr "Instal·la els fitxers per al ruandés del %PRODUCTNAME %PRODUCTVERSION" #: module_samples_accessories.ulf msgctxt "" @@ -2318,7 +2318,7 @@ "STR_DESC_MODULE_LANGPACK_PA_IN\n" "LngText.text" msgid "Installs Punjabi support in %PRODUCTNAME %PRODUCTVERSION" -msgstr "Instal·la els fitxers per al punjabi del %PRODUCTNAME %PRODUCTVERSION" +msgstr "Instal·la els fitxers per al panjabi del %PRODUCTNAME %PRODUCTVERSION" #: module_templates_accessories.ulf msgctxt "" @@ -2582,7 +2582,7 @@ "STR_NAME_MODULE_LANGPACK_BN_BD\n" "LngText.text" msgid "Bengali (Bangladesh)" -msgstr "bengalí (Bangladesh)" +msgstr "bengalí (Bangla Desh)" #: module_templates_accessories.ulf msgctxt "" @@ -2590,7 +2590,7 @@ "STR_DESC_MODULE_LANGPACK_BN_BD\n" "LngText.text" msgid "Installs Bengali (Bangladesh) support in %PRODUCTNAME %PRODUCTVERSION" -msgstr "Instal·la els fitxers per al bengalí (Bangladesh) del %PRODUCTNAME %PRODUCTVERSION" +msgstr "Instal·la els fitxers per al bengalí (Bangla Desh) del %PRODUCTNAME %PRODUCTVERSION" #: module_templates_accessories.ulf msgctxt "" @@ -2614,7 +2614,7 @@ "STR_NAME_MODULE_LANGPACK_OR\n" "LngText.text" msgid "Odia" -msgstr "" +msgstr "Oriya" #: module_templates_accessories.ulf msgctxt "" @@ -2622,7 +2622,7 @@ "STR_DESC_MODULE_LANGPACK_OR\n" "LngText.text" msgid "Installs Odia support in %PRODUCTNAME %PRODUCTVERSION" -msgstr "" +msgstr "Instal·la els fitxers per a l'oriya del %PRODUCTNAME %PRODUCTVERSION" #: module_templates_accessories.ulf msgctxt "" @@ -2630,7 +2630,7 @@ "STR_NAME_MODULE_LANGPACK_OR_IN\n" "LngText.text" msgid "Odia" -msgstr "" +msgstr "Oriya" #: module_templates_accessories.ulf msgctxt "" @@ -2638,7 +2638,7 @@ "STR_DESC_MODULE_LANGPACK_OR_IN\n" "LngText.text" msgid "Installs Odia support in %PRODUCTNAME %PRODUCTVERSION" -msgstr "" +msgstr "Instal·la els fitxers per a l'oriya del %PRODUCTNAME %PRODUCTVERSION" #: module_templates_accessories.ulf msgctxt "" @@ -3174,7 +3174,7 @@ "STR_NAME_MODULE_LANGPACK_RW\n" "LngText.text" msgid "Kinyarwanda" -msgstr "kinyarwanda" +msgstr "ruandés" #: module_templates_accessories.ulf msgctxt "" @@ -3182,7 +3182,7 @@ "STR_DESC_MODULE_LANGPACK_RW\n" "LngText.text" msgid "Installs Kinyarwanda support in %PRODUCTNAME %PRODUCTVERSION" -msgstr "Instal·la els fitxers per al kinyarwanda del %PRODUCTNAME %PRODUCTVERSION" +msgstr "Instal·la els fitxers per al ruandés del %PRODUCTNAME %PRODUCTVERSION" #: module_templates_accessories.ulf msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/scp2/source/ooo.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/scp2/source/ooo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/scp2/source/ooo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/scp2/source/ooo.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-20 20:01+0000\n" +"PO-Revision-Date: 2014-07-17 07:05+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1390248098.0\n" +"X-POOTLE-MTIME: 1405580713.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -654,7 +654,7 @@ "STR_NAME_MODULE_HELPPACK_BN\n" "LngText.text" msgid "Bengali (Bangladesh)" -msgstr "bengalí (Bangladesh)" +msgstr "bengalí (Bangla Desh)" #: module_helppack.ulf msgctxt "" @@ -662,7 +662,7 @@ "STR_DESC_MODULE_HELPPACK_BN\n" "LngText.text" msgid "Installs Bengali (Bangladesh) help in %PRODUCTNAME %PRODUCTVERSION" -msgstr "Instal·la l'ajuda en bengalí (Bangladesh) al %PRODUCTNAME %PRODUCTVERSION" +msgstr "Instal·la l'ajuda en bengalí (Bangla Desh) al %PRODUCTNAME %PRODUCTVERSION" #: module_helppack.ulf msgctxt "" @@ -686,7 +686,7 @@ "STR_NAME_MODULE_HELPPACK_OR\n" "LngText.text" msgid "Odia" -msgstr "" +msgstr "Oriya" #: module_helppack.ulf msgctxt "" @@ -694,7 +694,7 @@ "STR_DESC_MODULE_HELPPACK_OR\n" "LngText.text" msgid "Installs Odia help in %PRODUCTNAME %PRODUCTVERSION" -msgstr "" +msgstr "Instal·la l'ajuda en oriya al %PRODUCTNAME %PRODUCTVERSION" #: module_helppack.ulf msgctxt "" @@ -1150,7 +1150,7 @@ "STR_NAME_MODULE_HELPPACK_RW\n" "LngText.text" msgid "Kinyarwanda" -msgstr "kinyarwanda" +msgstr "ruandés" #: module_helppack.ulf msgctxt "" @@ -1158,7 +1158,7 @@ "STR_DESC_MODULE_HELPPACK_RW\n" "LngText.text" msgid "Installs Kinyarwanda help in %PRODUCTNAME %PRODUCTVERSION" -msgstr "Instal·la l'ajuda en kinyarwanda al %PRODUCTNAME %PRODUCTVERSION" +msgstr "Instal·la l'ajuda en ruandés al %PRODUCTNAME %PRODUCTVERSION" #: module_helppack.ulf msgctxt "" @@ -1758,7 +1758,7 @@ "STR_NAME_MODULE_HELPPACK_TE\n" "LngText.text" msgid "Telugu" -msgstr "tigrinya" +msgstr "telugu" #: module_helppack.ulf msgctxt "" @@ -2430,7 +2430,7 @@ "STR_NAME_MODULE_LANGPACK_BN\n" "LngText.text" msgid "Bengali (Bangladesh)" -msgstr "bengalí (Bangladesh)" +msgstr "bengalí (Bangla Desh)" #: module_langpack.ulf msgctxt "" @@ -2438,7 +2438,7 @@ "STR_DESC_MODULE_LANGPACK_BN\n" "LngText.text" msgid "Installs the Bengali (Bangladesh) user interface" -msgstr "Instal·la la interfície d'usuari en bengalí (Bangladesh)" +msgstr "Instal·la la interfície d'usuari en bengalí (Bangla Desh)" #: module_langpack.ulf msgctxt "" @@ -2462,7 +2462,7 @@ "STR_NAME_MODULE_LANGPACK_OR\n" "LngText.text" msgid "Odia" -msgstr "" +msgstr "Oriya" #: module_langpack.ulf msgctxt "" @@ -2470,7 +2470,7 @@ "STR_DESC_MODULE_LANGPACK_OR\n" "LngText.text" msgid "Installs the Odia user interface" -msgstr "" +msgstr "Instal·la la interfície d'usuari en oriya" #: module_langpack.ulf msgctxt "" @@ -2926,7 +2926,7 @@ "STR_NAME_MODULE_LANGPACK_RW\n" "LngText.text" msgid "Kinyarwanda" -msgstr "kinyarwanda" +msgstr "ruandés" #: module_langpack.ulf msgctxt "" @@ -2934,7 +2934,7 @@ "STR_DESC_MODULE_LANGPACK_RW\n" "LngText.text" msgid "Installs the Kinyarwanda user interface" -msgstr "Instal·la la interfície d'usuari en kinyarwanda" +msgstr "Instal·la la interfície d'usuari en ruandés" #: module_langpack.ulf msgctxt "" @@ -3174,7 +3174,7 @@ "STR_DESC_MODULE_LANGPACK_EN_ZA\n" "LngText.text" msgid "Installs the English (South Africa) user interface" -msgstr "Instal·la la interfície d'usuari en anglés (sud-àfrica)" +msgstr "Instal·la la interfície d'usuari en anglés (Sud-àfrica)" #: module_langpack.ulf msgctxt "" @@ -4222,7 +4222,7 @@ "STR_NAME_MODULE_EXTENSION_DICTIONARY_PT_BR\n" "LngText.text" msgid "Portuguese (Brazil)" -msgstr "" +msgstr "portugués (Brasil)" #: module_ooo.ulf msgctxt "" @@ -4230,7 +4230,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_PT_BR\n" "LngText.text" msgid "Portuguese (Brazil) spelling Dictionary (1990 Spelling Agreement), and hyphenation rules" -msgstr "" +msgstr "Portugués (Brasil): corrector ortogràfic (normes ortogràfiques de 1990) i partició de mots" #: module_ooo.ulf msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sd/source/core.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sd/source/core.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sd/source/core.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sd/source/core.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,11 +3,11 @@ msgstr "" "Project-Id-Version: PACKAGE 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:01+0100\n" +"POT-Creation-Date: 2014-05-02 00:04+0200\n" "PO-Revision-Date: 2014-01-08 12:33+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" -"Language: ca-XV\n" +"Language: ca-valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -674,7 +674,7 @@ "STR_SAVE_DOC\n" "string.text" msgid "Save Document" -msgstr "Alça el document" +msgstr "Guarda el document" #: glob.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sd/source/filter/html.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sd/source/filter/html.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sd/source/filter/html.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sd/source/filter/html.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:04+0200\n" -"PO-Revision-Date: 2014-01-08 12:34+0000\n" +"PO-Revision-Date: 2014-07-17 06:53+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1389184458.0\n" +"X-POOTLE-MTIME: 1405580010.000000\n" #: pubdlg.src msgctxt "" @@ -95,7 +95,7 @@ "PAGE2_SINGLE_DOCUMENT\n" "radiobutton.text" msgid "~Single document html" -msgstr "" +msgstr "~Document HTML únic" #: pubdlg.src msgctxt "" @@ -257,7 +257,7 @@ "PAGE3_TITEL_1\n" "fixedline.text" msgid "Save Images as" -msgstr "" +msgstr "Anomena i guarda les imatges" #: pubdlg.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sd/source/ui/accessibility.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sd/source/ui/accessibility.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sd/source/ui/accessibility.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sd/source/ui/accessibility.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2011-04-05 19:14+0200\n" -"Last-Translator: jmontane \n" +"PO-Revision-Date: 2014-07-17 06:59+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405580395.000000\n" #: accessibility.src msgctxt "" @@ -117,7 +118,7 @@ "SID_SD_A11Y_P_TITLE_N\n" "string.text" msgid "PresentationTitle" -msgstr "" +msgstr "TítolPresentació" #: accessibility.src msgctxt "" @@ -125,7 +126,7 @@ "SID_SD_A11Y_P_OUTLINER_N\n" "string.text" msgid "PresentationOutliner" -msgstr "" +msgstr "EsquemaPresentació" #: accessibility.src msgctxt "" @@ -133,7 +134,7 @@ "SID_SD_A11Y_P_SUBTITLE_N\n" "string.text" msgid "PresentationSubtitle" -msgstr "" +msgstr "SubtítolPresentació" #: accessibility.src msgctxt "" @@ -141,7 +142,7 @@ "SID_SD_A11Y_P_PAGE_N\n" "string.text" msgid "PresentationPage" -msgstr "" +msgstr "PàginaPresentació" #: accessibility.src msgctxt "" @@ -149,7 +150,7 @@ "SID_SD_A11Y_P_NOTES_N\n" "string.text" msgid "PresentationNotes" -msgstr "" +msgstr "NotesPresentació" #: accessibility.src msgctxt "" @@ -157,7 +158,7 @@ "SID_SD_A11Y_P_HANDOUT_N\n" "string.text" msgid "Handout" -msgstr "" +msgstr "Prospecte" #: accessibility.src msgctxt "" @@ -165,7 +166,7 @@ "SID_SD_A11Y_P_UNKNOWN_N\n" "string.text" msgid "UnknownAccessiblePresentationShape" -msgstr "" +msgstr "FormaPresentacióAccessibleDesconeguda" #: accessibility.src msgctxt "" @@ -173,7 +174,7 @@ "SID_SD_A11Y_P_TITLE_D\n" "string.text" msgid "PresentationTitleShape" -msgstr "" +msgstr "FormaTítolPresentació" #: accessibility.src msgctxt "" @@ -181,7 +182,7 @@ "SID_SD_A11Y_P_OUTLINER_D\n" "string.text" msgid "PresentationOutlinerShape" -msgstr "" +msgstr "FormaEsquemaPresentació" #: accessibility.src msgctxt "" @@ -189,7 +190,7 @@ "SID_SD_A11Y_P_SUBTITLE_D\n" "string.text" msgid "PresentationSubtitleShape" -msgstr "" +msgstr "FormaSubtítolPresentació" #: accessibility.src msgctxt "" @@ -197,7 +198,7 @@ "SID_SD_A11Y_P_PAGE_D\n" "string.text" msgid "PresentationPageShape" -msgstr "" +msgstr "FormaPresentacióPàgina" #: accessibility.src msgctxt "" @@ -205,7 +206,7 @@ "SID_SD_A11Y_P_NOTES_D\n" "string.text" msgid "PresentationNotesShape" -msgstr "" +msgstr "FormaNotesPresentació" #: accessibility.src msgctxt "" @@ -213,7 +214,7 @@ "SID_SD_A11Y_P_HANDOUT_D\n" "string.text" msgid "PresentationHandoutShape" -msgstr "" +msgstr "FormaProspectePresentació" #: accessibility.src msgctxt "" @@ -221,7 +222,7 @@ "SID_SD_A11Y_P_UNKNOWN_D\n" "string.text" msgid "Unknown accessible presentation shape" -msgstr "" +msgstr "Forma de presentació accessible desconeguda" #: accessibility.src msgctxt "" @@ -229,7 +230,7 @@ "SID_SD_A11Y_P_FOOTER_N\n" "string.text" msgid "PresentationFooter" -msgstr "" +msgstr "PeuPresentació" #: accessibility.src msgctxt "" @@ -237,7 +238,7 @@ "SID_SD_A11Y_P_FOOTER_D\n" "string.text" msgid "PresentationFooterShape" -msgstr "" +msgstr "FormaPeuPàginaPresentació" #: accessibility.src msgctxt "" @@ -245,7 +246,7 @@ "SID_SD_A11Y_P_HEADER_N\n" "string.text" msgid "PresentationHeader" -msgstr "" +msgstr "CapçaleraPresentació" #: accessibility.src msgctxt "" @@ -253,7 +254,7 @@ "SID_SD_A11Y_P_HEADER_D\n" "string.text" msgid "PresentationHeaderShape" -msgstr "" +msgstr "FormaCapçaleraPresentació" #: accessibility.src msgctxt "" @@ -261,7 +262,7 @@ "SID_SD_A11Y_P_DATE_N\n" "string.text" msgid "PresentationDateAndTime" -msgstr "" +msgstr "DataHoraPresentació" #: accessibility.src msgctxt "" @@ -269,7 +270,7 @@ "SID_SD_A11Y_P_DATE_D\n" "string.text" msgid "PresentationDateAndTimeShape" -msgstr "" +msgstr "FormaDataHoraPresentació" #: accessibility.src msgctxt "" @@ -277,7 +278,7 @@ "SID_SD_A11Y_P_NUMBER_N\n" "string.text" msgid "PresentationPageNumber" -msgstr "" +msgstr "NúmeroPàginaPresentació" #: accessibility.src msgctxt "" @@ -285,7 +286,7 @@ "SID_SD_A11Y_P_NUMBER_D\n" "string.text" msgid "PresentationPageNumberShape" -msgstr "" +msgstr "FormaNúmeroPàginaPresentació" #: accessibility.src msgctxt "" @@ -293,7 +294,7 @@ "SID_SD_A11Y_D_PRESENTATION\n" "string.text" msgid "%PRODUCTNAME Presentation" -msgstr "" +msgstr "Presentació del %PRODUCTNAME" #: accessibility.src msgctxt "" @@ -301,7 +302,7 @@ "SID_SD_A11Y_P_TITLE_N_STYLE\n" "string.text" msgid "Title" -msgstr "" +msgstr "Títol" #: accessibility.src msgctxt "" @@ -309,7 +310,7 @@ "SID_SD_A11Y_P_OUTLINER_N_STYLE\n" "string.text" msgid "Outliner" -msgstr "" +msgstr "Esquema" #: accessibility.src msgctxt "" @@ -317,7 +318,7 @@ "SID_SD_A11Y_P_SUBTITLE_N_STYLE\n" "string.text" msgid "Subtitle" -msgstr "" +msgstr "Subtítol" #: accessibility.src msgctxt "" @@ -325,7 +326,7 @@ "SID_SD_A11Y_P_PAGE_N_STYLE\n" "string.text" msgid "Page" -msgstr "" +msgstr "Pàgina" #: accessibility.src msgctxt "" @@ -333,7 +334,7 @@ "SID_SD_A11Y_P_NOTES_N_STYLE\n" "string.text" msgid "Notes" -msgstr "" +msgstr "Notes" #: accessibility.src msgctxt "" @@ -341,7 +342,7 @@ "SID_SD_A11Y_P_HANDOUT_N_STYLE\n" "string.text" msgid "Handout" -msgstr "" +msgstr "Prospecte" #: accessibility.src msgctxt "" @@ -349,7 +350,7 @@ "SID_SD_A11Y_P_UNKNOWN_N_STYLE\n" "string.text" msgid "Unknown Accessible Presentation Shape" -msgstr "" +msgstr "Forma de presentació accessible desconeguda" #: accessibility.src msgctxt "" @@ -357,7 +358,7 @@ "SID_SD_A11Y_P_FOOTER_N_STYLE\n" "string.text" msgid "Footer" -msgstr "" +msgstr "Peu" #: accessibility.src msgctxt "" @@ -365,7 +366,7 @@ "SID_SD_A11Y_P_HEADER_N_STYLE\n" "string.text" msgid "Header" -msgstr "" +msgstr "Capçalera" #: accessibility.src msgctxt "" @@ -373,7 +374,7 @@ "SID_SD_A11Y_P_DATE_N_STYLE\n" "string.text" msgid "Date" -msgstr "" +msgstr "Data" #: accessibility.src msgctxt "" @@ -381,7 +382,7 @@ "SID_SD_A11Y_P_NUMBER_N_STYLE\n" "string.text" msgid "Number" -msgstr "" +msgstr "Nombre" #: accessibility.src msgctxt "" @@ -389,7 +390,7 @@ "SID_SD_A11Y_I_PREVIEW_N\n" "string.text" msgid "Preview View" -msgstr "" +msgstr "Previsualització" #: accessibility.src msgctxt "" @@ -397,7 +398,7 @@ "SID_SD_A11Y_I_PREVIEW_D\n" "string.text" msgid "This is where you print preview pages." -msgstr "" +msgstr "Ací és on imprimiu les pàgines de previsualització." #: accessibility.src msgctxt "" @@ -405,7 +406,7 @@ "SID_SD_A11Y_I_PREVIEW_SUFFIX\n" "string.text" msgid "(Preview mode)" -msgstr "" +msgstr "(Mode de previsualització)" #: accessibility.src msgctxt "" @@ -413,4 +414,4 @@ "SID_SD_A11Y_D_PRESENTATION_READONLY\n" "string.text" msgid "(read-only)" -msgstr "" +msgstr "(només lectura)" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sd/source/ui/app.po 2014-09-16 19:55:40.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: 2014-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-01-29 23:41+0100\n" -"Last-Translator: Jordi Serratosa \n" +"PO-Revision-Date: 2014-08-25 11:12+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1389184759.0\n" +"X-POOTLE-MTIME: 1408965175.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -635,7 +635,7 @@ "SID_SET_SUPER_SCRIPT\n" "menuitem.text" msgid "Superscript" -msgstr "" +msgstr "Superíndex" #: menuids_tmpl.src msgctxt "" @@ -644,7 +644,7 @@ "SID_SET_SUB_SCRIPT\n" "menuitem.text" msgid "Subscript" -msgstr "" +msgstr "Subíndex" #: menuids_tmpl.src msgctxt "" @@ -1732,7 +1732,7 @@ "SfxStyleFamiliesRes1\n" "#define.text" msgid "Drawing Object Styles" -msgstr "" +msgstr "Estils dels objectes de dibuix" #: res_bmp.src msgctxt "" @@ -4010,7 +4010,7 @@ "STR_GRAPHICS_STYLE_FAMILY\n" "string.text" msgid "Drawing Object Styles" -msgstr "" +msgstr "Estils dels objectes de dibuix" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sd/uiconfig/sdraw/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sd/uiconfig/sdraw/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sd/uiconfig/sdraw/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sd/uiconfig/sdraw/ui.po 2014-09-16 19:55:40.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: 2014-05-02 00:04+0200\n" -"PO-Revision-Date: 2014-01-29 22:01+0100\n" -"Last-Translator: Jordi Serratosa \n" +"PO-Revision-Date: 2014-07-17 07:01+0000\n" +"Last-Translator: Joan \n" "Language-Team: none\n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1391020418.0\n" +"X-POOTLE-MTIME: 1405580467.000000\n" #: breakdialog.ui msgctxt "" @@ -860,7 +860,7 @@ "title\n" "string.text" msgid "Release image's link?" -msgstr "" +msgstr "Voleu treure l'enllaç a la imatge?" #: queryunlinkimagedialog.ui msgctxt "" @@ -869,7 +869,7 @@ "text\n" "string.text" msgid "This image is linked to a document." -msgstr "" +msgstr "Esta imatge és enllaçada a un document." #: queryunlinkimagedialog.ui msgctxt "" @@ -878,7 +878,7 @@ "secondary_text\n" "string.text" msgid " Do you want to unlink the image in order to edit it?" -msgstr "" +msgstr " Voleu suprimir l'enllaç a la imatge per a editar-la?" #: tabledesigndialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sd/uiconfig/simpress/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sd/uiconfig/simpress/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sd/uiconfig/simpress/ui.po 2014-09-16 19:55:40.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: 2014-05-02 00:04+0200\n" -"PO-Revision-Date: 2014-01-29 23:32+0100\n" -"Last-Translator: Jordi Serratosa \n" +"PO-Revision-Date: 2014-07-17 07:01+0000\n" +"Last-Translator: Joan \n" "Language-Team: none\n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1389342880.0\n" +"X-POOTLE-MTIME: 1405580503.000000\n" #: customanimationcreatedialog.ui msgctxt "" @@ -941,7 +941,7 @@ "title\n" "string.text" msgid "Interaction" -msgstr "" +msgstr "Interacció" #: interactionpage.ui msgctxt "" @@ -950,7 +950,7 @@ "label\n" "string.text" msgid "Action at mouse click" -msgstr "" +msgstr "Acció en fer un clic" #: interactionpage.ui msgctxt "" @@ -959,7 +959,7 @@ "label\n" "string.text" msgid "Target" -msgstr "" +msgstr "Destinació" #: interactionpage.ui msgctxt "" @@ -968,7 +968,7 @@ "label\n" "string.text" msgid "Interaction" -msgstr "" +msgstr "Interacció" #: interactionpage.ui msgctxt "" @@ -977,7 +977,7 @@ "label\n" "string.text" msgid "_Browse..." -msgstr "" +msgstr "_Navega..." #: interactionpage.ui msgctxt "" @@ -986,7 +986,7 @@ "label\n" "string.text" msgid "_Find" -msgstr "" +msgstr "_Cerca" #: interactionpage.ui msgctxt "" @@ -995,7 +995,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Path Name" -msgstr "" +msgstr "Nom del camí" #: masterlayoutdlg.ui msgctxt "" @@ -1967,7 +1967,7 @@ "label\n" "string.text" msgid "_Snap Lines when moving" -msgstr "Linie_s de captura en moure" +msgstr "Línie_s de captura en moure" #: sdviewpage.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sfx2/source/appl.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sfx2/source/appl.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sfx2/source/appl.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sfx2/source/appl.po 2014-09-16 19:55:40.000000000 +0000 @@ -332,7 +332,7 @@ "STR_ISMODIFIED\n" "string.text" msgid "Do you want to save the changes to %1?" -msgstr "Voleu alçar les modificacions a %1?" +msgstr "Voleu guardar les modificacions a %1?" #: app.src msgctxt "" @@ -523,7 +523,7 @@ "Saving will remove all existing signatures.\n" "Do you want to continue saving the document?" msgstr "" -"En alçar, s'eliminaran totes les signatures existents.\n" +"En guardar, s'eliminaran totes les signatures existents.\n" "Voleu continuar desant el document?" #: app.src @@ -535,8 +535,8 @@ "The document has to be saved before it can be signed.\n" "Do you want to save the document?" msgstr "" -"Cal que alceu el document per poder signar-lo.\n" -"Voleu alçar el document?" +"Cal que guardeu el document per poder signar-lo.\n" +"Voleu guardar el document?" #: app.src msgctxt "" @@ -556,7 +556,7 @@ "RID_XMLSEC_INFO_WRONGDOCFORMAT\n" "infobox.text" msgid "This document must be saved in OpenDocument file format before it can be digitally signed." -msgstr "Cal que alceu este document en format OpenDocument per poder signar-lo digitalment." +msgstr "Cal que guardeu este document en format OpenDocument per poder signar-lo digitalment." #: app.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sfx2/source/control.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sfx2/source/control.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sfx2/source/control.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sfx2/source/control.po 2014-09-16 19:55:40.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-12-17 14:12+0100\n" -"PO-Revision-Date: 2014-01-20 20:11+0000\n" +"POT-Creation-Date: 2014-05-02 00:00+0200\n" +"PO-Revision-Date: 2014-06-27 08:25+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" -"Language: ca-XV\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-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1390248716.0\n" +"X-POOTLE-MTIME: 1403857501.000000\n" #: templateview.src msgctxt "" @@ -38,4 +38,4 @@ "STR_WELCOME_LINE2\n" "string.text" msgid "Use the sidebar to open or create a file." -msgstr "Usa la barra lateral per obrir o crear un fitxer." +msgstr "Useu la barra lateral per obrir o crear un fitxer." diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sfx2/source/dialog.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sfx2/source/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sfx2/source/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sfx2/source/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -568,7 +568,7 @@ "The value will be stored as text." msgstr "" "El valor introduït no coincideix amb el tipus especificat.\n" -"El valor s'alçarà com a text." +"El valor es guardarà com a text." #: filedlghelper.src msgctxt "" @@ -656,7 +656,7 @@ "STR_CB_PASSWORD\n" "string.text" msgid "Save with ~password" -msgstr "Alça amb c~ontrasenya" +msgstr "Guarda amb c~ontrasenya" #: filedlghelper.src msgctxt "" @@ -696,7 +696,7 @@ "STR_PB_SAVE\n" "string.text" msgid "~Save" -msgstr "~Alça" +msgstr "~Guarda" #: filedlghelper.src msgctxt "" @@ -704,7 +704,7 @@ "STR_PB_SAVEACOPY\n" "string.text" msgid "Save a Copy" -msgstr "Alça'n una còpia" +msgstr "Guarda'n una còpia" #: filedlghelper.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sfx2/source/doc.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sfx2/source/doc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sfx2/source/doc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sfx2/source/doc.po 2014-09-16 19:55:40.000000000 +0000 @@ -25,7 +25,7 @@ "Saving in external formats may have caused\n" " information loss. Do you still want to close?" msgstr "" -"Alçar en formats externs pot haver causat\n" +"Guardar en formats externs pot haver causat\n" " una pèrdua d'informació. Encara voleu tancar?" #: doc.src @@ -182,7 +182,7 @@ "STR_ERROR_SAVE_TEMPLATE\n" "string.text" msgid "Error saving template " -msgstr "S'ha produït un error en alçar la plantilla " +msgstr "S'ha produït un error en guardar la plantilla " #: doc.src msgctxt "" @@ -247,8 +247,8 @@ "Documents cannot be saved in $(FORMAT) format. Do you\n" "want to save your changes using the $(OWNFORMAT) format?" msgstr "" -"Els documents no es poden alçar en el format $(FORMAT). Voleu\n" -"alçar els canvis en el format $(OWNFORMAT)?" +"Els documents no es poden guardar en el format $(FORMAT). Voleu\n" +"guardar els canvis en el format $(OWNFORMAT)?" #: doc.src msgctxt "" @@ -256,7 +256,7 @@ "STR_SAVEDOC\n" "string.text" msgid "~Save" -msgstr "~Alça" +msgstr "~Guarda" #: doc.src msgctxt "" @@ -272,7 +272,7 @@ "STR_SAVEASDOC\n" "string.text" msgid "Save ~As..." -msgstr "~Anomena i alça..." +msgstr "~Anomena i guarda..." #: doc.src msgctxt "" @@ -280,7 +280,7 @@ "STR_SAVECOPYDOC\n" "string.text" msgid "Save Copy ~as..." -msgstr "~Anomena i alça la còpia..." +msgstr "~Anomena i guarda la còpia..." #: doc.src msgctxt "" @@ -288,7 +288,7 @@ "STR_SAVEACOPY\n" "string.text" msgid "Save a Copy..." -msgstr "Alça una còpia..." +msgstr "Guarda una còpia..." #: doc.src msgctxt "" @@ -412,7 +412,7 @@ "STR_AUTOMATICVERSION\n" "string.text" msgid "Automatically saved version" -msgstr "Versió alçada automàticament" +msgstr "Versió guardada automàticament" #: doc.src msgctxt "" @@ -640,7 +640,7 @@ "STR_HIDDENINFO_CONTINUE_SAVING\n" "string.text" msgid "Do you want to continue saving the document?" -msgstr "Voleu alçar el document?" +msgstr "Voleu guardar el document?" #: doc.src msgctxt "" @@ -672,7 +672,7 @@ "STR_NEW_FILENAME_SAVE\n" "string.text" msgid "If you do not want to overwrite the original document, you should save your work under a new filename." -msgstr "Si no voleu sobreescriure el document original, heu d'alçar la vostra faena amb un nom de fitxer nou." +msgstr "Si no voleu sobreescriure el document original, heu de guardar la vostra faena amb un nom de fitxer nou." #: doc.src msgctxt "" @@ -706,7 +706,7 @@ "STR_XMLSEC_ODF12_EXPECTED\n" "string.text" msgid "The document format version is set to ODF 1.1 (OpenOffice.org 2.x) in Tools-Options-Load/Save-General. Signing documents requires ODF 1.2 (OpenOffice.org 3.x)." -msgstr "El format de versió del document està establit a ODF 1.1 (OpenOffice.org 2.x) a Eines-Opcions-Carrega/Alça-General. La signatura de documents requereix ODF 1.2 (OpenOffice.org 3.x)." +msgstr "El format de versió del document està establit a ODF 1.1 (OpenOffice.org 2.x) a Eines-Opcions-Carrega/Guarda-General. La signatura de documents requereix ODF 1.2 (OpenOffice.org 3.x)." #: doc.src msgctxt "" @@ -717,8 +717,8 @@ "The document has to be saved before it can be signed. Saving the document removes all present signatures.\n" "Do you want to save the document?" msgstr "" -"Cal alçar el document abans de poder-lo signar. Si alceu el document suprimireu totes les signatures actuals.\n" -"Voleu alçar el document?" +"Cal guardar el document abans de poder-lo signar. Si guardeu el document suprimireu totes les signatures actuals.\n" +"Voleu guardar el document?" #: doc.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sfx2/source/view.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sfx2/source/view.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sfx2/source/view.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sfx2/source/view.po 2014-09-16 19:55:40.000000000 +0000 @@ -70,7 +70,7 @@ "STR_ERROR_SAVE_TEMPLATE\n" "string.text" msgid "Error saving template " -msgstr "S'ha produït un error en alçar la plantilla. " +msgstr "S'ha produït un error en guardar la plantilla. " #: view.src msgctxt "" @@ -91,7 +91,7 @@ "active document?" msgstr "" "S'ha modificat la mida i l'orientació de la pàgina.\n" -"Voleu alçar la nova configuració\n" +"Voleu guardar la nova configuració\n" "en el document actiu?" #: view.src @@ -105,7 +105,7 @@ "in the active document?" msgstr "" "S'ha modificat la mida de la pàgina.\n" -"Voleu alçar la nova configuració\n" +"Voleu guardar la nova configuració\n" "en el document actiu?" #: view.src @@ -119,7 +119,7 @@ "active document?" msgstr "" "S'ha modificat la mida i l'orientació de la pàgina.\n" -"Voleu alçar la nova configuració\n" +"Voleu guardar la nova configuració\n" "en el document actiu?" #: view.src diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sfx2/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sfx2/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sfx2/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sfx2/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -32,7 +32,7 @@ "text\n" "string.text" msgid "This document may contain formatting or content that cannot be saved in the currently selected file format \"%FORMATNAME\"." -msgstr "Este document pot contindre format o contingut que no es pot alçar en el format de fitxer seleccionat actual «%FORMATNAME»." +msgstr "Este document pot contindre format o contingut que no es pot guardar en el format de fitxer seleccionat actual «%FORMATNAME»." #: alienwarndialog.ui msgctxt "" @@ -41,7 +41,7 @@ "secondary_text\n" "string.text" msgid "Use the default ODF file format to be sure that the document is saved correctly." -msgstr "Utilitzeu el format de fitxer ODF per defecte per assegurar-vos que el document s'alce correctament." +msgstr "Utilitzeu el format de fitxer ODF per defecte per assegurar-vos que el document es guarde correctament." #: alienwarndialog.ui msgctxt "" @@ -68,7 +68,7 @@ "label\n" "string.text" msgid "_Ask when not saving in ODF format" -msgstr "_Demana-ho en no alçar en format ODF" +msgstr "_Demana-ho en no guardar en format ODF" #: bookmarkdialog.ui msgctxt "" @@ -590,7 +590,7 @@ "secondary_text\n" "string.text" msgid "Please save this document locally instead and attach it from within your e-mail client." -msgstr "Alceu este document localment i adjunteu-lo amb el vostre client de correu." +msgstr "Guardeu este document localment i adjunteu-lo amb el vostre client de correu." #: helpbookmarkpage.ui msgctxt "" @@ -1238,7 +1238,7 @@ "title\n" "string.text" msgid "Save document?" -msgstr "Voleu alçar el document?" +msgstr "Voleu guardar el document?" #: querysavedialog.ui msgctxt "" @@ -1247,7 +1247,7 @@ "text\n" "string.text" msgid "Save changes to document \"$(DOC)\" before closing?" -msgstr "Voleu alçar els canvis del document «$(DOC)» abans de tancar?" +msgstr "Voleu guardar els canvis del document «$(DOC)» abans de tancar?" #: querysavedialog.ui msgctxt "" @@ -1256,7 +1256,7 @@ "secondary_text\n" "string.text" msgid "Your changes will be lost if you don't save them." -msgstr "Es perdran els vostres canvis si no els alceu." +msgstr "Es perdran els vostres canvis si no els guardeu." #: querysavedialog.ui msgctxt "" @@ -1265,7 +1265,7 @@ "label\n" "string.text" msgid "Close _without saving" -msgstr "Tanca _sense alçar" +msgstr "Tanca _sense guardar" #: searchdialog.ui msgctxt "" @@ -1670,7 +1670,7 @@ "label\n" "string.text" msgid "Saved by: " -msgstr "Alçat per: " +msgstr "Guardat per: " #: versionscmis.ui msgctxt "" @@ -1706,7 +1706,7 @@ "label\n" "string.text" msgid "Saved by" -msgstr "Alçat per" +msgstr "Guardat per" #: versionscmis.ui msgctxt "" @@ -1760,7 +1760,7 @@ "label\n" "string.text" msgid "Save _New Version" -msgstr "Alça la versió _nova" +msgstr "Guarda la versió _nova" #: versionsofdialog.ui msgctxt "" @@ -1769,7 +1769,7 @@ "label\n" "string.text" msgid "_Always save a new version on closing" -msgstr "Alça _sempre una versió nova en tancar" +msgstr "Guarda _sempre una versió nova en tancar" #: versionsofdialog.ui msgctxt "" @@ -1796,7 +1796,7 @@ "label\n" "string.text" msgid "Saved by" -msgstr "Alçat per" +msgstr "Guardat per" #: versionsofdialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/starmath/source.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/starmath/source.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/starmath/source.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/starmath/source.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-20 20:49+0000\n" +"PO-Revision-Date: 2014-08-25 11:13+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1390250947.0\n" +"X-POOTLE-MTIME: 1408965214.000000\n" #: commands.src msgctxt "" @@ -3090,7 +3090,7 @@ "infinite\n" "itemlist.text" msgid "infinite" -msgstr "" +msgstr "infinit" #: symbol.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-02-22 22:56+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-08-25 11:14+0000\n" +"Last-Translator: Joan \n" "Language-Team: none\n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393109801.0\n" +"X-POOTLE-MTIME: 1408965257.000000\n" #: alignmentdialog.ui msgctxt "" @@ -500,7 +500,7 @@ "title\n" "string.text" msgid "Save defaults?" -msgstr "Voleu alçar els valors per defecte?" +msgstr "Voleu guardar els valors per defecte?" #: savedefaultsdialog.ui msgctxt "" @@ -509,7 +509,7 @@ "text\n" "string.text" msgid "Should the changes be saved as defaults?" -msgstr "Voleu que els canvis s'alcen com a valors per defecte?" +msgstr "Voleu que els canvis es guarden com a valors per defecte?" #: savedefaultsdialog.ui msgctxt "" @@ -599,7 +599,7 @@ "label\n" "string.text" msgid "Ig_nore ~~ and ' at the end of the line" -msgstr "" +msgstr "Ig_nora ~~ i ' a final de línia" #: smathsettings.ui msgctxt "" @@ -1067,7 +1067,7 @@ "title\n" "string.text" msgid "Edit Symbols" -msgstr "" +msgstr "Edita els símbols" #: symdefinedialog.ui msgctxt "" @@ -1076,7 +1076,7 @@ "label\n" "string.text" msgid "O_ld symbol set" -msgstr "" +msgstr "Conjunt de símbo_ls antics" #: symdefinedialog.ui msgctxt "" @@ -1085,7 +1085,7 @@ "label\n" "string.text" msgid "_Old symbol" -msgstr "" +msgstr "Símb_ol antic" #: symdefinedialog.ui msgctxt "" @@ -1094,7 +1094,7 @@ "label\n" "string.text" msgid "_Symbol" -msgstr "" +msgstr "_Símbol" #: symdefinedialog.ui msgctxt "" @@ -1103,7 +1103,7 @@ "label\n" "string.text" msgid "Symbol s_et" -msgstr "" +msgstr "Conjunt de _símbols" #: symdefinedialog.ui msgctxt "" @@ -1112,7 +1112,7 @@ "label\n" "string.text" msgid "_Font" -msgstr "" +msgstr "Tipus de _lletra" #: symdefinedialog.ui msgctxt "" @@ -1121,7 +1121,7 @@ "label\n" "string.text" msgid "_Typeface" -msgstr "" +msgstr "_Tipografia" #: symdefinedialog.ui msgctxt "" @@ -1130,7 +1130,7 @@ "label\n" "string.text" msgid "_Subset" -msgstr "" +msgstr "_Subconjunt" #: symdefinedialog.ui msgctxt "" @@ -1139,4 +1139,4 @@ "label\n" "string.text" msgid "_Modify" -msgstr "" +msgstr "_Modifica" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svtools/source/control.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svtools/source/control.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svtools/source/control.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svtools/source/control.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:02+0200\n" -"PO-Revision-Date: 2012-03-19 13:22+0200\n" +"PO-Revision-Date: 2014-08-25 11:53+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1408967606.000000\n" #: calendar.src msgctxt "" @@ -77,7 +78,7 @@ "STR_SVT_COLLATE_CHARSET\n" "string.text" msgid "Character set" -msgstr "Conjunt de caràcters" +msgstr "Joc de caràcters" #: ctrlbox.src msgctxt "" @@ -389,7 +390,7 @@ "STR_SVT_ACC_RULER_HORZ_NAME\n" "string.text" msgid "Horizontal Ruler" -msgstr "" +msgstr "Regle horitzontal" #: ruler.src msgctxt "" @@ -397,4 +398,4 @@ "STR_SVT_ACC_RULER_VERT_NAME\n" "string.text" msgid "Vertical Ruler" -msgstr "" +msgstr "Regle vertical" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svtools/source/dialogs.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svtools/source/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svtools/source/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svtools/source/dialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,11 +3,11 @@ msgstr "" "Project-Id-Version: PACKAGE 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:01+0100\n" +"POT-Creation-Date: 2014-05-02 00:02+0200\n" "PO-Revision-Date: 2014-01-08 14:37+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" -"Language: ca-XV\n" +"Language: ca-valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -294,7 +294,7 @@ "STR_FILEDLG_SAVE\n" "string.text" msgid "Save" -msgstr "Alça" +msgstr "Guarda" #: formats.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svtools/source/misc.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svtools/source/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svtools/source/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svtools/source/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-01-08 14:35+0000\n" +"PO-Revision-Date: 2014-08-25 12:37+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1389191755.0\n" +"X-POOTLE-MTIME: 1408970247.000000\n" #: imagemgr.src msgctxt "" @@ -1527,7 +1527,7 @@ "LANGUAGE_ODIA\n" "pairedlist.text" msgid "Odia" -msgstr "" +msgstr "oriya" #: langtab.src msgctxt "" @@ -1572,7 +1572,7 @@ "LANGUAGE_PUNJABI\n" "pairedlist.text" msgid "Punjabi" -msgstr "punjabi" +msgstr "panjabi" #: langtab.src msgctxt "" @@ -2049,7 +2049,7 @@ "LANGUAGE_USER_KINYARWANDA\n" "pairedlist.text" msgid "Kinyarwanda (Rwanda)" -msgstr "kinyaruanda (Ruanda)" +msgstr "ruandés (Ruanda)" #: langtab.src msgctxt "" @@ -3669,7 +3669,7 @@ "LANGUAGE_USER_AVAR\n" "pairedlist.text" msgid "Avar" -msgstr "" +msgstr "avar" #: langtab.src msgctxt "" @@ -3696,7 +3696,7 @@ "LANGUAGE_USER_LENGO\n" "pairedlist.text" msgid "Lengo" -msgstr "" +msgstr "lengo" #: langtab.src msgctxt "" @@ -3705,7 +3705,7 @@ "LANGUAGE_FRENCH_COTE_D_IVOIRE\n" "pairedlist.text" msgid "French (Côte d'Ivoire)" -msgstr "" +msgstr "francés (Costa d'Ivori)" #: langtab.src msgctxt "" @@ -3714,7 +3714,7 @@ "LANGUAGE_FRENCH_MALI\n" "pairedlist.text" msgid "French (Mali)" -msgstr "" +msgstr "francés (Mali)" #: langtab.src msgctxt "" @@ -3723,7 +3723,7 @@ "LANGUAGE_FRENCH_SENEGAL\n" "pairedlist.text" msgid "French (Senegal)" -msgstr "" +msgstr "francés (Senegal)" #: langtab.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svtools/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svtools/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svtools/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svtools/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-06-25 17:37+0200\n" -"PO-Revision-Date: 2013-07-15 00:05+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-08-25 12:42+0000\n" +"Last-Translator: Joan \n" "Language-Team: none\n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1373846757.0\n" +"X-POOTLE-MTIME: 1408970537.000000\n" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -125,13 +125,14 @@ msgstr "Assignació de camps" #: graphicexport.ui +#, fuzzy msgctxt "" "graphicexport.ui\n" "GraphicExportDialog\n" "title\n" "string.text" msgid "%1 Options" -msgstr "" +msgstr "Opcions de %1" #: graphicexport.ui msgctxt "" @@ -275,7 +276,7 @@ "label\n" "string.text" msgid "Save transparency" -msgstr "Alça la transparència" +msgstr "Guarda la transparència" #: graphicexport.ui msgctxt "" @@ -509,7 +510,7 @@ "title\n" "string.text" msgid "File Services" -msgstr "" +msgstr "Serveis de fitxers" #: placeedit.ui msgctxt "" @@ -518,7 +519,7 @@ "label\n" "string.text" msgid "Name" -msgstr "" +msgstr "Nom" #: placeedit.ui msgctxt "" @@ -527,7 +528,7 @@ "label\n" "string.text" msgid "Type" -msgstr "" +msgstr "Tipus" #: placeedit.ui msgctxt "" @@ -536,7 +537,7 @@ "label\n" "string.text" msgid "File Service" -msgstr "" +msgstr "Servei de fitxers" #: placeedit.ui msgctxt "" @@ -809,13 +810,14 @@ msgstr "Impressora" #: querydeletedialog.ui +#, fuzzy msgctxt "" "querydeletedialog.ui\n" "QueryDeleteDialog\n" "title\n" "string.text" msgid "Confirm Delete" -msgstr "" +msgstr "Confirma la supressió" #: querydeletedialog.ui msgctxt "" @@ -824,7 +826,7 @@ "text\n" "string.text" msgid "Are you sure you want to delete the selected data?" -msgstr "" +msgstr "Esteu segur que voleu suprimir les dades seleccionades?" #: querydeletedialog.ui msgctxt "" @@ -833,7 +835,7 @@ "secondary_text\n" "string.text" msgid "Entry: %s" -msgstr "" +msgstr "Entrada: %s" #: querydeletedialog.ui msgctxt "" @@ -842,7 +844,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "_Suprimeix" #: querydeletedialog.ui msgctxt "" @@ -851,7 +853,7 @@ "label\n" "string.text" msgid "Delete _All" -msgstr "" +msgstr "Suprimeix-ho _tot" #: querydeletedialog.ui msgctxt "" @@ -860,7 +862,7 @@ "label\n" "string.text" msgid "Do _Not Delete" -msgstr "" +msgstr "No ho _suprimisques" #: restartdialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/inc.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/inc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/inc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/inc.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-01-26 20:53+0000\n" +"PO-Revision-Date: 2014-08-26 08:14+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1359233636.0\n" +"X-POOTLE-MTIME: 1409040842.000000\n" #: globlmn_tmpl.hrc msgctxt "" @@ -390,7 +390,7 @@ "ITEM_SAVE_GRAPHIC\n" "#define.text" msgid "Save Graphic..." -msgstr "Alça la imatge..." +msgstr "Guarda la imatge..." #: globlmn_tmpl.hrc msgctxt "" @@ -478,12 +478,13 @@ msgstr "De~sagrupa" #: globlmn_tmpl.hrc +#, fuzzy msgctxt "" "globlmn_tmpl.hrc\n" "ITEM_POPUP_ENTER_GROUP\n" "#define.text" msgid "~Enter Group" -msgstr "" +msgstr "Inclou-ho ~al grup" #: globlmn_tmpl.hrc msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/dialog.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/dialog.po 2014-09-16 19:55:40.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: 2014-07-10 19:33+0200\n" -"PO-Revision-Date: 2014-01-30 00:02+0100\n" -"Last-Translator: Jordi Serratosa \n" +"PO-Revision-Date: 2014-08-26 08:17+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1390683641.0\n" +"X-POOTLE-MTIME: 1409041066.000000\n" #: bmpmask.src msgctxt "" @@ -157,7 +157,7 @@ "STR_IMAGE_GIF\n" "string.text" msgid "Gif image" -msgstr "" +msgstr "Imatge GIF" #: compressgraphicdialog.src msgctxt "" @@ -165,7 +165,7 @@ "STR_IMAGE_JPEG\n" "string.text" msgid "Jpeg image" -msgstr "" +msgstr "Imatge JPEG" #: compressgraphicdialog.src msgctxt "" @@ -173,7 +173,7 @@ "STR_IMAGE_PNG\n" "string.text" msgid "PNG image" -msgstr "" +msgstr "Imatge PNG" #: compressgraphicdialog.src msgctxt "" @@ -181,7 +181,7 @@ "STR_IMAGE_TIFF\n" "string.text" msgid "TIFF image" -msgstr "" +msgstr "Imatge TIFF" #: compressgraphicdialog.src msgctxt "" @@ -189,7 +189,7 @@ "STR_IMAGE_WMF\n" "string.text" msgid "WMF image" -msgstr "" +msgstr "Imatge WMF" #: compressgraphicdialog.src msgctxt "" @@ -197,7 +197,7 @@ "STR_IMAGE_MET\n" "string.text" msgid "MET image" -msgstr "" +msgstr "Imatge MET" #: compressgraphicdialog.src msgctxt "" @@ -205,7 +205,7 @@ "STR_IMAGE_PCT\n" "string.text" msgid "PCT image" -msgstr "" +msgstr "Imatge PICT" #: compressgraphicdialog.src msgctxt "" @@ -213,7 +213,7 @@ "STR_IMAGE_SVG\n" "string.text" msgid "SVG image" -msgstr "" +msgstr "Imatge SVG" #: compressgraphicdialog.src msgctxt "" @@ -221,7 +221,7 @@ "STR_IMAGE_BMP\n" "string.text" msgid "BMP image" -msgstr "" +msgstr "Imatge BMP" #: compressgraphicdialog.src msgctxt "" @@ -229,7 +229,7 @@ "STR_IMAGE_UNKNOWN\n" "string.text" msgid "Unknown" -msgstr "" +msgstr "Desconegut" #: contdlg.src msgctxt "" @@ -398,7 +398,7 @@ "FT_SAVE_DESCR\n" "fixedtext.text" msgid "Due to an unexpected error, %PRODUCTNAME crashed. All the files you were working on will now be saved. The next time %PRODUCTNAME is launched, your files will be recovered automatically." -msgstr "A causa d'un error inesperat, el %PRODUCTNAME ha fallat. Tots els fitxers amb què estàveu treballant s'alçaran ara. La propera vegada que inicieu el %PRODUCTNAME, els fitxers es recuperaran automàticament." +msgstr "A causa d'un error inesperat, el %PRODUCTNAME ha fallat. Tots els fitxers amb què estàveu treballant es guardaran ara. La propera vegada que inicieu el %PRODUCTNAME, els fitxers es recuperaran automàticament." #: docrecovery.src msgctxt "" @@ -425,7 +425,7 @@ "FT_SAVEPROGR_PROGR\n" "fixedtext.text" msgid "Progress of saving: " -msgstr "Progrés en alçar: " +msgstr "Progrés en guardar: " #: docrecovery.src msgctxt "" @@ -447,6 +447,9 @@ "\n" "The 'Status' column shows whether the document can be recovered." msgstr "" +"Premeu «Comença la recuperació» per començar el procés de recuperació dels documents llistats a sota.\n" +"\n" +"La columna «Estat» indica si el document es pot recuperar o no." #: docrecovery.src msgctxt "" @@ -581,7 +584,7 @@ msgstr "" "El procés automàtic de recuperació s'ha interromput.\n" "\n" -"Els documents llistats a sota s'alçaran en la carpeta indicada si feu clic a 'Alça'. Feu clic a 'Cancel·la' per tancar l'auxiliar sense alçar els documents." +"Els documents llistats a sota es guardaran en la carpeta indicada si feu clic a 'Guarda'. Feu clic a 'Cancel·la' per tancar l'auxiliar sense guardar els documents." #: docrecovery.src msgctxt "" @@ -599,7 +602,7 @@ "FT_BROKEN_SAVEDIR\n" "fixedtext.text" msgid "~Save to" -msgstr "~Alça a" +msgstr "~Guarda a" #: docrecovery.src msgctxt "" @@ -617,7 +620,7 @@ "BTN_BROKEN_OK\n" "okbutton.text" msgid "~Save" -msgstr "~Alça" +msgstr "~Guarda" #: fontwork.src msgctxt "" @@ -1003,7 +1006,7 @@ "TBI_SAVEAS\n" "toolboxitem.text" msgid "Save..." -msgstr "Alça..." +msgstr "Guarda..." #: imapdlg.src msgctxt "" @@ -3268,7 +3271,7 @@ "RID_SVXSTR_COLOR_LIBRE_GREEN_1\n" "string.text" msgid "Green 1 (%PRODUCTNAME Main Color)" -msgstr "" +msgstr "Verd 1 (color principal del %PRODUCTNAME)" #: sdstring.src msgctxt "" @@ -3476,7 +3479,7 @@ "RID_SVXSTR_SEARCH_END\n" "string.text" msgid "Reached the end of the document" -msgstr "" +msgstr "S'ha arribat a la fi del document" #: srchdlg.src msgctxt "" @@ -3484,7 +3487,7 @@ "RID_SVXSTR_SEARCH_END_SHEET\n" "string.text" msgid "Reached the end of the sheet" -msgstr "" +msgstr "S'ha arribat a la fi del full" #: srchdlg.src msgctxt "" @@ -3492,7 +3495,7 @@ "RID_SVXSTR_SEARCH_NOT_FOUND\n" "string.text" msgid "Search key not found" -msgstr "" +msgstr "No s'ha trobat l'expressió cercada" #: svxbmpnumvalueset.src msgctxt "" @@ -3564,7 +3567,7 @@ "RID_SVXSTR_SINGLENUM_DESCRIPTION_0\n" "string.text" msgid "Number 1) 2) 3)" -msgstr "" +msgstr "Número 1) 2) 3)" #: svxbmpnumvalueset.src msgctxt "" @@ -4719,7 +4722,7 @@ "RTL_TEXTENCODING_UCS2\n" "pairedlist.text" msgid "Unicode (UTF-16)" -msgstr "" +msgstr "Unicode (UTF-16)" #: txenctab.src msgctxt "" @@ -4935,7 +4938,7 @@ "RID_SUBSETSTR_ODIA\n" "string.text" msgid "Odia" -msgstr "" +msgstr "oriya" #: ucsubset.src msgctxt "" @@ -6204,7 +6207,7 @@ "RID_SUBSETSTR_CYRILLIC_EXTENDED_A\n" "string.text" msgid "Cyrillic Extended-A" -msgstr "Ciríŀlic ampliat-A" +msgstr "Ciríl·lic ampliat-A" #: ucsubset.src msgctxt "" @@ -6222,7 +6225,7 @@ "RID_SUBSETSTR_CYRILLIC_EXTENDED_B\n" "string.text" msgid "Cyrillic Extended-B" -msgstr "Ciríŀlic ampliat-B" +msgstr "Ciríl·lic ampliat-B" #: ucsubset.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/fmcomp.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/fmcomp.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/fmcomp.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/fmcomp.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,12 +2,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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" +"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:06+0200\n" "PO-Revision-Date: 2011-04-05 19:16+0200\n" "Last-Translator: jmontane \n" "Language-Team: LANGUAGE \n" -"Language: ca_XV\n" +"Language: ca-valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -31,7 +31,7 @@ "SID_FM_RECORD_SAVE\n" "menuitem.text" msgid "Save Record" -msgstr "Alça el registre" +msgstr "Guarda el registre" #: gridctrl.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/form.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/form.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/form.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/form.po 2014-09-16 19:55:40.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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-02-22 22:13+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-08-26 08:18+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393107224.0\n" +"X-POOTLE-MTIME: 1409041124.000000\n" #: datanavi.src msgctxt "" @@ -348,7 +348,7 @@ "RID_STR_METHOD_PUT\n" "string.text" msgid "Put" -msgstr "" +msgstr "Posa" #: datanavi.src msgctxt "" @@ -356,7 +356,7 @@ "RID_STR_METHOD_GET\n" "string.text" msgid "Get" -msgstr "" +msgstr "Aconsegueix" #: datanavi.src msgctxt "" @@ -364,7 +364,7 @@ "RID_STR_REPLACE_NONE\n" "string.text" msgid "None" -msgstr "" +msgstr "Cap" #: datanavi.src msgctxt "" @@ -372,7 +372,7 @@ "RID_STR_REPLACE_INST\n" "string.text" msgid "Instance" -msgstr "" +msgstr "Instància" #: datanavi.src msgctxt "" @@ -380,7 +380,7 @@ "RID_STR_REPLACE_DOC\n" "string.text" msgid "Document" -msgstr "" +msgstr "Document" #: datanavi.src msgctxt "" @@ -548,7 +548,7 @@ "RID_STR_ELEMENT\n" "string.text" msgid "Element" -msgstr "" +msgstr "Element" #: datanavi.src msgctxt "" @@ -556,7 +556,7 @@ "RID_STR_ATTRIBUTE\n" "string.text" msgid "Attribute" -msgstr "" +msgstr "Atribut" #: datanavi.src msgctxt "" @@ -564,7 +564,7 @@ "RID_STR_BINDING\n" "string.text" msgid "Binding" -msgstr "" +msgstr "Vinculació" #: datanavi.src msgctxt "" @@ -572,7 +572,7 @@ "RID_STR_BINDING_EXPR\n" "string.text" msgid "Binding expression" -msgstr "" +msgstr "Expressió vinculant" #: filtnav.src msgctxt "" @@ -1445,7 +1445,7 @@ "Do you want to save your changes?" msgstr "" "El contingut del formulari ha canviat.\n" -"Voleu alçar els canvis?" +"Voleu guardar els canvis?" #: fmstring.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/gallery2.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/gallery2.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/gallery2.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/gallery2.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-01-29 23:44+0100\n" -"Last-Translator: Jordi Serratosa \n" +"PO-Revision-Date: 2014-08-26 08:19+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1371062565.0\n" +"X-POOTLE-MTIME: 1409041148.000000\n" #: gallery.src msgctxt "" @@ -778,7 +778,7 @@ "RID_GALLERYSTR_THEME_ARCHITECTURE_FURNITURES\n" "string.text" msgid "Architecture - furniture" -msgstr "" +msgstr "Arquitectura - mobles" #: galtheme.src msgctxt "" @@ -1346,7 +1346,7 @@ "RID_GALLERYSTR_THEME_SPECIAL_PICTOGRAMM\n" "string.text" msgid "Special Pictograms" -msgstr "" +msgstr "Pictogrames especials" #: galtheme.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/items.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/items.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/items.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/items.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-01-30 00:01+0100\n" -"Last-Translator: Jordi Serratosa \n" +"POT-Creation-Date: 2014-07-30 10:58+0200\n" +"PO-Revision-Date: 2014-08-26 08:19+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1409041179.000000\n" #: svxerr.src msgctxt "" @@ -194,7 +195,7 @@ "(ERRCODE_SVX_FORMS_READWRITEFAILED | ERRCODE_CLASS_WRITE) & ERRCODE_RES_MASK\n" "string.text" msgid "An error occurred while writing the form controls. The form layer has not been saved." -msgstr "S'ha produït un error en llegir els controls del formulari. No s'ha pogut alçar la capa del formulari." +msgstr "S'ha produït un error en llegir els controls del formulari. No s'ha pogut guardar la capa del formulari." #: svxerr.src msgctxt "" @@ -212,7 +213,7 @@ "ERRCODE_SVX_MODIFIED_VBASIC_STORAGE & ERRCODE_RES_MASK\n" "string.text" msgid "All changes to the Basic Code are lost. The original VBA Macro Code is saved instead." -msgstr "" +msgstr "Es perdran totes les modificacions del Basic Code del document. En el seu lloc es guardarà el codi macro VBA original." #: svxerr.src msgctxt "" @@ -221,7 +222,7 @@ "ERRCODE_SVX_VBASIC_STORAGE_EXIST & ERRCODE_RES_MASK\n" "string.text" msgid "The original VBA Basic Code contained in the document will not be saved." -msgstr "No s'alçarà el Basic Code VBA del document." +msgstr "No es guardarà el Basic Code VBA del document." #: svxerr.src msgctxt "" @@ -260,8 +261,8 @@ "Password protection is not supported when documents are saved in a Microsoft Office format.\n" "Do you want to save the document without password protection?" msgstr "" -"La protecció amb contrasenya no està permesa quant els documents alçats en format Microsoft Office.\n" -"Voleu alçar el document sense contrasenya?" +"La protecció amb contrasenya no està permesa quant els documents guardats en format Microsoft Office.\n" +"Voleu guardar el document sense contrasenya?" #: svxitems.src msgctxt "" @@ -396,7 +397,7 @@ "Font color\n" "itemlist.text" msgid "Font color" -msgstr "" +msgstr "Color de la lletra" #: svxitems.src msgctxt "" @@ -567,7 +568,7 @@ "Page Style\n" "itemlist.text" msgid "Page Style" -msgstr "" +msgstr "Estil de la pàgina" #: svxitems.src msgctxt "" @@ -594,7 +595,7 @@ "Character background\n" "itemlist.text" msgid "Character background" -msgstr "" +msgstr "Fons del caràcter" #: svxitems.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/sidebar/area.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/sidebar/area.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/sidebar/area.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/sidebar/area.po 2014-09-16 19:55:40.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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2013-07-14 23:13+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-08-26 08:20+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1373843591.0\n" +"X-POOTLE-MTIME: 1409041223.000000\n" #: AreaPropertyPanel.src msgctxt "" @@ -125,13 +125,14 @@ msgstr "~Vora:" #: AreaPropertyPanel.src +#, fuzzy msgctxt "" "AreaPropertyPanel.src\n" "RID_POPUPPANEL_AREAPAGE_TRGR\n" "MTR_TRGR_BORDER\n" "metricfield.quickhelptext" msgid "Specify the border value of gradient transparency." -msgstr "" +msgstr "Indiqueu el valor de la vora de la transparència del degradat." #: AreaPropertyPanel.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/src.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,19 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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: 2012-12-02 23:48+0000\n" -"Last-Translator: Jordi \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:06+0200\n" +"PO-Revision-Date: 2014-04-27 19:11+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" -"Language: ca_XV\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-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1354492102.0\n" +"X-POOTLE-MTIME: 1398625890.000000\n" #: app.src msgctxt "" @@ -58,7 +58,7 @@ "ERRCTX_SFX_SAVEDOC\n" "string.text" msgid "$(ERR) saving the document $(ARG1)" -msgstr "$(ERR) en alçar el document $(ARG1)" +msgstr "$(ERR) en guardar el document $(ARG1)" #: errtxt.src msgctxt "" @@ -67,7 +67,7 @@ "ERRCTX_SFX_SAVEASDOC\n" "string.text" msgid "$(ERR) saving the document $(ARG1)" -msgstr "$(ERR) en alçar el document $(ARG1)" +msgstr "$(ERR) en guardar el document $(ARG1)" #: errtxt.src msgctxt "" @@ -597,7 +597,7 @@ "ERRCODE_IO_RECURSIVE\n" "string.text" msgid "An object cannot be copied into itself." -msgstr "No es pot copiar un objecte dins de sí mateix." +msgstr "No es pot copiar un objecte dins de si mateix." #: errtxt.src msgctxt "" @@ -818,7 +818,7 @@ "ERRCODE_SFX_CANTWRITEICONFILE\n" "string.text" msgid "The configuration of the icon display can not be saved." -msgstr "No es pot alçar la configuració de la visualització d'icones." +msgstr "No es pot guardar la configuració de la visualització d'icones." #: errtxt.src msgctxt "" @@ -854,7 +854,7 @@ "ERRCODE_SFX_CANTWRITEURLCFGFILE\n" "string.text" msgid "The configuration of the URLs to be saved locally could not be saved." -msgstr "No s'ha pogut alçar la configuració dels URL que es volien alçar localment." +msgstr "No s'ha pogut guardar la configuració dels URL que es volien guardar localment." #: errtxt.src msgctxt "" @@ -863,7 +863,7 @@ "ERRCODE_SFX_WRONGURLCFGFORMAT\n" "string.text" msgid "The configuration format of the URLs to be saved locally is invalid." -msgstr "El format de la configuració dels URL que es volen alçar localment no és vàlid." +msgstr "El format de la configuració dels URL que es volen guardar localment no és vàlid." #: errtxt.src msgctxt "" @@ -983,8 +983,8 @@ "This document contains attributes that cannot be saved in the selected format.\n" "Please save the document in a %PRODUCTNAME %PRODUCTVERSION file format." msgstr "" -"Este document conté atributs que no es poden alçar en el format escollit.\n" -"Alceu el document amb el format de fitxer del %PRODUCTNAME %PRODUCTVERSION." +"Este document conté atributs que no es poden guardar en el format escollit.\n" +"Guardeu el document amb el format de fitxer del %PRODUCTNAME %PRODUCTVERSION." #: errtxt.src msgctxt "" @@ -993,7 +993,7 @@ "ERRCODE_SFX_TARGETFILECORRUPTED\n" "string.text" msgid "The file $(FILENAME) cannot be saved. Please check your system settings. You can find an automatically generated backup copy of this file in folder $(PATH) named $(BACKUPNAME)." -msgstr "El fitxer $(FILENAME) no s'ha pogut alçar. Comproveu la configuració del sistema. Podeu trobar una còpia de seguretat creada automàticament d'este fitxer anomenada $(BACKUPNAME) a la carpeta $(PATH)." +msgstr "El fitxer $(FILENAME) no s'ha pogut guardar. Comproveu la configuració del sistema. Podeu trobar una còpia de seguretat creada automàticament d'este fitxer anomenada $(BACKUPNAME) a la carpeta $(PATH)." #: errtxt.src msgctxt "" @@ -1151,7 +1151,7 @@ "ERRCODE_IO_BADCRC\n" "string.text" msgid "Wrong check amount." -msgstr "La suma de comprobació és incorrecta." +msgstr "La suma de comprovació és incorrecta." #: errtxt.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/stbctrls.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/stbctrls.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/stbctrls.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/stbctrls.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-02-22 22:12+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-04-27 19:16+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393107145.0\n" +"X-POOTLE-MTIME: 1398626209.000000\n" #: stbctrls.src msgctxt "" @@ -30,7 +30,7 @@ "RID_SVXSTR_OVERWRITE_HELPTEXT\n" "string.text" msgid "Overwrite mode, text will be overwritten when typing." -msgstr "Mode de sobreescriptura, el text es sobreescriu quan teclejeu." +msgstr "Mode de sobreescriptura, el text se sobreescriu quan teclegeu." #. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'. #: stbctrls.src @@ -123,7 +123,7 @@ "RID_SVXSTR_DOC_MODIFIED_YES\n" "string.text" msgid "The document has been modified. Double-click to save the document." -msgstr "El document s'ha modificat. Feu doble clic per a alçar el document." +msgstr "El document s'ha modificat. Feu doble clic per a guardar el document." #: stbctrls.src msgctxt "" @@ -131,7 +131,7 @@ "RID_SVXSTR_DOC_MODIFIED_NO\n" "string.text" msgid "The document has not been modified since the last save." -msgstr "El document no s'ha modificat des de l'última vegada que s'ha alçat." +msgstr "El document no s'ha modificat des de l'última vegada que s'ha guardat." #: stbctrls.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/tbxctrls.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/tbxctrls.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/source/tbxctrls.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/source/tbxctrls.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-01-29 23:45+0100\n" -"Last-Translator: Jordi Serratosa \n" +"PO-Revision-Date: 2014-04-10 13:06+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1373848108.0\n" +"X-POOTLE-MTIME: 1397135203.000000\n" #: colrctrl.src msgctxt "" @@ -622,7 +622,7 @@ "RID_SVXSTR_BACKGROUND\n" "string.text" msgid "Background" -msgstr "Color de fons" +msgstr "Fons" #: tbcontrl.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/svx/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/svx/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-01-29 23:58+0100\n" -"Last-Translator: Jordi Serratosa \n" +"PO-Revision-Date: 2014-08-26 08:29+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1390685035.0\n" +"X-POOTLE-MTIME: 1409041772.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -203,7 +203,7 @@ "label\n" "string.text" msgid "Calc_ulate" -msgstr "" +msgstr "Calc_ula" #: adddataitemdialog.ui msgctxt "" @@ -212,7 +212,7 @@ "label\n" "string.text" msgid "Condition" -msgstr "" +msgstr "Condició" #: adddataitemdialog.ui msgctxt "" @@ -221,7 +221,7 @@ "label\n" "string.text" msgid "Condition" -msgstr "" +msgstr "Condició" #: adddataitemdialog.ui msgctxt "" @@ -230,16 +230,17 @@ "label\n" "string.text" msgid "Condition" -msgstr "" +msgstr "Condició" #: adddataitemdialog.ui +#, fuzzy msgctxt "" "adddataitemdialog.ui\n" "label4\n" "label\n" "string.text" msgid "Settings" -msgstr "" +msgstr "Paràmetres" #: addinstancedialog.ui msgctxt "" @@ -248,7 +249,7 @@ "title\n" "string.text" msgid "Add Instance" -msgstr "" +msgstr "Afig una instància" #: addinstancedialog.ui msgctxt "" @@ -257,7 +258,7 @@ "label\n" "string.text" msgid "_Name" -msgstr "" +msgstr "_Nom" #: addinstancedialog.ui msgctxt "" @@ -266,7 +267,7 @@ "label\n" "string.text" msgid "Edit Instance" -msgstr "" +msgstr "Edita la instància" #: addinstancedialog.ui msgctxt "" @@ -275,7 +276,7 @@ "label\n" "string.text" msgid "_URL" -msgstr "" +msgstr "_URL" #: addinstancedialog.ui msgctxt "" @@ -284,7 +285,7 @@ "label\n" "string.text" msgid "_..." -msgstr "" +msgstr "_..." #: addinstancedialog.ui msgctxt "" @@ -293,7 +294,7 @@ "label\n" "string.text" msgid "_Link instance" -msgstr "" +msgstr "En~llaça la instància" #: addinstancedialog.ui msgctxt "" @@ -302,7 +303,7 @@ "label\n" "string.text" msgid "Instance" -msgstr "" +msgstr "Instància" #: addmodeldialog.ui msgctxt "" @@ -311,7 +312,7 @@ "title\n" "string.text" msgid "Add Model" -msgstr "" +msgstr "Afig un model" #: addmodeldialog.ui msgctxt "" @@ -329,7 +330,7 @@ "label\n" "string.text" msgid "_Name" -msgstr "" +msgstr "_Nom" #: addmodeldialog.ui msgctxt "" @@ -338,7 +339,7 @@ "label\n" "string.text" msgid "Edit Model" -msgstr "" +msgstr "Edita el model" #: addmodeldialog.ui msgctxt "" @@ -347,7 +348,7 @@ "label\n" "string.text" msgid "Model" -msgstr "" +msgstr "Model" #: addnamespacedialog.ui msgctxt "" @@ -356,7 +357,7 @@ "title\n" "string.text" msgid "Add Namespace" -msgstr "" +msgstr "Afig un espai de nom" #: addnamespacedialog.ui msgctxt "" @@ -365,7 +366,7 @@ "label\n" "string.text" msgid "_Prefix" -msgstr "" +msgstr "_Prefix" #: addnamespacedialog.ui msgctxt "" @@ -374,7 +375,7 @@ "label\n" "string.text" msgid "_URL" -msgstr "" +msgstr "_URL" #: addnamespacedialog.ui msgctxt "" @@ -710,22 +711,24 @@ msgstr "" #: chinesedictionary.ui +#, fuzzy msgctxt "" "chinesedictionary.ui\n" "mappingft\n" "label\n" "string.text" msgid "Mapping" -msgstr "" +msgstr "Correspondència" #: chinesedictionary.ui +#, fuzzy msgctxt "" "chinesedictionary.ui\n" "propertyft\n" "label\n" "string.text" msgid "Property" -msgstr "" +msgstr "Propietat" #: chinesedictionary.ui msgctxt "" @@ -734,7 +737,7 @@ "0\n" "stringlist.text" msgid "Other" -msgstr "" +msgstr "Altre" #: chinesedictionary.ui msgctxt "" @@ -743,7 +746,7 @@ "1\n" "stringlist.text" msgid "Foreign" -msgstr "" +msgstr "Estranger" #: chinesedictionary.ui msgctxt "" @@ -752,7 +755,7 @@ "2\n" "stringlist.text" msgid "First name" -msgstr "" +msgstr "Nom" #: chinesedictionary.ui msgctxt "" @@ -761,7 +764,7 @@ "3\n" "stringlist.text" msgid "Last name" -msgstr "" +msgstr "Cognoms" #: chinesedictionary.ui msgctxt "" @@ -770,7 +773,7 @@ "4\n" "stringlist.text" msgid "Title" -msgstr "" +msgstr "Títol" #: chinesedictionary.ui msgctxt "" @@ -779,7 +782,7 @@ "5\n" "stringlist.text" msgid "Status" -msgstr "" +msgstr "Estat" #: chinesedictionary.ui msgctxt "" @@ -788,7 +791,7 @@ "6\n" "stringlist.text" msgid "Place name" -msgstr "" +msgstr "Nom del lloc" #: chinesedictionary.ui msgctxt "" @@ -797,7 +800,7 @@ "7\n" "stringlist.text" msgid "Business" -msgstr "" +msgstr "Negoci" #: chinesedictionary.ui msgctxt "" @@ -806,7 +809,7 @@ "8\n" "stringlist.text" msgid "Adjective" -msgstr "" +msgstr "Adjectiu" #: chinesedictionary.ui msgctxt "" @@ -815,7 +818,7 @@ "9\n" "stringlist.text" msgid "Idiom" -msgstr "" +msgstr "Frase feta" #: chinesedictionary.ui msgctxt "" @@ -824,16 +827,17 @@ "10\n" "stringlist.text" msgid "Abbreviation" -msgstr "" +msgstr "Abreviatura" #: chinesedictionary.ui +#, fuzzy msgctxt "" "chinesedictionary.ui\n" "property\n" "11\n" "stringlist.text" msgid "Numerical" -msgstr "" +msgstr "Numeral" #: chinesedictionary.ui msgctxt "" @@ -842,7 +846,7 @@ "12\n" "stringlist.text" msgid "Noun" -msgstr "" +msgstr "Substantiu" #: chinesedictionary.ui msgctxt "" @@ -851,7 +855,7 @@ "13\n" "stringlist.text" msgid "Verb" -msgstr "" +msgstr "Verb" #: chinesedictionary.ui msgctxt "" @@ -860,7 +864,7 @@ "14\n" "stringlist.text" msgid "Brand name" -msgstr "" +msgstr "Nom de marca" #: chinesedictionary.ui msgctxt "" @@ -869,7 +873,7 @@ "label\n" "string.text" msgid "_Modify" -msgstr "" +msgstr "_Modifica" #: compressgraphicdialog.ui msgctxt "" @@ -1139,7 +1143,7 @@ "title\n" "string.text" msgid "Extrusion Depth" -msgstr "" +msgstr "Profunditat d'extrusió" #: extrustiondepthdialog.ui msgctxt "" @@ -1148,7 +1152,7 @@ "label\n" "string.text" msgid "_Value" -msgstr "" +msgstr "_Valor" #: extrustiondepthdialog.ui msgctxt "" @@ -1733,7 +1737,7 @@ "label\n" "string.text" msgid "Namespaces" -msgstr "" +msgstr "Espais de nom" #: optgridpage.ui msgctxt "" @@ -1949,7 +1953,7 @@ "title\n" "string.text" msgid "Change Password" -msgstr "Canvia al contrasenya" +msgstr "Canvia la contrasenya" #: passwd.ui msgctxt "" @@ -1997,13 +2001,14 @@ msgstr "Contrasenya nova" #: querydeletecontourdialog.ui +#, fuzzy msgctxt "" "querydeletecontourdialog.ui\n" "QueryDeleteContourDialog\n" "title\n" "string.text" msgid "Delete the contour?" -msgstr "" +msgstr "Voleu suprimir la vora?" #: querydeletecontourdialog.ui msgctxt "" @@ -2023,7 +2028,7 @@ "secondary_text\n" "string.text" msgid "Are you sure you want to continue?" -msgstr "" +msgstr "Esteu segur que voleu continuar?" #: querydeleteobjectdialog.ui msgctxt "" @@ -2032,7 +2037,7 @@ "title\n" "string.text" msgid "Delete this object?" -msgstr "" +msgstr "Voleu suprimir este objecte?" #: querydeleteobjectdialog.ui msgctxt "" @@ -2041,7 +2046,7 @@ "text\n" "string.text" msgid "Do you really want to delete this object?" -msgstr "" +msgstr "Esteu segur de voler suprimir este objecte?" #: querydeletethemedialog.ui msgctxt "" @@ -2050,7 +2055,7 @@ "title\n" "string.text" msgid "Delete this theme?" -msgstr "" +msgstr "Voleu suprimir este tema?" #: querydeletethemedialog.ui msgctxt "" @@ -2059,7 +2064,7 @@ "text\n" "string.text" msgid "Do you really want to delete this theme?" -msgstr "" +msgstr "Esteu segur de voler suprimir este tema?" #: querymodifyimagemapchangesdialog.ui msgctxt "" @@ -2068,7 +2073,7 @@ "title\n" "string.text" msgid "Save ImageMap changes?" -msgstr "" +msgstr "Voleu guardar els canvis del mapa d'imatge?" #: querymodifyimagemapchangesdialog.ui msgctxt "" @@ -2077,7 +2082,7 @@ "text\n" "string.text" msgid "The ImageMap has been modified." -msgstr "" +msgstr "S'ha modificat el mapa d'imatge." #: querymodifyimagemapchangesdialog.ui msgctxt "" @@ -2086,16 +2091,17 @@ "secondary_text\n" "string.text" msgid "Do you want to save the changes?" -msgstr "" +msgstr "Voleu guardar els canvis?" #: querynewcontourdialog.ui +#, fuzzy msgctxt "" "querynewcontourdialog.ui\n" "QueryNewContourDialog\n" "title\n" "string.text" msgid "Create a new contour?" -msgstr "" +msgstr "Voleu crear una vora nova?" #: querynewcontourdialog.ui msgctxt "" @@ -2104,7 +2110,7 @@ "text\n" "string.text" msgid "Do you want to create a new contour?" -msgstr "" +msgstr "Voleu crear una vora nova?" #: querysavecontchangesdialog.ui msgctxt "" @@ -2113,7 +2119,7 @@ "title\n" "string.text" msgid "Save contour changes?" -msgstr "" +msgstr "Voleu guardar els canvis de la vora?" #: querysavecontchangesdialog.ui msgctxt "" @@ -2122,7 +2128,7 @@ "text\n" "string.text" msgid "The contour has been modified." -msgstr "" +msgstr "S'ha modificat la vora." #: querysavecontchangesdialog.ui msgctxt "" @@ -2131,7 +2137,7 @@ "secondary_text\n" "string.text" msgid "Do you want to save the changes?" -msgstr "" +msgstr "Voleu guardar els canvis?" #: querysaveimagemapchangesdialog.ui msgctxt "" @@ -2140,7 +2146,7 @@ "title\n" "string.text" msgid "Save ImageMap changes?" -msgstr "" +msgstr "Voleu guardar els canvis del mapa d'imatge?" #: querysaveimagemapchangesdialog.ui msgctxt "" @@ -2149,7 +2155,7 @@ "text\n" "string.text" msgid "The ImageMap has been modified." -msgstr "" +msgstr "S'ha modificat el mapa d'imatge." #: querysaveimagemapchangesdialog.ui msgctxt "" @@ -2158,7 +2164,7 @@ "secondary_text\n" "string.text" msgid "Do you want to save the changes?" -msgstr "" +msgstr "Voleu guardar els canvis?" #: queryunlinkgraphicsdialog.ui msgctxt "" @@ -2347,7 +2353,7 @@ "5\n" "stringlist.text" msgid "since saving" -msgstr "des que es va alçar" +msgstr "des que es va guardar" #: redlinefilterpage.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/dbui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/dbui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/dbui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/dbui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,15 +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: 2014-05-02 00:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2014-07-17 07:08+0000\n" +"Last-Translator: Joan \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-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405580887.000000\n" #: mailmergechildwindow.src msgctxt "" @@ -20,7 +22,7 @@ "WORKAROUND\n" "#define.text" msgid "Return to Mail Merge Wizard" -msgstr "" +msgstr "Torna a l'auxiliar de combinació de correu" #: mailmergechildwindow.src msgctxt "" @@ -28,7 +30,7 @@ "DLG_MAILMERGECHILD\n" "floatingwindow.text" msgid "Mail Merge Wizard" -msgstr "" +msgstr "Auxiliar de combinació de correu" #: mailmergechildwindow.src msgctxt "" @@ -37,7 +39,7 @@ "FL_STATUS\n" "fixedline.text" msgid "Connection status" -msgstr "" +msgstr "Estat de la connexió" #: mailmergechildwindow.src msgctxt "" @@ -46,7 +48,7 @@ "FT_STATUS1\n" "fixedtext.text" msgid "The connection to the outgoing mail server has been established" -msgstr "" +msgstr "S'ha establit la connexió amb el servidor de correu d'eixida" #: mailmergechildwindow.src msgctxt "" @@ -55,7 +57,7 @@ "ST_SEND\n" "string.text" msgid "Sending e-mails..." -msgstr "" +msgstr "S'estan enviant els correus..." #: mailmergechildwindow.src msgctxt "" @@ -64,7 +66,7 @@ "FL_TRANSFERSTATUS\n" "fixedline.text" msgid "Transfer status" -msgstr "" +msgstr "Estat de la transferència" #: mailmergechildwindow.src msgctxt "" @@ -73,7 +75,7 @@ "FT_TRANSFERSTATUS\n" "fixedtext.text" msgid "%1 of %2 e-mails sent" -msgstr "" +msgstr "%1 de %2 correus enviats" #: mailmergechildwindow.src msgctxt "" @@ -82,7 +84,7 @@ "FI_PAUSED\n" "fixedtext.text" msgid "Sending paused" -msgstr "" +msgstr "S'ha interromput l'enviament" #: mailmergechildwindow.src msgctxt "" @@ -91,7 +93,7 @@ "FT_ERRORSTATUS\n" "fixedtext.text" msgid "E-mails not sent: %1" -msgstr "" +msgstr "Correus electrònics no enviats: %1" #: mailmergechildwindow.src msgctxt "" @@ -100,7 +102,7 @@ "PB_DETAILS\n" "pushbutton.text" msgid "More >>" -msgstr "" +msgstr "Més >" #: mailmergechildwindow.src msgctxt "" @@ -109,7 +111,7 @@ "ST_LESS\n" "string.text" msgid "<< Less" -msgstr "" +msgstr "<< Menys" #: mailmergechildwindow.src msgctxt "" @@ -118,7 +120,7 @@ "PB_STOP\n" "pushbutton.text" msgid "~Stop" -msgstr "" +msgstr "~Atura" #: mailmergechildwindow.src msgctxt "" @@ -127,7 +129,7 @@ "PB_CLOSE\n" "pushbutton.text" msgid "C~lose" -msgstr "" +msgstr "~Tanca" #: mailmergechildwindow.src msgctxt "" @@ -136,7 +138,7 @@ "ST_CONTINUE\n" "string.text" msgid "~Continue" -msgstr "" +msgstr "~Continua" #: mailmergechildwindow.src msgctxt "" @@ -144,7 +146,7 @@ "DLG_MM_SENDMAILS\n" "modelessdialog.text" msgid "Sending E-mail messages" -msgstr "" +msgstr "S'estan enviant els missatges de correu electrònic" #: mailmergechildwindow.src msgctxt "" @@ -152,7 +154,7 @@ "ST_TASK\n" "string.text" msgid "Task" -msgstr "" +msgstr "Tasca" #: mailmergechildwindow.src msgctxt "" @@ -160,7 +162,7 @@ "ST_STATUS\n" "string.text" msgid "Status" -msgstr "" +msgstr "Estatus" #: mailmergechildwindow.src msgctxt "" @@ -168,7 +170,7 @@ "ST_SENDINGTO\n" "string.text" msgid "Sending to: %1" -msgstr "" +msgstr "S'està enviant a: %1" #: mailmergechildwindow.src msgctxt "" @@ -176,7 +178,7 @@ "ST_COMPLETED\n" "string.text" msgid "Successfully sent" -msgstr "" +msgstr "S'ha enviat amb èxit" #: mailmergechildwindow.src msgctxt "" @@ -184,7 +186,7 @@ "ST_FAILED\n" "string.text" msgid "Sending failed" -msgstr "" +msgstr "L'enviament ha fallat" #: mailmergechildwindow.src msgctxt "" @@ -195,3 +197,5 @@ "There are still e-mail messages in your %PRODUCTNAME Outbox.\n" "Would you like to exit anyway?" msgstr "" +"Encara hi ha missatges de correu electrònic a la bústia d'eixida del %PRODUCTNAME.\n" +"Voleu eixir de totes maneres?" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/dialog.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,15 +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: 2014-05-02 00:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2014-07-17 07:09+0000\n" +"Last-Translator: Joan \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-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405580949.000000\n" #: regionsw.src msgctxt "" @@ -20,7 +22,7 @@ "STR_REG_DUPLICATE\n" "string.text" msgid "Section name changed:" -msgstr "" +msgstr "El nom de la secció ha canviat:" #: regionsw.src msgctxt "" @@ -28,7 +30,7 @@ "STR_INFO_DUPLICATE\n" "string.text" msgid "Duplicate section name" -msgstr "" +msgstr "Nom de secció duplicat" #: regionsw.src msgctxt "" @@ -36,7 +38,7 @@ "QB_CONNECT\n" "querybox.text" msgid "A file connection will delete the contents of the current section. Connect anyway?" -msgstr "" +msgstr "Una connexió de fitxers suprimirà el contingut de la secció actual. Voleu realitzar la connexió igualment?" #: regionsw.src msgctxt "" @@ -44,7 +46,7 @@ "REG_WRONG_PASSWORD\n" "infobox.text" msgid "The password entered is invalid." -msgstr "" +msgstr "La contrasenya introduïda no és correcta." #: regionsw.src msgctxt "" @@ -52,4 +54,4 @@ "REG_WRONG_PASSWD_REPEAT\n" "infobox.text" msgid "The password has not been set." -msgstr "" +msgstr "No s'ha definit la contrasenya." diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/docvw.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/docvw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/docvw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/docvw.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,15 +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: 2014-05-02 00:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2014-07-17 11:02+0000\n" +"Last-Translator: Joan \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-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405594951.000000\n" #: docvw.src msgctxt "" @@ -21,7 +23,7 @@ "MN_READONLY_OPENURL\n" "menuitem.text" msgid "~Open" -msgstr "" +msgstr "~Obri" #: docvw.src msgctxt "" @@ -30,7 +32,7 @@ "MN_READONLY_OPENURLNEW\n" "menuitem.text" msgid "Open in New Window" -msgstr "" +msgstr "Obri en una finestra nova" #: docvw.src msgctxt "" @@ -39,7 +41,7 @@ "MN_READONLY_EDITDOC\n" "menuitem.text" msgid "~Edit" -msgstr "" +msgstr "~Edita" #: docvw.src msgctxt "" @@ -48,7 +50,7 @@ "MN_READONLY_SELECTION_MODE\n" "menuitem.text" msgid "Select Text" -msgstr "" +msgstr "Seleccioneu el text" #: docvw.src msgctxt "" @@ -57,7 +59,7 @@ "MN_READONLY_RELOAD\n" "menuitem.text" msgid "Re~load" -msgstr "" +msgstr "Torna a ~carregar" #: docvw.src msgctxt "" @@ -66,7 +68,7 @@ "MN_READONLY_RELOAD_FRAME\n" "menuitem.text" msgid "Reload Frame" -msgstr "" +msgstr "Torna a carregar el marc" #: docvw.src msgctxt "" @@ -75,7 +77,7 @@ "MN_READONLY_SOURCEVIEW\n" "menuitem.text" msgid "HT~ML Source" -msgstr "" +msgstr "Codi HTML" #: docvw.src msgctxt "" @@ -84,7 +86,7 @@ "MN_READONLY_BROWSE_BACKWARD\n" "menuitem.text" msgid "Backwards" -msgstr "" +msgstr "Arrere" #: docvw.src msgctxt "" @@ -93,7 +95,7 @@ "MN_READONLY_BROWSE_FORWARD\n" "menuitem.text" msgid "~Forward" -msgstr "" +msgstr "En~davant" #: docvw.src msgctxt "" @@ -102,7 +104,7 @@ "MN_READONLY_SAVEGRAPHIC\n" "menuitem.text" msgid "Save Image..." -msgstr "" +msgstr "Guarda la imatge..." #: docvw.src msgctxt "" @@ -111,7 +113,7 @@ "MN_READONLY_TOGALLERYLINK\n" "menuitem.text" msgid "As Link" -msgstr "" +msgstr "Com a enllaç" #: docvw.src msgctxt "" @@ -120,7 +122,7 @@ "MN_READONLY_TOGALLERYCOPY\n" "menuitem.text" msgid "Copy" -msgstr "" +msgstr "Copia" #: docvw.src msgctxt "" @@ -129,7 +131,7 @@ "MN_READONLY_GRAPHICTOGALLERY\n" "menuitem.text" msgid "Add Image" -msgstr "" +msgstr "Afig una imatge" #: docvw.src msgctxt "" @@ -138,7 +140,7 @@ "MN_READONLY_SAVEBACKGROUND\n" "menuitem.text" msgid "Save Background..." -msgstr "" +msgstr "Guarda el fons..." #: docvw.src msgctxt "" @@ -147,7 +149,7 @@ "MN_READONLY_TOGALLERYLINK\n" "menuitem.text" msgid "As Link" -msgstr "" +msgstr "Com a enllaç" #: docvw.src msgctxt "" @@ -156,7 +158,7 @@ "MN_READONLY_TOGALLERYCOPY\n" "menuitem.text" msgid "Copy" -msgstr "" +msgstr "Copia" #: docvw.src msgctxt "" @@ -165,7 +167,7 @@ "MN_READONLY_BACKGROUNDTOGALLERY\n" "menuitem.text" msgid "Add Background" -msgstr "" +msgstr "Afig un fons" #: docvw.src msgctxt "" @@ -174,7 +176,7 @@ "MN_READONLY_COPYLINK\n" "menuitem.text" msgid "Copy ~Link" -msgstr "" +msgstr "Copia l'en~llaç" #: docvw.src msgctxt "" @@ -183,7 +185,7 @@ "MN_READONLY_COPYGRAPHIC\n" "menuitem.text" msgid "Copy ~Image" -msgstr "" +msgstr "Copia la ~imatge" #: docvw.src msgctxt "" @@ -192,7 +194,7 @@ "MN_READONLY_LOADGRAPHIC\n" "menuitem.text" msgid "Load Image" -msgstr "" +msgstr "Carrega una imatge" #: docvw.src msgctxt "" @@ -210,7 +212,7 @@ "MN_READONLY_PLUGINOFF\n" "menuitem.text" msgid "Plug-ins Off" -msgstr "" +msgstr "Desactiva els connectors" #: docvw.src msgctxt "" @@ -219,7 +221,7 @@ "SID_WIN_FULLSCREEN\n" "menuitem.text" msgid "Leave Full-Screen Mode" -msgstr "" +msgstr "Ix del mode de pantalla completa" #: docvw.src msgctxt "" @@ -228,7 +230,7 @@ "MN_READONLY_COPY\n" "menuitem.text" msgid "~Copy" -msgstr "" +msgstr "~Copia" #: docvw.src msgctxt "" @@ -236,7 +238,7 @@ "STR_CHAIN_OK\n" "string.text" msgid "Click the left mouse button to link the frames." -msgstr "" +msgstr "Feu clic al botó esquerre del ratolí per enllaçar els marcs." #: docvw.src msgctxt "" @@ -244,7 +246,7 @@ "STR_CHAIN_NOT_EMPTY\n" "string.text" msgid "Target frame not empty." -msgstr "" +msgstr "El marc de destinació no és buit." #: docvw.src msgctxt "" @@ -252,7 +254,7 @@ "STR_CHAIN_IS_IN_CHAIN\n" "string.text" msgid "Target frame is already linked." -msgstr "" +msgstr "El marc de destinació ja està enllaçat." #: docvw.src msgctxt "" @@ -260,7 +262,7 @@ "STR_CHAIN_WRONG_AREA\n" "string.text" msgid "The target frame for the link is in an invalid area." -msgstr "" +msgstr "El marc de destinació de l'enllaç és en una àrea no vàlida." #: docvw.src msgctxt "" @@ -268,7 +270,7 @@ "STR_CHAIN_NOT_FOUND\n" "string.text" msgid "Target frame not found at current position." -msgstr "" +msgstr "No s'ha trobat cap marc de destinació a la posició actual." #: docvw.src msgctxt "" @@ -276,7 +278,7 @@ "STR_CHAIN_SOURCE_CHAINED\n" "string.text" msgid "The source frame is already the source of a link." -msgstr "" +msgstr "El marc d'origen ja és la font d'un enllaç." #: docvw.src msgctxt "" @@ -284,7 +286,7 @@ "STR_CHAIN_SELF\n" "string.text" msgid "A closed link is not possible." -msgstr "" +msgstr "No és possible un enllaç tancat." #: docvw.src msgctxt "" @@ -292,7 +294,7 @@ "STR_REDLINE_INSERT\n" "string.text" msgid "Inserted" -msgstr "" +msgstr "Inserit" #: docvw.src msgctxt "" @@ -300,7 +302,7 @@ "STR_REDLINE_DELETE\n" "string.text" msgid "Deleted" -msgstr "" +msgstr "Suprimit" #: docvw.src msgctxt "" @@ -308,7 +310,7 @@ "STR_REDLINE_FORMAT\n" "string.text" msgid "Formatted" -msgstr "" +msgstr "Formatat" #: docvw.src msgctxt "" @@ -316,7 +318,7 @@ "STR_REDLINE_TABLE\n" "string.text" msgid "Table changed" -msgstr "" +msgstr "La taula ha canviat" #: docvw.src msgctxt "" @@ -324,7 +326,7 @@ "STR_REDLINE_FMTCOLL\n" "string.text" msgid "Applied Paragraph Styles" -msgstr "" +msgstr "S'han aplicat els estils de paràgraf" #: docvw.src msgctxt "" @@ -332,7 +334,7 @@ "STR_ENDNOTE\n" "string.text" msgid "Endnote: " -msgstr "" +msgstr "Nota final: " #: docvw.src msgctxt "" @@ -340,7 +342,7 @@ "STR_FTNNOTE\n" "string.text" msgid "Footnote: " -msgstr "" +msgstr "Nota al peu: " #: docvw.src msgctxt "" @@ -348,7 +350,7 @@ "STR_TABLE_COL_ADJUST\n" "string.text" msgid "Adjust table column" -msgstr "" +msgstr "Ajusta la columna de la taula" #: docvw.src msgctxt "" @@ -356,7 +358,7 @@ "STR_TABLE_ROW_ADJUST\n" "string.text" msgid "Adjust table row" -msgstr "" +msgstr "Ajusta la fila de la taula" #: docvw.src msgctxt "" @@ -364,7 +366,7 @@ "STR_TABLE_SELECT_ALL\n" "string.text" msgid "Select whole table" -msgstr "" +msgstr "Selecciona tota la taula" #: docvw.src msgctxt "" @@ -372,7 +374,7 @@ "STR_TABLE_SELECT_ROW\n" "string.text" msgid "Select table row" -msgstr "" +msgstr "Selecciona la fila de la taula" #: docvw.src msgctxt "" @@ -380,7 +382,7 @@ "STR_TABLE_SELECT_COL\n" "string.text" msgid "Select table column" -msgstr "" +msgstr "Selecciona la columna de la taula" #: docvw.src msgctxt "" @@ -388,7 +390,7 @@ "STR_SMARTTAG_CLICK\n" "string.text" msgid "%s-click to open Smart Tag menu" -msgstr "" +msgstr "%s-clic per obrir el menú d'etiqueta intel·ligent" #: docvw.src msgctxt "" @@ -396,7 +398,7 @@ "STR_HEADER_TITLE\n" "string.text" msgid "Header (%1)" -msgstr "" +msgstr "Capçalera (%1)" #: docvw.src msgctxt "" @@ -404,7 +406,7 @@ "STR_FOOTER_TITLE\n" "string.text" msgid "Footer (%1)" -msgstr "" +msgstr "Peu de pàgina (%1)" #: docvw.src msgctxt "" @@ -412,7 +414,7 @@ "STR_DELETE_HEADER\n" "string.text" msgid "Delete Header..." -msgstr "" +msgstr "Suprimeix la capçalera..." #: docvw.src msgctxt "" @@ -420,7 +422,7 @@ "STR_FORMAT_HEADER\n" "string.text" msgid "Format Header..." -msgstr "" +msgstr "Formata la capçalera..." #: docvw.src msgctxt "" @@ -428,7 +430,7 @@ "STR_DELETE_FOOTER\n" "string.text" msgid "Delete Footer..." -msgstr "" +msgstr "Suprimeix el peu de pàgina..." #: docvw.src msgctxt "" @@ -436,4 +438,4 @@ "STR_FORMAT_FOOTER\n" "string.text" msgid "Format Footer..." -msgstr "" +msgstr "Formata el peu de pàgina..." diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/inc.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/inc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/inc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/inc.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,15 +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: 2014-07-10 19:33+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2014-07-17 08:07+0000\n" +"Last-Translator: Joan \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-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405584429.000000\n" #: redline_tmpl.hrc msgctxt "" @@ -21,7 +23,7 @@ "FN_REDLINE_ACCEPT_DIRECT\n" "menuitem.text" msgid "Accept Change" -msgstr "" +msgstr "Accepta el canvi" #: redline_tmpl.hrc msgctxt "" @@ -30,7 +32,7 @@ "FN_REDLINE_REJECT_DIRECT\n" "menuitem.text" msgid "Reject Change" -msgstr "" +msgstr "Rebutja el canvi" #: redline_tmpl.hrc msgctxt "" @@ -39,7 +41,7 @@ "FN_REDLINE_NEXT_CHANGE\n" "menuitem.text" msgid "Next Change" -msgstr "" +msgstr "Canvi següent" #: redline_tmpl.hrc msgctxt "" @@ -48,4 +50,4 @@ "FN_REDLINE_PREV_CHANGE\n" "menuitem.text" msgid "Previous Change" -msgstr "" +msgstr "Canvi anterior" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/lingu.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/lingu.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/lingu.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/lingu.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,15 +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: 2014-05-02 00:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2014-07-17 11:04+0000\n" +"Last-Translator: Joan \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-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405595074.000000\n" #: olmenu.src msgctxt "" @@ -21,7 +23,7 @@ "MN_IGNORE_WORD\n" "menuitem.text" msgid "Ignore All" -msgstr "" +msgstr "Ignora-ho tot" #: olmenu.src msgctxt "" @@ -30,7 +32,7 @@ "MN_ADD_TO_DIC\n" "menuitem.text" msgid "~Add to Dictionary" -msgstr "" +msgstr "~Afig al diccionari" #: olmenu.src msgctxt "" @@ -39,7 +41,7 @@ "MN_ADD_TO_DIC_SINGLE\n" "menuitem.text" msgid "~Add to Dictionary" -msgstr "" +msgstr "~Afig al diccionari" #: olmenu.src msgctxt "" @@ -48,7 +50,7 @@ "MN_AUTOCORR\n" "menuitem.text" msgid "Always correct to" -msgstr "" +msgstr "Corregeix sempre a" #: olmenu.src msgctxt "" @@ -57,7 +59,7 @@ "MN_SPELLING_DLG\n" "menuitem.text" msgid "~Spellcheck..." -msgstr "" +msgstr "~Verificació ortogràfica..." #: olmenu.src msgctxt "" @@ -66,7 +68,7 @@ "MN_SET_LANGUAGE_SELECTION\n" "menuitem.text" msgid "Set Language for Selection" -msgstr "" +msgstr "Defineix la llengua de la selecció" #: olmenu.src msgctxt "" @@ -75,7 +77,7 @@ "MN_SET_LANGUAGE_PARAGRAPH\n" "menuitem.text" msgid "Set Language for Paragraph" -msgstr "" +msgstr "Configura la llengua del paràgraf" #: olmenu.src msgctxt "" @@ -83,7 +85,7 @@ "STR_WORD\n" "string.text" msgid "Word is " -msgstr "" +msgstr "La paraula és: " #: olmenu.src msgctxt "" @@ -91,7 +93,7 @@ "STR_PARAGRAPH\n" "string.text" msgid "Paragraph is " -msgstr "" +msgstr "El paràgraf és: " #: olmenu.src msgctxt "" @@ -99,7 +101,7 @@ "STR_SPELL_OK\n" "string.text" msgid "The spellcheck is complete." -msgstr "" +msgstr "La verificació ortogràfica ha finalitzat." #: olmenu.src msgctxt "" @@ -107,7 +109,7 @@ "STR_HYP_OK\n" "string.text" msgid "Hyphenation completed" -msgstr "" +msgstr "La partició de mots ha finalitzat" #: olmenu.src msgctxt "" @@ -115,7 +117,7 @@ "STR_LANGSTATUS_NONE\n" "string.text" msgid "None (Do not check spelling)" -msgstr "" +msgstr "Cap (no verifiquis l'ortografia)" #: olmenu.src msgctxt "" @@ -123,7 +125,7 @@ "STR_RESET_TO_DEFAULT_LANGUAGE\n" "string.text" msgid "Reset to Default Language" -msgstr "" +msgstr "Reinicialitza a la llengua per defecte" #: olmenu.src msgctxt "" @@ -131,7 +133,7 @@ "STR_LANGSTATUS_MORE\n" "string.text" msgid "More..." -msgstr "" +msgstr "Més..." #: olmenu.src msgctxt "" @@ -139,7 +141,7 @@ "STR_IGNORE_SELECTION\n" "string.text" msgid "Ignore" -msgstr "" +msgstr "Ignora" #: olmenu.src msgctxt "" @@ -147,4 +149,4 @@ "STR_EXPLANATION_LINK\n" "string.text" msgid "Explanations..." -msgstr "" +msgstr "Explicacions..." diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/misc.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,15 +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: 2014-05-02 00:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2014-08-26 08:58+0000\n" +"Last-Translator: Joan \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-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1409043480.000000\n" #: redlndlg.src msgctxt "" @@ -21,7 +23,7 @@ "MN_EDIT_COMMENT\n" "menuitem.text" msgid "Edit Comment..." -msgstr "" +msgstr "Edita el comentari..." #: redlndlg.src msgctxt "" @@ -30,7 +32,7 @@ "MN_SORT_ACTION\n" "menuitem.text" msgid "Action" -msgstr "" +msgstr "Acció" #: redlndlg.src msgctxt "" @@ -39,7 +41,7 @@ "MN_SORT_AUTHOR\n" "menuitem.text" msgid "Author" -msgstr "" +msgstr "Autor" #: redlndlg.src msgctxt "" @@ -48,7 +50,7 @@ "MN_SORT_DATE\n" "menuitem.text" msgid "Date" -msgstr "" +msgstr "Data" #: redlndlg.src msgctxt "" @@ -57,7 +59,7 @@ "MN_SORT_COMMENT\n" "menuitem.text" msgid "Comment" -msgstr "" +msgstr "Comentari" #: redlndlg.src msgctxt "" @@ -66,7 +68,7 @@ "MN_SORT_POSITION\n" "menuitem.text" msgid "Document position" -msgstr "" +msgstr "Posició del document" #: redlndlg.src msgctxt "" @@ -75,4 +77,4 @@ "MN_SUB_SORT\n" "menuitem.text" msgid "Sort By" -msgstr "" +msgstr "Ordena per" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/ribbar.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/ribbar.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/ribbar.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/ribbar.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,15 +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: 2014-05-02 00:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2014-08-26 08:58+0000\n" +"Last-Translator: Joan \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-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1409043528.000000\n" #: inputwin.src msgctxt "" @@ -21,7 +23,7 @@ "FN_FORMULA_CALC\n" "toolboxitem.text" msgid "Formula" -msgstr "" +msgstr "Fórmula" #: inputwin.src msgctxt "" @@ -30,7 +32,7 @@ "FN_FORMULA_CANCEL\n" "toolboxitem.text" msgid "Cancel" -msgstr "" +msgstr "Cancel·la" #: inputwin.src msgctxt "" @@ -39,7 +41,7 @@ "FN_FORMULA_APPLY\n" "toolboxitem.text" msgid "Apply" -msgstr "" +msgstr "Aplica" #: inputwin.src msgctxt "" @@ -48,7 +50,7 @@ "MN_CALC_SUM\n" "menuitem.text" msgid "Sum" -msgstr "" +msgstr "Suma" #: inputwin.src msgctxt "" @@ -57,7 +59,7 @@ "MN_CALC_ROUND\n" "menuitem.text" msgid "Round" -msgstr "" +msgstr "Arrodoniment" #: inputwin.src msgctxt "" @@ -66,7 +68,7 @@ "MN_CALC_PHD\n" "menuitem.text" msgid "Percent" -msgstr "" +msgstr "Percentatge" #: inputwin.src msgctxt "" @@ -75,7 +77,7 @@ "MN_CALC_SQRT\n" "menuitem.text" msgid "Square Root" -msgstr "" +msgstr "Arrel quadrada" #: inputwin.src msgctxt "" @@ -84,7 +86,7 @@ "MN_CALC_POW\n" "menuitem.text" msgid "Power" -msgstr "" +msgstr "Potència" #: inputwin.src msgctxt "" @@ -93,7 +95,7 @@ "MN_CALC_LISTSEP\n" "menuitem.text" msgid "List Separator" -msgstr "" +msgstr "Separador de llista" #: inputwin.src msgctxt "" @@ -102,7 +104,7 @@ "MN_CALC_EQ\n" "menuitem.text" msgid "Equal" -msgstr "" +msgstr "Igual" #: inputwin.src msgctxt "" @@ -111,7 +113,7 @@ "MN_CALC_NEQ\n" "menuitem.text" msgid "Not Equal" -msgstr "" +msgstr "No igual" #: inputwin.src msgctxt "" @@ -120,7 +122,7 @@ "MN_CALC_LEQ\n" "menuitem.text" msgid "Less Than or Equal" -msgstr "" +msgstr "Menor o igual" #: inputwin.src msgctxt "" @@ -129,7 +131,7 @@ "MN_CALC_GEQ\n" "menuitem.text" msgid "Greater Than or Equal" -msgstr "" +msgstr "Major o igual" #: inputwin.src msgctxt "" @@ -138,7 +140,7 @@ "MN_CALC_LES\n" "menuitem.text" msgid "Less" -msgstr "" +msgstr "Menor" #: inputwin.src msgctxt "" @@ -147,7 +149,7 @@ "MN_CALC_GRE\n" "menuitem.text" msgid "Greater" -msgstr "" +msgstr "Major" #: inputwin.src msgctxt "" @@ -156,7 +158,7 @@ "MN_CALC_OR\n" "menuitem.text" msgid "Boolean Or" -msgstr "" +msgstr "Operador booleà O" #: inputwin.src msgctxt "" @@ -165,7 +167,7 @@ "MN_CALC_XOR\n" "menuitem.text" msgid "Boolean Xor" -msgstr "" +msgstr "Operador booleà O exclusiu" #: inputwin.src msgctxt "" @@ -174,7 +176,7 @@ "MN_CALC_AND\n" "menuitem.text" msgid "Boolean And" -msgstr "" +msgstr "Operador booleà I" #: inputwin.src msgctxt "" @@ -183,7 +185,7 @@ "MN_CALC_NOT\n" "menuitem.text" msgid "Boolean Not" -msgstr "" +msgstr "Operador booleà NO" #: inputwin.src msgctxt "" @@ -192,7 +194,7 @@ "MN_POP_OPS\n" "menuitem.text" msgid "Operators" -msgstr "" +msgstr "Operadors" #: inputwin.src msgctxt "" @@ -201,7 +203,7 @@ "MN_CALC_MEAN\n" "menuitem.text" msgid "Mean" -msgstr "" +msgstr "Mitjana" #: inputwin.src msgctxt "" @@ -210,7 +212,7 @@ "MN_CALC_MIN\n" "menuitem.text" msgid "Minimum" -msgstr "" +msgstr "Mínim" #: inputwin.src msgctxt "" @@ -219,7 +221,7 @@ "MN_CALC_MAX\n" "menuitem.text" msgid "Maximum" -msgstr "" +msgstr "Màxim" #: inputwin.src msgctxt "" @@ -228,7 +230,7 @@ "MN_POP_STATISTICS\n" "menuitem.text" msgid "Statistical Functions" -msgstr "" +msgstr "Funcions estadístiques" #: inputwin.src msgctxt "" @@ -237,7 +239,7 @@ "MN_CALC_SIN\n" "menuitem.text" msgid "Sine" -msgstr "" +msgstr "Sinus" #: inputwin.src msgctxt "" @@ -246,7 +248,7 @@ "MN_CALC_COS\n" "menuitem.text" msgid "Cosine" -msgstr "" +msgstr "Cosinus" #: inputwin.src msgctxt "" @@ -255,7 +257,7 @@ "MN_CALC_TAN\n" "menuitem.text" msgid "Tangent" -msgstr "" +msgstr "Tangent" #: inputwin.src msgctxt "" @@ -264,7 +266,7 @@ "MN_CALC_ASIN\n" "menuitem.text" msgid "Arcsine" -msgstr "" +msgstr "Arc sinus" #: inputwin.src msgctxt "" @@ -273,7 +275,7 @@ "MN_CALC_ACOS\n" "menuitem.text" msgid "Arccosine" -msgstr "" +msgstr "Arc cosinus" #: inputwin.src msgctxt "" @@ -282,7 +284,7 @@ "MN_CALC_ATAN\n" "menuitem.text" msgid "Arctangent" -msgstr "" +msgstr "Arc tangent" #: inputwin.src msgctxt "" @@ -291,7 +293,7 @@ "MN_POP_FUNC\n" "menuitem.text" msgid "Functions" -msgstr "" +msgstr "Funcions" #: inputwin.src msgctxt "" @@ -299,7 +301,7 @@ "STR_TBL_FORMULA\n" "string.text" msgid "Text formula" -msgstr "" +msgstr "Fórmula de text" #: inputwin.src msgctxt "" @@ -307,7 +309,7 @@ "STR_ACCESS_FORMULA_TOOLBAR\n" "string.text" msgid "Formula Tool Bar" -msgstr "" +msgstr "Barra d'eines de fórmula" #: inputwin.src msgctxt "" @@ -315,7 +317,7 @@ "STR_ACCESS_FORMULA_TYPE\n" "string.text" msgid "Formula Type" -msgstr "" +msgstr "Tipus de fórmula" #: inputwin.src msgctxt "" @@ -323,7 +325,7 @@ "STR_ACCESS_FORMULA_TEXT\n" "string.text" msgid "Formula Text" -msgstr "" +msgstr "Text de la fórmula" #: workctrl.src msgctxt "" @@ -332,7 +334,7 @@ "FN_INSERT_FLD_DATE\n" "menuitem.text" msgid "Date" -msgstr "" +msgstr "Data" #: workctrl.src msgctxt "" @@ -341,7 +343,7 @@ "FN_INSERT_FLD_TIME\n" "menuitem.text" msgid "Time" -msgstr "" +msgstr "Hora" #: workctrl.src msgctxt "" @@ -350,7 +352,7 @@ "FN_INSERT_FLD_PGNUMBER\n" "menuitem.text" msgid "Page Number" -msgstr "" +msgstr "Número de pàgina" #: workctrl.src msgctxt "" @@ -359,7 +361,7 @@ "FN_INSERT_FLD_PGCOUNT\n" "menuitem.text" msgid "Page Count" -msgstr "" +msgstr "Recompte de pàgines" #: workctrl.src msgctxt "" @@ -368,7 +370,7 @@ "FN_INSERT_FLD_TOPIC\n" "menuitem.text" msgid "Subject" -msgstr "" +msgstr "Assumpte" #: workctrl.src msgctxt "" @@ -377,7 +379,7 @@ "FN_INSERT_FLD_TITLE\n" "menuitem.text" msgid "Title" -msgstr "" +msgstr "Títol" #: workctrl.src msgctxt "" @@ -386,7 +388,7 @@ "FN_INSERT_FLD_AUTHOR\n" "menuitem.text" msgid "Author" -msgstr "" +msgstr "Autor" #: workctrl.src msgctxt "" @@ -395,7 +397,7 @@ "FN_INSERT_FIELD\n" "menuitem.text" msgid "Other..." -msgstr "" +msgstr "Altre..." #: workctrl.src msgctxt "" @@ -404,7 +406,7 @@ "ST_TBL\n" "string.text" msgid "Table" -msgstr "" +msgstr "Taula" #: workctrl.src msgctxt "" @@ -413,7 +415,7 @@ "ST_FRM\n" "string.text" msgid "Text Frame" -msgstr "" +msgstr "Marc de text" #: workctrl.src msgctxt "" @@ -422,7 +424,7 @@ "ST_PGE\n" "string.text" msgid "Page" -msgstr "" +msgstr "Pàgina" #: workctrl.src msgctxt "" @@ -431,7 +433,7 @@ "ST_DRW\n" "string.text" msgid "Drawing" -msgstr "" +msgstr "Dibuix" #: workctrl.src msgctxt "" @@ -440,7 +442,7 @@ "ST_CTRL\n" "string.text" msgid "Control" -msgstr "" +msgstr "Control" #: workctrl.src msgctxt "" @@ -449,7 +451,7 @@ "ST_REG\n" "string.text" msgid "Section" -msgstr "" +msgstr "Secció" #: workctrl.src msgctxt "" @@ -458,7 +460,7 @@ "ST_BKM\n" "string.text" msgid "Bookmark" -msgstr "" +msgstr "Adreça d'interés" #: workctrl.src msgctxt "" @@ -467,7 +469,7 @@ "ST_GRF\n" "string.text" msgid "Graphics" -msgstr "" +msgstr "Imatges" #: workctrl.src msgctxt "" @@ -476,7 +478,7 @@ "ST_OLE\n" "string.text" msgid "OLE object" -msgstr "" +msgstr "Objecte OLE" #: workctrl.src msgctxt "" @@ -485,7 +487,7 @@ "ST_OUTL\n" "string.text" msgid "Headings" -msgstr "" +msgstr "Capçaleres" #: workctrl.src msgctxt "" @@ -494,7 +496,7 @@ "ST_SEL\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Selecció" #: workctrl.src msgctxt "" @@ -503,7 +505,7 @@ "ST_FTN\n" "string.text" msgid "Footnote" -msgstr "" +msgstr "Nota al peu" #: workctrl.src msgctxt "" @@ -512,7 +514,7 @@ "ST_MARK\n" "string.text" msgid "Reminder" -msgstr "" +msgstr "Recordatori" #: workctrl.src msgctxt "" @@ -521,7 +523,7 @@ "ST_POSTIT\n" "string.text" msgid "Comment" -msgstr "" +msgstr "Comentari" #: workctrl.src msgctxt "" @@ -530,7 +532,7 @@ "ST_SRCH_REP\n" "string.text" msgid "Repeat search" -msgstr "" +msgstr "Repeteix la cerca" #: workctrl.src msgctxt "" @@ -539,7 +541,7 @@ "ST_INDEX_ENTRY\n" "string.text" msgid "Index entry" -msgstr "" +msgstr "Entrada de l'índex" #: workctrl.src msgctxt "" @@ -548,7 +550,7 @@ "ST_TABLE_FORMULA\n" "string.text" msgid "Table formula" -msgstr "" +msgstr "Fórmula de taula" #: workctrl.src msgctxt "" @@ -557,7 +559,7 @@ "ST_TABLE_FORMULA_ERROR\n" "string.text" msgid "Wrong table formula" -msgstr "" +msgstr "Fórmula de taula incorrecta" #: workctrl.src msgctxt "" @@ -565,7 +567,7 @@ "RID_SCROLL_NAVIGATION_WIN\n" "floatingwindow.text" msgid "Navigation" -msgstr "" +msgstr "Navegació" #: workctrl.src msgctxt "" @@ -573,7 +575,7 @@ "STR_IMGBTN_TBL_DOWN\n" "string.text" msgid "Next table" -msgstr "" +msgstr "Taula següent" #: workctrl.src msgctxt "" @@ -581,7 +583,7 @@ "STR_IMGBTN_FRM_DOWN\n" "string.text" msgid "Next text frame" -msgstr "" +msgstr "Marc de text següent" #: workctrl.src msgctxt "" @@ -589,7 +591,7 @@ "STR_IMGBTN_PGE_DOWN\n" "string.text" msgid "Next page" -msgstr "" +msgstr "Pàgina següent" #: workctrl.src msgctxt "" @@ -597,7 +599,7 @@ "STR_IMGBTN_DRW_DOWN\n" "string.text" msgid "Next drawing" -msgstr "" +msgstr "Dibuix següent" #: workctrl.src msgctxt "" @@ -605,7 +607,7 @@ "STR_IMGBTN_CTRL_DOWN\n" "string.text" msgid "Next control" -msgstr "" +msgstr "Control següent" #: workctrl.src msgctxt "" @@ -613,7 +615,7 @@ "STR_IMGBTN_REG_DOWN\n" "string.text" msgid "Next section" -msgstr "" +msgstr "Secció següent" #: workctrl.src msgctxt "" @@ -621,7 +623,7 @@ "STR_IMGBTN_BKM_DOWN\n" "string.text" msgid "Next bookmark" -msgstr "" +msgstr "Adreça d'interés següent" #: workctrl.src msgctxt "" @@ -629,7 +631,7 @@ "STR_IMGBTN_GRF_DOWN\n" "string.text" msgid "Next graphic" -msgstr "" +msgstr "Imatge següent" #: workctrl.src msgctxt "" @@ -637,7 +639,7 @@ "STR_IMGBTN_OLE_DOWN\n" "string.text" msgid "Next OLE object" -msgstr "" +msgstr "Objecte OLE següent" #: workctrl.src msgctxt "" @@ -645,7 +647,7 @@ "STR_IMGBTN_OUTL_DOWN\n" "string.text" msgid "Next heading" -msgstr "" +msgstr "Encapçalament següent" #: workctrl.src msgctxt "" @@ -653,7 +655,7 @@ "STR_IMGBTN_SEL_DOWN\n" "string.text" msgid "Next selection" -msgstr "" +msgstr "Selecció següent" #: workctrl.src msgctxt "" @@ -661,7 +663,7 @@ "STR_IMGBTN_FTN_DOWN\n" "string.text" msgid "Next footnote" -msgstr "" +msgstr "Nota al peu següent" #: workctrl.src msgctxt "" @@ -669,7 +671,7 @@ "STR_IMGBTN_MARK_DOWN\n" "string.text" msgid "Next Reminder" -msgstr "" +msgstr "Recordatori següent" #: workctrl.src msgctxt "" @@ -677,7 +679,7 @@ "STR_IMGBTN_POSTIT_DOWN\n" "string.text" msgid "Next Comment" -msgstr "" +msgstr "Comentari següent" #: workctrl.src msgctxt "" @@ -685,7 +687,7 @@ "STR_IMGBTN_SRCH_REP_DOWN\n" "string.text" msgid "Continue search forward" -msgstr "" +msgstr "Continua la cerca cap avant" #: workctrl.src msgctxt "" @@ -693,7 +695,7 @@ "STR_IMGBTN_INDEX_ENTRY_DOWN\n" "string.text" msgid "Next index entry" -msgstr "" +msgstr "Entrada d'índex següent" #: workctrl.src msgctxt "" @@ -701,7 +703,7 @@ "STR_IMGBTN_TBL_UP\n" "string.text" msgid "Previous table" -msgstr "" +msgstr "Taula anterior" #: workctrl.src msgctxt "" @@ -709,7 +711,7 @@ "STR_IMGBTN_FRM_UP\n" "string.text" msgid "Previous text frame" -msgstr "" +msgstr "Marc de text anterior" #: workctrl.src msgctxt "" @@ -717,7 +719,7 @@ "STR_IMGBTN_PGE_UP\n" "string.text" msgid "Previous page" -msgstr "" +msgstr "Pàgina anterior" #: workctrl.src msgctxt "" @@ -725,7 +727,7 @@ "STR_IMGBTN_DRW_UP\n" "string.text" msgid "Previous drawing" -msgstr "" +msgstr "Dibuix anterior" #: workctrl.src msgctxt "" @@ -733,7 +735,7 @@ "STR_IMGBTN_CTRL_UP\n" "string.text" msgid "Previous control" -msgstr "" +msgstr "Control anterior" #: workctrl.src msgctxt "" @@ -741,7 +743,7 @@ "STR_IMGBTN_REG_UP\n" "string.text" msgid "Previous section" -msgstr "" +msgstr "Secció anterior" #: workctrl.src msgctxt "" @@ -749,7 +751,7 @@ "STR_IMGBTN_BKM_UP\n" "string.text" msgid "Previous bookmark" -msgstr "" +msgstr "Adreça d'interés anterior" #: workctrl.src msgctxt "" @@ -757,7 +759,7 @@ "STR_IMGBTN_GRF_UP\n" "string.text" msgid "Previous graphic" -msgstr "" +msgstr "Imatge anterior" #: workctrl.src msgctxt "" @@ -765,7 +767,7 @@ "STR_IMGBTN_OLE_UP\n" "string.text" msgid "Previous OLE object" -msgstr "" +msgstr "Objecte OLE anterior" #: workctrl.src msgctxt "" @@ -773,7 +775,7 @@ "STR_IMGBTN_OUTL_UP\n" "string.text" msgid "Previous heading" -msgstr "" +msgstr "Encapçalament anterior" #: workctrl.src msgctxt "" @@ -781,7 +783,7 @@ "STR_IMGBTN_SEL_UP\n" "string.text" msgid "Previous selection" -msgstr "" +msgstr "Selecció anterior" #: workctrl.src msgctxt "" @@ -789,7 +791,7 @@ "STR_IMGBTN_FTN_UP\n" "string.text" msgid "Previous footnote" -msgstr "" +msgstr "Nota al peu anterior" #: workctrl.src msgctxt "" @@ -797,7 +799,7 @@ "STR_IMGBTN_MARK_UP\n" "string.text" msgid "Previous Reminder" -msgstr "" +msgstr "Recordatori anterior" #: workctrl.src msgctxt "" @@ -805,7 +807,7 @@ "STR_IMGBTN_POSTIT_UP\n" "string.text" msgid "Previous Comment" -msgstr "" +msgstr "Comentari anterior" #: workctrl.src msgctxt "" @@ -813,7 +815,7 @@ "STR_IMGBTN_SRCH_REP_UP\n" "string.text" msgid "Continue search backwards" -msgstr "" +msgstr "Continua la cerca cap arrere" #: workctrl.src msgctxt "" @@ -821,7 +823,7 @@ "STR_IMGBTN_INDEX_ENTRY_UP\n" "string.text" msgid "Previous index entry" -msgstr "" +msgstr "Entrada d'índex anterior" #: workctrl.src msgctxt "" @@ -829,7 +831,7 @@ "STR_IMGBTN_TBLFML_UP\n" "string.text" msgid "Previous table formula" -msgstr "" +msgstr "Fórmula de taula anterior" #: workctrl.src msgctxt "" @@ -837,7 +839,7 @@ "STR_IMGBTN_TBLFML_DOWN\n" "string.text" msgid "Next table formula" -msgstr "" +msgstr "Fórmula de taula següent" #: workctrl.src msgctxt "" @@ -845,7 +847,7 @@ "STR_IMGBTN_TBLFML_ERR_UP\n" "string.text" msgid "Previous faulty table formula" -msgstr "" +msgstr "Fórmula de taula defectuosa anterior" #: workctrl.src msgctxt "" @@ -853,4 +855,4 @@ "STR_IMGBTN_TBLFML_ERR_DOWN\n" "string.text" msgid "Next faulty table formula" -msgstr "" +msgstr "Fórmula de taula defectuosa següent" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/smartmenu.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/smartmenu.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/smartmenu.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/smartmenu.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,15 +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: 2014-05-02 00:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2014-07-17 11:21+0000\n" +"Last-Translator: Joan \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-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405596107.000000\n" #: stmenu.src msgctxt "" @@ -21,4 +23,4 @@ "MN_SMARTTAG_OPTIONS\n" "menuitem.text" msgid "Smart Tag Options..." -msgstr "" +msgstr "Opcions de les etiquetes intel·ligents..." diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/uiview.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/uiview.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/uiview.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/uiview.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,15 +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: 2014-05-02 00:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2014-08-26 08:59+0000\n" +"Last-Translator: Joan \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-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1409043544.000000\n" #: view.src msgctxt "" @@ -20,7 +22,7 @@ "DLG_SPECIAL_FORCED\n" "querybox.text" msgid "Check special regions is deactivated. Check anyway?" -msgstr "" +msgstr "La verificació d'àrees especials està desactivada. Voleu verificar-les igualment?" #: view.src msgctxt "" @@ -28,7 +30,7 @@ "MSG_NO_MERGE_ENTRY\n" "infobox.text" msgid "Could not merge documents." -msgstr "" +msgstr "No s'han pogut fusionar els documents." #: view.src msgctxt "" @@ -36,7 +38,7 @@ "MSG_ERR_INSERT_GLOS\n" "infobox.text" msgid "AutoText could not be created." -msgstr "" +msgstr "No s'ha pogut crear el text automàtic." #: view.src msgctxt "" @@ -44,7 +46,7 @@ "MSG_ERR_SRCSTREAM\n" "infobox.text" msgid "The source cannot be loaded." -msgstr "" +msgstr "No es pot carregar la font." #: view.src msgctxt "" @@ -52,7 +54,7 @@ "MSG_ERR_NO_FAX\n" "infobox.text" msgid "No fax printer has been set under Tools/Options/%1/Print." -msgstr "" +msgstr "No s'ha definit cap impressora fax a Eines/Opcions/%1/Imprimeix." #: view.src msgctxt "" @@ -60,7 +62,7 @@ "STR_WEBOPTIONS\n" "string.text" msgid "HTML document" -msgstr "" +msgstr "Document HTML" #: view.src msgctxt "" @@ -68,7 +70,7 @@ "STR_TEXTOPTIONS\n" "string.text" msgid "Text document" -msgstr "" +msgstr "Document de text" #: view.src msgctxt "" @@ -76,7 +78,7 @@ "MSG_SCAN_NOSOURCE\n" "infobox.text" msgid "Source not specified." -msgstr "" +msgstr "No s'ha indicat la font." #: view.src msgctxt "" @@ -84,7 +86,7 @@ "STR_NUM_LEVEL\n" "string.text" msgid "Level " -msgstr "" +msgstr "Nivell " #: view.src msgctxt "" @@ -92,7 +94,7 @@ "STR_NUM_OUTLINE\n" "string.text" msgid "Outline " -msgstr "" +msgstr "Esquema " #: view.src msgctxt "" @@ -100,7 +102,7 @@ "STR_ERROR_NOLANG\n" "string.text" msgid "No language is selected in the proofed section." -msgstr "" +msgstr "No s'ha seleccionat cap llengua en l'àrea revisada." #: view.src msgctxt "" @@ -108,7 +110,7 @@ "STR_EDIT_FOOTNOTE\n" "string.text" msgid "Edit Footnote/Endnote" -msgstr "" +msgstr "Edita la nota al peu o final" #: view.src msgctxt "" @@ -116,7 +118,7 @@ "STR_NB_REPLACED\n" "string.text" msgid "Search key replaced XX times." -msgstr "" +msgstr "La clau de cerca s'ha reemplaçat XX vegades." #: view.src msgctxt "" @@ -124,7 +126,7 @@ "RID_TOOLS_TOOLBOX\n" "string.text" msgid "Main Toolbar" -msgstr "" +msgstr "Barra d'eines principal" #: view.src msgctxt "" @@ -132,7 +134,7 @@ "STR_SRCVIEW_ROW\n" "string.text" msgid "Row " -msgstr "" +msgstr "Fila " #: view.src msgctxt "" @@ -140,7 +142,7 @@ "STR_SRCVIEW_COL\n" "string.text" msgid "Column " -msgstr "" +msgstr "Columna" #: view.src msgctxt "" @@ -148,7 +150,7 @@ "STR_PRINT_TITLE\n" "string.text" msgid "Printing selection" -msgstr "" +msgstr "Impressió de la selecció" #: view.src msgctxt "" @@ -156,7 +158,7 @@ "STR_PRINT_MSG\n" "string.text" msgid "Do you want to print the selection or the entire document?" -msgstr "" +msgstr "Voleu imprimir la selecció o bé tot el document?" #: view.src msgctxt "" @@ -164,7 +166,7 @@ "STR_PRINT_ALL\n" "string.text" msgid "All" -msgstr "" +msgstr "Tot" #: view.src msgctxt "" @@ -172,7 +174,7 @@ "STR_PRINT_SELECTION\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Selecció" #: view.src msgctxt "" @@ -180,7 +182,7 @@ "STR_SAVEAS_SRC\n" "string.text" msgid "~Export source..." -msgstr "" +msgstr "~Exporta la font..." #: view.src msgctxt "" @@ -188,7 +190,7 @@ "MN_SRCVIEW_POPUPMENU\n" "string.text" msgid "HTML source" -msgstr "" +msgstr "Codi HTML" #: view.src msgctxt "" @@ -196,7 +198,7 @@ "RID_PVIEW_TOOLBOX\n" "string.text" msgid "Page Preview" -msgstr "" +msgstr "Previsualització de la pàgina" #: view.src msgctxt "" @@ -205,4 +207,4 @@ "SID_SOURCEVIEW\n" "menuitem.text" msgid "HTML Source" -msgstr "" +msgstr "Codi HTML" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/utlui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/utlui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/utlui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/utlui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,15 +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: 2014-05-30 13:08+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2014-07-17 11:27+0000\n" +"Last-Translator: Joan \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-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405596473.000000\n" #: attrdesc.src msgctxt "" @@ -20,7 +22,7 @@ "STR_DROP_OVER\n" "string.text" msgid "Drop Caps over" -msgstr "" +msgstr "Inicials destacades a sobre" #: attrdesc.src msgctxt "" @@ -28,7 +30,7 @@ "STR_DROP_LINES\n" "string.text" msgid "rows" -msgstr "" +msgstr "files" #: attrdesc.src msgctxt "" @@ -36,7 +38,7 @@ "STR_NO_DROP_LINES\n" "string.text" msgid "No Drop Caps" -msgstr "" +msgstr "Sense inicials destacades" #: attrdesc.src msgctxt "" @@ -44,7 +46,7 @@ "STR_NO_PAGEDESC\n" "string.text" msgid "No page break" -msgstr "" +msgstr "Sense salt de pàgina" #: attrdesc.src msgctxt "" @@ -52,7 +54,7 @@ "STR_NO_MIRROR\n" "string.text" msgid "Don't mirror" -msgstr "" +msgstr "No reflectisques" #: attrdesc.src msgctxt "" @@ -84,7 +86,7 @@ "STR_MIRROR_TOGGLE\n" "string.text" msgid "+ mirror horizontal on even pages" -msgstr "" +msgstr "+ reflecteix horitzontalment a les pàgines parelles" #: attrdesc.src msgctxt "" @@ -92,7 +94,7 @@ "STR_CHARFMT\n" "string.text" msgid "Character Style" -msgstr "" +msgstr "Estil del caràcter" #: attrdesc.src msgctxt "" @@ -100,7 +102,7 @@ "STR_NO_CHARFMT\n" "string.text" msgid "No Character Style" -msgstr "" +msgstr "No hi ha cap estil de caràcter" #: attrdesc.src msgctxt "" @@ -108,7 +110,7 @@ "STR_FOOTER\n" "string.text" msgid "Footer" -msgstr "" +msgstr "Peu de pàgina" #: attrdesc.src msgctxt "" @@ -116,7 +118,7 @@ "STR_NO_FOOTER\n" "string.text" msgid "No footer" -msgstr "" +msgstr "Sense peu de pàgina" #: attrdesc.src msgctxt "" @@ -124,7 +126,7 @@ "STR_HEADER\n" "string.text" msgid "Header" -msgstr "" +msgstr "Capçalera" #: attrdesc.src msgctxt "" @@ -132,7 +134,7 @@ "STR_NO_HEADER\n" "string.text" msgid "No header" -msgstr "" +msgstr "Sense capçalera" #: attrdesc.src msgctxt "" @@ -140,7 +142,7 @@ "STR_SURROUND_IDEAL\n" "string.text" msgid "Optimal wrap" -msgstr "" +msgstr "Ajustament òptim" #: attrdesc.src msgctxt "" @@ -148,7 +150,7 @@ "STR_SURROUND_NONE\n" "string.text" msgid "No wrap" -msgstr "" +msgstr "Sense ajustament" #: attrdesc.src msgctxt "" @@ -164,7 +166,7 @@ "STR_SURROUND_PARALLEL\n" "string.text" msgid "Parallel wrap" -msgstr "" +msgstr "Ajustament paral·lel" #: attrdesc.src msgctxt "" @@ -172,7 +174,7 @@ "STR_SURROUND_COLUMN\n" "string.text" msgid "Column Wrap" -msgstr "" +msgstr "Ajustament de columna" #: attrdesc.src msgctxt "" @@ -180,7 +182,7 @@ "STR_SURROUND_LEFT\n" "string.text" msgid "Left wrap" -msgstr "" +msgstr "Ajustament esquerre" #: attrdesc.src msgctxt "" @@ -188,7 +190,7 @@ "STR_SURROUND_RIGHT\n" "string.text" msgid "Right wrap" -msgstr "" +msgstr "Ajustament dret" #: attrdesc.src msgctxt "" @@ -196,7 +198,7 @@ "STR_SURROUND_INSIDE\n" "string.text" msgid "Inner wrap" -msgstr "" +msgstr "Ajustament interior" #: attrdesc.src msgctxt "" @@ -204,7 +206,7 @@ "STR_SURROUND_OUTSIDE\n" "string.text" msgid "Outer wrap" -msgstr "" +msgstr "Ajustament exterior" #: attrdesc.src msgctxt "" @@ -212,7 +214,7 @@ "STR_SURROUND_ANCHORONLY\n" "string.text" msgid "(Anchor only)" -msgstr "" +msgstr "(Només àncora)" #: attrdesc.src msgctxt "" @@ -220,7 +222,7 @@ "STR_FRM_WIDTH\n" "string.text" msgid "Width:" -msgstr "" +msgstr "Amplada:" #: attrdesc.src msgctxt "" @@ -260,7 +262,7 @@ "STR_FLY_AT_PAGE\n" "string.text" msgid "to page" -msgstr "" +msgstr "a la pàgina" #: attrdesc.src msgctxt "" @@ -268,7 +270,7 @@ "STR_POS_X\n" "string.text" msgid "X Coordinate:" -msgstr "" +msgstr "Coordenada X:" #: attrdesc.src msgctxt "" @@ -276,7 +278,7 @@ "STR_POS_Y\n" "string.text" msgid "Y Coordinate:" -msgstr "" +msgstr "Coordenada Y:" #: attrdesc.src msgctxt "" @@ -284,7 +286,7 @@ "STR_VERT_TOP\n" "string.text" msgid "at top" -msgstr "" +msgstr "a la part superior" #: attrdesc.src msgctxt "" @@ -292,7 +294,7 @@ "STR_VERT_CENTER\n" "string.text" msgid "Centered vertically" -msgstr "" +msgstr "Centrat verticalment" #: attrdesc.src msgctxt "" @@ -300,7 +302,7 @@ "STR_VERT_BOTTOM\n" "string.text" msgid "at bottom" -msgstr "" +msgstr "a la part inferior" #: attrdesc.src msgctxt "" @@ -308,7 +310,7 @@ "STR_LINE_TOP\n" "string.text" msgid "Top of line" -msgstr "" +msgstr "Sobre la línia" #: attrdesc.src msgctxt "" @@ -316,7 +318,7 @@ "STR_LINE_CENTER\n" "string.text" msgid "Line centered" -msgstr "" +msgstr "Centrat verticalment a la línia" #: attrdesc.src msgctxt "" @@ -324,7 +326,7 @@ "STR_LINE_BOTTOM\n" "string.text" msgid "Bottom of line" -msgstr "" +msgstr "Sota la línia" #: attrdesc.src msgctxt "" @@ -332,7 +334,7 @@ "STR_REGISTER_ON\n" "string.text" msgid "Register-true" -msgstr "" +msgstr "Conforme al registre" #: attrdesc.src msgctxt "" @@ -340,7 +342,7 @@ "STR_REGISTER_OFF\n" "string.text" msgid "Not register-true" -msgstr "" +msgstr "No conforme al registre" #: attrdesc.src msgctxt "" @@ -348,7 +350,7 @@ "STR_HORI_RIGHT\n" "string.text" msgid "at the right" -msgstr "" +msgstr "a la dreta" #: attrdesc.src msgctxt "" @@ -356,7 +358,7 @@ "STR_HORI_CENTER\n" "string.text" msgid "Centered horizontally" -msgstr "" +msgstr "Centrat horitzontalment" #: attrdesc.src msgctxt "" @@ -364,7 +366,7 @@ "STR_HORI_LEFT\n" "string.text" msgid "at the left" -msgstr "" +msgstr "a l'esquerra" #: attrdesc.src msgctxt "" @@ -372,7 +374,7 @@ "STR_HORI_INSIDE\n" "string.text" msgid "inside" -msgstr "" +msgstr "dins" #: attrdesc.src msgctxt "" @@ -380,7 +382,7 @@ "STR_HORI_OUTSIDE\n" "string.text" msgid "outside" -msgstr "" +msgstr "fora" #: attrdesc.src msgctxt "" @@ -388,7 +390,7 @@ "STR_HORI_FULL\n" "string.text" msgid "Full width" -msgstr "" +msgstr "Tota l'amplada" #: attrdesc.src msgctxt "" @@ -396,7 +398,7 @@ "STR_COLUMNS\n" "string.text" msgid "Columns" -msgstr "" +msgstr "Columnes" #: attrdesc.src msgctxt "" @@ -404,7 +406,7 @@ "STR_LINE_WIDTH\n" "string.text" msgid "Separator Width:" -msgstr "" +msgstr "Amplada del separador:" #: attrdesc.src msgctxt "" @@ -412,7 +414,7 @@ "STR_MAX_FTN_HEIGHT\n" "string.text" msgid "Max. footnote area:" -msgstr "" +msgstr "Àrea màx. de la nota al peu:" #: attrdesc.src msgctxt "" @@ -460,7 +462,7 @@ "STR_CONNECT2\n" "string.text" msgid "and " -msgstr "" +msgstr "i " #: attrdesc.src msgctxt "" @@ -468,7 +470,7 @@ "STR_LINECOUNT\n" "string.text" msgid "Count lines" -msgstr "" +msgstr "Compta les línies" #: attrdesc.src msgctxt "" @@ -476,7 +478,7 @@ "STR_DONTLINECOUNT\n" "string.text" msgid "don't count lines" -msgstr "" +msgstr "no comptis les línies" #: attrdesc.src msgctxt "" @@ -484,7 +486,7 @@ "STR_LINCOUNT_START\n" "string.text" msgid "restart line count with: " -msgstr "" +msgstr "inicia de nou el recompte de línies amb: " #: attrdesc.src msgctxt "" @@ -492,7 +494,7 @@ "STR_LUMINANCE\n" "string.text" msgid "Brightness: " -msgstr "" +msgstr "Lluminositat: " #: attrdesc.src msgctxt "" @@ -500,7 +502,7 @@ "STR_CHANNELR\n" "string.text" msgid "Red: " -msgstr "" +msgstr "Roig: " #: attrdesc.src msgctxt "" @@ -508,7 +510,7 @@ "STR_CHANNELG\n" "string.text" msgid "Green: " -msgstr "" +msgstr "Verd: " #: attrdesc.src msgctxt "" @@ -516,7 +518,7 @@ "STR_CHANNELB\n" "string.text" msgid "Blue: " -msgstr "" +msgstr "Blau: " #: attrdesc.src msgctxt "" @@ -524,7 +526,7 @@ "STR_CONTRAST\n" "string.text" msgid "Contrast: " -msgstr "" +msgstr "Contrast: " #: attrdesc.src msgctxt "" @@ -532,7 +534,7 @@ "STR_GAMMA\n" "string.text" msgid "Gamma: " -msgstr "" +msgstr "Gamma: " #: attrdesc.src msgctxt "" @@ -540,7 +542,7 @@ "STR_TRANSPARENCY\n" "string.text" msgid "Transparency: " -msgstr "" +msgstr "Transparència: " #: attrdesc.src msgctxt "" @@ -548,7 +550,7 @@ "STR_INVERT\n" "string.text" msgid "Invert" -msgstr "" +msgstr "Inverteix" #: attrdesc.src msgctxt "" @@ -556,7 +558,7 @@ "STR_INVERT_NOT\n" "string.text" msgid "do not invert" -msgstr "" +msgstr "no invertisques" #: attrdesc.src msgctxt "" @@ -572,7 +574,7 @@ "STR_DRAWMODE_STD\n" "string.text" msgid "Standard" -msgstr "" +msgstr "Estàndard" #: attrdesc.src msgctxt "" @@ -580,7 +582,7 @@ "STR_DRAWMODE_GREY\n" "string.text" msgid "Grayscales" -msgstr "" +msgstr "Escala de grisos" #: attrdesc.src msgctxt "" @@ -588,7 +590,7 @@ "STR_DRAWMODE_BLACKWHITE\n" "string.text" msgid "Black & White" -msgstr "" +msgstr "Blanc i negre" #: attrdesc.src msgctxt "" @@ -596,7 +598,7 @@ "STR_DRAWMODE_WATERMARK\n" "string.text" msgid "Watermark" -msgstr "" +msgstr "Marca d'aigua" #: attrdesc.src msgctxt "" @@ -604,7 +606,7 @@ "STR_ROTATION\n" "string.text" msgid "Rotation" -msgstr "" +msgstr "Rotació" #: attrdesc.src msgctxt "" @@ -612,7 +614,7 @@ "STR_GRID_NONE\n" "string.text" msgid "No grid" -msgstr "" +msgstr "Sense graella" #: attrdesc.src msgctxt "" @@ -620,7 +622,7 @@ "STR_GRID_LINES_ONLY\n" "string.text" msgid "Grid (lines only)" -msgstr "" +msgstr "Graella (només línies)" #: attrdesc.src msgctxt "" @@ -628,7 +630,7 @@ "STR_GRID_LINES_CHARS\n" "string.text" msgid "Grid (lines and characters)" -msgstr "" +msgstr "Graella (línies i caràcters)" #: attrdesc.src msgctxt "" @@ -636,7 +638,7 @@ "STR_FOLLOW_TEXT_FLOW\n" "string.text" msgid "Follow text flow" -msgstr "" +msgstr "Segueix el flux del text" #: attrdesc.src msgctxt "" @@ -644,7 +646,7 @@ "STR_DONT_FOLLOW_TEXT_FLOW\n" "string.text" msgid "Do not follow text flow" -msgstr "" +msgstr "No seguïsques el flux del text" #: attrdesc.src msgctxt "" @@ -652,7 +654,7 @@ "STR_CONNECT_BORDER_ON\n" "string.text" msgid "Merge borders" -msgstr "" +msgstr "Fusiona les vores" #: attrdesc.src msgctxt "" @@ -660,7 +662,7 @@ "STR_CONNECT_BORDER_OFF\n" "string.text" msgid "Do not merge borders" -msgstr "" +msgstr "No fusionis les vores" #: initui.src msgctxt "" @@ -669,7 +671,7 @@ "STR_POSTIT_PAGE\n" "string.text" msgid "Page" -msgstr "" +msgstr "Pàgina" #: initui.src msgctxt "" @@ -678,7 +680,7 @@ "STR_POSTIT_LINE\n" "string.text" msgid "Line" -msgstr "" +msgstr "Línia" #: initui.src msgctxt "" @@ -687,7 +689,7 @@ "STR_POSTIT_AUTHOR\n" "string.text" msgid "Author" -msgstr "" +msgstr "Autor" #: initui.src msgctxt "" @@ -696,7 +698,7 @@ "STR_CALC_SYNTAX\n" "string.text" msgid "** Syntax Error **" -msgstr "" +msgstr "** Error de sintaxi **" #: initui.src msgctxt "" @@ -705,7 +707,7 @@ "STR_CALC_ZERODIV\n" "string.text" msgid "** Division by zero **" -msgstr "" +msgstr "** Divisió per zero **" #: initui.src msgctxt "" @@ -714,7 +716,7 @@ "STR_CALC_BRACK\n" "string.text" msgid "** Wrong use of brackets **" -msgstr "" +msgstr "** Mal ús dels parèntesis **" #: initui.src msgctxt "" @@ -723,7 +725,7 @@ "STR_CALC_POW\n" "string.text" msgid "** Square function overflow **" -msgstr "" +msgstr "** Desbordament en la funció de quadrat **" #: initui.src msgctxt "" @@ -732,7 +734,7 @@ "STR_CALC_VARNFND\n" "string.text" msgid "** Variable not found **" -msgstr "" +msgstr "** No s'ha trobat la variable **" #: initui.src msgctxt "" @@ -741,7 +743,7 @@ "STR_CALC_OVERFLOW\n" "string.text" msgid "** Overflow **" -msgstr "" +msgstr "** Desbordament **" #: initui.src msgctxt "" @@ -750,7 +752,7 @@ "STR_CALC_WRONGTIME\n" "string.text" msgid "** Wrong time format **" -msgstr "" +msgstr "** El format de temps no és vàlid **" #: initui.src msgctxt "" @@ -759,7 +761,7 @@ "STR_CALC_DEFAULT\n" "string.text" msgid "** Error **" -msgstr "" +msgstr "** Error **" #: initui.src msgctxt "" @@ -768,7 +770,7 @@ "STR_CALC_ERROR\n" "string.text" msgid "** Expression is faulty **" -msgstr "" +msgstr "** L'expressió no és vàlida **" #: initui.src msgctxt "" @@ -795,7 +797,7 @@ "STR_GETREFFLD_REFITEMNOTFOUND\n" "string.text" msgid "Error: Reference source not found" -msgstr "" +msgstr "S'ha produït un error: No s'ha trobat la font de referència" #: initui.src msgctxt "" @@ -804,7 +806,7 @@ "STR_ALLPAGE_HEADFOOT\n" "string.text" msgid "All" -msgstr "" +msgstr "Tot" #: initui.src msgctxt "" @@ -813,7 +815,7 @@ "STR_TEMPLATE_NONE\n" "string.text" msgid "None" -msgstr "" +msgstr "Cap" #: initui.src msgctxt "" @@ -822,7 +824,7 @@ "STR_FIELD_FIXED\n" "string.text" msgid "(fixed)" -msgstr "" +msgstr "(fix)" #: initui.src msgctxt "" @@ -831,7 +833,7 @@ "STR_DURATION_FORMAT\n" "string.text" msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6" -msgstr "" +msgstr "A: %1 M: %2 D: %3 H: %4 M: %5 S: %6" #: initui.src msgctxt "" @@ -840,7 +842,7 @@ "STR_TOI\n" "string.text" msgid "Alphabetical Index" -msgstr "" +msgstr "Índex alfabètic" #: initui.src msgctxt "" @@ -849,7 +851,7 @@ "STR_TOU\n" "string.text" msgid "User-Defined" -msgstr "" +msgstr "Definit per l'usuari" #: initui.src msgctxt "" @@ -858,7 +860,7 @@ "STR_TOC\n" "string.text" msgid "Table of Contents" -msgstr "" +msgstr "Índex de continguts" #: initui.src msgctxt "" @@ -867,7 +869,7 @@ "STR_TOX_AUTH\n" "string.text" msgid "Bibliography" -msgstr "" +msgstr "Bibliografia" #: initui.src msgctxt "" @@ -876,7 +878,7 @@ "STR_TOX_CITATION\n" "string.text" msgid "Citation" -msgstr "" +msgstr "Citació" #: initui.src msgctxt "" @@ -885,7 +887,7 @@ "STR_TOX_TBL\n" "string.text" msgid "Index of Tables" -msgstr "" +msgstr "Índex de taules" #: initui.src msgctxt "" @@ -894,7 +896,7 @@ "STR_TOX_OBJ\n" "string.text" msgid "Table of Objects" -msgstr "" +msgstr "Índex d'objectes" #: initui.src msgctxt "" @@ -903,7 +905,7 @@ "STR_TOX_ILL\n" "string.text" msgid "Illustration Index" -msgstr "" +msgstr "Índex d'il·lustracions" #: initui.src msgctxt "" @@ -912,7 +914,7 @@ "STR_LINK_CTRL_CLICK\n" "string.text" msgid "%s-Click to follow link" -msgstr "" +msgstr "%s+clic per a obrir l'enllaç" #: initui.src msgctxt "" @@ -921,7 +923,7 @@ "STR_LINK_CLICK\n" "string.text" msgid "Click to follow link" -msgstr "" +msgstr "Clic per a obrir l'enllaç" #: initui.src msgctxt "" @@ -930,7 +932,7 @@ "FLD_DOCINFO_TITEL\n" "string.text" msgid "Title" -msgstr "" +msgstr "Títol" #: initui.src msgctxt "" @@ -939,7 +941,7 @@ "FLD_DOCINFO_THEMA\n" "string.text" msgid "Subject" -msgstr "" +msgstr "Assumpte" #: initui.src msgctxt "" @@ -948,7 +950,7 @@ "FLD_DOCINFO_KEYS\n" "string.text" msgid "Keywords" -msgstr "" +msgstr "Paraules clau" #: initui.src msgctxt "" @@ -957,7 +959,7 @@ "FLD_DOCINFO_COMMENT\n" "string.text" msgid "Comments" -msgstr "" +msgstr "Comentaris" #: initui.src msgctxt "" @@ -966,7 +968,7 @@ "FLD_DOCINFO_CREATE\n" "string.text" msgid "Created" -msgstr "" +msgstr "Creació" #: initui.src msgctxt "" @@ -975,7 +977,7 @@ "FLD_DOCINFO_CHANGE\n" "string.text" msgid "Modified" -msgstr "" +msgstr "Modificat" #: initui.src msgctxt "" @@ -984,7 +986,7 @@ "FLD_DOCINFO_PRINT\n" "string.text" msgid "Last printed" -msgstr "" +msgstr "Imprés per última vegada" #: initui.src msgctxt "" @@ -993,7 +995,7 @@ "FLD_DOCINFO_DOCNO\n" "string.text" msgid "Revision number" -msgstr "" +msgstr "Número de revisió" #: initui.src msgctxt "" @@ -1002,7 +1004,7 @@ "FLD_DOCINFO_EDIT\n" "string.text" msgid "Total editing time" -msgstr "" +msgstr "Temps total d'edició" #: initui.src msgctxt "" @@ -1011,7 +1013,7 @@ "STR_PAGEDESC_NAME\n" "string.text" msgid "Convert $(ARG1)" -msgstr "" +msgstr "Converteix $(ARG1)" #: initui.src msgctxt "" @@ -1020,7 +1022,7 @@ "STR_PAGEDESC_FIRSTNAME\n" "string.text" msgid "First convert $(ARG1)" -msgstr "" +msgstr "Primera conversió $(ARG1)" #: initui.src msgctxt "" @@ -1029,7 +1031,7 @@ "STR_PAGEDESC_FOLLOWNAME\n" "string.text" msgid "Next convert $(ARG1)" -msgstr "" +msgstr "Conversió següent $(ARG1)" #: initui.src msgctxt "" @@ -1037,7 +1039,7 @@ "STR_AUTH_TYPE_ARTICLE\n" "string.text" msgid "Article" -msgstr "" +msgstr "Article" #: initui.src msgctxt "" @@ -1045,7 +1047,7 @@ "STR_AUTH_TYPE_BOOK\n" "string.text" msgid "Book" -msgstr "" +msgstr "Llibre" #: initui.src msgctxt "" @@ -1053,7 +1055,7 @@ "STR_AUTH_TYPE_BOOKLET\n" "string.text" msgid "Brochures" -msgstr "" +msgstr "Fullets" #: initui.src msgctxt "" @@ -1061,7 +1063,7 @@ "STR_AUTH_TYPE_CONFERENCE\n" "string.text" msgid "Conference proceedings" -msgstr "" +msgstr "Procediment de conferència" #: initui.src msgctxt "" @@ -1069,7 +1071,7 @@ "STR_AUTH_TYPE_INBOOK\n" "string.text" msgid "Book excerpt" -msgstr "" +msgstr "Extracte de llibre" #: initui.src msgctxt "" @@ -1077,7 +1079,7 @@ "STR_AUTH_TYPE_INCOLLECTION\n" "string.text" msgid "Book excerpt with title" -msgstr "" +msgstr "Extracte de llibre amb el títol" #: initui.src msgctxt "" @@ -1085,7 +1087,7 @@ "STR_AUTH_TYPE_INPROCEEDINGS\n" "string.text" msgid "Conference proceedings" -msgstr "" +msgstr "Actes de conferència" #: initui.src msgctxt "" @@ -1093,7 +1095,7 @@ "STR_AUTH_TYPE_JOURNAL\n" "string.text" msgid "Journal" -msgstr "" +msgstr "Periòdic" #: initui.src msgctxt "" @@ -1101,7 +1103,7 @@ "STR_AUTH_TYPE_MANUAL\n" "string.text" msgid "Techn. documentation" -msgstr "" +msgstr "Documentació tècnica" #: initui.src msgctxt "" @@ -1189,7 +1191,7 @@ "STR_AUTH_TYPE_CUSTOM3\n" "string.text" msgid "User-defined3" -msgstr "" +msgstr "Definit per l'usuari 3" #: initui.src msgctxt "" @@ -1197,7 +1199,7 @@ "STR_AUTH_TYPE_CUSTOM4\n" "string.text" msgid "User-defined4" -msgstr "" +msgstr "Definit-per-l'usuari4" #: initui.src msgctxt "" @@ -1205,7 +1207,7 @@ "STR_AUTH_TYPE_CUSTOM5\n" "string.text" msgid "User-defined5" -msgstr "" +msgstr "Definit-per-l'usuari5" #: initui.src msgctxt "" @@ -1213,7 +1215,7 @@ "STR_AUTH_FIELD_IDENTIFIER\n" "string.text" msgid "Short name" -msgstr "" +msgstr "Nom curt" #: initui.src msgctxt "" @@ -1221,7 +1223,7 @@ "STR_AUTH_FIELD_AUTHORITY_TYPE\n" "string.text" msgid "Type" -msgstr "" +msgstr "Tipus" #: initui.src msgctxt "" @@ -1229,7 +1231,7 @@ "STR_AUTH_FIELD_ADDRESS\n" "string.text" msgid "Address" -msgstr "" +msgstr "Adreça" #: initui.src msgctxt "" @@ -1237,7 +1239,7 @@ "STR_AUTH_FIELD_ANNOTE\n" "string.text" msgid "Annotation" -msgstr "" +msgstr "Anotació" #: initui.src msgctxt "" @@ -1245,7 +1247,7 @@ "STR_AUTH_FIELD_AUTHOR\n" "string.text" msgid "Author(s)" -msgstr "" +msgstr "Autors" #: initui.src msgctxt "" @@ -1253,7 +1255,7 @@ "STR_AUTH_FIELD_BOOKTITLE\n" "string.text" msgid "Book title" -msgstr "" +msgstr "Títol del llibre" #: initui.src msgctxt "" @@ -1261,7 +1263,7 @@ "STR_AUTH_FIELD_CHAPTER\n" "string.text" msgid "Chapter" -msgstr "" +msgstr "Capítol" #: initui.src msgctxt "" @@ -1269,7 +1271,7 @@ "STR_AUTH_FIELD_EDITION\n" "string.text" msgid "Edition" -msgstr "" +msgstr "Edició" #: initui.src msgctxt "" @@ -1277,7 +1279,7 @@ "STR_AUTH_FIELD_EDITOR\n" "string.text" msgid "Editor" -msgstr "" +msgstr "Editor" #: initui.src msgctxt "" @@ -1285,7 +1287,7 @@ "STR_AUTH_FIELD_HOWPUBLISHED\n" "string.text" msgid "Publication type" -msgstr "" +msgstr "Tipus de publicació" #: initui.src msgctxt "" @@ -1293,7 +1295,7 @@ "STR_AUTH_FIELD_INSTITUTION\n" "string.text" msgid "Institution" -msgstr "" +msgstr "Institució" #: initui.src msgctxt "" @@ -1309,7 +1311,7 @@ "STR_AUTH_FIELD_MONTH\n" "string.text" msgid "Month" -msgstr "" +msgstr "Mes" #: initui.src msgctxt "" @@ -1317,7 +1319,7 @@ "STR_AUTH_FIELD_NOTE\n" "string.text" msgid "Note" -msgstr "" +msgstr "Nota" #: initui.src msgctxt "" @@ -1325,7 +1327,7 @@ "STR_AUTH_FIELD_NUMBER\n" "string.text" msgid "Number" -msgstr "" +msgstr "Número" #: initui.src msgctxt "" @@ -1333,7 +1335,7 @@ "STR_AUTH_FIELD_ORGANIZATIONS\n" "string.text" msgid "Organization" -msgstr "" +msgstr "Organització" #: initui.src msgctxt "" @@ -1341,7 +1343,7 @@ "STR_AUTH_FIELD_PAGES\n" "string.text" msgid "Page(s)" -msgstr "" +msgstr "Pàgina/-es" #: initui.src msgctxt "" @@ -1349,7 +1351,7 @@ "STR_AUTH_FIELD_PUBLISHER\n" "string.text" msgid "Publisher" -msgstr "" +msgstr "Editor" #: initui.src msgctxt "" @@ -1357,7 +1359,7 @@ "STR_AUTH_FIELD_SCHOOL\n" "string.text" msgid "University" -msgstr "" +msgstr "Universitat" #: initui.src msgctxt "" @@ -1365,7 +1367,7 @@ "STR_AUTH_FIELD_SERIES\n" "string.text" msgid "Series" -msgstr "" +msgstr "Sèrie" #: initui.src msgctxt "" @@ -1373,7 +1375,7 @@ "STR_AUTH_FIELD_TITLE\n" "string.text" msgid "Title" -msgstr "" +msgstr "Títol" #: initui.src msgctxt "" @@ -1381,7 +1383,7 @@ "STR_AUTH_FIELD_TYPE\n" "string.text" msgid "Type of report" -msgstr "" +msgstr "Tipus d'informe" #: initui.src msgctxt "" @@ -1389,7 +1391,7 @@ "STR_AUTH_FIELD_VOLUME\n" "string.text" msgid "Volume" -msgstr "" +msgstr "Volum" #: initui.src msgctxt "" @@ -1397,7 +1399,7 @@ "STR_AUTH_FIELD_YEAR\n" "string.text" msgid "Year" -msgstr "" +msgstr "Any" #: initui.src msgctxt "" @@ -1405,7 +1407,7 @@ "STR_AUTH_FIELD_URL\n" "string.text" msgid "URL" -msgstr "" +msgstr "URL" #: initui.src msgctxt "" @@ -1413,7 +1415,7 @@ "STR_AUTH_FIELD_CUSTOM1\n" "string.text" msgid "User-defined1" -msgstr "" +msgstr "Definit-per-l'usuari1" #: initui.src msgctxt "" @@ -1421,7 +1423,7 @@ "STR_AUTH_FIELD_CUSTOM2\n" "string.text" msgid "User-defined2" -msgstr "" +msgstr "Definit-per-l'usuari2" #: initui.src msgctxt "" @@ -1429,7 +1431,7 @@ "STR_AUTH_FIELD_CUSTOM3\n" "string.text" msgid "User-defined3" -msgstr "" +msgstr "Definit-per-l'usuari3" #: initui.src msgctxt "" @@ -1437,7 +1439,7 @@ "STR_AUTH_FIELD_CUSTOM4\n" "string.text" msgid "User-defined4" -msgstr "" +msgstr "Definit-per-l'usuari4" #: initui.src msgctxt "" @@ -1445,7 +1447,7 @@ "STR_AUTH_FIELD_CUSTOM5\n" "string.text" msgid "User-defined5" -msgstr "" +msgstr "Definit-per-l'usuari5" #: initui.src msgctxt "" @@ -1453,7 +1455,7 @@ "STR_AUTH_FIELD_ISBN\n" "string.text" msgid "ISBN" -msgstr "" +msgstr "ISBN" #: navipi.src msgctxt "" @@ -1461,7 +1463,7 @@ "DLG_NAVIGATION_PI\n" "window.text" msgid "Navigator" -msgstr "" +msgstr "Navegador" #: navipi.src msgctxt "" @@ -1470,7 +1472,7 @@ "FN_GLOBAL_SWITCH\n" "toolboxitem.text" msgid "Toggle" -msgstr "" +msgstr "Canvia" #: navipi.src msgctxt "" @@ -1479,7 +1481,7 @@ "FN_CREATE_NAVIGATION\n" "toolboxitem.text" msgid "Navigation" -msgstr "" +msgstr "Navegació" #: navipi.src msgctxt "" @@ -1488,7 +1490,7 @@ "FN_UP\n" "toolboxitem.text" msgid "Back" -msgstr "" +msgstr "Arrere" #: navipi.src msgctxt "" @@ -1497,7 +1499,7 @@ "FN_DOWN\n" "toolboxitem.text" msgid "Forward" -msgstr "" +msgstr "Avant" #: navipi.src msgctxt "" @@ -1551,7 +1553,7 @@ "FN_SELECT_SET_AUTO_BOOKMARK\n" "toolboxitem.text" msgid "Set Reminder" -msgstr "" +msgstr "Defineix el recordatori" #: navipi.src msgctxt "" @@ -1560,7 +1562,7 @@ "FN_SELECT_HEADER\n" "toolboxitem.text" msgid "Header" -msgstr "" +msgstr "Capçalera" #: navipi.src msgctxt "" @@ -1569,7 +1571,7 @@ "FN_SELECT_FOOTER\n" "toolboxitem.text" msgid "Footer" -msgstr "" +msgstr "Peu de pàgina" #: navipi.src msgctxt "" @@ -1578,7 +1580,7 @@ "FN_SELECT_FOOTNOTE\n" "toolboxitem.text" msgid "Anchor<->Text" -msgstr "" +msgstr "Àncora<->Text" #: navipi.src msgctxt "" @@ -1587,7 +1589,7 @@ "FN_OUTLINE_LEVEL\n" "toolboxitem.text" msgid "Heading Levels Shown" -msgstr "" +msgstr "Nivells d'encapçalament mostrats" #: navipi.src msgctxt "" @@ -1614,7 +1616,7 @@ "FN_GLOBAL_SWITCH\n" "toolboxitem.text" msgid "Toggle" -msgstr "" +msgstr "Canvia" #: navipi.src msgctxt "" @@ -1623,7 +1625,7 @@ "FN_GLOBAL_EDIT\n" "toolboxitem.text" msgid "Edit" -msgstr "" +msgstr "Edita" #: navipi.src msgctxt "" @@ -1632,7 +1634,7 @@ "FN_GLOBAL_UPDATE\n" "toolboxitem.text" msgid "Update" -msgstr "" +msgstr "Actualitza" #: navipi.src msgctxt "" @@ -1641,7 +1643,7 @@ "FN_GLOBAL_OPEN\n" "toolboxitem.text" msgid "Insert" -msgstr "" +msgstr "Insereix" #: navipi.src msgctxt "" @@ -1650,7 +1652,7 @@ "FN_GLOBAL_SAVE_CONTENT\n" "toolboxitem.text" msgid "Save Contents as well" -msgstr "" +msgstr "Guarda també els continguts" #: navipi.src msgctxt "" @@ -1659,7 +1661,7 @@ "FN_ITEM_UP\n" "toolboxitem.text" msgid "Move Up" -msgstr "" +msgstr "Mou amunt" #: navipi.src msgctxt "" @@ -1668,7 +1670,7 @@ "FN_ITEM_DOWN\n" "toolboxitem.text" msgid "Move Down" -msgstr "" +msgstr "Mou avall" #: navipi.src msgctxt "" @@ -1676,7 +1678,7 @@ "ST_OUTLINE_LEVEL\n" "string.text" msgid "Outline Level" -msgstr "" +msgstr "Nivell de l'esquema" #: navipi.src msgctxt "" @@ -1684,7 +1686,7 @@ "ST_DRAGMODE\n" "string.text" msgid "Drag Mode" -msgstr "" +msgstr "Mode d'arrossegament" #: navipi.src msgctxt "" @@ -1692,7 +1694,7 @@ "ST_HYPERLINK\n" "string.text" msgid "Insert as Hyperlink" -msgstr "" +msgstr "Insereix com a enllaç" #: navipi.src msgctxt "" @@ -1700,7 +1702,7 @@ "ST_LINK_REGION\n" "string.text" msgid "Insert as Link" -msgstr "" +msgstr "Insereix com a enllaç" #: navipi.src msgctxt "" @@ -1708,7 +1710,7 @@ "ST_COPY_REGION\n" "string.text" msgid "Insert as Copy" -msgstr "" +msgstr "Insereix com a còpia" #: navipi.src msgctxt "" @@ -1716,7 +1718,7 @@ "ST_DISPLAY\n" "string.text" msgid "Display" -msgstr "" +msgstr "Mostra" #: navipi.src msgctxt "" @@ -1724,7 +1726,7 @@ "ST_ACTIVE_VIEW\n" "string.text" msgid "Active Window" -msgstr "" +msgstr "Finestra activa" #: navipi.src msgctxt "" @@ -1732,7 +1734,7 @@ "ST_HIDDEN\n" "string.text" msgid "hidden" -msgstr "" +msgstr "ocult" #: navipi.src msgctxt "" @@ -1740,7 +1742,7 @@ "ST_ACTIVE\n" "string.text" msgid "active" -msgstr "" +msgstr "actiu" #: navipi.src msgctxt "" @@ -1748,7 +1750,7 @@ "ST_INACTIVE\n" "string.text" msgid "inactive" -msgstr "" +msgstr "inactiu" #: navipi.src msgctxt "" @@ -1756,7 +1758,7 @@ "ST_EDIT_ENTRY\n" "string.text" msgid "Edit..." -msgstr "" +msgstr "Edita..." #: navipi.src msgctxt "" @@ -1764,7 +1766,7 @@ "ST_UPDATE\n" "string.text" msgid "~Update" -msgstr "" +msgstr "Act~ualitza" #: navipi.src msgctxt "" @@ -1772,7 +1774,7 @@ "ST_EDIT_CONTENT\n" "string.text" msgid "Edit" -msgstr "" +msgstr "Edita" #: navipi.src msgctxt "" @@ -1780,7 +1782,7 @@ "ST_EDIT_LINK\n" "string.text" msgid "Edit link" -msgstr "" +msgstr "Edita l'enllaç" #: navipi.src msgctxt "" @@ -1788,7 +1790,7 @@ "ST_INSERT\n" "string.text" msgid "Insert" -msgstr "" +msgstr "Insereix" #: navipi.src msgctxt "" @@ -1796,7 +1798,7 @@ "ST_INDEX\n" "string.text" msgid "~Index" -msgstr "" +msgstr "Í~ndex" #: navipi.src msgctxt "" @@ -1804,7 +1806,7 @@ "ST_FILE\n" "string.text" msgid "File" -msgstr "" +msgstr "Fitxer" #: navipi.src msgctxt "" @@ -1812,7 +1814,7 @@ "ST_NEW_FILE\n" "string.text" msgid "New Document" -msgstr "" +msgstr "Document nou" #: navipi.src msgctxt "" @@ -1820,7 +1822,7 @@ "ST_TEXT\n" "string.text" msgid "Text" -msgstr "" +msgstr "Text" #: navipi.src msgctxt "" @@ -1828,7 +1830,7 @@ "ST_DELETE\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Suprimeix" #: navipi.src msgctxt "" @@ -1836,7 +1838,7 @@ "ST_DELETE_ENTRY\n" "string.text" msgid "~Delete" -msgstr "" +msgstr "~Suprimeix" #: navipi.src msgctxt "" @@ -1844,7 +1846,7 @@ "ST_UPDATE_SEL\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Selecció" #: navipi.src msgctxt "" @@ -1852,7 +1854,7 @@ "ST_UPDATE_INDEX\n" "string.text" msgid "Indexes" -msgstr "" +msgstr "Índexs" #: navipi.src msgctxt "" @@ -1860,7 +1862,7 @@ "ST_UPDATE_LINK\n" "string.text" msgid "Links" -msgstr "" +msgstr "Enllaços" #: navipi.src msgctxt "" @@ -1868,7 +1870,7 @@ "ST_UPDATE_ALL\n" "string.text" msgid "All" -msgstr "" +msgstr "Tot" #: navipi.src msgctxt "" @@ -1876,7 +1878,7 @@ "ST_REMOVE_INDEX\n" "string.text" msgid "~Remove Index" -msgstr "" +msgstr "Sup~rimeix l'índex" #: navipi.src msgctxt "" @@ -1884,7 +1886,7 @@ "ST_REMOVE_TBL_PROTECTION\n" "string.text" msgid "~Unprotect" -msgstr "" +msgstr "~Desprotegeix" #: navipi.src msgctxt "" @@ -1892,7 +1894,7 @@ "ST_INVISIBLE\n" "string.text" msgid "hidden" -msgstr "" +msgstr "ocult" #: navipi.src msgctxt "" @@ -1900,7 +1902,7 @@ "ST_BROKEN_LINK\n" "string.text" msgid "File not found: " -msgstr "" +msgstr "No s'ha trobat el fitxer: " #: navipi.src msgctxt "" @@ -1908,7 +1910,7 @@ "ST_RENAME\n" "string.text" msgid "~Rename" -msgstr "" +msgstr "~Canvia el nom" #: navipi.src msgctxt "" @@ -1916,7 +1918,7 @@ "ST_READONLY_IDX\n" "string.text" msgid "Read-~only" -msgstr "" +msgstr "N~omés de lectura" #: navipi.src msgctxt "" @@ -1924,7 +1926,7 @@ "ST_POSTIT_SHOW\n" "string.text" msgid "Show All" -msgstr "" +msgstr "Mostra-ho tot" #: navipi.src msgctxt "" @@ -1932,7 +1934,7 @@ "ST_POSTIT_HIDE\n" "string.text" msgid "Hide All" -msgstr "" +msgstr "Amaga-ho tot" #: navipi.src msgctxt "" @@ -1940,7 +1942,7 @@ "ST_POSTIT_DELETE\n" "string.text" msgid "Delete All" -msgstr "" +msgstr "Suprimeix-ho tot" #: navipi.src msgctxt "" @@ -1948,7 +1950,7 @@ "STR_ACCESS_TL_GLOBAL\n" "string.text" msgid "Global View" -msgstr "" +msgstr "Visualització global" #: navipi.src msgctxt "" @@ -1956,7 +1958,7 @@ "STR_ACCESS_TL_CONTENT\n" "string.text" msgid "Content View" -msgstr "" +msgstr "Visualització del contingut" #: unotools.src msgctxt "" @@ -1964,7 +1966,7 @@ "STR_SERVICE_UNAVAILABLE\n" "string.text" msgid "The following service is not available: " -msgstr "" +msgstr "El servei següent no és disponible: " #: unotools.src msgctxt "" @@ -1973,7 +1975,7 @@ "~Zoom\n" "itemlist.text" msgid "~Zoom" -msgstr "" +msgstr "~Escala" #: unotools.src msgctxt "" @@ -1982,7 +1984,7 @@ "~Upwards\n" "itemlist.text" msgid "~Upwards" -msgstr "" +msgstr "~Cap amunt" #: unotools.src msgctxt "" @@ -1991,4 +1993,4 @@ "Do~wnwards\n" "itemlist.text" msgid "Do~wnwards" -msgstr "" +msgstr "Cap ~avall" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/wrtsh.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/wrtsh.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/uibase/wrtsh.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/uibase/wrtsh.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,15 +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: 2014-05-02 00:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2014-07-17 08:34+0000\n" +"Last-Translator: Joan \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-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1405586094.000000\n" #: wrtsh.src msgctxt "" @@ -20,7 +22,7 @@ "STR_DDEERROR_APP1\n" "string.text" msgid "Application [" -msgstr "" +msgstr "L'aplicació [" #: wrtsh.src msgctxt "" @@ -28,7 +30,7 @@ "STR_DDEERROR_APP2\n" "string.text" msgid "] is not responding." -msgstr "" +msgstr "] no respon." #: wrtsh.src msgctxt "" @@ -36,7 +38,7 @@ "STR_DDEERROR_DATA1\n" "string.text" msgid "Data for [" -msgstr "" +msgstr "Les dades per a [" #: wrtsh.src msgctxt "" @@ -44,7 +46,7 @@ "STR_DDEERROR_DATA2\n" "string.text" msgid "] cannot be obtained" -msgstr "" +msgstr "] no es poden obtindre" #: wrtsh.src msgctxt "" @@ -52,7 +54,7 @@ "STR_DDEERROR_LINK1\n" "string.text" msgid "Link to [" -msgstr "" +msgstr "L'enllaç a [" #: wrtsh.src msgctxt "" @@ -60,4 +62,4 @@ "STR_DDEERROR_LINK2\n" "string.text" msgid "] cannot be established" -msgstr "" +msgstr "] no es pot establir" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/undo.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/undo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/core/undo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/core/undo.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:02+0200\n" -"PO-Revision-Date: 2013-12-08 21:58+0000\n" +"PO-Revision-Date: 2014-07-17 08:34+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1386539917.0\n" +"X-POOTLE-MTIME: 1405586098.000000\n" #: undo.src msgctxt "" @@ -1270,4 +1270,4 @@ "STR_UNDO_TABLE_DELETE\n" "string.text" msgid "Delete table" -msgstr "" +msgstr "Suprimeix la taula" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -1165,7 +1165,7 @@ "ERR_CODE ( ERRCODE_CLASS_READ , ERR_WW6_FASTSAVE_ERR )\n" "string.text" msgid "This file was saved with WinWord in 'Fast Save' mode. Please unmark the WinWord option 'Allow Fast Saves' and save the file again." -msgstr "Este fitxer es va alçar en el mode 'Alçat ràpid'. Desmarqueu l'opció 'Permet alçats ràpids' del WinWord i torneu a alçar el fitxer." +msgstr "Este fitxer es va guardar en el mode 'Guardat ràpid'. Desmarqueu l'opció 'Permet guardats ràpids' del WinWord i torneu a guardar el fitxer." #: error.src msgctxt "" @@ -1309,7 +1309,7 @@ "WARN_CODE ( ERRCODE_CLASS_READ , WARN_WW6_FASTSAVE_ERR )\n" "string.text" msgid "This file was saved with WinWord in 'Fast Save' mode. Please unmark the WinWord option 'Allow Fast Saves' and save the file again." -msgstr "Este fitxer es va alçar en el mode 'Alçat ràpid'. Desmarqueu l'opció 'Permet alçats ràpids' del WinWord i torneu a alçar el fitxer." +msgstr "Este fitxer es va guardar en el mode 'Guardat ràpid'. Desmarqueu l'opció 'Permet guardats ràpids' del WinWord i torneu a guardar el fitxer." #: error.src msgctxt "" @@ -1345,7 +1345,7 @@ "WARN_CODE ( ERRCODE_CLASS_WRITE , WARN_SWG_OLE )\n" "string.text" msgid "Some OLE objects could only be saved as Images." -msgstr "Alguns objectes OLE només s'han pogut alçar com a imatges." +msgstr "Alguns objectes OLE només s'han pogut guardar com a imatges." #: error.src msgctxt "" @@ -1363,7 +1363,7 @@ "WARN_CODE ( ERRCODE_CLASS_WRITE , WARN_SWG_POOR_LOAD )\n" "string.text" msgid "Document could not be completely saved." -msgstr "El document no s'ha pogut alçar completament." +msgstr "El document no s'ha pogut guardar completament." #: error.src msgctxt "" @@ -1376,7 +1376,7 @@ "They were not saved with the current export settings." msgstr "" "El document HTML conté macros del %PRODUCTNAME Basic.\n" -"No s'han alçat amb la configuració actual d'exportació." +"No s'han guardat amb la configuració actual d'exportació." #: error.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/ui/dbui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/ui/dbui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/ui/dbui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/ui/dbui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-01-08 06:27+0000\n" +"PO-Revision-Date: 2014-07-17 08:37+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1389162451.0\n" +"X-POOTLE-MTIME: 1405586239.000000\n" #: createaddresslistdialog.src msgctxt "" @@ -333,7 +333,7 @@ "ST_SAVESTART\n" "string.text" msgid "Save ~starting document" -msgstr "" +msgstr "Guarda el document ~inicial" #: dbui.src msgctxt "" @@ -341,7 +341,7 @@ "ST_SAVEMERGED\n" "string.text" msgid "Save merged document" -msgstr "" +msgstr "Guarda el document combinat" #: dbui.src msgctxt "" @@ -349,7 +349,7 @@ "ST_PRINT\n" "string.text" msgid "Print settings" -msgstr "" +msgstr "Configuració d'impressió" #: dbui.src msgctxt "" @@ -357,7 +357,7 @@ "ST_SENDMAIL\n" "string.text" msgid "E-Mail settings" -msgstr "" +msgstr "Paràmetres del correu electrònic" #: dbui.src msgctxt "" @@ -365,7 +365,7 @@ "ST_DEFAULTATTACHMENT\n" "string.text" msgid "Untitled" -msgstr "" +msgstr "Sense títol" #: dbui.src msgctxt "" @@ -373,7 +373,7 @@ "ST_NOSUBJECT\n" "string.text" msgid "No subject" -msgstr "" +msgstr "Sense assumpte" #: dbui.src msgctxt "" @@ -385,6 +385,9 @@ "\n" "Do you want to enter e-mail account information now?" msgstr "" +"Per poder enviar documents de combinació de correu per correu electrònic, el %PRODUCTNAME necessita algunes dades sobre el compte de correu que s'utilitzarà.\n" +"\n" +" Voleu introduir ara la informació del compte de correu?" #: mailmergewizard.src msgctxt "" @@ -465,7 +468,7 @@ "ST_OUTPUT\n" "string.text" msgid "Save, print or send" -msgstr "Alceu, imprimiu o envieu" +msgstr "Guardeu, imprimiu o envieu" #: mailmergewizard.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/ui/envelp.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/ui/envelp.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/ui/envelp.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/ui/envelp.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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:01+0100\n" +"POT-Creation-Date: 2014-05-02 00:02+0200\n" "PO-Revision-Date: 2013-06-12 19:09+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" @@ -241,7 +241,7 @@ "FL_SAVE_MERGED_DOCUMENT\n" "fixedline.text" msgid "Save merged document" -msgstr "Alça el document combinat" +msgstr "Guarda el document combinat" #: mailmrge.src msgctxt "" @@ -259,7 +259,7 @@ "RB_SAVE_INDIVIDUAL\n" "radiobutton.text" msgid "Sa~ve as individual documents" -msgstr "Alça com a documents indi~viduals" +msgstr "Guarda com a documents indi~viduals" #: mailmrge.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/ui/index.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/ui/index.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/ui/index.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/ui/index.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-01-08 06:28+0000\n" +"PO-Revision-Date: 2014-07-17 08:37+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1389162505.0\n" +"X-POOTLE-MTIME: 1405586256.000000\n" #: cnttab.src msgctxt "" @@ -275,7 +275,7 @@ "STR_STRUCTURE\n" "string.text" msgid "Structure text" -msgstr "" +msgstr "Estructura el text" #: cnttab.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/ui/misc.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/ui/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/ui/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/ui/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -62,7 +62,7 @@ "STR_SAVE_GLOSSARY\n" "string.text" msgid "Save AutoText" -msgstr "Alça el text automàtic" +msgstr "Guarda el text automàtic" #: glossary.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/ui/utlui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/ui/utlui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/source/ui/utlui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/source/ui/utlui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:02+0200\n" -"PO-Revision-Date: 2014-01-08 06:31+0000\n" +"PO-Revision-Date: 2014-07-17 08:37+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1389162671.0\n" +"X-POOTLE-MTIME: 1405586270.000000\n" #: poolfmt.src msgctxt "" @@ -1134,7 +1134,7 @@ "STR_POOLCOLL_TOX_CITATION\n" "string.text" msgid "Citation" -msgstr "" +msgstr "Citació" #: poolfmt.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:57+0200\n" -"PO-Revision-Date: 2014-02-22 22:57+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-04-27 18:48+0000\n" +"Last-Translator: Joan \n" "Language-Team: none\n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393109832.0\n" +"X-POOTLE-MTIME: 1398624527.000000\n" #: abstractdialog.ui msgctxt "" @@ -221,7 +221,7 @@ "text\n" "string.text" msgid "Please save this document under a different name." -msgstr "Alceu este document amb un nom diferent." +msgstr "Guardeu este document amb un nom diferent." #: asciifilterdialog.ui msgctxt "" @@ -671,7 +671,7 @@ "label\n" "string.text" msgid "Save links relative to" -msgstr "Alça els enllaços relativament" +msgstr "Guarda els enllaços relativament" #: autotext.ui msgctxt "" @@ -1094,7 +1094,7 @@ "label\n" "string.text" msgid "_Zip/City" -msgstr "_Codi postal/Municipi" +msgstr "_Codi postal/Ciutat" #: businessdatapage.ui msgctxt "" @@ -1103,7 +1103,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "City" -msgstr "Municipi" +msgstr "Ciutat" #: businessdatapage.ui msgctxt "" @@ -8229,7 +8229,7 @@ "label\n" "string.text" msgid "Start fro_m a recently saved starting document" -msgstr "Co_mença a partir d'un document inicial alçat recentment" +msgstr "Co_mença a partir d'un document inicial guardat recentment" #: mmselectpage.ui msgctxt "" @@ -8292,7 +8292,7 @@ "title\n" "string.text" msgid "Save As" -msgstr "Anomena i alça" +msgstr "Anomena i guarda" #: numberingnamedialog.ui msgctxt "" @@ -11113,7 +11113,7 @@ "label\n" "string.text" msgid "_Zip/City" -msgstr "_Codi postal/Municipi" +msgstr "_Codi postal/Ciutat" #: privateuserpage.ui msgctxt "" @@ -11122,7 +11122,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "City" -msgstr "Municipi" +msgstr "Ciutat" #: privateuserpage.ui msgctxt "" @@ -11275,7 +11275,7 @@ "title\n" "string.text" msgid "Save label?" -msgstr "Voleu alçar l'etiqueta?" +msgstr "Voleu guardar l'etiqueta?" #: querysavelabeldialog.ui msgctxt "" @@ -11302,7 +11302,7 @@ "title\n" "string.text" msgid "Show changes?" -msgstr "Voleu alçar els canvis?" +msgstr "Voleu guardar els canvis?" #: queryshowchangesdialog.ui msgctxt "" @@ -11446,7 +11446,7 @@ "title\n" "string.text" msgid "Save as HTML?" -msgstr "Voleu alçar com a HTML?" +msgstr "Voleu guardar com a HTML?" #: saveashtmldialog.ui msgctxt "" @@ -11455,7 +11455,7 @@ "text\n" "string.text" msgid "Would you like to save the document as HTML?" -msgstr "Voleu alçar el document en format HTML?" +msgstr "Voleu guardar el document en format HTML?" #: saveashtmldialog.ui msgctxt "" @@ -11464,7 +11464,7 @@ "secondary_text\n" "string.text" msgid "The source code can only be displayed if the document is saved in HTML format." -msgstr "Només es pot mostrar el codi font si s'alça el document en format HTML." +msgstr "Només es pot mostrar el codi font si es guarda el document en format HTML." #: savelabeldialog.ui msgctxt "" @@ -11473,7 +11473,7 @@ "title\n" "string.text" msgid "Save Label Format" -msgstr "Alça el format de l'etiqueta" +msgstr "Guarda el format de l'etiqueta" #: savelabeldialog.ui msgctxt "" @@ -11662,7 +11662,7 @@ "title\n" "string.text" msgid "Select Address List" -msgstr "Selecciona un llista d'adreces" +msgstr "Selecciona una llista d'adreces" #: selectaddressdialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/swext/mediawiki/help.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/swext/mediawiki/help.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/swext/mediawiki/help.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/swext/mediawiki/help.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,12 +2,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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:05+0200\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: 2013-05-26 12:26+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" -"Language: ca_XV\n" +"Language: ca-valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -126,7 +126,7 @@ "par_id2381969\n" "help.text" msgid "Note: You can store your user name and password for all respective dialogs inside %PRODUCTNAME. The password will be stored in a secure way, where access is maintained by a master password. To enable the master password, choose Tools - Options - %PRODUCTNAME - Security." -msgstr "Nota: Podeu emmagatzemar el nom d'usuari i la contrasenya per a tots els diàlegs del %PRODUCTNAME. La contrasenya s'alçarà de manera segura, amb accés restringit mitjançant una contrasenya mestra. Per habilitar la contrasenya mestra, trieu Eines - Opcions - %PRODUCTNAME - Seguretat." +msgstr "Nota: Podeu emmagatzemar el nom d'usuari i la contrasenya per a tots els diàlegs del %PRODUCTNAME. La contrasenya es guardarà de manera segura, amb accés restringit mitjançant una contrasenya mestra. Per habilitar la contrasenya mestra, trieu Eines - Opcions - %PRODUCTNAME - Seguretat." #: wiki.xhp msgctxt "" @@ -206,7 +206,7 @@ "par_id292062\n" "help.text" msgid "Optionally enable \"Save password\" to save the password between sessions. A master password is used to maintain access to all saved passwords. Choose Tools - Options - %PRODUCTNAME - Security to enable the master password. \"Save password\" is unavailable when the master password is not enabled." -msgstr "Opcionalment, habiliteu \"Alça la contrasenya\" per alçar la contrasenya entre sessions. Per mantindre l'accés a totes les contrasenyes alçades s'utilitza una contrasenya mestra. Trieu Eines - Opcions - %PRODUCTNAME - Seguretat per habilitar la contrasenya mestra. L'opció \"Alça la contrasenya\" no està disponible si la contrasenya mestra no està habilitada." +msgstr "Opcionalment, habiliteu \"Guarda la contrasenya\" per guardar la contrasenya entre sessions. Per mantindre l'accés a totes les contrasenyes guardades s'utilitza una contrasenya mestra. Trieu Eines - Opcions - %PRODUCTNAME - Seguretat per habilitar la contrasenya mestra. L'opció \"Guarda la contrasenya\" no està disponible si la contrasenya mestra no està habilitada." #: wiki.xhp msgctxt "" @@ -374,7 +374,7 @@ "par_id9046601\n" "help.text" msgid "If you have enabled the master password feature on the Security tab page of the Tools - Options - %PRODUCTNAME dialog, then the software can store your password and automatically insert the data where necessary. Enable the \"Save password\" checkbox to store your password." -msgstr "Si heu habilitat la contrasenya mestra a la pestanya Seguretat del diàleg Eines - Opcions - %PRODUCTNAME, l'aplicació pot emmagatzemar la vostra contrasenya i inserir-la automàticament allà on siga necessari. Habiliteu la casella \"Alça la contrasenya\" per emmagatzemar la vostra contrasenya." +msgstr "Si heu habilitat la contrasenya mestra a la pestanya Seguretat del diàleg Eines - Opcions - %PRODUCTNAME, l'aplicació pot emmagatzemar la vostra contrasenya i inserir-la automàticament allà on siga necessari. Habiliteu la casella \"Guarda la contrasenya\" per emmagatzemar la vostra contrasenya." #: wikiformats.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/uui/source.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/uui/source.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/uui/source.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/uui/source.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:07+0200\n" -"PO-Revision-Date: 2013-06-12 18:59+0000\n" +"PO-Revision-Date: 2014-07-16 20:29+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1371063583.0\n" +"X-POOTLE-MTIME: 1405542558.000000\n" #: alreadyopen.src msgctxt "" @@ -61,7 +61,7 @@ msgstr "" "El fitxer de document '$(ARG1)' l'heu bloquejat per a edició en un altre sistema des del $(ARG2)\n" "\n" -"Tanqueu el document en l'altre sistema i torneu a provar d'alçar-lo, o ignoreu el vostre propi bloqueig i alceu el document actual.\n" +"Tanqueu el document en l'altre sistema i torneu a provar de guardar-lo, o ignoreu el vostre propi bloqueig i guardeu el document actual.\n" "\n" #: alreadyopen.src @@ -70,7 +70,7 @@ "STR_ALREADYOPEN_RETRY_SAVE_BTN\n" "string.text" msgid "~Retry Saving" -msgstr "~Reintenta alçar" +msgstr "~Reintenta guardar" #: alreadyopen.src msgctxt "" @@ -99,9 +99,9 @@ "Do you want to save anyway?\n" "\n" msgstr "" -"El fitxer s'ha modificat des que el vau obrir per a edició al %PRODUCTNAME. Si alceu la vostra versió del document, se sobreescriuran els canvis fets per altri.\n" +"El fitxer s'ha modificat des que el vau obrir per a edició al %PRODUCTNAME. Si guardeu la vostra versió del document, se sobreescriuran els canvis fets per altri.\n" "\n" -"Voleu alçar-lo igualment?\n" +"Voleu guardar-lo igualment?\n" "\n" #: filechanged.src @@ -199,9 +199,9 @@ "$(ARG1)\n" "which are too large to store in binary format. If you wish users that don't have access to the library password to be able to run macros in those module(s) you must split those modules into a number of smaller modules. Do you wish to continue to save/export this library?" msgstr "" -"Esteu a punt d'alçar/exportar una biblioteca del Basic protegida amb contrasenya que conté els mòduls \n" +"Esteu a punt de guardar/exportar una biblioteca del Basic protegida amb contrasenya que conté els mòduls \n" "$(ARG1)\n" -"que són massa grans per poder-se alçar en format binari. Si voleu que els usuaris que no tinguen accés a la contrasenya puguen executar macros d'estos mòduls, heu de dividir la biblioteca en mòduls més petits. Voleu continuar desant/exportant la biblioteca?" +"que són massa grans per poder-se guardar en format binari. Si voleu que els usuaris que no tinguen accés a la contrasenya puguen executar macros d'estos mòduls, heu de dividir la biblioteca en mòduls més petits. Voleu continuar desant/exportant la biblioteca?" #: ids.src msgctxt "" @@ -462,7 +462,7 @@ "(ERRCODE_UUI_IO_RECURSIVE & ERRCODE_RES_MASK)\n" "string.text" msgid "$(ARG1) cannot be copied into itself." -msgstr "$(ARG1) no es pot copiar dins de sí mateix." +msgstr "$(ARG1) no es pot copiar dins de si mateix." #: ids.src msgctxt "" @@ -875,7 +875,7 @@ "You are saving to a macro-free document format, the macros contained in this document will not be saved.\n" "Do you wish to continue?" msgstr "" -"Esteu desant en un format de document que no permet macros. Les macros d'este document no s'alçaran.\n" +"Esteu desant en un format de document que no permet macros. Les macros d'este document no es guardaran.\n" "Voleu continuar?" #: lockfailed.src @@ -1011,7 +1011,7 @@ "STR_ENTER_PASSWORD_TO_OPEN\n" "string.text" msgid "Enter password to open file: \n" -msgstr "" +msgstr "Introduïu la contrasenya per obrir el fitxer: \n" #: passworddlg.src msgctxt "" @@ -1019,7 +1019,7 @@ "STR_ENTER_PASSWORD_TO_MODIFY\n" "string.text" msgid "Enter password to modify file: \n" -msgstr "" +msgstr "Introduïu la contrasenya per a modificar el fitxer: \n" #: passworddlg.src msgctxt "" @@ -1027,7 +1027,7 @@ "STR_ENTER_SIMPLE_PASSWORD\n" "string.text" msgid "Enter password: " -msgstr "" +msgstr "Introduïu la contrasenya: " #: passworddlg.src msgctxt "" @@ -1035,7 +1035,7 @@ "STR_CONFIRM_SIMPLE_PASSWORD\n" "string.text" msgid "Confirm password: " -msgstr "" +msgstr "Confirmeu la contrasenya: " #: passworddlg.src msgctxt "" @@ -1043,7 +1043,7 @@ "STR_TITLE_CREATE_PASSWORD\n" "string.text" msgid "Set Password" -msgstr "" +msgstr "Estableix la contrasenya" #: passworddlg.src msgctxt "" @@ -1051,7 +1051,7 @@ "STR_TITLE_ENTER_PASSWORD\n" "string.text" msgid "Enter Password" -msgstr "" +msgstr "Introduïu la contrasenya" #: passworddlg.src msgctxt "" @@ -1059,7 +1059,7 @@ "STR_PASSWORD_MISMATCH\n" "string.text" msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes." -msgstr "" +msgstr "La contrasenya de confirmació no coincideix amb la contrasenya. Torneu a definir la contrasenya i introduïu la mateixa contrasenya a tots dos quadres." #: passworderrs.src msgctxt "" @@ -1197,7 +1197,7 @@ "\n" "$(ARG2)\n" "\n" -"Torneu a provar d'alçar el document més tard o alceu-ne una còpia.\n" +"Torneu a provar de guardar el document més tard o guardeu-ne una còpia.\n" "\n" #: trylater.src @@ -1206,7 +1206,7 @@ "STR_TRYLATER_RETRYSAVING_BTN\n" "string.text" msgid "~Retry Saving" -msgstr "~Reintenta alçar" +msgstr "~Reintenta guardar" #: trylater.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/uui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/uui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/uui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/uui/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:07+0200\n" -"PO-Revision-Date: 2013-06-10 11:19+0000\n" +"PO-Revision-Date: 2014-07-16 20:33+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1370863179.0\n" +"X-POOTLE-MTIME: 1405542802.000000\n" #: logindialog.ui msgctxt "" @@ -23,7 +23,7 @@ "title\n" "string.text" msgid "Authentication Required" -msgstr "" +msgstr "Es requereix autenticació" #: logindialog.ui msgctxt "" @@ -32,7 +32,7 @@ "label\n" "string.text" msgid "_Use system credentials" -msgstr "" +msgstr "_Usa les credencials del sistema" #: logindialog.ui msgctxt "" @@ -41,7 +41,7 @@ "label\n" "string.text" msgid "_Remember password" -msgstr "" +msgstr "_Recorda la contrasenya" #: logindialog.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "A_ccount" -msgstr "" +msgstr "_Compte" #: logindialog.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "Pass_word" -msgstr "" +msgstr "Contra_senya" #: logindialog.ui msgctxt "" @@ -68,7 +68,7 @@ "label\n" "string.text" msgid "_User name" -msgstr "" +msgstr "Nom d'_usuari" #: logindialog.ui msgctxt "" @@ -77,7 +77,7 @@ "label\n" "string.text" msgid "_Path" -msgstr "" +msgstr "_Camí" #: logindialog.ui msgctxt "" @@ -86,7 +86,7 @@ "label\n" "string.text" msgid "_Browse..." -msgstr "" +msgstr "_Navega..." #: logindialog.ui msgctxt "" @@ -98,6 +98,8 @@ "Enter user name and password for:\n" "\"%2\" on %1" msgstr "" +"Introduïu el nom d'usuari i la contrasenya per a: \n" +"«%2» en %1" #: logindialog.ui msgctxt "" @@ -109,6 +111,8 @@ "Enter user name and password for:\n" "%1" msgstr "" +"Introduïu el nom d'usuari i la contrasenya per a: \n" +"%1" #: logindialog.ui msgctxt "" @@ -117,7 +121,7 @@ "label\n" "string.text" msgid "Message from server:" -msgstr "" +msgstr "Missatge del servidor:" #: masterpassworddlg.ui msgctxt "" @@ -144,7 +148,7 @@ "title\n" "string.text" msgid "Set Password" -msgstr "" +msgstr "Estableix la contrasenya" #: setmasterpassworddlg.ui msgctxt "" @@ -198,7 +202,7 @@ "title\n" "string.text" msgid "Security Warning: " -msgstr "" +msgstr "Avís de seguretat: " #: sslwarndialog.ui msgctxt "" @@ -207,7 +211,7 @@ "label\n" "string.text" msgid "Continue" -msgstr "" +msgstr "Continua" #: sslwarndialog.ui msgctxt "" @@ -216,7 +220,7 @@ "label\n" "string.text" msgid "Cancel Connection" -msgstr "" +msgstr "Cancel·la la connexió" #: sslwarndialog.ui msgctxt "" @@ -225,7 +229,7 @@ "label\n" "string.text" msgid "View Certificate" -msgstr "" +msgstr "Mostra el certificat" #: unknownauthdialog.ui msgctxt "" @@ -234,7 +238,7 @@ "title\n" "string.text" msgid "Website Certified by an Unknown Authority" -msgstr "" +msgstr "Lloc web certificat per una autoritat desconeguda" #: unknownauthdialog.ui msgctxt "" @@ -243,7 +247,7 @@ "label\n" "string.text" msgid "Accept this certificate temporarily for this session" -msgstr "" +msgstr "Accepta este certificat temporalment per a esta sessió" #: unknownauthdialog.ui msgctxt "" @@ -252,7 +256,7 @@ "label\n" "string.text" msgid "Do not accept this certificate and do not connect to this Web site" -msgstr "" +msgstr "No acceptis este certificat i no et connectes a este lloc web" #: unknownauthdialog.ui msgctxt "" @@ -261,4 +265,4 @@ "label\n" "string.text" msgid "Examine Certificate..." -msgstr "" +msgstr "Examina el certificat..." diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/vcl/source/src.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/vcl/source/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/vcl/source/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/vcl/source/src.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-01-12 23:08+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-07-16 21:24+0000\n" +"Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1389568130.0\n" +"X-POOTLE-MTIME: 1405545841.000000\n" #. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string #: btntext.src @@ -186,7 +186,7 @@ "SV_BUTTONTEXT_SAVE\n" "string.text" msgid "~Save" -msgstr "~Alça" +msgstr "~Guarda" #: btntext.src msgctxt "" @@ -290,7 +290,7 @@ "STR_FPICKER_PASSWORD\n" "string.text" msgid "Save with pass~word" -msgstr "Alça-ho amb ~contrasenya" +msgstr "Guarda-ho amb ~contrasenya" #: fpicker.src msgctxt "" @@ -418,7 +418,7 @@ "STR_FPICKER_SAVE\n" "string.text" msgid "Save" -msgstr "Alça" +msgstr "Guarda" #: fpicker.src msgctxt "" @@ -1131,7 +1131,7 @@ "SV_PRINT_QUERYFAXNUMBER_TXT\n" "string.text" msgid "Please enter the fax number" -msgstr "" +msgstr "Introduïu el número de fax" #: print.src msgctxt "" @@ -1139,7 +1139,7 @@ "SV_PRINT_INVALID_TXT\n" "string.text" msgid "" -msgstr "" +msgstr "" #: print.src msgctxt "" @@ -1147,7 +1147,7 @@ "SV_PRINT_CUSTOM_TXT\n" "string.text" msgid "Custom" -msgstr "" +msgstr "Personalitzat" #: stdtext.src msgctxt "" @@ -1403,7 +1403,7 @@ "pixels\n" "itemlist.text" msgid "pixels" -msgstr "" +msgstr "píxels" #: units.src msgctxt "" @@ -1412,7 +1412,7 @@ "pixel\n" "itemlist.text" msgid "pixel" -msgstr "" +msgstr "píxel" #: units.src msgctxt "" @@ -1421,7 +1421,7 @@ "°\n" "itemlist.text" msgid "°" -msgstr "" +msgstr "°" #: units.src msgctxt "" @@ -1430,7 +1430,7 @@ "sec\n" "itemlist.text" msgid "sec" -msgstr "" +msgstr "s" #: units.src msgctxt "" @@ -1439,4 +1439,4 @@ "ms\n" "itemlist.text" msgid "ms" -msgstr "" +msgstr "ms" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/vcl/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/vcl/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/vcl/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/vcl/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-01-29 19:13+0000\n" -"Last-Translator: Jordi \n" +"PO-Revision-Date: 2014-07-16 21:27+0000\n" +"Last-Translator: Joan \n" "Language-Team: none\n" "Language: ca-valencia\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1391022789.0\n" +"X-POOTLE-MTIME: 1405546051.000000\n" #: cupspassworddialog.ui msgctxt "" @@ -23,7 +23,7 @@ "title\n" "string.text" msgid "Authentication request" -msgstr "" +msgstr "Sol·licitud d'autenticació" #: cupspassworddialog.ui msgctxt "" @@ -32,7 +32,7 @@ "label\n" "string.text" msgid "_User" -msgstr "" +msgstr "_Usuari" #: cupspassworddialog.ui msgctxt "" @@ -41,7 +41,7 @@ "label\n" "string.text" msgid "_Password" -msgstr "" +msgstr "_Contrasenya" #: cupspassworddialog.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "Please enter your authentication data for server %s" -msgstr "" +msgstr "Introduïu les dades d'autenticació per al servidor %s" #: errornocontentdialog.ui msgctxt "" @@ -698,7 +698,7 @@ "label\n" "string.text" msgid "_Option" -msgstr "" +msgstr "_Opció" #: printerdevicepage.ui msgctxt "" @@ -707,7 +707,7 @@ "label\n" "string.text" msgid "Current _value" -msgstr "" +msgstr "_Valor actual" #: printerdevicepage.ui msgctxt "" @@ -716,7 +716,7 @@ "label\n" "string.text" msgid "Printer _Language type" -msgstr "" +msgstr "Tipus de ~llenguatge de la impressora" #: printerdevicepage.ui msgctxt "" @@ -725,7 +725,7 @@ "label\n" "string.text" msgid "_Color" -msgstr "" +msgstr "_Color" #: printerdevicepage.ui msgctxt "" @@ -734,7 +734,7 @@ "label\n" "string.text" msgid "Color _depth" -msgstr "" +msgstr "_Profunditat de color" #: printerdevicepage.ui msgctxt "" @@ -743,7 +743,7 @@ "0\n" "stringlist.text" msgid "From driver" -msgstr "" +msgstr "Des d'un controlador" #: printerdevicepage.ui msgctxt "" @@ -752,7 +752,7 @@ "1\n" "stringlist.text" msgid "Color" -msgstr "" +msgstr "Color" #: printerdevicepage.ui msgctxt "" @@ -761,7 +761,7 @@ "2\n" "stringlist.text" msgid "Grayscale" -msgstr "" +msgstr "Escala de grisos" #: printerdevicepage.ui msgctxt "" @@ -770,7 +770,7 @@ "0\n" "stringlist.text" msgid "8 Bit" -msgstr "" +msgstr "8 bits" #: printerdevicepage.ui msgctxt "" @@ -779,7 +779,7 @@ "1\n" "stringlist.text" msgid "24 Bit" -msgstr "" +msgstr "24 bits" #: printerdevicepage.ui msgctxt "" @@ -788,7 +788,7 @@ "0\n" "stringlist.text" msgid "Automatic : %s" -msgstr "" +msgstr "Automàtic: %s" #: printerdevicepage.ui msgctxt "" @@ -797,7 +797,7 @@ "1\n" "stringlist.text" msgid "PostScript (Level from driver)" -msgstr "" +msgstr "PostScript (nivell del controlador)" #: printerdevicepage.ui msgctxt "" @@ -806,7 +806,7 @@ "2\n" "stringlist.text" msgid "PostScript Level 1" -msgstr "" +msgstr "PostScript nivell 1" #: printerdevicepage.ui msgctxt "" @@ -815,7 +815,7 @@ "3\n" "stringlist.text" msgid "PostScript Level 2" -msgstr "" +msgstr "PostScript nivell 2" #: printerdevicepage.ui msgctxt "" @@ -824,7 +824,7 @@ "4\n" "stringlist.text" msgid "PostScript Level 3" -msgstr "" +msgstr "PostScript nivell 3" #: printerdevicepage.ui msgctxt "" @@ -833,7 +833,7 @@ "5\n" "stringlist.text" msgid "PDF" -msgstr "" +msgstr "PDF" #: printerpaperpage.ui msgctxt "" @@ -842,7 +842,7 @@ "label\n" "string.text" msgid "_Paper size" -msgstr "" +msgstr "Mida del _paper" #: printerpaperpage.ui msgctxt "" @@ -851,7 +851,7 @@ "label\n" "string.text" msgid "_Orientation" -msgstr "" +msgstr "_Orientació" #: printerpaperpage.ui msgctxt "" @@ -860,7 +860,7 @@ "label\n" "string.text" msgid "_Duplex" -msgstr "" +msgstr "_Dúplex" #: printerpaperpage.ui msgctxt "" @@ -869,7 +869,7 @@ "label\n" "string.text" msgid "Paper tray" -msgstr "" +msgstr "Safata de paper" #: printerpaperpage.ui msgctxt "" @@ -878,7 +878,7 @@ "0\n" "stringlist.text" msgid "Portrait" -msgstr "" +msgstr "Vertical" #: printerpaperpage.ui msgctxt "" @@ -887,7 +887,7 @@ "1\n" "stringlist.text" msgid "Landscape" -msgstr "" +msgstr "Horitzontal" #: printerpropertiesdialog.ui msgctxt "" @@ -896,7 +896,7 @@ "title\n" "string.text" msgid "Properties of %s" -msgstr "" +msgstr "Propietats de %s" #: printerpropertiesdialog.ui msgctxt "" @@ -905,7 +905,7 @@ "label\n" "string.text" msgid "Paper" -msgstr "" +msgstr "Paper" #: printerpropertiesdialog.ui msgctxt "" @@ -914,7 +914,7 @@ "label\n" "string.text" msgid "Device" -msgstr "" +msgstr "Dispositiu" #: printprogressdialog.ui msgctxt "" @@ -923,7 +923,7 @@ "title\n" "string.text" msgid "Printing" -msgstr "" +msgstr "Impressió" #: printprogressdialog.ui msgctxt "" @@ -932,7 +932,7 @@ "label\n" "string.text" msgid "Page %p of %n" -msgstr "" +msgstr "Pàgina %p de %n" #: querydialog.ui msgctxt "" @@ -941,4 +941,4 @@ "title\n" "string.text" msgid "New Data Type" -msgstr "" +msgstr "Tipus de dades nou" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/wizards/source/formwizard.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/wizards/source/formwizard.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/wizards/source/formwizard.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/wizards/source/formwizard.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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 18:51+0000\n" +"PO-Revision-Date: 2014-07-16 21:16+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369421490.0\n" +"X-POOTLE-MTIME: 1405545415.000000\n" #: dbwizres.src msgctxt "" @@ -284,7 +284,7 @@ "RID_DB_COMMON_START + 30\n" "string.text" msgid "The document could not be saved." -msgstr "No s'ha pogut alçar el document." +msgstr "No s'ha pogut guardar el document." #: dbwizres.src msgctxt "" @@ -1844,7 +1844,7 @@ "RID_DB_REPORT_WIZARD_START + 44\n" "string.text" msgid "Save as" -msgstr "Anomena i alça" +msgstr "Anomena i guarda" #: dbwizres.src msgctxt "" @@ -2036,7 +2036,7 @@ "RID_DB_REPORT_WIZARD_START + 74\n" "string.text" msgid "The sort criterion '' was chosen twice. Each criterion can only be chosen once." -msgstr "" +msgstr "El criteri d'ordenació '' s'ha seleccionat dues vegades. Cada criteri només es pot seleccionar una vegada." #: dbwizres.src msgctxt "" @@ -2253,7 +2253,7 @@ "RID_DB_REPORT_WIZARD_START + 102\n" "string.text" msgid "Outline - Compact" -msgstr "Contorn - Compcte" +msgstr "Contorn - Compacte" #: dbwizres.src msgctxt "" @@ -2317,7 +2317,7 @@ "RID_DB_REPORT_WIZARD_START + 110\n" "string.text" msgid "Outline, indented - Highlighted" -msgstr "Contorn, sagnt - Ressaltat" +msgstr "Contorn, sagnat - Ressaltat" #: dbwizres.src msgctxt "" @@ -3601,7 +3601,7 @@ "RID_FAXWIZARDDIALOG_START + 24\n" "string.text" msgid "To create another new fax out of the template, go to the location where you saved the template and double-click the file." -msgstr "Per crear un nou fax a partir de la plantilla, aneu a la ubicació on vau alçar la plantilla i feu doble clic al fitxer." +msgstr "Per crear un nou fax a partir de la plantilla, aneu a la ubicació on vau guardar la plantilla i feu doble clic al fitxer." #: dbwizres.src msgctxt "" @@ -3665,7 +3665,7 @@ "RID_FAXWIZARDDIALOG_START + 32\n" "string.text" msgid "Choose a name and save the template" -msgstr "Selecciona un nom i alça la plantilla" +msgstr "Selecciona un nom i guarda la plantilla" #: dbwizres.src msgctxt "" @@ -4211,7 +4211,7 @@ "RID_WEBWIZARDDIALOG_START +35\n" "string.text" msgid "Save ~as:" -msgstr "~Anomena i alça:" +msgstr "~Anomena i guarda:" #: dbwizres.src msgctxt "" @@ -5277,7 +5277,7 @@ "RID_AGENDAWIZARDDIALOG_START +11\n" "string.text" msgid "Choose a name and save the template" -msgstr "Selecciona un nom i alça la plantilla" +msgstr "Selecciona un nom i guarda la plantilla" #: dbwizres.src msgctxt "" @@ -5349,7 +5349,7 @@ "RID_AGENDAWIZARDDIALOG_START +20\n" "string.text" msgid "To create a new agenda out of the template, go to the location where you saved the template and double-click the file." -msgstr "Per crear una nova agenda a partir de la plantilla, aneu a la ubicació on heu alçat la plantilla i feu doble clic al fitxer." +msgstr "Per crear una nova agenda a partir de la plantilla, aneu a la ubicació on heu guardat la plantilla i feu doble clic al fitxer." #: dbwizres.src msgctxt "" @@ -5525,7 +5525,7 @@ "RID_AGENDAWIZARDDIALOG_START +43\n" "string.text" msgid "An unexpected error occurred while saving the agenda template." -msgstr "S'ha produït un error inesperat en alçar la plantilla d'agenda." +msgstr "S'ha produït un error inesperat en guardar la plantilla d'agenda." #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/wizards/source/importwizard.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/wizards/source/importwizard.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/wizards/source/importwizard.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/wizards/source/importwizard.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,12 +2,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-06-10 10:39+0200\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:06+0200\n" "PO-Revision-Date: 2013-06-10 10:53+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" -"Language: ca_XV\n" +"Language: ca-valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -166,7 +166,7 @@ "sTextExportLabel\n" "string.text" msgid "Save to:" -msgstr "Alça a:" +msgstr "Guarda a:" #: importwi.src msgctxt "" @@ -270,7 +270,7 @@ "scouldNotsaveDocument\n" "string.text" msgid "Document '<1>' could not be saved." -msgstr "No s'ha pogut alçar el document '<1>'." +msgstr "No s'ha pogut guardar el document '<1>'." #: importwi.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/wizards/source/template.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/wizards/source/template.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/wizards/source/template.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/wizards/source/template.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,19 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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:05+0200\n" -"PO-Revision-Date: 2012-12-06 14:00+0000\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:06+0200\n" +"PO-Revision-Date: 2014-04-27 18:51+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" -"Language: ca_XV\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-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1354802440.0\n" +"X-POOTLE-MTIME: 1398624715.000000\n" #: template.src msgctxt "" @@ -46,7 +46,7 @@ "STYLES + 1\n" "string.text" msgid "Error while saving the document to the clipboard! The following action cannot be undone." -msgstr "S'ha produït un error en alçar el document actual al porta-retalls. La següent acció no es pot desfer." +msgstr "S'ha produït un error en guardar el document actual al porta-retalls. La següent acció no es pot desfer." #: template.src msgctxt "" @@ -206,7 +206,7 @@ "STYLENAME + 17\n" "string.text" msgid "Pumpkin" -msgstr "Carbassa" +msgstr "Carabassa" #: template.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/xmlsecurity/source/dialogs.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/xmlsecurity/source/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/xmlsecurity/source/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/xmlsecurity/source/dialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -226,7 +226,7 @@ msgstr "" "Este document conté signatures en format ODF 1.1 (OpenOffice.org 2.x). La signatura de documents al %PRODUCTNAME %PRODUCTVERSION requereix la versió d'ODF 1.2. Per tant, no es pot afegir o suprimir cap signatura a este document.\n" "\n" -"Alceu el document en format ODF 1.2 i torneu a afegir totes les signatures que vulgueu." +"Guardeu el document en format ODF 1.2 i torneu a afegir totes les signatures que vulgueu." #: digitalsignaturesdialog.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/xmlsecurity/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ca-valencia/xmlsecurity/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ca-valencia/xmlsecurity/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ca-valencia/xmlsecurity/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:06+0200\n" -"PO-Revision-Date: 2013-06-18 19:15+0000\n" +"PO-Revision-Date: 2014-07-16 21:15+0000\n" "Last-Translator: Joan \n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1371582955.0\n" +"X-POOTLE-MTIME: 1405545337.000000\n" #: certpage.ui msgctxt "" @@ -23,7 +23,7 @@ "label\n" "string.text" msgid "Certification path" -msgstr "" +msgstr "Camí de la certificació" #: certpage.ui msgctxt "" @@ -32,7 +32,7 @@ "label\n" "string.text" msgid "View Certificate..." -msgstr "" +msgstr "Mostra el certificat..." #: certpage.ui msgctxt "" @@ -41,7 +41,7 @@ "label\n" "string.text" msgid "Certification status" -msgstr "" +msgstr "Estat de la certificació" #: certpage.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "The certificate is OK." -msgstr "" +msgstr "El certificat és correcte." #: certpage.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "The certificate could not be validated." -msgstr "" +msgstr "No s'ha pogut validar el certificat." #: digitalsignaturesdialog.ui msgctxt "" @@ -405,7 +405,7 @@ "title\n" "string.text" msgid "View Certificate" -msgstr "" +msgstr "Mostra el certificat" #: viewcertdialog.ui msgctxt "" @@ -414,7 +414,7 @@ "label\n" "string.text" msgid "General" -msgstr "" +msgstr "General" #: viewcertdialog.ui msgctxt "" @@ -423,7 +423,7 @@ "label\n" "string.text" msgid "Details" -msgstr "" +msgstr "Detalls" #: viewcertdialog.ui msgctxt "" @@ -432,4 +432,4 @@ "label\n" "string.text" msgid "Certification Path" -msgstr "" +msgstr "Camí de la certificació" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/cs/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/cs/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/cs/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/cs/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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:08+0200\n" -"PO-Revision-Date: 2014-06-01 13:51+0000\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" +"PO-Revision-Date: 2014-09-03 18:56+0000\n" "Last-Translator: Stanislav \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -12,9 +12,9 @@ "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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401630676.000000\n" +"X-POOTLE-MTIME: 1409770581.000000\n" #: AbiWord.xcu msgctxt "" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokument BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "Textový dokument BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokument BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "Sešit BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokument BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "Kresba BeagleWorks/WordPerfect Works v1" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokument ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "Textový dokument ClarisWorks/AppleWorks" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokument ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "Sešit ClarisWorks/AppleWorks" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokument ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "Kresba ClarisWorks/AppleWorks" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokument GreatWorks" +msgid "GreatWorks Text Document" +msgstr "Textový dokument GreatWorks" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokument GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "Sešit GreatWorks" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokument GreatWorks" +msgid "GreatWorks Drawing" +msgstr "Kresba GreatWorks" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokument Microsoft Works pro Mac (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "Textový dokument Microsoft Works pro Mac (v1 - v4)" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokument Microsoft Works pro Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "Sešit Microsoft Works pro Mac (v1 - v4)" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokument Microsoft Works pro Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "Kresba Microsoft Works pro Mac (v1 - v4)" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/cs/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/cs/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/cs/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/cs/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-07-20 16:53+0000\n" "Last-Translator: Stanislav \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1405875229.000000\n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programování v %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Zaznamenávání maker je k dispozici pouze pro textové dokumenty %PRODUCTNAME Writer a sešity %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/cs/svx/source/items.po libreoffice-l10n-4.3.2/translations/source/cs/svx/source/items.po --- libreoffice-l10n-4.3.1~rc2/translations/source/cs/svx/source/items.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/cs/svx/source/items.po 2014-09-16 19:55:40.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: 2014-05-16 20:40+0000\n" +"POT-Creation-Date: 2014-07-30 10:58+0200\n" +"PO-Revision-Date: 2014-09-03 18:57+0000\n" "Last-Translator: Stanislav \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -12,9 +12,9 @@ "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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1400272813.000000\n" +"X-POOTLE-MTIME: 1409770661.000000\n" #: svxerr.src msgctxt "" @@ -397,7 +397,7 @@ "Font color\n" "itemlist.text" msgid "Font color" -msgstr "" +msgstr "Barva písma" #: svxitems.src msgctxt "" @@ -568,7 +568,7 @@ "Page Style\n" "itemlist.text" msgid "Page Style" -msgstr "" +msgstr "Styl stránky" #: svxitems.src msgctxt "" @@ -595,7 +595,7 @@ "Character background\n" "itemlist.text" msgid "Character background" -msgstr "" +msgstr "Pozadí znaku" #: svxitems.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/cs/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/cs/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/cs/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/cs/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:57+0200\n" -"PO-Revision-Date: 2014-07-13 13:19+0000\n" +"PO-Revision-Date: 2014-09-03 18:58+0000\n" "Last-Translator: Stanislav \n" "Language-Team: none\n" "Language: cs\n" @@ -12,9 +12,9 @@ "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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1405257567.000000\n" +"X-POOTLE-MTIME: 1409770715.000000\n" #: abstractdialog.ui msgctxt "" @@ -8646,7 +8646,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Pozadí" #: objectdialog.ui msgctxt "" @@ -10495,7 +10495,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Pozadí" #: picturedialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/cy/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/cy/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/cy/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/cy/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-07-24 08:34+0000\n" "Last-Translator: Rhoslyn \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dogfen BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dogfen BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dogfen BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dogfen ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dogfen ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dogfen ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dogfen GreatWorks" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dogfen GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dogfen GreatWorks" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/da/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/da/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/da/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/da/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-13 10:29+0000\n" "Last-Translator: wkn \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1-dokument" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1-dokument" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1-dokument" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-dokument" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-dokument" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-dokument" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-dokument" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-dokument" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-dokument" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac-dokument (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac-dokument (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/da/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/da/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/da/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/da/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-06-18 02:40+0000\n" "Last-Translator: Leif \n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programmere i %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Funktionaliteten til at optage makroer er kun tilgængelig for tekstdokumenter i %PRODUCTNAME Writer og regneark i %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/cui/source/options.po libreoffice-l10n-4.3.2/translations/source/de/cui/source/options.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/cui/source/options.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/cui/source/options.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-17 06:09+0000\n" +"PO-Revision-Date: 2014-08-27 05:26+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1400306945.000000\n" +"X-POOTLE-MTIME: 1409117210.000000\n" #: connpooloptions.src msgctxt "" @@ -775,7 +775,7 @@ "Accessibility\n" "itemlist.text" msgid "Accessibility" -msgstr "Zugänglichkeit" +msgstr "Barrierefreiheit" #: treeopt.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/cui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/de/cui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/cui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/cui/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-08-17 17:15+0000\n" +"PO-Revision-Date: 2014-08-27 05:28+0000\n" "Last-Translator: Christian \n" "Language-Team: none\n" "Language: de\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408295733.000000\n" +"X-POOTLE-MTIME: 1409117288.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -8348,7 +8348,7 @@ "label\n" "string.text" msgid "with accessibility support" -msgstr "mit Unterstützung der Zugänglichkeit" +msgstr "Mit Barrierefreiheits-Unterstützung" #: optadvancedpage.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/editeng/source/items.po libreoffice-l10n-4.3.2/translations/source/de/editeng/source/items.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/editeng/source/items.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/editeng/source/items.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408296028.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/de/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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:08+0200\n" -"PO-Revision-Date: 2014-05-31 06:10+0000\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" +"PO-Revision-Date: 2014-09-03 05:00+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401516630.000000\n" +"X-POOTLE-MTIME: 1409720401.000000\n" #: AbiWord.xcu msgctxt "" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1-Dokument" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "BeagleWorks/WordPerfect Works v1-Textdokument" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1-Dokument" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "BeagleWorks/WordPerfect Works v1-Tabellendokument" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1-Dokument" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "BeagleWorks/WordPerfect Works v1-Zeichnung" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-Dokument" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "ClarisWorks/AppleWorks-Textdokument" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-Dokument" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "ClarisWorks/AppleWorks-Tabellendokument" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-Dokument" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "ClarisWorks/AppleWorks-Zeichnung" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-Dokument" +msgid "GreatWorks Text Document" +msgstr "GreatWorks-Textdokument" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-Dokument" +msgid "GreatWorks Spreadsheet" +msgstr "GreatWorks Tabellendokument" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-Dokument" +msgid "GreatWorks Drawing" +msgstr "GreatWorks Zeichnung" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works für Mac-Dokument (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "Microsoft Works für Mac-Textdokument (v1 - v4)" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works für Mac-Dokument (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "Microsoft Works für Mac-Tabellendokument (v1 - v4)" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works für Mac-Dokument (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "Microsoft Works für Mac-Zeichnung (v1 - v4)" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/formula/source/core/resource.po libreoffice-l10n-4.3.2/translations/source/de/formula/source/core/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/formula/source/core/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/formula/source/core/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408436266.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/auxiliary.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/auxiliary.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/auxiliary.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/auxiliary.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2014-01-19 17:37+0000\n" +"POT-Creation-Date: 2014-05-02 00:14+0200\n" +"PO-Revision-Date: 2014-08-27 05:59+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1390153067.0\n" +"X-POOTLE-MTIME: 1409119157.000000\n" #: sbasic.tree msgctxt "" @@ -262,7 +262,7 @@ "1004\n" "node.text" msgid "%PRODUCTNAME Options" -msgstr "%PRODUCTNAME-Optionen" +msgstr "%PRODUCTNAME Optionen" #: shared.tree msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/sbasic/shared.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:11+0200\n" -"PO-Revision-Date: 2013-11-22 21:49+0000\n" +"PO-Revision-Date: 2014-08-27 09:58+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385156991.0\n" +"X-POOTLE-MTIME: 1409133504.000000\n" #: 00000002.xhp msgctxt "" @@ -103,7 +103,7 @@ "33\n" "help.text" msgid "In $[officename] Basic, a method parameter or a property expecting unit information can be specified either as integer or long integer expression without a unit, or as a character string containing a unit. If no unit is passed to the method the default unit defined for the active document type will be used. If the parameter is passed as a character string containing a measurement unit, the default setting will be ignored. The default measurement unit for a document type can be set under %PRODUCTNAME - PreferencesTools - Options - (Document Type) - General." -msgstr "In $[officename] Basic können Übergabewerte für Methodenparameter oder Eigenschaften, die Maßeinheitsangaben erwarten, entweder als Integer- oder Longinteger-Wert ohne Einheit oder aber als Zeichenkette mit einer Einheit angegeben werden. Wird der Methode keine Maßeinheit übergeben, so wird die Standardeinheit für die aktive Dokumentart verwendet. Wird der Parameter als Zeichenkette einschließlich einer Maßeinheit übergeben, so wird die Standardeinstellung übergangen. Die Standardmaßeinheit für eine Dokumentart kann unter %PRODUCTNAME - EinstellungenExtras - Optionen - (Dokumentart) - Allgemein eingestellt werden." +msgstr "In $[officename] Basic können Übergabewerte für Methodenparameter oder Eigenschaften, die Maßeinheitsangaben erwarten, entweder als Integer- oder Longinteger-Wert ohne Einheit oder aber als Zeichenkette mit einer Einheit angegeben werden. Wird der Methode keine Maßeinheit übergeben, so wird die Standardeinheit für die aktive Dokumentart verwendet. Wird der Parameter als Zeichenkette einschließlich einer Maßeinheit übergeben, so wird die Standardeinstellung übergangen. Die Standardmaßeinheit für eine Dokumentart kann unter %PRODUCTNAME - EinstellungenExtras - Optionen... - (Dokumentart) - Allgemein eingestellt werden." #: 00000002.xhp msgctxt "" @@ -200,7 +200,7 @@ "102\n" "help.text" msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages. In Basic format codes, the decimal point (.) is always used as placeholder for the decimal separator defined in your locale and will be replaced by the corresponding character." -msgstr "Sie können das Gebietsschema, das in $[officename] Basic für die Kontrolle der Formatierung der Zahlen und Währungen genutzt wird unter %PRODUCTNAME - EinstellungenExtras - Optionen - Spracheinstellungen - Sprachen einstellen. In Basic formatiertem Code wird der Dezimalpunkt (.) immer alsPlatzhalter für den Dezimaltrenner ihres Gebietsschemas genutzt und durch das entsprechende Zeichen ersetzt." +msgstr "Sie können das Gebietsschema, das in $[officename] Basic für die Kontrolle der Formatierung der Zahlen und Währungen genutzt wird unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Sprachen einstellen. In Basic formatiertem Code wird der Dezimalpunkt (.) immer alsPlatzhalter für den Dezimaltrenner ihres Gebietsschemas genutzt und durch das entsprechende Zeichen ersetzt." #: 00000003.xhp msgctxt "" @@ -1616,7 +1616,7 @@ "1\n" "help.text" msgid "Basics" -msgstr "$[officename] Basic ist modular" +msgstr "$[officename] Basic ist modular" #: 01010210.xhp msgctxt "" @@ -4780,7 +4780,7 @@ "2\n" "help.text" msgid "Specifies the options for breakpoints." -msgstr "Hier werden die Optionen für Haltepunkte angegeben." +msgstr "Hier werden die Optionen für Haltepunkte angegeben." #: 01050300.xhp msgctxt "" @@ -9698,7 +9698,7 @@ "tit\n" "help.text" msgid "Line Input # Statement [Runtime]" -msgstr "Line Input#-Anweisung [Laufzeit]" +msgstr "Line Input #-Anweisung [Laufzeit]" #: 03020203.xhp msgctxt "" @@ -9715,7 +9715,7 @@ "1\n" "help.text" msgid "Line Input # Statement [Runtime]" -msgstr "Line Input#-Anweisung [Laufzeit]" +msgstr "Line Input #-Anweisung [Laufzeit]" #: 03020203.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/scalc/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-19 11:04+0000\n" +"PO-Revision-Date: 2014-08-30 09:40+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408446246.000000\n" +"X-POOTLE-MTIME: 1409391653.000000\n" #: 01120000.xhp msgctxt "" @@ -940,7 +940,7 @@ "bm_id8473769\n" "help.text" msgid "filling;selection lists selection lists;filling cells" -msgstr "Ausfüllen;Auswahllisten Auswahllisten;Ausfüllen von Zellen" +msgstr "Ausfüllen; AuswahllistenAuswahllisten; Ausfüllen von Zellen" #: 02140000.xhp msgctxt "" @@ -2426,7 +2426,7 @@ "3\n" "help.text" msgid "You can also set the view of the column and row headers in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." -msgstr "Sie können auch die Ansicht der Spalten- und Zeilenköpfe in %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Ansicht einstellen." +msgstr "Sie können auch die Ansicht der Spalten- und Zeilenköpfe in %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Ansicht einstellen." #: 03080000.xhp msgctxt "" @@ -4611,7 +4611,7 @@ "188\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate to define how $[officename] Calc acts when searching for identical entries." -msgstr "Wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Berechnen um zu festzulegen, wie $[officename] Calc beim Suchen mit identischen Einträgen verfahren soll." +msgstr "Wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Berechnen um zu festzulegen, wie $[officename] Calc beim Suchen mit identischen Einträgen verfahren soll." #: 04060101.xhp msgctxt "" @@ -4645,7 +4645,7 @@ "89\n" "help.text" msgid "DCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values." -msgstr "DBANZAHL ermittelt in einer Datenbank die Anzahl der Zeilen (Datensätze), die mit den eingegebenen Suchkriterien übereinstimmen, die numerische Werte enthalten." +msgstr "DBANZAHL ermittelt in einer Datenbank die Anzahl der Zeilen (Datensätze), die mit den eingegebenen Suchkriterien übereinstimmen, die numerische Werte enthalten." #: 04060101.xhp msgctxt "" @@ -4734,7 +4734,7 @@ "98\n" "help.text" msgid "DCOUNTA counts the number of rows (records) in a database that match the specified search conditions, and contain numeric or alphanumeric values." -msgstr "DBANZAHL2 ermittelt in einer Datenbank die Anzahl der Zeilen (Datensätze), die mit den eingegebenen Suchkriterien übereinstimmen und die numerische oder alphanumerische Werte enthalten." +msgstr "DBANZAHL2 ermittelt in einer Datenbank die Anzahl der Zeilen (Datensätze), die mit den eingegebenen Suchkriterien übereinstimmen und die numerische oder alphanumerische Werte enthalten." #: 04060101.xhp msgctxt "" @@ -5718,7 +5718,7 @@ "par_id791039\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate to select the date base." -msgstr "Wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Berechnen , um die Basis des Datums festzulegen." +msgstr "Wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Berechnen, um die Basis des Datums festzulegen." #: 04060102.xhp msgctxt "" @@ -5743,7 +5743,7 @@ "183\n" "help.text" msgid "In %PRODUCTNAME - PreferencesTools - Options - $[officename] - General you find the area Year (two digits). This sets the period for which two-digit information applies. Note that changes made here have an effect on some of the following functions." -msgstr "In %PRODUCTNAME - EigenschaftenExtras - Optionen - $[officename] - Allgemein finden Sie den Bereich Zweistellige Jahreszahlen. Dieser setzt die Periode, für die zweistellige Jahreszahlen gültig sind. Beachten Sie, dass Änderungen die hier gemacht werden, einige der folgenden Funktion beeinflussen." +msgstr "In %PRODUCTNAME - EigenschaftenExtras - Optionen... - $[officename] - Allgemein finden Sie den Bereich Zweistellige Jahreszahlen. Dieser setzt die Periode, für die zweistellige Jahreszahlen gültig sind. Beachten Sie, dass Änderungen die hier gemacht werden, einige der folgenden Funktion beeinflussen." #: 04060102.xhp msgctxt "" @@ -13724,7 +13724,7 @@ "bm_id3155802\n" "help.text" msgid "COMBIN functionnumber of combinations" -msgstr "KOMBINATIONEN (Funktion)Anzahl an Kombinationen" +msgstr "KOMBINATIONEN (Funktion)Anzahl; an Kombinationen" #: 04060106.xhp msgctxt "" @@ -13820,7 +13820,7 @@ "bm_id3150284\n" "help.text" msgid "COMBINA functionnumber of combinations with repetitions" -msgstr "KOMBINATIONEN2 (Funktion)Anzahl an Kombinationen mit Wiederholungen" +msgstr "KOMBINATIONEN2 (Funktion)Anzahl; an Kombinationen mit Wiederholungen" #: 04060106.xhp msgctxt "" @@ -22176,7 +22176,7 @@ "80\n" "help.text" msgid "Returns the number of columns in the given reference." -msgstr "Gibt die Anzahl der Spalten in einem Bezug zurück." +msgstr "Gibt die Anzahl der Spalten in einem Bezug zurück." #: 04060109.xhp msgctxt "" @@ -22443,7 +22443,7 @@ "bm_id3148829\n" "help.text" msgid "number of sheets; function SHEETS function" -msgstr "Anzahl der Tabellenblätter (Funktion) TABELLEN (Funktion)" +msgstr "Anzahl; der Tabellenblätter (Funktion)TABELLEN (Funktion)" #: 04060109.xhp msgctxt "" @@ -22461,7 +22461,7 @@ "223\n" "help.text" msgid "Determines the number of sheets in a reference. If you do not enter any parameters, it returns the number of sheets in the current document." -msgstr "Bestimmt die Anzahl der Tabellen eines Bezugs. Wird kein Parameter angegeben, wird die Anzahl der Tabellen des aktuellen Dokuments zurückgegeben." +msgstr "Bestimmt die Anzahl der Tabellen eines Bezugs. Wird kein Parameter angegeben, wird die Anzahl der Tabellen des aktuellen Dokuments zurückgegeben." #: 04060109.xhp msgctxt "" @@ -23287,7 +23287,7 @@ "167\n" "help.text" msgid "Returns the number of rows in a reference or array." -msgstr "Gibt die Anzahl der Zeilen in einem Bezug zurück." +msgstr "Gibt die Anzahl der Zeilen in einem Bezug zurück." #: 04060109.xhp msgctxt "" @@ -26514,7 +26514,7 @@ "bm_id3154656\n" "help.text" msgid "YEARS functionnumber of years between two dates" -msgstr "JAHRE (Funktion)Anzahl an Jahren zwischen zwei Datumsangaben" +msgstr "JAHRE (Funktion)Anzahl; an Jahren zwischen zwei Datumsangaben" #: 04060111.xhp msgctxt "" @@ -26585,7 +26585,7 @@ "bm_id3152898\n" "help.text" msgid "MONTHS functionnumber of months between two dates" -msgstr "MONATE (Funktion)Anzahl an Monaten zwischen zwei Datumsangaben" +msgstr "MONATE (Funktion)Anzahl; an Monaten zwischen zwei Datumsangaben" #: 04060111.xhp msgctxt "" @@ -26709,7 +26709,7 @@ "bm_id3151300\n" "help.text" msgid "DAYSINYEAR functionnumber of days; in a specific year" -msgstr "TAGEIMJAHR (Funktion)Anzahl an Tagen;in einem bestimmten Jahr" +msgstr "TAGEIMJAHR (Funktion)Anzahl; an Tagen in einem bestimmten Jahr" #: 04060111.xhp msgctxt "" @@ -26780,7 +26780,7 @@ "bm_id3154737\n" "help.text" msgid "DAYSINMONTH functionnumber of days;in a specific month of a year" -msgstr "TAGEIMMONAT (Funktion)Anzahl an Tagen;in einem bestimmten Monat eines Jahres" +msgstr "TAGEIMMONAT (Funktion)Anzahl; an Tagen in einem bestimmten Monat eines Jahres" #: 04060111.xhp msgctxt "" @@ -26851,7 +26851,7 @@ "bm_id3149048\n" "help.text" msgid "WEEKS functionnumber of weeks;between two dates" -msgstr "WOCHEN (Funktion)Anzahl an Wochen;zwischen zwei Datumsangaben" +msgstr "WOCHEN (Funktion)Anzahl; an Wochen zwischen zwei Datumsangaben" #: 04060111.xhp msgctxt "" @@ -26922,7 +26922,7 @@ "bm_id3145237\n" "help.text" msgid "WEEKSINYEAR functionnumber of weeks;in a specific year" -msgstr "WOCHENIMJAHR (Funktion)Anzahl an Wochen;in einem bestimmten Jahr" +msgstr "WOCHENIMJAHR (Funktion)Anzahl; an Wochen in einem bestimmten Jahr" #: 04060111.xhp msgctxt "" @@ -34914,7 +34914,7 @@ "bm_id3156435\n" "help.text" msgid "calculating;number of payment periodspayment periods;number ofnumber of payment periodsNPER function" -msgstr "Berechnen; Anzahl der ZahlungsperiodenZahlungsperioden; Anzahl berechnenAnzahl der Zahlungsperioden berechnenZZR (Funktion)" +msgstr "Berechnen; Anzahl der ZahlungsperiodenZahlungsperioden; Anzahl berechnenAnzahl; der Zahlungsperioden berechnenZZR (Funktion)" #: 04060118.xhp msgctxt "" @@ -38297,7 +38297,7 @@ "bm_id3148437\n" "help.text" msgid "COUNT function numbers;counting" -msgstr "ANZAHL (Funktion) Zahlen;zählen" +msgstr "ANZAHL (Funktion)Zahlen; zählen" #: 04060181.xhp msgctxt "" @@ -38377,7 +38377,7 @@ "bm_id3149729\n" "help.text" msgid "COUNTA function number of entries" -msgstr "ANZAHL2 (Funktion) Anzahl von Einträgen" +msgstr "ANZAHL2 (Funktion)Anzahl; von Einträgen" #: 04060181.xhp msgctxt "" @@ -44758,7 +44758,7 @@ "bm_id3154599\n" "help.text" msgid "PERMUT function number of permutations" -msgstr "VARIATIONEN (Funktion) Anzahl an Variationen" +msgstr "VARIATIONEN (Funktion)Anzahl; an Variationen" #: 04060185.xhp msgctxt "" @@ -44776,7 +44776,7 @@ "145\n" "help.text" msgid "Returns the number of permutations for a given number of objects." -msgstr "Berechnet die Anzahl der Variationen für eine gegebene Menge von Objekten." +msgstr "Berechnet die Anzahl der Variationen für eine gegebene Menge von Objekten." #: 04060185.xhp msgctxt "" @@ -44856,7 +44856,7 @@ "154\n" "help.text" msgid "Returns the number of permutations for a given number of objects (repetition allowed)." -msgstr "Berechnet die Anzahl der Variationen von Elementen mit Wiederholung." +msgstr "Berechnet die Anzahl der Variationen von Elementen mit Wiederholung." #: 04060185.xhp msgctxt "" @@ -46965,7 +46965,7 @@ "4\n" "help.text" msgid "Sets additional spacing between the largest character in a row and the cell boundaries." -msgstr "Richtet zwischen dem größten Zeichen der Zeile und den Zellenrändern einen zusätzlichen Abstand ein." +msgstr "Richtet zwischen dem größten Zeichen der Zeile und den Zellenrändern einen zusätzlichen Abstand ein." #: 05030200.xhp msgctxt "" @@ -46983,7 +46983,7 @@ "6\n" "help.text" msgid "Restores the default value for the optimal row height." -msgstr "Stellt den Standardwert für die optimale Zeilenhöhe wieder her. Der zusätzliche Abstand für die optimale Zeilenhöhe wird auf 0,0 cm gesetzt." +msgstr "Stellt den Standardwert für die optimale Zeilenhöhe wieder her. Der zusätzliche Abstand für die optimale Zeilenhöhe wird auf 0,0 cm gesetzt." #: 05030300.xhp msgctxt "" @@ -47617,7 +47617,7 @@ "8\n" "help.text" msgid "Prints out the borders of the individual cells as a grid. For the view on screen, make your choice under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View - Grid lines." -msgstr "Druckt die Grenzen der einzelnen Zelle als Gitter aus. Für die Bildschirmansicht, legen Sie die Einstellung unter %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Ansicht - Fangraster benutzen fest." +msgstr "Druckt die Grenzen der einzelnen Zelle als Gitter aus. Für die Bildschirmansicht, legen Sie die Einstellung unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Ansicht - Fangraster benutzen fest." #: 05070500.xhp msgctxt "" @@ -48668,7 +48668,7 @@ "4\n" "help.text" msgid "Choose a predefined AutoFormat to apply to a selected area in your sheet." -msgstr "In diesem Bereich erhalten Sie eine Auflistung aller integrierten AutoFormate, aus denen Sie ein bestimmtes AutoFormat auswählen und dem markierten Tabellenbereich zuweisen können." +msgstr "In diesem Bereich erhalten Sie eine Auflistung aller integrierten AutoFormate, aus denen Sie ein bestimmtes AutoFormat auswählen und dem markierten Tabellenbereich zuweisen können." #: 05110000.xhp msgctxt "" @@ -48686,7 +48686,7 @@ "6\n" "help.text" msgid "Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats. The Add AutoFormat dialog then appears." -msgstr "Fügt die aktuelle Formatierung eines Bereichs von mindestens 4 x 4 Zellen in die Liste der vordefinierten AutoFormate ein. Dadurch wird der Dialog AutoFormat hinzufügen geöffnet." +msgstr "Fügt die aktuelle Formatierung eines Bereichs von mindestens 4 x 4 Zellen in die Liste der vordefinierten AutoFormate ein. Dadurch wird der Dialog AutoFormat hinzufügen geöffnet." #: 05110000.xhp msgctxt "" @@ -48731,7 +48731,7 @@ "12\n" "help.text" msgid "When marked, specifies that you want to retain the number format of the selected format." -msgstr "Ein Häkchen bedeutet, dass das Zahlenformat des ausgewählten Formats beibehalten wird." +msgstr "Ein Häkchen bedeutet, dass das Zahlenformat des ausgewählten Formats beibehalten wird." #: 05110000.xhp msgctxt "" @@ -48749,7 +48749,7 @@ "14\n" "help.text" msgid "When marked, specifies that you want to retain the border of the selected format." -msgstr "Ein Häkchen bedeutet, dass die Umrandung des ausgewählten Formats beibehalten wird." +msgstr "Ein Häkchen bedeutet, dass die Umrandung des ausgewählten Formats beibehalten wird." #: 05110000.xhp msgctxt "" @@ -48767,7 +48767,7 @@ "16\n" "help.text" msgid "When marked, specifies that you want to retain the font of the selected format." -msgstr "Ein Häkchen bedeutet, dass die Schriftart des ausgewählten Formats beibehalten wird." +msgstr "Ein Häkchen bedeutet, dass die Schriftart des ausgewählten Formats beibehalten wird." #: 05110000.xhp msgctxt "" @@ -48785,7 +48785,7 @@ "18\n" "help.text" msgid "When marked, specifies that you want to retain the pattern of the selected format." -msgstr "Ein Häkchen bedeutet, dass das Muster des ausgewählten Formats beibehalten wird." +msgstr "Ein Häkchen bedeutet, dass das Muster des ausgewählten Formats beibehalten wird." #: 05110000.xhp msgctxt "" @@ -48803,7 +48803,7 @@ "20\n" "help.text" msgid "When marked, specifies that you want to retain the alignment of the selected format." -msgstr "Ein Häkchen bedeutet, dass die Ausrichtung des ausgewählten Formats beibehalten wird." +msgstr "Ein Häkchen bedeutet, dass die Ausrichtung des ausgewählten Formats beibehalten wird." #: 05110000.xhp msgctxt "" @@ -48821,7 +48821,7 @@ "22\n" "help.text" msgid "When marked, specifies that you want to retain the width and height of the selected cells of the selected format." -msgstr "Ein Häkchen bedeutet, dass die Breite und die Höhe der ausgewählten Zellen und des ausgewählten Formats beibehalten werden." +msgstr "Ein Häkchen bedeutet, dass die Breite und die Höhe der ausgewählten Zellen und des ausgewählten Formats beibehalten werden." #: 05110000.xhp msgctxt "" @@ -48839,7 +48839,7 @@ "27\n" "help.text" msgid "Opens a dialog where you can change the specification of the selected AutoFormat. The button is only visible if you clicked the More button." -msgstr "Öffnet einen Dialog, in dem Sie das ausgewählte AutoFormat umbenennen können. Diese Schaltfläche wird erst sichtbar, wenn Sie auf Zusätze klicken." +msgstr "Öffnet einen Dialog, in dem Sie das ausgewählte AutoFormat umbenennen können. Diese Schaltfläche wird erst sichtbar, wenn Sie auf Zusätze klicken." #: 05110000.xhp msgctxt "" @@ -48848,7 +48848,7 @@ "28\n" "help.text" msgid "The Rename AutoFormat dialog opens. Enter the new name of the AutoFormat here." -msgstr "Der Dialog Autoformat umbenennen wird geöffnet. Geben Sie hier den neuen Namen für das AutoFormat ein." +msgstr "Der Dialog Autoformat umbenennen wird geöffnet. Geben Sie hier den neuen Namen für das AutoFormat ein." #: 05110000.xhp msgctxt "" @@ -50480,7 +50480,7 @@ "bm_id2486037\n" "help.text" msgid "entering entries with AutoInput functioncapital letters;AutoInput function" -msgstr "Einträge mit der AutoEingabe-Funktion eingebenGroßbuchstaben; AutoEingabe-Funktion" +msgstr "Einträge; mit der AutoEingabe-Funktion eingebenGroßbuchstaben; AutoEingabe-Funktion" #: 06130000.xhp msgctxt "" @@ -51069,7 +51069,7 @@ "8\n" "help.text" msgid "Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options. You define the default on %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." -msgstr "Sortiert die Auswahl vom größten zum kleinsten Wert. Die Sortierregeln werden durch die Spracheinstellung bestimmt. Sie können die Sortierregeln mit Daten - Sortieren - Optionen festlegen. Sie können den Standardwert mit %PRODUCTNAME - EigenschaftenExtras - Optionen - Spracheinstellungen - Sprachen ändern." +msgstr "Sortiert die Auswahl vom größten zum kleinsten Wert. Die Sortierregeln werden durch die Spracheinstellung bestimmt. Sie können die Sortierregeln mit Daten - Sortieren - Optionen festlegen. Sie können den Standardwert mit %PRODUCTNAME - EigenschaftenExtras - Optionen... - Spracheinstellungen - Sprachen ändern." #: 12030100.xhp msgctxt "" @@ -51123,7 +51123,7 @@ "14\n" "help.text" msgid "Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options. You define the default on %PRODUCTNAME - PreferencesTools - Options - Language settings - Languages." -msgstr "Sortiert die Auswahl vom größten zum kleinsten Wert. Die Sortierregeln werden durch die Spracheinstellung bestimmt. Sie können die Sortierregeln mit Daten - Sortieren - Optionen festlegen. Sie können den Standardwert mit %PRODUCTNAME - EigenschaftenExtras - Optionen - Spracheinstellungen - Sprachen ändern." +msgstr "Sortiert die Auswahl vom größten zum kleinsten Wert. Die Sortierregeln werden durch die Spracheinstellung bestimmt. Sie können die Sortierregeln mit Daten - Sortieren - Optionen festlegen. Sie können den Standardwert mit %PRODUCTNAME - EigenschaftenExtras - Optionen... - Spracheinstellungen - Sprachen ändern." #: 12030100.xhp msgctxt "" @@ -51141,7 +51141,7 @@ "22\n" "help.text" msgid "Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options. You define the default on %PRODUCTNAME - PreferencesTools - Options - Language settings - Languages." -msgstr "Sortiert die Auswahl vom größten zum kleinsten Wert oder vom kleinsten zum größten Wert. Zahlen werden nach der Größe und Textfelder nach der Buchstabenreihenfolge sortiert. Sie können die Sortierregeln unter Daten - Sortieren - Optionen festlegen. Sie können die Standardwerte unter %PRODUCTNAME - EigenschaftenExtras - Optionen - Spracheinstellungen - Sprachen ändern." +msgstr "Sortiert die Auswahl vom größten zum kleinsten Wert oder vom kleinsten zum größten Wert. Zahlen werden nach der Größe und Textfelder nach der Buchstabenreihenfolge sortiert. Sie können die Sortierregeln unter Daten - Sortieren - Optionen festlegen. Sie können die Standardwerte unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - Spracheinstellungen - Sprachen ändern." #: 12030100.xhp msgctxt "" @@ -51352,7 +51352,7 @@ "19\n" "help.text" msgid " Select the custom sort order that you want to apply. To define a custom sort order, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists ." -msgstr " Wählt die benutzerdefinierte Sortierregeln aus. Um eine benutzerdefinierte Sortierregel zu definieren, wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Sortierlisten ." +msgstr " Wählt die benutzerdefinierte Sortierregeln aus. Um eine benutzerdefinierte Sortierregel zu definieren, wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Sortierlisten ." #: 12030200.xhp msgctxt "" @@ -51548,7 +51548,7 @@ "2\n" "help.text" msgid "Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display." -msgstr "Filtert automatisch den markierten Zellbereich und fügt einzeilige Listenfelder ein, aus welchen Sie die anzuzeigenden Elemente auswählen können." +msgstr "Filtert automatisch den markierten Zellbereich und fügt einzeilige Listenfelder ein, aus welchen Sie die anzuzeigenden Elemente auswählen können." #: 12040100.xhp msgctxt "" @@ -53324,7 +53324,7 @@ "4\n" "help.text" msgid "You can only select databases that are registered in %PRODUCTNAME. To register a data source, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Databases." -msgstr "Sie können nur Datenbanken auswählen, die in %PRODUCTNAMEregistriert sind. Um eine Datenquelle zu registrieren, wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Base - Datenbanken." +msgstr "Sie können nur Datenbanken auswählen, die in %PRODUCTNAMEregistriert sind. Um eine Datenquelle zu registrieren, wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Base - Datenbanken." #: 12090101.xhp msgctxt "" @@ -55906,7 +55906,7 @@ "174\n" "help.text" msgid "In %PRODUCTNAME - PreferencesTools - Options - $[officename] - General you can set from which year a two-digit number entry is recognized as 20xx." -msgstr "Unter %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Allgemein, können Sie festlegen, für welche Jahre eine zweistellige Zahl als 20xx erkannt wird.." +msgstr "Unter %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Allgemein, können Sie festlegen, für welche Jahre eine zweistellige Zahl als 20xx erkannt wird.." #: func_date.xhp msgctxt "" @@ -57799,7 +57799,7 @@ "142\n" "help.text" msgid "These values apply only to the standard date format that you select under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate." -msgstr "Diese Werte werden nur auf das Standard Datumsformat angewendet, welches Sie unter %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Berechnen eingestellt haben." +msgstr "Diese Werte werden nur auf das Standard Datumsformat angewendet, welches Sie unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Berechnen eingestellt haben." #: func_weekday.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/scalc/02.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/scalc/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/scalc/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/scalc/02.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2013-06-04 20:55+0000\n" -"Last-Translator: Jochen \n" +"POT-Creation-Date: 2014-05-02 00:11+0200\n" +"PO-Revision-Date: 2014-08-27 13:07+0000\n" +"Last-Translator: Christian \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1370379302.0\n" +"X-POOTLE-MTIME: 1409144855.000000\n" #: 02130000.xhp msgctxt "" @@ -798,7 +798,7 @@ "par_id3155854\n" "help.text" msgid "Icon" -msgstr "Symbol" +msgstr "Symbol" #: 10050000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/scalc/05.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/scalc/05.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/scalc/05.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/scalc/05.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:11+0200\n" -"PO-Revision-Date: 2014-05-29 06:10+0000\n" +"PO-Revision-Date: 2014-08-27 06:46+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401343844.000000\n" +"X-POOTLE-MTIME: 1409121975.000000\n" #: 02140000.xhp msgctxt "" @@ -611,7 +611,7 @@ "71\n" "help.text" msgid "Formula refers directly or indirectly to itself and the Iterations option is not set under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate." -msgstr "Die Formel bezieht sich direkt oder indirekt auf sich selbst, und die Option Iterationen unter %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Berechnen ist nicht gesetzt." +msgstr "Die Formel bezieht sich direkt oder indirekt auf sich selbst, und die Option Iterationen unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Berechnen ist nicht gesetzt." #: 02140000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/scalc/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/scalc/guide.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-06-01 19:52+0000\n" -"Last-Translator: Thomas \n" +"PO-Revision-Date: 2014-08-30 09:41+0000\n" +"Last-Translator: Christian \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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401652359.000000\n" +"X-POOTLE-MTIME: 1409391692.000000\n" #: address_auto.xhp msgctxt "" @@ -74,7 +74,7 @@ "24\n" "help.text" msgid "This function is active by default. To turn this function off, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate and clear the Automatically find column and row labels check box." -msgstr "Diese Funktion ist standardmäßig eingeschalten. Um diese Funktion auszuschalten, wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Berechnen and deaktivieren Spalten-/Zeilenbeschriftung automatisch suchen." +msgstr "Diese Funktion ist standardmäßig eingeschalten. Um diese Funktion auszuschalten, wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Berechnen and deaktivieren Spalten-/Zeilenbeschriftung automatisch suchen." #: address_auto.xhp msgctxt "" @@ -83,7 +83,7 @@ "37\n" "help.text" msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, 'Harry\\'s Bar'." -msgstr "Damit Namen automatisch als Bezeichner erkannt werden, müssen sie aus alphanumerischen Zeichen bestehen, das erste Zeichen muss ein Buchstabe sein. Wollen Sie auch nicht-alphanumerische Zeichen verwenden, einschließlich Leerzeichen, so müssen Sie den Namen in einfache Anführungszeichen (') einschließen. Kommt im Namen ein einfaches Anführungszeichen vor, wie etwa in Jan '97, so muss vor diesem Zeichen ein Rückstrich (Jan \\'97) stehen. Diese Art der Referenzierung ist nicht abwärts kompatibel zu früheren Versionen von $[officename]." +msgstr "Damit Namen automatisch als Bezeichner erkannt werden, müssen sie aus alphanumerischen Zeichen bestehen, das erste Zeichen muss ein Buchstabe sein. Wollen Sie auch nicht-alphanumerische Zeichen verwenden, einschließlich Leerzeichen, so müssen Sie den Namen in einfache Anführungszeichen (') einschließen. Kommt im Namen ein einfaches Anführungszeichen vor, wie etwa in Jan '97, so muss vor diesem Zeichen ein Rückstrich (Jan \\'97) stehen. Diese Art der Referenzierung ist nicht abwärts kompatibel zu früheren Versionen von $[officename]." #: auto_off.xhp msgctxt "" @@ -99,7 +99,7 @@ "bm_id3149456\n" "help.text" msgid "deactivating; automatic changes tables; deactivating automatic changes in AutoInput function on/off text in cells;AutoInput function cells; AutoInput function of text input support in spreadsheets changing; input in cells AutoCorrect function;cell contents cell input;AutoInput function lowercase letters;AutoInput function (in cells) capital letters;AutoInput function (in cells) date formats;avoiding conversion to number completion on/off text completion on/off word completion on/off" -msgstr "Deaktivieren; automatische ÄnderungTabelle; automatische Änderung deaktivierenAutoEingabe-Funktion ein-/ausschaltenText in Zellen; AutoEingabe-FunktionZellen; AutoEingabe-Funktion für TextEingabehilfe in TabellendokumentenÄndern; Eingabe in ZellenAutoKorrektur-Funktion; ZellinhalteZelleingabe; AutoEingabe-FunktionKleinbuchstaben; AutoEingabe-Funktion (in Zellen)Großbuchstaben; AutoEingabe-Funktion (in Zellen)Datumsformate; Umwandlung unterbindenZahlenergänzung ein/ausTextergänzung ein/ausWortergänzung ein/aus" +msgstr "Deaktivieren; automatische ÄnderungTabelle; automatische Änderung deaktivierenAutoEingabe-Funktion; ein-/ausschaltenText in Zellen; AutoEingabe-FunktionZellen; AutoEingabe-Funktion für TextEingabehilfe in TabellendokumentenÄndern; Eingabe in ZellenAutoKorrektur-Funktion; ZellinhalteZelleingabe; AutoEingabe-FunktionKleinbuchstaben; AutoEingabe-Funktion (in Zellen)Großbuchstaben; AutoEingabe-Funktion (in Zellen)Datumsformate; Umwandlung unterbindenZahlenergänzung; ein-/ausschaltenTextergänzung; ein/ausschaltenWortergänzung; ein/ausschalten" #: auto_off.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 "Wählen Sie im Menü Daten - Filter - AutoFilter oder klicken Sie auf das Symbol AutoFilter in der Symbolleiste Extras. In der ersten Zeile des ausgewählten Bereichs sehen Sie die Kombinationsfeldpfeile." +msgstr "Wählen Sie im Menü Daten - Filter - AutoFilter. In der ersten Zeile des ausgewählten Bereichs sehen Sie die Kombinationsfeldpfeile." #: autofilter.xhp msgctxt "" @@ -348,7 +348,7 @@ "19\n" "help.text" msgid "To stop using AutoFilter, reselect all cells selected in step 1 and once again choose Data - Filter - AutoFilter." -msgstr "Indem Sie wieder alle in Schritt 1 ausgewählten Zellen auswählen und erneut im Menü Daten - Filter - AutoFilter aufrufen oder auf das Symbol AutoFilter in der Symbolleiste Extras klicken, beenden Sie die Funktion AutoFilter." +msgstr "Indem Sie wieder alle in Schritt 1 ausgewählten Zellen auswählen und erneut im Menü Daten - Filter - AutoFilter aufrufen, beenden Sie die Funktion AutoFilter." #: autofilter.xhp msgctxt "" @@ -399,7 +399,7 @@ "bm_id3155132\n" "help.text" msgid "tables; AutoFormat function defining;AutoFormat function for tables AutoFormat function formats; automatically formatting spreadsheets automatic formatting in spreadsheets sheets;AutoFormat function" -msgstr "Tabelle; AutoFormat-FunktionFestlegen; AutoFormat-Funktion für TabelleAutoFormat-Funktion; Formate festlegen und anwendenFormate; Tabellendokument automatisch formatierenAutomatische Formatierung in TabellendokumentTabellenblatt; AutoFormat-Funktion" +msgstr "Tabelle; AutoFormat-FunktionFestlegen; AutoFormat-Funktion für TabelleAutoFormat-Funktion; Formate festlegen und anwendenFormate; Tabellendokument automatisch formatierenAutomatische Formatierung; in TabellendokumentTabellenblatt; AutoFormat-Funktion" #: autoformat.xhp msgctxt "" @@ -1043,7 +1043,7 @@ "par_id6653340\n" "help.text" msgid "gray line for user defined border" -msgstr "graue Linie für eine benutzerdefinierte Umrandung" +msgstr "Graue Linie für eine benutzerdefinierte Umrandung" #: borders.xhp msgctxt "" @@ -1067,7 +1067,7 @@ "par_id52491\n" "help.text" msgid "white line for user defined border" -msgstr "weiße Linie für eine benutzerdefinierte Umrandung" +msgstr "Weiße Linie für eine benutzerdefinierte Umrandung" #: borders.xhp msgctxt "" @@ -1107,7 +1107,7 @@ "par_id5149693\n" "help.text" msgid "setting a thin lower border" -msgstr "Einstellen eines sehr dünnen unteren Rands" +msgstr "Einstellen eines sehr dünnen unteren Rands" #: borders.xhp msgctxt "" @@ -1123,7 +1123,7 @@ "par_id6342051\n" "help.text" msgid "setting a thick line as a border" -msgstr "Einstellen einer dicken Linie als Umrandung" +msgstr "Einstellen einer dicken Linie als Umrandung" #: borders.xhp msgctxt "" @@ -1370,7 +1370,7 @@ "18\n" "help.text" msgid "If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." -msgstr "Haben Sie zwei odere mehr benachbarte Zellen die verschiedene Zahlen enthalten markiert und ziehen diese auf, dann werden die übrigen Zellen mit dem arithmetischn Muster gefüllt, welches aus den Zahlen erkannt wird. Das automatische Füllen erkennt auch benutzerdefinierte Listen, welche Sie unter %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Sortierlisten definiert haben." +msgstr "Haben Sie zwei odere mehr benachbarte Zellen die verschiedene Zahlen enthalten markiert und ziehen diese auf, dann werden die übrigen Zellen mit dem arithmetischn Muster gefüllt, welches aus den Zahlen erkannt wird. Das automatische Füllen erkennt auch benutzerdefinierte Listen, welche Sie unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Sortierlisten definiert haben." #: calc_series.xhp msgctxt "" @@ -2009,7 +2009,7 @@ "bm_id3150440\n" "help.text" msgid "cells; copying/deleting/formatting/moving rows;visible and invisible copying; visible cells only formatting;visible cells only moving;visible cells only deleting;visible cells only invisible cells filters;copying visible cells only hidden cells" -msgstr "Zellen; kopieren/löschen/formatieren/verschiebenZeilen; sichtbar/unsichtbarKopieren; nur sichtbare ZellenFormatierung; nur sichtbare ZellenVerschieben; nur sichtbare ZellenLöschen; nur sichtbare ZellenUnsichtbare ZellenFilter; nur sichtbare Zellen kopierenAusgeblendete Zellen" +msgstr "Zellen; kopieren/löschen/formatieren/verschiebenZeilen; sichtbar/unsichtbarKopieren; nur sichtbare ZellenFormatierung; nur sichtbare ZellenVerschieben; nur sichtbare ZellenLöschen; nur sichtbare ZellenUnsichtbare ZellenFilter; nur sichtbare Zellen kopierenAusgeblendete Zellen; kopieren/verschieben" #: cellcopy.xhp msgctxt "" @@ -3481,7 +3481,7 @@ "20\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View" -msgstr "%PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Ansicht" +msgstr "%PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Ansicht" #: csv_files.xhp msgctxt "" @@ -3578,7 +3578,7 @@ "19\n" "help.text" msgid "If the csv file contains formulas, but you want to import the results of those formulas, then choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View and clear the Formulas check box." -msgstr "Wenn die CSV-Datei Formeln enthält, Sie aber nur die Ergebnisse der Berechnungen importieren möchten, wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Ansicht und deaktivieren das Markierfeld Formeln." +msgstr "Wenn die CSV-Datei Formeln enthält, Sie aber nur die Ergebnisse der Berechnungen importieren möchten, wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Ansicht und deaktivieren das Markierfeld Formeln." #: csv_formula.xhp msgctxt "" @@ -3614,7 +3614,7 @@ "6\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." -msgstr "Wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Ansicht." +msgstr "Wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Ansicht." #: csv_formula.xhp msgctxt "" @@ -3686,7 +3686,7 @@ "20\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View" -msgstr "%PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Ansicht" +msgstr "%PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Ansicht" #: csv_formula.xhp msgctxt "" @@ -3738,7 +3738,7 @@ "47\n" "help.text" msgid "In %PRODUCTNAME Calc you can give numbers any currency format. When you click the Currency icon Icon in the Formatting bar to format a number, the cell is given the default currency format set under %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." -msgstr "In %PRODUCTNAME Calc können Sie Zahlen beliebige Währumgsformate zuweisen. Wenn Sie auf das Symbol Währung Symbol in der Symbolleiste Format drücken, um die Zahl zu formatieren, bekommt die Zelle das Standard-Währungsformat, welches unter %PRODUCTNAME - EigenschaftenExtras - Optionen - Spracheinstellungen - Sprachen festgelegt ist." +msgstr "In %PRODUCTNAME Calc können Sie Zahlen beliebige Währumgsformate zuweisen. Wenn Sie auf das Symbol Währung Symbol in der Symbolleiste Format drücken, um die Zahl zu formatieren, bekommt die Zelle das Standard-Währungsformat, welches unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - Spracheinstellungen - Sprachen festgelegt ist." #: currency_format.xhp msgctxt "" @@ -4550,7 +4550,7 @@ "par_id0720201001344584\n" "help.text" msgid "To edit the custom sort lists, open %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." -msgstr "Wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Sortierlisten, um benutzerdefinierte Sortierlisten zu bearbeiten." +msgstr "Wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Sortierlisten, um benutzerdefinierte Sortierlisten zu bearbeiten." #: datapilot_filtertable.xhp msgctxt "" @@ -6128,7 +6128,7 @@ "6\n" "help.text" msgid "If you are editing a formula with references, the references and the associated cells will be highlighted with the same color. You can now resize the reference border using the mouse, and the reference in the formula displayed in the input line also changes. Show references in color can be deactivated under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." -msgstr "Wenn Sie Formeln bearbeiten, die Referenzen enthalten, werden die Referenzen und die entsprechenden Zellen in derselben Farbe hervorgehoben. Sie können nun den Referenzrahmen in der Tabelle mit der Maus auf eine andere Größe ziehen und beobachten, wie sich dadurch die Referenz in der Formel anpasst, die Sie in der Eingabezeile sehen. Die Option Referenzen farbig anzeigen kann unter %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Ansicht deaktiviert werden." +msgstr "Wenn Sie Formeln bearbeiten, die Referenzen enthalten, werden die Referenzen und die entsprechenden Zellen in derselben Farbe hervorgehoben. Sie können nun den Referenzrahmen in der Tabelle mit der Maus auf eine andere Größe ziehen und beobachten, wie sich dadurch die Referenz in der Formel anpasst, die Sie in der Eingabezeile sehen. Die Option Referenzen farbig anzeigen kann unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Ansicht deaktiviert werden." #: formula_enter.xhp msgctxt "" @@ -6198,7 +6198,7 @@ "3\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." -msgstr "Wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Ansicht." +msgstr "Wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Ansicht." #: formula_value.xhp msgctxt "" @@ -6225,7 +6225,7 @@ "6\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View" -msgstr "%PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Ansicht" +msgstr "%PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Ansicht" #: formulas.xhp msgctxt "" @@ -6898,7 +6898,7 @@ "tit\n" "help.text" msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)" -msgstr "Tastenkombinationen (%PRODUCTNAME Calc-Zugänglichkeit)" +msgstr "Tastenkombinationen (%PRODUCTNAME Calc Barrierefreiheit)" #: keyboard.xhp msgctxt "" @@ -6906,7 +6906,7 @@ "bm_id3145120\n" "help.text" msgid "accessibility; %PRODUCTNAME Calc shortcutsshortcut keys;%PRODUCTNAME Calc accessibility" -msgstr "Zugänglichkeit; Tastenkombinationen in %PRODUCTNAME CalcTastenkombinationen; Zugänglichkeit von %PRODUCTNAME Calc" +msgstr "Barrierefreiheit; Tastenkombinationen in %PRODUCTNAME CalcTastenkombinationen; Barrierefreiheit von %PRODUCTNAME Calc" #: keyboard.xhp msgctxt "" @@ -6915,7 +6915,7 @@ "1\n" "help.text" msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)" -msgstr "Tastenkombinationen (%PRODUCTNAME Calc - Zugänglichkeit)" +msgstr "Tastenkombinationen (%PRODUCTNAME Calc Barrierefreiheit)" #: keyboard.xhp msgctxt "" @@ -7321,7 +7321,7 @@ "bm_id3153361\n" "help.text" msgid "cells; selecting marking cells selecting;cells multiple cells selection selection modes in spreadsheets tables; selecting ranges" -msgstr "Zellen; auswählenZellen markierenAuswählen; ZellenMehrere Zellen auswählenAuswahlmodi in TabellendokumentenTabellen; Bereiche auswählen" +msgstr "Zellen; auswählenZellen; markierenAuswählen; ZellenMehrere Zellen; auswählenAuswahlmodi; TabellendokumenteTabellen; Bereiche auswählen" #: mark_cells.xhp msgctxt "" @@ -8468,7 +8468,7 @@ "38\n" "help.text" msgid "To show or hide the comment indicator, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View and mark or unmark the Comment indicator check box." -msgstr "Um den Kommentarindindikator anzuzeigen oder zu verbergen, wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Ansicht und setzen entsprechend das Markierfeld Kommentaranzeiger." +msgstr "Um den Kommentarindindikator anzuzeigen oder zu verbergen, wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Ansicht und setzen entsprechend das Markierfeld Kommentaranzeiger." #: note_insert.xhp msgctxt "" @@ -8811,7 +8811,7 @@ "13\n" "help.text" msgid "The command is not visible if the sheet was opened with write protection on. In that case, click the Edit File icon on the Standard Bar." -msgstr "Der Befehl ist nicht sichtbar, wenn die Tabelle schreibgeschützt geöffnet ist. Klicken Sie dann zuerst auf das Symbol Datei bearbeiten in der Funktionsleiste." +msgstr "Der Befehl ist nicht sichtbar, wenn die Tabelle schreibgeschützt geöffnet ist. Klicken Sie dann zuerst auf das Symbol Datei bearbeiten in der Symbolleiste Standard." #: print_details.xhp msgctxt "" @@ -9873,7 +9873,7 @@ "9\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc." -msgstr "Wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc." +msgstr "Wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc." #: rounding_numbers.xhp msgctxt "" @@ -9900,7 +9900,7 @@ "12\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc." -msgstr "Wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc." +msgstr "Wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc." #: rounding_numbers.xhp msgctxt "" @@ -11094,7 +11094,7 @@ "3\n" "help.text" msgid "Under the menu item %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc, go to the View tab page. Unmark Column/row headers. Confirm with OK." -msgstr "Wählen Sie unter %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc, das Register Ansicht. Deselektieren Sie Zeilen- und Spaltenköpfe auf und bestätigen mit OK." +msgstr "Wählen Sie unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc, das Register Ansicht. Deselektieren Sie Zeilen- und Spaltenköpfe auf und bestätigen mit OK." #: table_view.xhp msgctxt "" @@ -11112,7 +11112,7 @@ "5\n" "help.text" msgid "Under the menu item %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc, go to the View tab page. Unmark Grid lines. Confirm with OK." -msgstr "Gehen Sie im Menüentrag %PRODUCTNAME - VoreinstelleungenExtras - Optionen - %PRODUCTNAME Calc, zu dem Register View. Entfernen Sie den Haken bei Gitterlinien. Bestätigen Sie dies mit OK." +msgstr "Wählen Sie im Menü %PRODUCTNAME - VoreinstelleungenExtras - Optionen... - %PRODUCTNAME Calc - Ansicht. Entfernen Sie den Haken bei Gitterlinien. Bestätigen Sie dies mit OK." #: text_numbers.xhp msgctxt "" @@ -12231,7 +12231,7 @@ "19\n" "help.text" msgid "Under %PRODUCTNAME - PreferencesTools - Options - $[officename] - General you can define the century that is used when you enter a year with only two digits. The default is 1930 to 2029." -msgstr "Unter %PRODUCTNAME - EigenschaftenExtras - Optionen - $[officename] - Allgemein können Sie das zu verwendende Jahrhundert definieren, wenn sie nur 2 Ziffern eingeben. Standard ist 1930 bis 2029." +msgstr "Unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - $[officename] - Allgemein können Sie das zu verwendende Jahrhundert definieren, wenn sie nur 2 Ziffern eingeben. Standard ist 1930 bis 2029." #: year2000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/schart/00.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/schart/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/schart/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/schart/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-05-29 06:16+0000\n" +"PO-Revision-Date: 2014-08-27 13:29+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401344181.000000\n" +"X-POOTLE-MTIME: 1409146153.000000\n" #: 00000004.xhp msgctxt "" @@ -234,7 +234,7 @@ "66\n" "help.text" msgid "Choose Format - Format Selection - Data Series - Options tab (Charts)" -msgstr "Wählen Sie Format - Auswahl formatieren - Datenreihe - Optionen (Diagramme)" +msgstr "Wählen Sie im Menü Format - Auswahl formatieren... und im Dialog Datenreihe das Register Optionen (Diagramme)." #: 00000004.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/schart/01.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/schart/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/schart/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/schart/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-05-29 06:20+0000\n" +"PO-Revision-Date: 2014-08-27 13:36+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401344424.000000\n" +"X-POOTLE-MTIME: 1409146560.000000\n" #: 03010000.xhp msgctxt "" @@ -469,7 +469,7 @@ "9\n" "help.text" msgid "Positions the legend at the left of the chart." -msgstr "Wenn Sie diese Option wählen, sehen Sie die Legende links neben dem Diagramm." +msgstr "Wenn Sie diese Option wählen, ist die Legende links neben dem Diagramm zu sehen." #: 04020000.xhp msgctxt "" @@ -487,7 +487,7 @@ "11\n" "help.text" msgid "Positions the legend at the top of the chart." -msgstr "Wenn Wenn Sie diese Option wählen, ist die Legende oberhalb des Diagramms zu sehen." +msgstr "Wenn Sie diese Option wählen, ist die Legende oberhalb des Diagramms zu sehen." #: 04020000.xhp msgctxt "" @@ -505,7 +505,7 @@ "13\n" "help.text" msgid "Positions the legend at the right of the chart." -msgstr "Diese Option wählen Sie, wenn die Legende rechts neben dem Diagramm zu sehen sein soll." +msgstr "Wenn Sie diese Option wählen, ist die Legende rechts neben dem Diagramm zu sehen." #: 04020000.xhp msgctxt "" @@ -523,7 +523,7 @@ "15\n" "help.text" msgid "Positions the legend at the bottom of the chart." -msgstr "Diese Option wählen Sie, wenn die Legende unterhalb des Diagramms zu sehen sein soll." +msgstr "Wenn Sie diese Option wählen, ist die Legende unterhalb des Diagramms zu sehen." #: 04020000.xhp msgctxt "" @@ -539,7 +539,7 @@ "par_id1106200812072653\n" "help.text" msgid "This feature is only available if complex text layout support is enabled in %PRODUCTNAME - PreferencesTools - Options - Language settings - Languages." -msgstr "Diese Eigenschaft ist nur erreichbar, wenn die Unterstützung für komplexes Textlayout in %PRODUCTNAME - EigenschaftenWerkzeuge - Optionen -Spracheinstellungen - Sprachen aktiviert ist." +msgstr "Diese Eigenschaft ist nur erreichbar, wenn die Unterstützung für komplexes Textlayout in %PRODUCTNAME - EigenschaftenExtras - Optionen... - Spracheinstellungen - Sprachen aktiviert ist." #: 04020000.xhp msgctxt "" @@ -789,7 +789,7 @@ "bm_id3147428\n" "help.text" msgid "axes; showing axes in chartscharts; showing axesX axes; showingY axes; showingZ axes; showingaxes; better scalingsecondary axes in charts" -msgstr "Achsen; in Diagrammen einblendenDiagramm; Achsen einblendenx-Achse; einblendeny-Achse; einblendenz-Achse; einblendenAchse; FeinskalierungSekundäre Achse in Diagrammen" +msgstr "Achsen; in Diagrammen einblendenDiagramm; Achsen einblendenx-Achse; einblendeny-Achse; einblendenz-Achse; einblendenAchsen; FeinskalierungSekundäre Achse in Diagrammen" #: 04040000.xhp msgctxt "" @@ -1789,7 +1789,7 @@ "bm_id3149400\n" "help.text" msgid "aligning; 2D charts charts; aligning pie charts;options" -msgstr "Ausrichten; 2D-DiagrammDiagramme; ausrichten Kreisdiagramm; Optionen" +msgstr "Ausrichten; 2D-DiagrammDiagramme; ausrichtenKreisdiagramm; Optionen" #: 04060000.xhp msgctxt "" @@ -3154,7 +3154,7 @@ "8\n" "help.text" msgid "Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose Insert - Axes and select Y axis." -msgstr "Sie legen hier u.a. den Linienstil, die Schriftart und die Schreibrichtung der Achsenbeschriftung für die sekundäre Y-Achse fest, sofern Sie diese vorher unter Einfügen - Achsen... eingeschaltet haben." +msgstr "Sie legen hier u.a. den Linienstil, die Schriftart und die Schreibrichtung der Achsenbeschriftung für die sekundäre Y-Achse fest, sofern Sie diese vorher unter Einfügen - Achsen... aktiviert haben." #: 05040000.xhp msgctxt "" @@ -3801,7 +3801,7 @@ "bm_id3155602\n" "help.text" msgid "grids; formatting axesaxes; formatting grids" -msgstr "Tabellenraster; Achsen formatierenAchse; Gitterlinien formatieren" +msgstr "Tabellenraster; Achsen formatierenAchsen; Gitterlinien formatieren" #: 05050000.xhp msgctxt "" @@ -6218,7 +6218,7 @@ "par_id3341776\n" "help.text" msgid "Based on low, high, and close column Type 1 shows an additional horizontal mark for the closing price." -msgstr "Bei Typ 1 wird basierend auf den Spalten mit den Tiefst-, Höchst- und Schlusswerten der Schlusswert durch eine horizontale Linie dargestellt." +msgstr "Bei Typ 1 wird basierend auf den Spalten mit den Tiefst-, Höchst- und Schlusswerten der Schlusswert durch eine horizontale Linie dargestellt." #: type_stock.xhp msgctxt "" @@ -6698,7 +6698,7 @@ "par_id6571550\n" "help.text" msgid "Each data point is shown by an icon. %PRODUCTNAME uses default icons with different forms and colors for each data series. The default colors are set in %PRODUCTNAME - PreferencesTools - Options - Charts - Default Colors." -msgstr "Jeder Datenpunkt wird mit einem Symbol angezeigt. %PRODUCTNAME nutzt Standardsymbole mit verschiedenen Formen und Farben für die unterschiedlichen Datenreihen. Die Standardfarben werden in %PRODUCTNAME - EinstellungenWerkzeuge - Optionen - Diagramme - Standardfarben festgelegt." +msgstr "Jeder Datenpunkt wird mit einem Symbol angezeigt. %PRODUCTNAME nutzt Standardsymbole mit verschiedenen Formen und Farben für die unterschiedlichen Datenreihen. Die Standardfarben werden in %PRODUCTNAME - EinstellungenExtras - Optionen... - Diagramme - Standardfarben festgelegt." #: type_xy.xhp msgctxt "" @@ -7626,7 +7626,7 @@ "bm_id8641621\n" "help.text" msgid "order of chart datadata series" -msgstr "Anordnung von DiagrammdatenDatenreihen" +msgstr "Anordnen; DiagrammdatenDatenreihen" #: wiz_data_series.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/schart.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/schart.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/schart.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/schart.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2013-06-15 17:10+0000\n" +"POT-Creation-Date: 2014-05-02 00:14+0200\n" +"PO-Revision-Date: 2014-08-27 08:27+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1371316246.0\n" +"X-POOTLE-MTIME: 1409128055.000000\n" #: main0000.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3148664\n" "help.text" msgid "charts; overview HowTos for charts" -msgstr "Diagramme; ÜbersichtAnleitungen für Diagramme" +msgstr "Diagramme; ÜbersichtAnleitungen; Diagramme" #: main0000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/sdraw/guide.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/sdraw/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/sdraw/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/sdraw/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-02 17:27+0000\n" +"PO-Revision-Date: 2014-08-27 08:08+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401730025.000000\n" +"X-POOTLE-MTIME: 1409126882.000000\n" #: align_arrange.xhp msgctxt "" @@ -39,7 +39,7 @@ "bm_id3125863\n" "help.text" msgid "arranging; objects (guide)objects;aligningdistributing draw objectsaligning;draw objects" -msgstr "Anordnen; Objekte (Anleitung)Objekte;ausrichtenZeichenobjekte verteilenAusrichten;Zeichenobjekte" +msgstr "Anordnen; Objekte (Anleitung)Objekte; ausrichtenZeichenobjekte verteilenAusrichten; Zeichenobjekte" #: align_arrange.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 "Zugänglichkeit; %PRODUCTNAME DrawZeichenobjekte; TexteingabemodusTexteingabemodus für Zeichenobjekte" +msgstr "Barrierefreiheit; %PRODUCTNAME DrawZeichenobjekte; TexteingabemodusTexteingabemodus für Zeichenobjekte" #: keyboard.xhp msgctxt "" @@ -1863,7 +1863,7 @@ "1\n" "help.text" msgid "Shortcut Keys for Drawing Objects" -msgstr "Tastatursteuerung ($[officename] Draw Zugänglichkeit)" +msgstr "Tastatursteuerung ($[officename] Draw Barrierefreiheit)" #: keyboard.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/00.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-02 17:27+0000\n" +"PO-Revision-Date: 2014-08-30 08:57+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401730055.000000\n" +"X-POOTLE-MTIME: 1409389055.000000\n" #: 00000001.xhp msgctxt "" @@ -511,7 +511,7 @@ "55\n" "help.text" msgid "The search supports regular expressions. You can enter \"all.*\", for example to find the first location of \"all\" followed by any characters. If you want to search for a text that is also a regular expression, you must precede every character with a \\ character. You can switch the automatic evaluation of regular expression on and off in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate." -msgstr "Die Suche unterstützt reguläre Ausdrücke. Sie können zum Beispiel \"all.*\" eingeben, um die erste Stelle von \"all\", gefolgt von irgendein Zeichen, zu finden. Falls Sie nach Text suchen, der auch ein regulärer Ausdruck ist, müssen Sie jedem Zeichen ein \\-Zeichen voranstellen. Sie können die automatische Auswertung regulärer Ausdrücke in %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Calc - Berechnen ein und ausschalten." +msgstr "Die Suche unterstützt reguläre Ausdrücke. Sie können zum Beispiel \"all.*\" eingeben, um die erste Stelle von \"all\", gefolgt von irgendein Zeichen, zu finden. Falls Sie nach Text suchen, der auch ein regulärer Ausdruck ist, müssen Sie jedem Zeichen ein \\-Zeichen voranstellen. Sie können die automatische Auswertung regulärer Ausdrücke in %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Calc - Berechnen ein und ausschalten." #: 00000001.xhp msgctxt "" @@ -3412,7 +3412,7 @@ "224\n" "help.text" msgid "If, in %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility, the export option \"$[officename] Writer\" or \"Internet Explorer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the

    and
      tags. The property indicates the difference relative to the indent of the next higher level." -msgstr "Wenn in %PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - HTML-Kompatibilität die Exportoption \"$[officename] Writer\" oder \"Internet Explorer\" ausgewählt wurde, werden die Einzüge der Nummerierung als CSS1-Eigenschaft \"margin-left\" in das style-Attribut der
        - und
          -Markierungen exportiert. Diese Eigenschaft gibt die Differenz zum Einzug der nächsthöheren Ebene relativ an." +msgstr "Wenn in %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - HTML-Kompatibilität die Exportoption \"$[officename] Writer\" oder \"Internet Explorer\" ausgewählt wurde, werden die Einzüge der Nummerierung als CSS1-Eigenschaft \"margin-left\" in das style-Attribut der
            - und
              -Markierungen exportiert. Diese Eigenschaft gibt die Differenz zum Einzug der nächsthöheren Ebene relativ an." #: 00000020.xhp msgctxt "" @@ -8547,7 +8547,7 @@ "16\n" "help.text" msgid "Choose Tools - Customize - Menu tab" -msgstr "Wählen Sie im Menü Extras - Anpassen und wechseln Sie in das Register Menüs" +msgstr "Wählen Sie im Menü Extras - Anpassen... und wechseln Sie in das Register Menüs" #: 00000406.xhp msgctxt "" @@ -8555,7 +8555,7 @@ "par_idN108E9\n" "help.text" msgid "Choose Tools - Customize - Menu tab, click New" -msgstr "Wählen Sie im Menü Extras - Anpassen und wechseln Sie in das Register Menüs. Dort klicken Sie auf Neu..." +msgstr "Wählen Sie im Menü Extras - Anpassen... und wechseln Sie in das Register Menüs. Dort klicken Sie auf Neu..." #: 00000406.xhp msgctxt "" @@ -8563,7 +8563,7 @@ "par_idN10919\n" "help.text" msgid "Choose Tools - Customize - Menu tab, click Menu - Move" -msgstr "Wählen Sie im Menü Extras - Anpassen und wechseln Sie in das Register Menüs. Dort klicken Sie auf Menü - Verschieben" +msgstr "Wählen Sie im Menü Extras - Anpassen... und wechseln Sie in das Register Menüs. Dort klicken Sie auf Menü - Verschieben" #: 00000406.xhp msgctxt "" @@ -8572,7 +8572,7 @@ "129\n" "help.text" msgid "Choose Tools - Customize - Keyboard tab (a document must be opened)" -msgstr "Wählen Sie im Menü Extras - Anpassen und wechseln sie in das Register Tastatur (Ein Dokument muss geöffnet sein)" +msgstr "Wählen Sie im Menü Extras - Anpassen... und wechseln sie in das Register Tastatur (Ein Dokument muss geöffnet sein)" #: 00000406.xhp msgctxt "" @@ -8581,7 +8581,7 @@ "19\n" "help.text" msgid "Choose Tools - Customize - Toolbars tab" -msgstr "Wählen Sie im Menü Extras - Anpassen und wechseln Sie in das Register Symbolleisten" +msgstr "Wählen Sie im Menü Extras - Anpassen... und wechseln Sie in das Register Symbolleisten" #: 00000406.xhp msgctxt "" @@ -8590,7 +8590,7 @@ "22\n" "help.text" msgid "Choose Tools - Customize - Events tab" -msgstr "Wählen Sie im Menü Extras - Anpassen und wechseln Sie in das Register Ereignisse" +msgstr "Wählen Sie im Menü Extras - Anpassen... und wechseln Sie in das Register Ereignisse" #: 00000406.xhp msgctxt "" @@ -8883,7 +8883,7 @@ "152\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Accessibility" -msgstr "Wählen Sie im Menü %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Zugänglichkeit" +msgstr "Wählen Sie im Menü %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Barrierefreiheit" #: 00000406.xhp msgctxt "" @@ -9585,7 +9585,7 @@ "6\n" "help.text" msgid "Path selection button in various Wizards / Edit Buttons for some entries in %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths" -msgstr "Pfadauswahlschaltfläche in diversen Assistenten / Schaltfläche Bearbeiten für einige Einträge in %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Pfade" +msgstr "Pfadauswahlschaltfläche in diversen Assistenten / Schaltfläche Bearbeiten für einige Einträge in %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Pfade" #: 00000450.xhp msgctxt "" @@ -10716,7 +10716,7 @@ "par_id0611200904324832\n" "help.text" msgid "Choose Format - Bullets and Numbering - Image tab" -msgstr "Wählen Sie im Menü Format - Aufzählungszeichen und Nummerierung... und das Register Bild" +msgstr "Wählen Sie im Menü Format - Aufzählungszeichen und Nummerierung... und das Register Bild" #: 00040500.xhp msgctxt "" @@ -13593,7 +13593,7 @@ "31\n" "help.text" msgid "Copies the link at the mouse pointer to the clipboard." -msgstr "Kopiert den Link unter dem Mauszeiger in die Zwischenablage." +msgstr "Kopiert den Link unter dem Mauszeiger in die Zwischenablage." #: 01020000.xhp msgctxt "" @@ -13602,7 +13602,7 @@ "37\n" "help.text" msgid "Copies a selected graphic to the clipboard." -msgstr "Kopiert eine ausgewählte Grafik in die Zwischenablage." +msgstr "Kopiert eine ausgewählte Grafik in die Zwischenablage." #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/01.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-25 17:39+0200\n" -"PO-Revision-Date: 2014-06-10 09:21+0000\n" +"PO-Revision-Date: 2014-09-03 16:10+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402392084.000000\n" +"X-POOTLE-MTIME: 1409760649.000000\n" #: 01010000.xhp msgctxt "" @@ -823,7 +823,7 @@ "98\n" "help.text" msgid "To add another folder to the template path, choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths, and then enter the path." -msgstr "Um ein anderes Verzeichnis zum Vorlagenpfad hinzuzufügen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Pfade und geben Sie dann den Pfad ein." +msgstr "Um ein anderes Verzeichnis zum Vorlagenpfad hinzuzufügen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Pfade und geben Sie dann den Pfad ein." #: 01010100.xhp msgctxt "" @@ -927,7 +927,7 @@ "3\n" "help.text" msgid "Inscription" -msgstr "Aufschrift" +msgstr "Beschriftung" #: 01010201.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 "Geben Sie hier die Beschriftung ein, die auf allen Etiketten erscheinen soll." +msgstr "Geben oder fügen Sie hier den Text ein, der auf allen Etiketten erscheinen soll." #: 01010201.xhp msgctxt "" @@ -945,7 +945,7 @@ "5\n" "help.text" msgid "Label text" -msgstr "Aufschrift" +msgstr "Beschriftungstext" #: 01010201.xhp msgctxt "" @@ -981,7 +981,7 @@ "9\n" "help.text" msgid "To change your return address, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME, and then click on the User Data tab." -msgstr "Um Ihre Absenderadresse zu ändern, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME und dann das Register Benutzerdaten." +msgstr "Um Ihre Absenderadresse zu ändern, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME und dann das Register Benutzerdaten." #: 01010201.xhp msgctxt "" @@ -1071,7 +1071,7 @@ "19\n" "help.text" msgid "Continuous" -msgstr "Endlos" +msgstr "Fortlaufend" #: 01010201.xhp msgctxt "" @@ -1089,7 +1089,7 @@ "21\n" "help.text" msgid "Sheet" -msgstr "Bogen" +msgstr "Blatt" #: 01010201.xhp msgctxt "" @@ -1187,7 +1187,7 @@ "3\n" "help.text" msgid "Horizontal pitch" -msgstr "Horiz. Abstand" +msgstr "Horizontaler Abstand" #: 01010202.xhp msgctxt "" @@ -1205,7 +1205,7 @@ "5\n" "help.text" msgid "Vertical pitch" -msgstr "Vert. Abstand" +msgstr "Vertikaler Abstand" #: 01010202.xhp msgctxt "" @@ -1259,7 +1259,7 @@ "11\n" "help.text" msgid "Left margin" -msgstr "Rand vor Text" +msgstr "Linker Rand" #: 01010202.xhp msgctxt "" @@ -1277,7 +1277,7 @@ "13\n" "help.text" msgid "Upper margin" -msgstr "Rand oben" +msgstr "Oberer Rand" #: 01010202.xhp msgctxt "" @@ -1402,7 +1402,7 @@ "1\n" "help.text" msgid "Options" -msgstr "Zusätze" +msgstr "Optionen" #: 01010203.xhp msgctxt "" @@ -1465,7 +1465,7 @@ "8\n" "help.text" msgid "Enter the number of labels or business cards that you want to have in a row on your page." -msgstr "Geben Sie an, wie viele Etiketten oder Visitenkarten eine Zeile auf der Seite enthalten soll." +msgstr "Geben Sie an, in der wievielten Spalte das Etiketten oder die Visitenkarten auf der Seite erscheinen soll." #: 01010203.xhp msgctxt "" @@ -1483,7 +1483,7 @@ "10\n" "help.text" msgid "Enter the number of rows of labels or business cards that you want to have on your page." -msgstr "Geben Sie an, wie viele Zeilen von Etiketten oder Visitenkarten die Seite umfassen soll." +msgstr "Geben Sie an, in der wievielten Zeile das Etiketten oder die Visitenkarten auf der Seite erscheinen soll." #: 01010203.xhp msgctxt "" @@ -1519,7 +1519,7 @@ "17\n" "help.text" msgid "The Synchronize labels button only appears in your document if you selected the Synchronize contents on the Options tab when you created the labels or business cards." -msgstr "Die Schaltfläche Etiketten synchronisieren ist nur dann im Dokument sichtbar, wenn Sie beim Erstellen der Etiketten oder Visitenkarten die Option Inhalte synchronisieren im Register Zusätze ausgewählt haben." +msgstr "Die Schaltfläche Etiketten synchronisieren ist nur dann im Dokument sichtbar, wenn Sie beim Erstellen der Etiketten oder Visitenkarten die Option Inhalte synchronisieren im Register Optionen ausgewählt haben." #: 01010203.xhp msgctxt "" @@ -1839,7 +1839,7 @@ "4\n" "help.text" msgid "Enter the contact information that you want to include on your business card. You can also modify or update these entries by choosing %PRODUCTNAME - PreferencesTools - Options - $[officename] - User Data." -msgstr "Geben Sie die Kontaktinformationen ein, die Sie auf der geschäftlichen Visitenkarte anzeigen möchten. Sie können diese Einträge unter %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Benutzerdaten ändern oder aktualisieren." +msgstr "Geben Sie die Kontaktinformationen ein, die Sie auf der geschäftlichen Visitenkarte anzeigen möchten. Sie können diese Einträge unter %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Benutzerdaten ändern oder aktualisieren." #: 01010303.xhp msgctxt "" @@ -2502,7 +2502,7 @@ "122\n" "help.text" msgid "all template folders as defined in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths" -msgstr "alle Vorlagenverzeichnisse, wie sie in %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Pfade definiert sind," +msgstr "alle Vorlagenverzeichnisse, wie sie in %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Pfade definiert sind," #: 01020000.xhp msgctxt "" @@ -3618,7 +3618,7 @@ "34\n" "help.text" msgid "Saves the user's full name with the file. You can edit the name by choosing %PRODUCTNAME - PreferencesTools - Options - $[officename] - User Data." -msgstr "Speichert den vollen Namen des Benutzers mit der Datei. Sie können den Namen unter %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Benutzerdaten bearbeiten." +msgstr "Speichert den vollen Namen des Benutzers mit der Datei. Sie können den Namen unter %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Benutzerdaten bearbeiten." #: 01100200.xhp msgctxt "" @@ -3730,7 +3730,7 @@ "bm_id1472518\n" "help.text" msgid "number of pagesdocuments;number of pages/tables/sheetsnumber of tablesnumber of sheetscells;number ofpictures;number ofOLE objects;number of" -msgstr "Anzahl an SeitenDokumente;Anzahl der Seiten/Tabellen/TabellendokumenteAnzahl an TabellenAnzahl an TabellendokumentenZellen;AnzahlBilder;AnzahlOLE-Objekte;Anzahl" +msgstr "Anzahl; an SeitenDokumente; Anzahl der Seiten/Tabellen/TabellendokumenteAnzahl; an TabellenAnzahl; an TabellendokumentenZellen; AnzahlBilder; AnzahlOLE-Objekte; Anzahl" #: 01100400.xhp msgctxt "" @@ -4386,7 +4386,7 @@ "bm_id3154621\n" "help.text" msgid "printing; documentsdocuments; printingtext documents; printingspreadsheets; printingpresentations; print menudrawings; printingchoosing printersprinters; choosingprint area selectionselecting; print areaspages; selecting one to printprinting; selectionsprinting; copiescopies; printingspoolfiles with Xprinter" -msgstr "Drucken; DokumenteDokumente; druckenTextdokumente; druckenTabellendokumente; druckenPräsentationen; DruckmenüZeichnungen; druckenAuswählen des DruckersDrucker; auswählenDruckbereichauswahlAuswählen; DruckbereicheSeite; zum Drucken wählenDrucken; AuswahlDrucken; KopienKopien; druckenSpoolfiles mit XPrinter" +msgstr "Drucken; DokumenteDokumente; druckenTextdokumente; druckenTabellendokumente; druckenPräsentationen; DruckmenüZeichnungen; druckenAuswählen; DruckerDrucker; auswählenDruckbereichauswahlAuswählen; DruckbereicheSeite; zum Drucken wählenDrucken; AuswahlDrucken; KopienKopien; druckenSpoolfiles mit XPrinter" #: 01130000.xhp msgctxt "" @@ -4460,7 +4460,7 @@ "par_id0818200912284952\n" "help.text" msgid "The settings that you define in the Print dialog are valid only for the current print job that you start by clicking the Print button. If you want to change some options permanently, open Tools - Options - %PRODUCTNAME (application name) - Print." -msgstr "Die Einstellungen, die Sie im Druckdialog definieren, gelten nur für den aktuellen Druckauftrag, den Sie durch das Klicken auf die Drucken-Schaltfläche gestartet haben. Falls Sie einige Optionen permanent ändern wollen, wählen Sie Extras - Optionen - %PRODUCTNAME (Applikationsname) - Drucken." +msgstr "Die Einstellungen, die Sie im Druckdialog definieren, gelten nur für den aktuellen Druckauftrag, den Sie durch das Klicken auf die Schaltfläche Drucken gestartet haben. Falls Sie einige Optionen dauerhaft ändern wollen, wählen Sie Extras - Optionen... - %PRODUCTNAME (Modulname) - Drucken." #: 01130000.xhp msgctxt "" @@ -4469,7 +4469,7 @@ "41\n" "help.text" msgid "To set the default %PRODUCTNAME printer options for text documents, choose Tools - Options - %PRODUCTNAME Writer - Print." -msgstr "Zum Einrichten der standardmäßigen Druckereinstellungen von %PRODUCTNAME für Textdokumente wählen Sie Extras - Optionen - %PRODUCTNAME Writer - Drucken. " +msgstr "Zum Einrichten der standardmäßigen Druckereinstellungen von %PRODUCTNAME für Textdokumente wählen Sie Extras - Optionen... - %PRODUCTNAME Writer - Drucken." #: 01130000.xhp msgctxt "" @@ -4477,7 +4477,7 @@ "par_idN1099E\n" "help.text" msgid "To set the default %PRODUCTNAME printer options for spreadsheet documents, choose Tools - Options - %PRODUCTNAME Calc - Print." -msgstr "Zum Einstellen der standardmäßigen %PRODUCTNAME-Druckeroptionen für Tabellendokumente wählen Sie Extras - Optionen - %PRODUCTNAME Calc - Drucken. " +msgstr "Zum Einstellen der standardmäßigen %PRODUCTNAME-Druckeroptionen für Tabellendokumente wählen Sie Extras - Optionen... - %PRODUCTNAME Calc - Drucken." #: 01130000.xhp msgctxt "" @@ -4485,7 +4485,7 @@ "par_idN109CD\n" "help.text" msgid "To set the default %PRODUCTNAMEprinter options for presentation documents, choose Tools - Options - %PRODUCTNAME Impress - Print." -msgstr "Zum Einstellen der standardmäßigen %PRODUCTNAME-Druckeroptionen für Präsentationsdokumente wählen Sie Extras - Optionen - %PRODUCTNAME Impress - Drucken. " +msgstr "Zum Einstellen der standardmäßigen %PRODUCTNAME-Druckeroptionen für Präsentationsdokumente wählen Sie Extras - Optionen... - %PRODUCTNAME Impress - Drucken." #: 01130000.xhp msgctxt "" @@ -5450,7 +5450,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 "Öffnet ein neues Fenster in Ihren Standard-e-Mailprogramm mit dem aktuellen Dokument als Anhang. Das aktuelle Dateiformat wird benutzt. Falls das Dokument neu und ungespeichert ist, wird das Format benutzt, das unter %PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - Allgemein festgelegt ist." +msgstr "Öffnet ein neues Fenster in Ihren Standard-e-Mailprogramm mit dem aktuellen Dokument als Anhang. Das aktuelle Dateiformat wird benutzt. Falls das Dokument neu und ungespeichert ist, wird das Format benutzt, das unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - Allgemein festgelegt ist." #: 01160200.xhp msgctxt "" @@ -5907,7 +5907,7 @@ "2\n" "help.text" msgid "Reverses the last command or the last entry you typed. To select the command that you want to reverse, click the arrow next to the Undo icon on the Standard bar." -msgstr "Macht den letzten Befehl oder die letzte Eingabe rückgängig. Sie können gezielt angeben, welcher Befehl aufzuheben ist. Hierzu klicken Sie in der Standardleiste auf das Symbol Rückgängig. Unter Extras - Optionen - $[officename] - Arbeitsspeicher können Sie einen neuen Wert in das Feld Anzahl der Schritte eingeben und somit die Anzahl der Befehle ändern, die sich rückgängig machen lassen." +msgstr "Macht den letzten Befehl oder die letzte Eingabe rückgängig. Sie können gezielt angeben, welcher Befehl aufzuheben ist. Hierzu klicken Sie in der Standardleiste auf das Symbol Rückgängig. Unter Extras - Optionen... - $[officename] - Arbeitsspeicher können Sie einen neuen Wert in das Feld Anzahl der Schritte eingeben und somit die Anzahl der Befehle ändern, die sich rückgängig machen lassen." #: 02010000.xhp msgctxt "" @@ -5915,7 +5915,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 "Um die Anzahl der Befehle zu ändern, die Sie rückgängig machen können, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Speicher und geben einen neuen Wert in das Feld Anzahl der Schritte ein." +msgstr "Um die Anzahl der Befehle zu ändern, die Sie rückgängig machen können, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Speicher und geben einen neuen Wert in das Feld Anzahl der Schritte ein." #: 02010000.xhp msgctxt "" @@ -6080,7 +6080,7 @@ "2\n" "help.text" msgid "Removes and copies the selection to the clipboard." -msgstr "Entfernt die Auswahl und kopiert sie in die Zwischenablage." +msgstr "Entfernt die Auswahl und kopiert sie in die Zwischenablage." #: 02050000.xhp msgctxt "" @@ -6148,7 +6148,7 @@ "bm_id3149031\n" "help.text" msgid "pasting;cell rangesclipboard; pastingcells;pasting" -msgstr "Einfügen;ZellbereicheZwischenablage; einfügenZellen;einfügen" +msgstr "Einfügen; ZellbereicheZwischenablage; einfügenZellen; einfügen" #: 02060000.xhp msgctxt "" @@ -6552,7 +6552,7 @@ "56\n" "help.text" msgid "Sets the paste options for the clipboard contents. " -msgstr "Legen Sie die Optionen zum Einfügen des Inhalts der Zwischenablage fest. " +msgstr "Legen Sie die Optionen zum Einfügen des Inhalts der Zwischenablage fest." #: 02070000.xhp msgctxt "" @@ -7436,7 +7436,7 @@ "bm_id3146765\n" "help.text" msgid "regular expressions; list of lists;regular expressions replacing;tab stops (regular expressions) tab stops;regular expressions concatenation, see ampersand symbol ampersand symbol, see also operators" -msgstr "Reguläre Ausdrücke; Liste von Listen; reguläre Ausdrücke Ersetzen; Tabulatoren (reguläre Ausdrücke) Tabulatoren; reguläre Ausdrücke Verkettung, siehe kaufmännisches Und Kaufmännisches Und, siehe auch Operatoren" +msgstr "Reguläre Ausdrücke; Liste vonListen; reguläre AusdrückeErsetzen; Tabulatoren (reguläre Ausdrücke)Tabulatoren; reguläre AusdrückeVerkettung, siehe kaufmännisches UndKaufmännisches Und, siehe auch Operatoren" #: 02100001.xhp msgctxt "" @@ -11505,7 +11505,7 @@ "7\n" "help.text" msgid "You can change the display properties of the markup elements by choosing %PRODUCTNAME Writer - Changes in the Options dialog box.%PRODUCTNAME Calc - Changes in the Options dialog box." -msgstr "Die Anzeigeeigenschaften der Markierungselemente können geändert werden. Wählen Sie hierzu %PRODUCTNAME Writer - Änderungen.%PRODUCTNAME Calc - Änderungen im Optionsdialog." +msgstr "Die Anzeigeeigenschaften der Markierungselemente können geändert werden. Wählen Sie hierzu %PRODUCTNAME Writer - Änderungen.%PRODUCTNAME Calc - Änderungen im Dialog Optionen." #: 02230200.xhp msgctxt "" @@ -13104,7 +13104,7 @@ "2\n" "help.text" msgid "Shows or hides the Tools bar." -msgstr "Blendet die Symbolleiste ein oder aus. Die Symbole und Optionen in der Symbolleiste ändern sich in Abhängigkeit von den ausgewählten Objekten oder der geöffneten Anwendung. Wenn nicht alle verfügbaren Symbole und Optionen sichtbar sind, klicken Sie auf den Pfeil am Ende der Symbolleiste." +msgstr "Blendet die Symbolleiste ein oder aus. Die Symbole und Optionen in der Symbolleiste ändern sich in Abhängigkeit von den ausgewählten Objekten oder der geöffneten Anwendung. Wenn nicht alle verfügbaren Symbole und Optionen sichtbar sind, klicken Sie auf den Pfeil am Ende der Symbolleiste." #: 03060000.xhp msgctxt "" @@ -13482,7 +13482,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 "Die Kommentare unterschiedlicher Autoren bekommen unterschiedliche Farben. Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Benutzerdaten, um Ihren Namen einzugeben, so dass er in Kommentaren angezeigt werden kann." +msgstr "Die Kommentare unterschiedlicher Autoren bekommen unterschiedliche Farben. Wählen Sie im Menü %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Benutzerdaten, um Ihren Namen einzugeben, damit er in Kommentaren angezeigt werden kann." #: 04050000.xhp msgctxt "" @@ -13610,7 +13610,7 @@ "par_id2254402\n" "help.text" msgid "To change the printing option for comments for all your text documents, choose Tools - Options - %PRODUCTNAME Writer - Print." -msgstr "Um die Druckoption für Kommentare all Ihrer Textdokumente zu ändern, wählen Sie Extras - Optionen - %PRODUCTNAME Writer - Drucken." +msgstr "Um die Druckoption für Kommentare all Ihrer Textdokumente zu ändern, wählen Sie Extras - Optionen... - %PRODUCTNAME Writer - Drucken." #: 04050000.xhp msgctxt "" @@ -14117,7 +14117,7 @@ "19\n" "help.text" msgid "To speed up the display of the document, OLE objects are kept in the program cache. If you want to change the cache settings, choose Tools - Options - $[officename] - Memory." -msgstr "Zur Beschleunigung des Dokumentaufbaus werden OLE-Objekte im Programm-Cache aufbewahrt. Die Cache-Einstellungen können Sie unter Extras - Optionen - $[officename] - Arbeitsspeicher ändern." +msgstr "Zur Beschleunigung des Dokumentaufbaus werden OLE-Objekte im Programm-Cache aufbewahrt. Die Cache-Einstellungen können Sie unter Extras - Optionen... - $[officename] - Arbeitsspeicher ändern." #: 04150100.xhp msgctxt "" @@ -14998,7 +14998,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 "Die Textfarbe wird auf dem Bildschirm ignoriert, falls Systemschriftfarbe für Bildschirmdarstellung unter %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Zugänglichkeit ausgewählt wurde." +msgstr "Die Textfarbe wird auf dem Bildschirm ignoriert, falls Systemschriftfarbe für Bildschirmdarstellung unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Barrierefreiheit ausgewählt wurde." #: 05020200.xhp msgctxt "" @@ -15184,7 +15184,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 "Versteckt die ausgewählten Zeichen. Zur Anzeige des versteckten Texts stellen Sie sicher, dass Steuerzeichen im Menü Ansicht ausgewählt ist. Sie können auch %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Formatierungshilfen wählen und dann die Option Ausgeblendeter Text aktivieren." +msgstr "Versteckt die ausgewählten Zeichen. Zur Anzeige des versteckten Texts stellen Sie sicher, dass Steuerzeichen im Menü Ansicht ausgewählt ist. Sie können auch %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Formatierungshilfen wählen und dann die Option Ausgeblendeter Text aktivieren." #: 05020200.xhp msgctxt "" @@ -17209,7 +17209,7 @@ "137\n" "help.text" msgid "All date formats are dependent on the locale that is set in %PRODUCTNAME - PreferencesTools - Options - Language settings - Languages. For example, if your locale is set to 'Japanese', then the Gengou calendar is used. The default date format in %PRODUCTNAME uses the Gregorian Calendar." -msgstr "Alle Datumsformate hängen von der Sprache ab, die Sie in %PRODUCTNAME - EinstellungenExtras - Optionen - Spracheinstellungen - Sprachen eingestellt haben. Falls Ihre Sprache zum Beispiel auf 'Japanisch' gesetzt ist, dann wird der Gengou-Kalender benutzt. Das Standarddatumsformat in %PRODUCTNAME benutzt den Gregorianischen Kalender." +msgstr "Alle Datumsformate hängen von der Sprache ab, die Sie in %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Sprachen eingestellt haben. Falls Ihre Sprache zum Beispiel auf 'Japanisch' gesetzt ist, dann wird der Gengou-Kalender benutzt. Das Standarddatumsformat in %PRODUCTNAME benutzt den Gregorianischen Kalender." #: 05020301.xhp msgctxt "" @@ -19087,7 +19087,7 @@ "10\n" "help.text" msgid "Prevents the characters in the list from starting or ending a line. The characters are relocated to either the previous or the next line. To edit the list of restricted characters, choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Asian Layout." -msgstr "Verhindert, dass die Zeichen in der Liste eine Zeile beginnen oder beenden. Die Zeichen werden entweder in die vorherige oder die nächsten Zeile verschoben. Zum Bearbeiten der Liste der verbotenen Zeichen wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - Spracheinstellungen - Asiatisches Layout." +msgstr "Verhindert, dass die Zeichen in der Liste eine Zeile beginnen oder beenden. Die Zeichen werden entweder in die vorherige oder die nächsten Zeile verschoben. Zum Bearbeiten der Liste der verbotenen Zeichen wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Asiatisches Layout." #: 05020700.xhp msgctxt "" @@ -19182,7 +19182,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 "Abstand; zwischen Absätzen in FußnotenFußnotenabstandZeilenabstand; AbsatzAbstand; Zeilen und AbsätzeEinzeiliger Abstand im TextEineinhalbzeiliger Abstand im TextZweizeiliger Abstand in AbsätzenDurchschuss zwischen Absätzen" +msgstr "Abstände; zwischen Absätzen in FußnotenFußnotenabstandZeilenabstand; AbsatzAbstände; Zeilen und AbsätzeEinzeiliger Abstand im TextEineinhalbzeiliger Abstand im TextZweizeiliger Abstand in AbsätzenDurchschuss zwischen Absätzen" #: 05030100.xhp msgctxt "" @@ -19209,7 +19209,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 "Um die verwendeten Maßeinheiten in diesem Dialog zu ändern, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Allgemein und dann eine neue Maßeinheit im Bereich Einstellungen." +msgstr "Um die verwendeten Maßeinheiten in diesem Dialog zu ändern, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Allgemein und dann eine neue Maßeinheit im Bereich Einstellungen." #: 05030100.xhp msgctxt "" @@ -20654,7 +20654,7 @@ "bm_id3150008\n" "help.text" msgid "aligning; paragraphsparagraphs; alignmentlines of text; alignmentleft alignment of paragraphsright alignment of paragraphscentered textjustifying text" -msgstr "Ausrichten; AbsätzeAbsätze; AusrichtungTextzeilen; AusrichtungAbsätze links ausrichtenAbsätze rechts ausrichtenZentrierter TextText im Blocksatz ausrichten" +msgstr "Ausrichten; AbsätzeAbsätze; AusrichtungTextzeilen; AusrichtungAbsätze; links ausrichtenAbsätze; rechts ausrichtenZentrierter TextText im Blocksatz ausrichten" #: 05030700.xhp msgctxt "" @@ -21181,7 +21181,7 @@ "2\n" "help.text" msgid "Set the options for the selected style." -msgstr "Legen Sie die Optionen für die ausgewählte Formatvorlage fest." +msgstr "Legen Sie die Optionen für die ausgewählte Formatvorlage fest." #: 05040100.xhp msgctxt "" @@ -21322,7 +21322,7 @@ "par_idN10731\n" "help.text" msgid "Opens the Tools - Customize - Keyboard tab page where you can assign a shortcut key to the current Style." -msgstr "Öffnet das Register Extras - Anpassen- Tastatur. Hier können Sie der aktuellen Vorlage eine Tastenkombination zuweisen." +msgstr "Öffnet das Register Extras - Anpassen... - Tastatur. Hier können Sie der aktuellen Vorlage eine Tastenkombination zuweisen." #: 05040100.xhp msgctxt "" @@ -27861,7 +27861,7 @@ "bm_id3149038\n" "help.text" msgid "legends; draw objectsdraw objects; legendslabels;for draw objectslabels, see also names/calloutscaptions, see also labels/calloutsnames, see also labels/callouts" -msgstr "Legenden; ZeichenobjekteZeichenobjekte; LegendenBeschriftungen;für ZeichenobjekteBeschriftungen, siehe auch Namen/LegendenTitel, siehe auch Beschriftungen/LegendenNamen, siehe auch Beschriftungen/Legenden" +msgstr "Legenden; ZeichenobjekteZeichenobjekte; LegendenBeschriftungen; für ZeichenobjekteBeschriftungen, siehe auch Namen/LegendenTitel, siehe auch Beschriftungen/LegendenNamen, siehe auch Beschriftungen/Legenden" #: 05230500.xhp msgctxt "" @@ -27887,7 +27887,7 @@ "par_id368358\n" "help.text" msgid "These callouts are a legacy of the first versions of %PRODUCTNAME. You must customize a toolbar or menu to insert these callouts. The newer custom shape callouts offer more features, for example a Callouts toolbar Icon where you can select the shape." -msgstr "Diese Legenden wurden aus den ersten Versionen von %PRODUCTNAME übernommen. Zum Einfügen dieser Legenden müssen Sie eine Symbolleiste oder ein Menü anpassen. Die neuen Legenden mit benutzerdefinierten Formen bieten mehr Funktionen, so z. B. eine Legenden-Symbolleiste Symbol, in der Sie die Form auswählen können." +msgstr "Diese Legenden wurden aus den ersten Versionen von %PRODUCTNAME übernommen. Zum Einfügen dieser Legenden müssen Sie eine Symbolleiste oder ein Menü anpassen. Die neuen Legenden mit benutzerdefinierten Formen bieten mehr Funktionen, so z.B. eine Legenden-Symbolleiste Symbol, in der Sie die Form auswählen können." #: 05230500.xhp msgctxt "" @@ -31400,7 +31400,7 @@ "9\n" "help.text" msgid "Enter the number of horizontal segments to use in the selected 3D rotation object." -msgstr "Geben Sie hier die Anzahl der horizontalen Segmente für den ausgewählten 3D-Rotationskörper an." +msgstr "Geben Sie hier die Anzahl der horizontalen Segmente für den ausgewählten 3D-Rotationskörper an." #: 05350200.xhp msgctxt "" @@ -31418,7 +31418,7 @@ "11\n" "help.text" msgid "Enter the number of vertical segments to use in the selected 3D rotation object" -msgstr "Geben Sie hier die Anzahl der vertikalen Segmente für den ausgewählten 3D-Rotationskörper an." +msgstr "Geben Sie hier die Anzahl der vertikalen Segmente für den ausgewählten 3D-Rotationskörper an." #: 05350200.xhp msgctxt "" @@ -33457,7 +33457,7 @@ "par_idN10557\n" "help.text" msgid "Converts the selected Chinese text from one Chinese writing system to the other. If no text is selected, the entire document is converted. You can only use this command if you enable Asian language support in Tools - Options - Language Settings - Languages." -msgstr "Konvertiert den markierten chinesischen Text aus dem einen chinesischen Schriftzeichensystem in das andere. Ist kein Text markiert, wird das gesamte Dokument konvertiert. Dieser Befehl kann nur verwendet werden, wenn unter Extras - Optionen - Spracheinstellungen - Sprachen die Unterstützung für asiatische Sprachen aktiviert ist." +msgstr "Konvertiert den markierten chinesischen Text aus dem einen chinesischen Schriftzeichensystem in das andere. Ist kein Text markiert, wird das gesamte Dokument konvertiert. Dieser Befehl kann nur verwendet werden, wenn unter Extras - Optionen... - Spracheinstellungen - Sprachen die Unterstützung für asiatische Sprachen aktiviert ist." #: 06010600.xhp msgctxt "" @@ -34157,7 +34157,7 @@ "bm_id3155620\n" "help.text" msgid "AutoCorrect function; options replacement options words; automatically replacing abbreviation replacement capital letters; AutoCorrect function bold; AutoFormat function underlining; AutoFormat function spaces; ignoring double numbering; using automatically paragraphs; numbering automatically tables in text; creating automatically titles; formatting automatically empty paragraph removal paragraphs; removing blank ones styles; replacing automatically user-defined styles; automatically replacing bullets; replacing paragraphs; joining joining; paragraphs" -msgstr "AutoKorrektur-Funktion; OptionenErsetzungsoptionenWörter; automatisch ersetzenAbkürzungen ersetzenGroßbuchstaben; AutoKorrektur-FunktionFett; AutoKorrektur-FunktionUnterstreichen; AutoKorrektur-Funktion1/2-ErsetzungLeerzeichen; doppelte ignorierenNummerierung; automatischeAbsätze; automatisch nummerierenNummerierung; AbsätzeTabellen in Text; automatisch erzeugenÜberschriften; automatisch formatierenLeere Absätze löschenAbsätze; leere Absätze automatisch entfernenFormatvorlagen; automatisch ersetzenBenutzervorlagen; automatisch ersetzenAufzählungszeichen; ersetzenAnführungszeichen; ersetzenTypografische Anführungszeichen in $[officename] WriterAbsätze; zusammenfassenZusammenfassen; Absätze" +msgstr "AutoKorrektur-Funktion; OptionenErsetzungsoptionenWörter; automatisch ersetzenAbkürzungen; ersetzenGroßbuchstaben; AutoKorrektur-FunktionFett; AutoKorrektur-FunktionUnterstreichen; AutoKorrektur-Funktion1/2-ErsetzungLeerzeichen; doppelte ignorierenNummerierung; automatischeAbsätze; automatisch nummerierenNummerierung; AbsätzeTabellen in Text; automatisch erzeugenÜberschriften; automatisch formatierenLeere Absätze; automatisch löschenAbsätze; leere Absätze automatisch entfernenFormatvorlagen; automatisch ersetzenBenutzervorlagen; automatisch ersetzenAufzählungszeichen; automatisch ersetzenAnführungszeichen; automatisch ersetzenTypografische Anführungszeichen; in $[officename] WriterAbsätze; zusammenfassenZusammenfassen; Absätze" #: 06040100.xhp msgctxt "" @@ -34863,7 +34863,7 @@ "17\n" "help.text" msgid "To enable the replacement table, choose Tools - AutoCorrect Options, click the Options tab, and then select Use replacement table. To use the replacement table while you type, choose Format - AutoCorrect - While Typing. " -msgstr "Sie aktivieren die Ersetzungstabelle, indem Sie Extras - AutoKorrektur-Optionen wählen, auf das Register Optionen klicken und dort Ersetzungstabelle anwenden auswählen. Wählen Sie Format - AutoKorrektur - Während der Eingabe, damit die Ersetzungstabelle beim Schreiben des Textes angewendet wird. " +msgstr "Sie aktivieren die Ersetzungstabelle, indem Sie Extras - AutoKorrektur-Optionen... wählen, auf das Register Optionen klicken und dort Ersetzungstabelle anwenden auswählen. Wählen Sie Format - AutoKorrektur - Während der Eingabe, damit die Ersetzungstabelle beim Schreiben des Textes angewendet wird. " #: 06040200.xhp msgctxt "" @@ -35114,7 +35114,7 @@ "11\n" "help.text" msgid "Automatically adds abbreviations or words that start with two capital letters to the corresponding list of exceptions. This feature only works if the Correct TWo INitial CApitals option or the Capitalize first letter of every sentence option are selected in the [T] column onOptions tab of this dialog. " -msgstr "Kürzel oder Wörter, die mit zwei Großbuchstaben beginnen, werden automatisch in die entsprechende Ausnahmenliste übertragen. In Verbindung mit dieser Funktion müssen die Optionen ZWei GRoßbuchstaben am WOrtanfang korrigieren oder Jeden Satz mit einem Großbuchstaben beginnen in der Spalte [E] des Registers Optionen in diesem Dialog aktiviert sein." +msgstr "Kürzel oder Wörter, die mit zwei Großbuchstaben beginnen, werden automatisch in die entsprechende Ausnahmenliste übertragen. In Verbindung mit dieser Funktion müssen die Optionen ZWei GRoßbuchstaben am WOrtanfang korrigieren oder Jeden Satz mit einem Großbuchstaben beginnen in der Spalte [E] des Registers Optionen in diesem Dialog aktiviert sein." #: 06040400.xhp msgctxt "" @@ -35130,7 +35130,7 @@ "bm_id3153899\n" "help.text" msgid "quotes; customcustom quotesAutoCorrect function; quotesreplacing;ordinal numbersordinal numbers;replacing" -msgstr "Anführungszeichen; typografischTypografische AnführungszeichenAutoKorrektur-Funktion; AnführungszeichenErsetzung;OrdinalzahlOrdinalzahl;Ersetzung" +msgstr "Anführungszeichen; typografischTypografische AnführungszeichenAutoKorrektur-Funktion; AnführungszeichenErsetzung; OrdinalzahlOrdinalzahl; Ersetzung" #: 06040400.xhp msgctxt "" @@ -35406,7 +35406,7 @@ "13\n" "help.text" msgid "To always replace the highlighted word, click a word in the list. The word pair is stored in the replacement table under Tools - AutoCorrect Options - Replace." -msgstr "Zum permanenten Ersetzen des hervorgehobenen Worts klicken Sie auf das gewünschte Wort in der Liste. Das Wortpaar wird in der Ersetzungstabelle unter \"Extras - AutoKorrektur-Optionen - Ersetzen\" gespeichert." +msgstr "Zum permanenten Ersetzen des hervorgehobenen Worts klicken Sie auf das gewünschte Wort in der Liste. Das Wortpaar wird in der Ersetzungstabelle unter \"Extras - AutoKorrektur-Optionen... - Ersetzen\" gespeichert." #: 06040500.xhp msgctxt "" @@ -36082,7 +36082,7 @@ "bm_id4096499\n" "help.text" msgid "numbering;options bullet lists; formatting options font sizes;bullets" -msgstr "Nummerierung;Optionen Aufzählungen; Formatierungsoptionen Schriftgröße;Aufzählungszeichen" +msgstr "Nummerierung; OptionenAufzählungen; FormatierungsoptionenSchriftgröße; Aufzählungszeichen" #: 06050500.xhp msgctxt "" @@ -37641,7 +37641,7 @@ "1\n" "help.text" msgid "Records a new macro. Only available, if macro recording feature is enabled in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced." -msgstr "Nimmt ein neues Makro auf. Nur verfügbar, wenn die Funktion \"Aufnahme eines Makros\" in %PRODUCTNAME - VoreinstellungenExtras - Optionen - %PRODUCTNAME - Erweitert aktiviert ist." +msgstr "Nimmt ein neues Makro auf. Nur verfügbar, wenn die Funktion \"Aufnahme eines Makros\" in %PRODUCTNAME - VoreinstellungenExtras - Optionen... - %PRODUCTNAME - Erweitert aktiviert ist." #: 06130010.xhp msgctxt "" @@ -38002,7 +38002,7 @@ "bm_id900601\n" "help.text" msgid "editing;menuscustomizing;menusmenus;customizing" -msgstr "Bearbeiten;MenüsAnpassen;MenüsMenüs;anpassen" +msgstr "Bearbeiten; MenüsAnpassen; MenüsMenüs; anpassen" #: 06140100.xhp msgctxt "" @@ -38534,7 +38534,7 @@ "bm_id2322763\n" "help.text" msgid "keyboard;assigning/editing shortcut keyscustomizing;keyboardediting;shortcut keysstyles;keyboard shortcuts" -msgstr "Tastatur;Tastenkombinationen zuweisen/bearbeitenAnpassen;TastaturBearbeiten;TastenkombinationenVorlagen;Tastenkombinationen" +msgstr "Tastatur; Tastenkombinationen zuweisen/bearbeitenAnpassen; TastaturBearbeiten; TastenkombinationenVorlagen; Tastenkombinationen" #: 06140200.xhp msgctxt "" @@ -39982,7 +39982,7 @@ "19\n" "help.text" msgid "The path to the directory that contains the template must be included in %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths. When you open an XML file whose filter uses the template, the template opens first. In the template, you can map $[officename] styles to display XML tags in the XML document." -msgstr "Der Pfad zum Verzeichnis der Vorlage, muss in %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Pfadeenthalten sein. Wenn Sie eine XML-Datei öffnen, deren Filter die Vorlage benutzt, öffnet sich zuerst die Dokumentvorlage. In der Vorlage können Sie $[officename]-formatvorlagen zur Anzeige der XML-Tags im XML-Dokument zuweisen." +msgstr "Der Pfad zum Verzeichnis der Vorlage, muss in %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Pfadeenthalten sein. Wenn Sie eine XML-Datei öffnen, deren Filter die Vorlage benutzt, öffnet sich zuerst die Dokumentvorlage. In der Vorlage können Sie $[officename]-formatvorlagen zur Anzeige der XML-Tags im XML-Dokument zuweisen." #: 06150200.xhp msgctxt "" @@ -40292,7 +40292,7 @@ "2\n" "help.text" msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul. The menu command can only be called if you enable Asian language support under %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages, and if a text formatted in Korean language is selected." -msgstr "Konvertiert den ausgewählten koreanischen Text von Hangul nach Hanja oder von Hanja nach Hangul. Der Menübefehl kann nur aufgerufen werden, falls Sie die asiatische Sprachunterstützung unter %PRODUCTNAME - EinstellungenExtras - Optionen - Spracheinstellungen - Sprachen aktiviert haben und falls ein Text, der in der koreanischen Sprache formatiert wurde, ausgewählt wurde." +msgstr "Konvertiert den ausgewählten koreanischen Text von Hangul nach Hanja oder von Hanja nach Hangul. Der Menübefehl kann nur aufgerufen werden, falls Sie die asiatische Sprachunterstützung unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Sprachen aktiviert haben und falls ein Text, der in der koreanischen Sprache formatiert wurde, ausgewählt wurde." #: 06200000.xhp msgctxt "" @@ -41272,7 +41272,7 @@ "14\n" "help.text" msgid "To set the options for importing HTML tags, choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility. A known META tag contains either \"HTTP-EQUIV\" or \"NAME\", and are imported as $[officename] comments. The only exception is , which is ignored." -msgstr "Um die Optionen für den Import der HTML-Tags zu setzen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - HTML-Kompatibilität. Ein bekanntes META-Tag enthält entweder \"HTTP-EQUIV\" oder \"NAME\" und wird als $[officename]-Kommentare importiert. Die einzige Ausnahme ist , welches ignoriert wird." +msgstr "Um die Optionen für den Import der HTML-Tags zu setzen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - HTML-Kompatibilität. Ein bekanntes META-Tag enthält entweder \"HTTP-EQUIV\" oder \"NAME\" und wird als $[officename]-Kommentare importiert. Die einzige Ausnahme ist , welches ignoriert wird." #: about_meta_tags.xhp msgctxt "" @@ -42107,7 +42107,7 @@ "par_id4372692\n" "help.text" msgid "Set the grid color on %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Appearance." -msgstr "Stellen Sie die Rasterfarbe unter %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Darstellung ein." +msgstr "Stellen Sie die Rasterfarbe unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Darstellung ein." #: guides.xhp msgctxt "" @@ -42556,7 +42556,7 @@ "bm_id7647328\n" "help.text" msgid "updates;checking manually online updates;checking manually" -msgstr "Aktualisierung; manuell suchen Online-Updates; manuell suchen" +msgstr "Updates; manuell suchenOnline-Updates; manuell suchen" #: online_update.xhp msgctxt "" @@ -42612,7 +42612,7 @@ "par_id702230\n" "help.text" msgid "You can disable or enable the automatic check in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Online Update." -msgstr "Sie können die automatische Prüfung in %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Online Update aktivieren oder deaktivieren." +msgstr "Sie können die automatische Prüfung in %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Online Update aktivieren oder deaktivieren." #: online_update.xhp msgctxt "" @@ -42644,7 +42644,7 @@ "par_id6479384\n" "help.text" msgid "If you need a proxy server, enter the proxy settings in %PRODUCTNAME - PreferencesTools - Options - Internet - Proxy." -msgstr "Falls Sie einen Proxyserver benötigen, geben Sie die Proxyeinstellungen in %PRODUCTNAME - EinstellungenExtras - Optionen - Internet - Proxy ein." +msgstr "Falls Sie einen Proxyserver benötigen, geben Sie die Proxyeinstellungen in %PRODUCTNAME - EinstellungenExtras - Optionen... - Internet - Proxy ein." #: online_update.xhp msgctxt "" @@ -42756,7 +42756,7 @@ "par_id1502121\n" "help.text" msgid "By default, downloads will be stored to your desktop. You can change the folder where the downloaded file will be stored in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Online Update." -msgstr "Standardmäßig werden Downloads auf Ihre Arbeitsfläche gespeichert. Sie können das Verzeichnis, in das die heruntergeladene Datei gespeichert wird, unter %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Online Update ändern." +msgstr "Standardmäßig werden Downloads auf Ihre Arbeitsfläche gespeichert. Sie können das Verzeichnis, in das die heruntergeladene Datei gespeichert wird, unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Online Update ändern." #: online_update_dialog.xhp msgctxt "" @@ -43052,7 +43052,7 @@ "par_idN106AD\n" "help.text" msgid "Select the extension that you want to remove, enable, or disable. For some extensions, you can also open an Options dialog." -msgstr "Wählen Sie die Extension aus, die Sie entfernen, aktivieren oder deaktivieren möchten. Für einige Extensions ist ein Optionen-Dialog verfügbar." +msgstr "Wählen Sie die Extension aus, die Sie entfernen, aktivieren oder deaktivieren möchten. Für einige Extensions ist ein Dialog Optionen verfügbar." #: packagemanager.xhp msgctxt "" @@ -44843,7 +44843,7 @@ "par_id9186681\n" "help.text" msgid "The HTML formatted copy is written to the temporary files folder that you can select in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths. When you quit %PRODUCTNAME, the HTML file will be deleted." -msgstr "Die HTML-formatierte Kopie wird in das temporäre Dateienverzeichnis geschrieben, das Sie in %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Pfade auswählen können. Wenn Sie %PRODUCTNAME beenden, wird die HTML-Datei gelöscht." +msgstr "Die HTML-formatierte Kopie wird in das temporäre Dateienverzeichnis geschrieben, das Sie in %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Pfade auswählen können. Wenn Sie %PRODUCTNAME beenden, wird die HTML-Datei gelöscht." #: webhtml.xhp msgctxt "" @@ -44851,7 +44851,7 @@ "par_id5871150\n" "help.text" msgid "You can set the HTML export filter options by choosing %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility." -msgstr "Sie können die Optionen des HTML-Exportfilters unter %PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - HTML-Kompatibilität einstellen." +msgstr "Sie können die Optionen des HTML-Exportfilters unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - HTML-Kompatibilität einstellen." #: xformsdata.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/02.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/02.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:08+0200\n" -"PO-Revision-Date: 2013-11-23 07:10+0000\n" +"PO-Revision-Date: 2014-08-30 09:13+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385190658.0\n" +"X-POOTLE-MTIME: 1409389988.000000\n" #: 01110000.xhp msgctxt "" @@ -622,7 +622,7 @@ "bm_id3154142\n" "help.text" msgid "form controls;toolbarsinserting; form fieldsform fieldscommand button creationbuttons; form functionscontrols; insertingpush buttons;creatingradio button creationcheck box creationlabels; form functionsfixed text; form functionstext boxes;form functionslist box creationpicklist creationdrop-down lists in form functionscombo box creationselecting;controlscontrols; select mode" -msgstr "Formular-Steuerelemente; SymbolleistenEinfügen; FormularfelderFormularfelderBefehlsschaltfläche erstellenSchaltflächen; FormularfunktionenKontrollfelder; einfügenSchaltflächen;erstellenOptionsfelder erstellenMarkierfelder erstellenBeschriftungsfelder; FormularfunktionenFester Text; FormularfunktionenTextfelder; FormularfunktionenListenfelder erstellenAuswahllisten erstellenKombinationsfelder in FormularfunktionenKombinationsfelder erstellenAuswählen; KontrollfelderKontrollfelder; Auswahlmodus" +msgstr "Formular-Steuerelemente; SymbolleistenEinfügen; FormularfelderFormularfelderBefehlsschaltfläche; erstellenSchaltflächen; FormularfunktionenKontrollfelder; einfügenSchaltflächen; erstellenOptionsfelder; erstellenMarkierfelder; erstellenBeschriftungsfelder; FormularfunktionenFester Text; FormularfunktionenTextfelder; FormularfunktionenListenfelder; erstellenAuswahllisten; erstellenKombinationsfelder; in FormularfunktionenKombinationsfelder; erstellenAuswählen; KontrollfelderKontrollfelder; Auswahlmodus" #: 01170000.xhp msgctxt "" @@ -709,7 +709,7 @@ "47\n" "help.text" msgid "%PRODUCTNAME only exports the form properties that are supported by the HTML version that you export to. To specify the HTML version, choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility." -msgstr "%PRODUCTNAME exportiert nur Formulareigenschaften, die von der gewählten HTML-Version unterstützt werden. Sie wählen die HTML-Version für den Export unter %PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - HTML Kompatibilität." +msgstr "%PRODUCTNAME exportiert nur Formulareigenschaften, die von der gewählten HTML-Version unterstützt werden. Sie wählen die HTML-Version für den Export unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - HTML Kompatibilität." #: 01170000.xhp msgctxt "" @@ -2186,7 +2186,7 @@ "75\n" "help.text" msgid "When you enter a year using two digits, the corresponding four digit value is determined by a setting in %PRODUCTNAME - PreferencesTools - Options - $[officename] - General. For example, if 1935 is set as the lower limiting value and you enter 34 as a date value, then the result is 2034 instead of 1934." -msgstr "Welcher vierstelligen Jahreszahl eine mit zwei Stellen eingegebene Jahreszahl entspricht, ist durch eine Einstellung unter %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Allgemein geregelt. Wenn beispielsweise 1935 als unterer Grenzwert festgelegt ist und Sie 34 als Datumswert eingeben, lautet das Ergebnis nicht 1934, sondern 2034." +msgstr "Welcher vierstelligen Jahreszahl eine mit zwei Stellen eingegebene Jahreszahl entspricht, ist durch eine Einstellung unter %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Allgemein geregelt. Wenn beispielsweise 1935 als unterer Grenzwert festgelegt ist und Sie 34 als Datumswert eingeben, lautet das Ergebnis nicht 1934, sondern 2034." #: 01170003.xhp msgctxt "" @@ -3646,7 +3646,7 @@ "113\n" "help.text" msgid "You can have a format check with control fields that accept formatted contents (date, time, and so on). If the strict format function is activated (Yes), only the allowed characters are accepted. For example, in a date field, only numbers or date delimiters are accepted; all alphabet entries typed with your keyboard are ignored." -msgstr "In Kontrollfeldern, die formatierte Inhalte akzeptieren (z. B. Datums- oder Uhrzeitwerte), können Sie eine Formatkontrolle ausführen lassen. Ist diese Funktion aktiviert (Ja), werden nur die zugelassenen Zeichen übernommen. So werden beispielsweise in einem Datumsfeld nur Zahlen oder Datumstrennzeichen akzeptiert und alle Buchstabeneingaben ignoriert." +msgstr "In Kontrollfeldern, die formatierte Inhalte akzeptieren (z.B. Datums- oder Uhrzeitwerte), können Sie eine Formatkontrolle ausführen lassen. Ist diese Funktion aktiviert (Ja), werden nur die zugelassenen Zeichen übernommen. So werden beispielsweise in einem Datumsfeld nur Zahlen oder Datumstrennzeichen akzeptiert und alle Buchstabeneingaben ignoriert." #: 01170101.xhp msgctxt "" @@ -4409,7 +4409,7 @@ "193\n" "help.text" msgid "The Tab order property is not available to Hidden Controls. If you want, you can also set this property for image buttons and image controls, so that you can select these controls with the Tab key." -msgstr "Die Reihenfolge-Eigenschaft gibt es nicht bei Versteckten Kontrollfeldern. Grafische Schaltflächen und grafische Kontrollfelder lassen sich standardgemäß nicht mit der Tabulatortaste selektieren, aber Sie können zur besseren Zugänglichkeit diese Eigenschaft setzen." +msgstr "Die Reihenfolge-Eigenschaft gibt es nicht bei Versteckten Kontrollfeldern. Grafische Schaltflächen und grafische Kontrollfelder lassen sich standardgemäß nicht mit der Tabulatortaste markieren, aber Sie können zur Unterstützung der Barrierefreiheit diese Eigenschaft setzen." #: 01170101.xhp msgctxt "" @@ -4751,7 +4751,7 @@ "49\n" "help.text" msgid "The Tabstop property determines if a control field can be selected with the tab key. The following options are available:" -msgstr "Die Tabstop-Eigenschaft legt fest, ob ein Kontrollfeld in einem Formular mit der Tabulatortaste selektiert werden kann. Folgende Optionen gibt es:" +msgstr "Die Tabstop-Eigenschaft legt fest, ob ein Kontrollfeld in einem Formular mit der Tabulatortaste selektiert werden kann. Folgende Optionen gibt es:" #: 01170101.xhp msgctxt "" @@ -9017,7 +9017,7 @@ "bm_id3143284\n" "help.text" msgid "controls;arranging in formsforms;NavigatorForm Navigatorsubforms; creatingcontrols; hiddenhidden controls in Form Navigator" -msgstr "Kontrollfelder;in Formularen anordnenFormulare;NavigatorFormular-NavigatorUnterformulare; erzeugenKontrollfelder; ausgeblendeteAusgeblendete Kontrollfelder; im Formular-Navigator" +msgstr "Kontrollfelder; in Formularen anordnenFormulare; NavigatorFormular-NavigatorUnterformulare; erzeugenKontrollfelder; ausgeblendeteAusgeblendete Kontrollfelder; im Formular-Navigator" #: 01170600.xhp msgctxt "" @@ -15049,7 +15049,7 @@ "7\n" "help.text" msgid "Enter the search term in the box or select it from the list. The text under the cursor is already copied into the Text combo box. Note that while running a search in a form, tabs and line breaks cannot be processed." -msgstr "Hier geben Sie das Suchwort ein oder wählen eines der in der Liste vorgegebenen Suchwörter. An der Cursorposition im Dokument befindlicher Text wird direkt in das Kombinationsfeld Text kopiert. Beachten Sie bitte, dass Tabulatoren und Zeilenumbrüche bei der Suche in Formularen nicht verarbeitet werden können." +msgstr "Hier geben Sie das Suchwort ein oder wählen eines der in der Liste vorgegebenen Suchwörter. An der Cursorposition im Dokument befindlicher Text wird direkt in das Kombinationsfeld Text kopiert. Beachten Sie bitte, dass Tabulatoren und Zeilenumbrüche bei der Suche in Formularen nicht verarbeitet werden können." #: 12100200.xhp msgctxt "" @@ -17240,7 +17240,7 @@ "bm_id3148668\n" "help.text" msgid "selection modes in texttext; selection modesextending selection modeadding selection modeblock selection mode" -msgstr "Auswahlmodi im TextText; AuswahlmodiErweiterungsmodusErgänzungsmodusBlockauswahlmodus" +msgstr "Auswahlmodi; TextText; AuswahlmodiErweiterungsmodusErgänzungsmodusBlockauswahlmodus" #: 20050000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/04.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/04.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/04.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/04.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2012-07-09 07:29+0200\n" +"POT-Creation-Date: 2014-05-02 00:10+0200\n" +"PO-Revision-Date: 2014-08-30 09:36+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1409391404.000000\n" #: 01010000.xhp msgctxt "" @@ -29,7 +30,7 @@ "bm_id3149991\n" "help.text" msgid "keyboard;general commands shortcut keys;general text input fields AutoComplete function in text and list boxes macros; interrupting" -msgstr "Tastatur;allgemeine Befehle Tastenkombinationen;allgemeine Texteingabefelder AutoEingabe (Funktion) in Text- und Listenfeldern Makro; stoppen" +msgstr "Tastatur; allgemeine BefehleTastenkombinationen; allgemeineTexteingabefelderAutoEingabe-Funktion; in Text- und ListenfeldernMakros; stoppen" #: 01010000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/05.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/05.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/05.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/05.po 2014-09-16 19:55:40.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: 2014-06-25 17:40+0200\n" -"PO-Revision-Date: 2013-06-12 16:40+0000\n" -"Last-Translator: Raymond \n" +"PO-Revision-Date: 2014-08-27 08:25+0000\n" +"Last-Translator: Christian \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1371055234.0\n" +"X-POOTLE-MTIME: 1409127919.000000\n" #: 00000001.xhp msgctxt "" @@ -765,7 +765,7 @@ "par_idN10666\n" "help.text" msgid "If you always want extended tips instead of tips, enable the extended tips on %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - General." -msgstr "Wenn Sie immer erweiterte statt normaler Tipps angezeigt bekommen möchten, aktivieren Sie erweiterte Tipps unter %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Allgemein." +msgstr "Wenn Sie immer erweiterte statt normaler Tipps angezeigt bekommen möchten, aktivieren Sie erweiterte Tipps unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Allgemein." #: 00000130.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/autopi.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/autopi.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:00+0000\n" +"PO-Revision-Date: 2014-08-30 10:07+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402077659.000000\n" +"X-POOTLE-MTIME: 1409393262.000000\n" #: 01000000.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3152551\n" "help.text" msgid "wizards; overviewAutoPilots, see wizards" -msgstr "Assistenten; ÜberblickAssistenten, siehe Assistenten" +msgstr "Assistenten; Überblick" #: 01000000.xhp msgctxt "" @@ -118,7 +118,7 @@ "bm_id3151100\n" "help.text" msgid "wizards; lettersLetter Wizardtemplates;letters" -msgstr "Assistenten; BriefeBrief-AssistentVorlagen;Briefe" +msgstr "Assistenten; BriefeBrief-AssistentVorlagen; Briefe" #: 01010000.xhp msgctxt "" @@ -136,7 +136,7 @@ "2\n" "help.text" msgid "Starts the wizard for a letter template. You can use this template for both business and personal correspondence." -msgstr "Startet den Assistenten mit der Dokumentvorlage für Briefe. Diese Dokumentvorlage kann sowohl für geschäftliche als auch private Briefe verwendet werden." +msgstr "Startet den Assistenten mit der Dokumentvorlage für Briefe. Diese Dokumentvorlage kann sowohl für geschäftliche als auch private Briefe verwendet werden." #: 01010000.xhp msgctxt "" @@ -181,7 +181,7 @@ "7\n" "help.text" msgid "Allows you to view the selections that you made on the previous steps. The current settings will be saved." -msgstr "Zeigt die in den vorigen Schritten getroffene Auswahl an. Die aktuellen Einstellungen werden gespeichert. Diese Schaltfläche ist erst ab der zweiten Assistenten-Seite aktiv." +msgstr "Zeigt die in den vorigen Schritten getroffene Auswahl an. Die aktuellen Einstellungen werden gespeichert. Diese Schaltfläche ist erst ab der zweiten Assistenten-Seite aktiv." #: 01010000.xhp msgctxt "" @@ -217,7 +217,7 @@ "11\n" "help.text" msgid "According to your selections, the wizard creates a new document template and saves it on your hard disk. $[officename] creates a new document based on the existing templates with the \"Untitled X\" name (X stands for the consecutive numbering) and displays it on the work area." -msgstr "Der Assistent erstellt eine Dokumentvorlage auf Grundlage Ihrer Auswahl und speichert sie auf der Festplatte. $[officename] erstellt auf Grundlage einer vorhandenen Dokumentvorlage ein neues Dokument mit dem Titel \"UnbenanntX\" (wobei X für die fortlaufende Nummerierung steht) und zeigt es im Arbeitsbereich an." +msgstr "Der Assistent erstellt eine Dokumentvorlage auf Grundlage Ihrer Auswahl und speichert sie auf der Festplatte. $[officename] erstellt auf Grundlage einer vorhandenen Dokumentvorlage ein neues Dokument mit dem Titel \"UnbenanntX\" (wobei X für die fortlaufende Nummerierung steht) und zeigt es im Arbeitsbereich an." #: 01010000.xhp msgctxt "" @@ -252,7 +252,7 @@ "2\n" "help.text" msgid "Specifies whether you want to create a personal or a business letter. The available options on the following pages vary depending on your choice." -msgstr "Hier geben Sie an, ob ein Privat- oder ein Geschäftsbrief erstellt werden soll. Die auf den folgenden Seiten verfügbaren Optionen hängen von dieser Auswahl ab." +msgstr "Hier geben Sie an, ob ein Privat- oder ein Geschäftsbrief erstellt werden soll. Die auf den folgenden Seiten verfügbaren Optionen hängen von dieser Auswahl ab." #: 01010100.xhp msgctxt "" @@ -391,7 +391,7 @@ "2\n" "help.text" msgid "Allows you to specify the elements that are already imprinted on your letterhead paper. Those elements are not printed, and the space they occupy is left blank by the printer." -msgstr "In diesem Bereich wählen Sie ein Logo für Ihre Vorlage aus. Je nach gewähltem Logo ändern sich die verfügbaren Optionen auf dieser Seite." +msgstr "In diesem Bereich wählen Sie ein Logo für Ihre Vorlage aus. Je nach gewähltem Logo ändern sich die verfügbaren Optionen auf dieser Seite." #: 01010200.xhp msgctxt "" @@ -981,7 +981,7 @@ "32\n" "help.text" msgid "Includes page numbers in your letter template." -msgstr "Markieren Sie dieses Feld, wenn Sie Seitenzahlen in Ihre Briefvorlage aufnehmen möchten. Sie können dann in den folgenden Feldern bestimmen, wie die Angabe der Seitenzahl erfolgen soll." +msgstr "Markieren Sie dieses Feld, wenn Sie Seitenzahlen in Ihre Briefvorlage aufnehmen möchten. Sie können dann in den folgenden Feldern bestimmen, wie die Angabe der Seitenzahl erfolgen soll." #: 01010500.xhp msgctxt "" @@ -1107,7 +1107,7 @@ "bm_id3150445\n" "help.text" msgid "wizards;faxesfaxes;wizardstemplates;faxes" -msgstr "AutoPilot; Fax-MitteilungenFax-Mitteilungen; AutoPilot" +msgstr "Assistenten; Fax-MitteilungenFax-AssistentVorlagen; Fax-Assistent" #: 01020000.xhp msgctxt "" @@ -1322,7 +1322,7 @@ "3\n" "help.text" msgid "Specifies the fax elements to be printed." -msgstr "Geben Sie ein Logo für Ihre Dokumentvorlage an. Welche Optionen auf dieser Seite angeboten werden, hängt von dem ausgewählten Logo-Typ ab." +msgstr "Geben Sie ein Logo für Ihre Dokumentvorlage an. Welche Optionen auf dieser Seite angeboten werden, hängt von dem ausgewählten Logo-Typ ab." #: 01020200.xhp msgctxt "" @@ -1756,7 +1756,7 @@ "bm_id3149031\n" "help.text" msgid "wizards;agendasAgenda Wizardtemplates;agendas" -msgstr "Assistent; AgendaAgenda; Assistent" +msgstr "Assistenten; TagesordnungTagesordnungs-AssistentVorlagen; Tagesordnungen" #: 01040000.xhp msgctxt "" @@ -1774,7 +1774,7 @@ "2\n" "help.text" msgid "Starts the wizard to help you create an agenda template. You can use an agenda to specify discussion topics for conferences and meetings." -msgstr "Startet den Assistenten zum Erstellen einer Agenda-Dokumentvorlage... Eine solche Agenda hilft Ihnen bei der Aufstellung einer Tagesordnung für Konferenzen oder Besprechungen." +msgstr "Startet den Assistenten zum Erstellen einer Agenda-Dokumentvorlage... Eine solche Agenda hilft Ihnen bei der Aufstellung einer Tagesordnung für Konferenzen oder Besprechungen." #: 01040000.xhp msgctxt "" @@ -2502,7 +2502,7 @@ "bm_id3159224\n" "help.text" msgid "wizards; presentationspresentations; wizards" -msgstr "Assistenten; PräsentationenPräsentationen; Assistenten" +msgstr "Assistenten; PräsentationenPräsentationen; AssistentenPräsentations-AssistentVorlagen; Präsentation" #: 01050000.xhp msgctxt "" @@ -2529,7 +2529,7 @@ "11\n" "help.text" msgid "To start the Presentation Wizard automatically when opening a new presentation, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress - General and check the Start with Wizard box." -msgstr "Um den Präsentationsassistenten automatisch beim Öffnen einer neuen Präsentation zu starten, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Impress - Allgemein und markieren das \"Mit Assistent starten-Feld\"." +msgstr "Um den Präsentationsassistenten automatisch beim Öffnen einer neuen Präsentation zu starten, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Impress - Allgemein und markieren das Feld Mit Assistent starten." #: 01050000.xhp msgctxt "" @@ -2743,7 +2743,7 @@ "28\n" "help.text" msgid "Lists the presentations that you created and saved to the Templates directory that is specified under %PRODUCTNAME - Paths in the Options dialog box. To edit the layout and formatting of a presentation with the wizard, select the presentation, and then click Next." -msgstr "Listet die von Ihnen erstellten und im Verzeichnis für Dokumentvorlagen gespeicherten Präsentationen auf. Das Verzeichnis können Sie unter Extras - Optionen - %PRODUCTNAME - Pfade ändern. Zum Bearbeiten von Layout und Formatierung einer Präsentation mit dem Assistenten wählen Sie die gewünschte Präsentation aus und klicken dann auf Weiter." +msgstr "Listet die von Ihnen erstellten und im Verzeichnis für Dokumentvorlagen gespeicherten Präsentationen auf. Das Verzeichnis können Sie unter Extras - Optionen... - %PRODUCTNAME - Pfade ändern. Zum Bearbeiten von Layout und Formatierung einer Präsentation mit dem Assistenten wählen Sie die gewünschte Präsentation aus und klicken dann auf Weiter." #: 01050100.xhp msgctxt "" @@ -2779,7 +2779,7 @@ "30\n" "help.text" msgid "Specifies that you only want the Wizard to start when you expressly request it with File - Wizard - Presentation. This field is only visible when you create a presentation by choosing File - New - Presentation. You can also specify whether to show the dialog with the Start with Wizard check box in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress - General." -msgstr "Gibt an, dass der Assistent nur bei ausdrücklicher Anforderung mit Datei - Assistent - Präsentation. Dieses Feld ist nur sichtbar, wenn Sie neue Präsentationen mit Datei - Neu - Präsentation erzeugen. Außerdem können Sie über das Markierfeld Mit Assistent starten unter %PRODUCTNAME - PreferencesExtras - Optionen - %PRODUCTNAME Impress - Allgemein festlegen, ob dieser Dialog angezeigt wird oder nicht." +msgstr "Gibt an, dass der Assistent nur bei ausdrücklicher Anforderung mit Datei - Assistent - Präsentation. Dieses Feld ist nur sichtbar, wenn Sie neue Präsentationen mit Datei - Neu - Präsentation erzeugen. Außerdem können Sie über das Markierfeld Mit Assistent starten unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Impress - Allgemein festlegen, ob dieser Dialog angezeigt wird oder nicht." #: 01050100.xhp msgctxt "" @@ -3322,7 +3322,7 @@ "bm_id9834894\n" "help.text" msgid "forms;wizardswizards;forms" -msgstr "Formulare;AssistentenAssistenten;Formulare" +msgstr "Formulare; AssistentAssistenten; FormulareFormular-AssistentVorlagen; Formulare" #: 01090000.xhp msgctxt "" @@ -3968,7 +3968,7 @@ "10\n" "help.text" msgid "Aligns the database fields column-wise with the labels to the left of the fields." -msgstr "Die Datenbankfelder werden in Spalten angeordnet, die Beschriftungen befinden sich links." +msgstr "Die Datenbankfelder werden in Spalten angeordnet, die Beschriftungen befinden sich links." #: 01090300.xhp msgctxt "" @@ -3986,7 +3986,7 @@ "11\n" "help.text" msgid "Aligns the database fields column-wise with the labels above the field." -msgstr "Die Datenbankfelder werden in Spalten angeordnet, die Beschriftungen befinden sich oben." +msgstr "Die Datenbankfelder werden in Spalten angeordnet, die Beschriftungen befinden sich oben." #: 01090300.xhp msgctxt "" @@ -7519,7 +7519,7 @@ "bm_id3154840\n" "help.text" msgid "Euro; Euro Converter Wizardwizards; Euro Converterconverters; Euro convertercurrencies; converters" -msgstr "Euro; Euro-Konverter-AssistentAssistenten; Euro-KonverterKonverter; Euro-KonverterWährungen; Konverter" +msgstr "Euro; Euro-Konverter-AssistentAssistenten; Euro-KonverterKonverter; Euro-KonverterWährungen; Euro-Konverter" #: 01150000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-11-23 06:35+0000\n" +"PO-Revision-Date: 2014-08-27 07:18+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385188525.0\n" +"X-POOTLE-MTIME: 1409123907.000000\n" #: 02000000.xhp msgctxt "" @@ -244,7 +244,7 @@ "bm_id3150445\n" "help.text" msgid "queries; missing elements (Base)" -msgstr "Abfrage; fehlende Elemente (Base)" +msgstr "Abfragen; fehlende Elemente (Base)" #: 02000002.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.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-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-08-21 07:35+0000\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" +"PO-Revision-Date: 2014-08-30 09:51+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408606520.000000\n" +"X-POOTLE-MTIME: 1409392300.000000\n" #: aaa_start.xhp msgctxt "" @@ -144,7 +144,7 @@ "tit\n" "help.text" msgid "Accessibility in %PRODUCTNAME" -msgstr "Zugänglichkeit in %PRODUCTNAME" +msgstr "Barrierefreiheit in %PRODUCTNAME" #: accessibility.xhp msgctxt "" @@ -152,7 +152,7 @@ "bm_id3150502\n" "help.text" msgid "accessibility; %PRODUCTNAME features" -msgstr "Zugänglichkeit; %PRODUCTNAME-Funktionen" +msgstr "Barrierefreiheit; %PRODUCTNAME-Funktionen" #: accessibility.xhp msgctxt "" @@ -161,7 +161,7 @@ "7\n" "help.text" msgid "Accessibility in %PRODUCTNAME" -msgstr "Behindertengerechter Zugang in %PRODUCTNAME" +msgstr "Barrierefreiheit in %PRODUCTNAME" #: accessibility.xhp msgctxt "" @@ -170,7 +170,7 @@ "6\n" "help.text" msgid "The following accessibility features are part of %PRODUCTNAME:" -msgstr "Für den behindertengerechten Zugang sind folgende Fähigkeiten in %PRODUCTNAME enthalten:" +msgstr "Für die Barrierefreiheit sind folgende Funktionen in %PRODUCTNAME enthalten:" #: accessibility.xhp msgctxt "" @@ -224,7 +224,7 @@ "2\n" "help.text" msgid "Please note that accessibility support relies on Java technology for communications with assistive technology tools. This means that the first program startup may take a few seconds longer, because the Java runtime environment has to be started as well." -msgstr "Bitte beachten Sie, dass die Kommunikation mit Eingabehilfeprogrammen auf Java-Technologie beruht. Deshalb kann der erste Programmstart ein wenig länger als gewohnt dauern, da zusätzlich die Java-Laufzeitumgebung (JRE) gestartet werden muss." +msgstr "Bitte beachten Sie, dass die Unterstützung der Barrierefreiheit auf Java-Technologie beruht. Deshalb kann der erste Programmstart ein wenig länger als gewohnt dauern, da zusätzlich die Java-Laufzeitumgebung (JRE) gestartet werden muss." #: accessibility.xhp msgctxt "" @@ -242,7 +242,7 @@ "10\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Appearance" -msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Zugänglichkeit" +msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Barrierefreiheit" #: accessibility.xhp msgctxt "" @@ -251,7 +251,7 @@ "11\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Accessibility" -msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Zugänglichkeit" +msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Barrierefreiheit" #: active_help_on_off.xhp msgctxt "" @@ -303,7 +303,7 @@ "4\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - General, and check Extended tips." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Allgemein, und prüfen Sie, das Markierfeld Erweiterte Tipps aktiv ist." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Allgemein und aktivieren Sie das Markierfeld Erweiterte Tipps." #: active_help_on_off.xhp msgctxt "" @@ -355,7 +355,7 @@ "bm_id3143267\n" "help.text" msgid "ActiveX controlinstalling;ActiveX controlInternet; Internet Explorer for displaying $[officename] documents$[officename] documents;viewing and editing in Internet Explorerviewing;%PRODUCTNAME documents in Internet Explorerediting;%PRODUCTNAME documents in Internet Explorer" -msgstr "ActiveX-SteuerelementInstallieren; ActiveX-SteuerelementInternet; Internet Explorer zur Anzeige von $[officename]-Dokumenten$[officename]-Dokumente; in Internet Explorer anzeigen und bearbeitenAnzeigen; %PRODUCTNAME-Dokumente in Internet ExplorerBearbeiten; %PRODUCTNAME-Dokumente in Internet Explorer" +msgstr "ActiveX-SteuerelementeInstallieren; ActiveX-SteuerelementInternet; Internet Explorer zur Anzeige von $[officename]-Dokumenten$[officename]-Dokumente; in Internet Explorer anzeigen und bearbeitenAnzeigen; %PRODUCTNAME-Dokumente in Internet ExplorerBearbeiten; %PRODUCTNAME-Dokumente in Internet Explorer" #: activex.xhp msgctxt "" @@ -531,7 +531,7 @@ "bm_id3147399\n" "help.text" msgid "accessibility; $[officename] assistive technologyassistive technology in $[officename]screen readersscreen magnifiersmagnifiers" -msgstr "Zugänglichkeit; behindertengerechte Technologie in $[officename]Behindertengerechte Technologie in $[officename]BildschirmleserBildschirmlupenLupen" +msgstr "Barrierefreiheit; behindertengerechte Technologie in $[officename]Behindertengerechte Technologie in $[officename]BildschirmleserBildschirmlupenLupen" #: assistive.xhp msgctxt "" @@ -557,7 +557,7 @@ "par_id8847010\n" "help.text" msgid "A current list of supported assistive tools can be found on the Wiki at http://wiki.documentfoundation.org/Accessibility." -msgstr "Eine aktuelle Auflistung von Unterstützungstools findet sich im Wiki unter http://wiki.documentfoundation.org/Accessibility." +msgstr "Eine aktuelle Auflistung von Unterstützungstools findet sich im Wiki unter http://wiki.documentfoundation.org/Accessibility." #: assistive.xhp msgctxt "" @@ -611,7 +611,7 @@ "18\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - $[officename] - View" -msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Ansicht" +msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Ansicht" #: assistive.xhp msgctxt "" @@ -620,7 +620,7 @@ "19\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - $[officename] - Appearance" -msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Darstellung" +msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Darstellung" #: assistive.xhp msgctxt "" @@ -629,7 +629,7 @@ "20\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - $[officename] - Accessibility" -msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Zugänglichkeit" +msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Barrierefreiheit" #: autocorr_url.xhp msgctxt "" @@ -645,7 +645,7 @@ "bm_id3149346\n" "help.text" msgid "AutoCorrect function; URL recognition recognizing URLs automatically automatic hyperlink formatting URL;turning off URL recognition hyperlinks;turning off automatic recognition links;turning off automatic recognition predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion" -msgstr "AutoKorrektur-Funktion; erkennen von URL URLs automatisch erkennen Automatische Formatierung von Hyperlinks URL;Abschalten der Erkennung der URLs Hyperlinks;abschalten der automatischen Erkennung Links; abschalten der automatischen Erkennung Textergänzung, siehe auch AutoKorrektur-Funktion / AutoEingabe-Funktion / Wortergänzung" +msgstr "AutoKorrektur-Funktion; erkennen von URLsURLs; automatisch erkennen Automatische Formatierung; von HyperlinksURLs; automatische Erkennung abschaltenHyperlinks; automatische Erkennung abschaltenLinks; automatische Erkennung abschaltenTextergänzung, siehe auch AutoKorrektur-Funktion/AutoEingabe-Funktion/Wortergänzung" #: autocorr_url.xhp msgctxt "" @@ -735,7 +735,7 @@ "12\n" "help.text" msgid "Choose Tools - AutoCorrect Options." -msgstr "Wählen Sie Extras - AutoKorrektur-Optionen." +msgstr "Wählen Sie im Menü Extras - AutoKorrektur-Optionen...." #: autocorr_url.xhp msgctxt "" @@ -2081,7 +2081,7 @@ "par_id4411145\n" "help.text" msgid "In %PRODUCTNAME Calc, document sharing allows simultaneous write access for many users. Every user who wants to collaborate should enter a name on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - User Data tab page." -msgstr "In %PRODUCTNAME Calc können Dokumente freigegeben werden, um es mehreren Benutzern zu ermöglichen, gleichzeitig in die Datei zu schreiben. Alle beteiligten Benutzer sollten ihren Namen im Register %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Nutzerdaten eintragen." +msgstr "In %PRODUCTNAME Calc können Dokumente freigegeben werden, um es mehreren Benutzern zu ermöglichen, gleichzeitig in die Datei zu schreiben. Alle beteiligten Benutzer sollten ihren Namen im Register %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Nutzerdaten eintragen." #: collab.xhp msgctxt "" @@ -2512,7 +2512,7 @@ "45\n" "help.text" msgid "Tools - Customize" -msgstr "Extras - Anpassen" +msgstr "Extras - Anpassen..." #: contextmenu.xhp msgctxt "" @@ -2729,7 +2729,7 @@ "bm_id3152924\n" "help.text" msgid "sending; AutoAbstract function in presentationsAutoAbstract function for sending text to presentationsoutlines; sending to presentationstext; copying by drag and dropdrag and drop; copying and pasting textinserting;data from text documentscopying;data from text documentspasting;data from text documents" -msgstr "Senden; AutoAbstract (Funktion) an PräsentationenAutoAbstract-Funktion zum Senden von Text an PräsentationenGliederungen; an Präsentationen sendenText; per Ziehen&Ablegen kopierenZiehen&Ablegen; Text kopieren und einfügenEinfügen;Daten aus TextdokumentenKopieren;Daten aus TextdokumentenEinfügen;Daten aus Textdokumenten" +msgstr "Senden; AutoAbstract (Funktion) an PräsentationenAutoAbstract-Funktion; Senden von Text an PräsentationenGliederungen; an Präsentationen sendenText; per Ziehen&Ablegen kopierenZiehen&Ablegen; Text kopieren und einfügenEinfügen; Daten aus TextdokumentenKopieren; Daten aus TextdokumentenEinfügen; Daten aus Textdokumenten" #: copytext2application.xhp msgctxt "" @@ -2960,7 +2960,7 @@ "12\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages" -msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen - Spracheinstellungen - Sprachen" +msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Sprachen" #: ctl.xhp msgctxt "" @@ -2969,7 +2969,7 @@ "14\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - Language Settings - Complex Text Layout" -msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen - Spracheinstellungen - Complex Text Layout" +msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Complex Text Layout" #: data_addressbook.xhp msgctxt "" @@ -3981,7 +3981,7 @@ "par_idN105CF\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Databases." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Base - Datenbanken." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Base - Datenbanken." #: data_register.xhp msgctxt "" @@ -4005,7 +4005,7 @@ "par_idN10707\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Databases." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Base - Datenbanken." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Base - Datenbanken." #: data_register.xhp msgctxt "" @@ -5538,7 +5538,7 @@ "par_id7309793\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - General. Ensure that Use %PRODUCTNAME dialogs is enabled. Click OK to close the dialog box." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Allgemein. Stellen Sie sicher, dass Nutze %PRODUCTNAME Dialoge aktiviert ist. Klicken Sie auf OK, um den Dialog zu schließen." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Allgemein. Stellen Sie sicher, dass Nutze %PRODUCTNAME Dialoge aktiviert ist. Klicken Sie auf OK, um den Dialog zu schließen." #: digitalsign_receive.xhp msgctxt "" @@ -5965,7 +5965,7 @@ "4\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - General." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - Allgemein." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - Allgemein." #: doc_autosave.xhp msgctxt "" @@ -5992,7 +5992,7 @@ "7\n" "help.text" msgid "You can change the backup directory by choosing %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths, then change the Backups path in the dialog." -msgstr "Sie können das Sicherungsverzeichnis unter %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Pfade ändern. Tragen Sie hinter Sicherungskopien den neuen Pfad ein." +msgstr "Sie können das Sicherungsverzeichnis unter %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Pfade ändern. Tragen Sie hinter Sicherungskopien den neuen Pfad ein." #: doc_autosave.xhp msgctxt "" @@ -6019,7 +6019,7 @@ "10\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - General." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - Allgemein." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - Allgemein." #: doc_autosave.xhp msgctxt "" @@ -6055,7 +6055,7 @@ "16\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - Load/Save - General" -msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - Allgemein" +msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - Allgemein" #: doc_autosave.xhp msgctxt "" @@ -6190,7 +6190,7 @@ "par_id6594744\n" "help.text" msgid "One exception appears when the author of a Writer text document saves and reopens a document: The cursor will be at the same position where it has been when the document was saved. This only works when the name of the author was entered in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - User Data." -msgstr "Eine Ausnahme ist der Fall, dass der Autor selbst das Dokument speichert und wieder öffnet: Der Cursor befindet sich an der gleichen Stelle, wie beim Speichern. Dies funktioniert nur wenn der Autorenname unter %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Nutzerdaten eingetragen wurde." +msgstr "Eine Ausnahme ist der Fall, dass der Autor selbst das Dokument speichert und wieder öffnet: Der Cursor befindet sich an der gleichen Stelle, wie beim Speichern. Dies funktioniert nur wenn der Autorenname unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Nutzerdaten eingetragen wurde." #: doc_open.xhp msgctxt "" @@ -6249,7 +6249,7 @@ "par_id0820200803501429\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - General to switch the type of open/save dialogs." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Allgemein, um den Typ der Dialoge Speichern und Öffnen festzulegen." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Allgemein, um den Typ der Dialoge Speichern und Öffnen festzulegen." #: doc_open.xhp msgctxt "" @@ -6368,7 +6368,7 @@ "3\n" "help.text" msgid "You can set the automatic creation of a backup copy under %PRODUCTNAME - PreferencesTools - Options - Load/Save - General." -msgstr "Sie können das automatische Anlegen von Sicherungskopien unter %PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - Allgemein einstellen." +msgstr "Sie können das automatische Anlegen von Sicherungskopien unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - Allgemein einstellen." #: doc_save.xhp msgctxt "" @@ -6530,7 +6530,7 @@ "7\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - Load/Save - General" -msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - Allgemein" +msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - Allgemein" #: dragdrop.xhp msgctxt "" @@ -7213,7 +7213,7 @@ "bm_id3159201\n" "help.text" msgid "customizing; toolbarsbuttons;toolbarstoolbars;adding buttonsconfiguring; toolbarsediting; toolbarsinserting;buttons in toolbars" -msgstr "Anpassen; SymbolleistenSchaltflächen;SymbolleistenSymbolleisten;Schaltflächen hinzufügenAnpassen; SymbolleistenBearbeiten; SymbolleistenSchaltflächen einfügen in; Symbolleisten" +msgstr "Anpassen; SymbolleistenSchaltflächen; SymbolleistenSymbolleisten; Schaltflächen hinzufügenAnpassen; SymbolleistenBearbeiten; SymbolleistenEinfügen; Schaltflächen in Symbolleisten" #: edit_symbolbar.xhp msgctxt "" @@ -7354,7 +7354,7 @@ "4\n" "help.text" msgid "$[officename] opens your default e-mail program. If you want to send the current document with another e-mail program, you can select the program to use with Internet - E-mail in the Options dialog box." -msgstr "$[officename] Öffnet Ihr Standard-Mailprogramm. Wenn Sie das aktuelle Dokument mit einem anderen Mailprogramm senden möchten, tragen Sie das zu nutzende Programm unter Internet - E-mailim Dialog Optionen ein." +msgstr "$[officename] Öffnet Ihr Standard-Mailprogramm. Wenn Sie das aktuelle Dokument mit einem anderen Mailprogramm senden möchten, tragen Sie das zu nutzende Programm unter Internet - E-Mail im Dialog Optionen ein." #: email.xhp msgctxt "" @@ -7574,7 +7574,7 @@ "7\n" "help.text" msgid "If you want the file dialogs to offer another file format as default, select that format in %PRODUCTNAME - PreferencesTools - Options - Load/Save - General in the Default file format area." -msgstr "Wollen Sie, dass der Dialog Speichern voreingestellt andere Dateiformate anzeigt, wählen Sie das Format unter %PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - Allgemein im Bereich Einstellungen für Standard-Dateiformat und ODF ." +msgstr "Wollen Sie, dass der Dialog Speichern voreingestellt andere Dateiformate anzeigt, wählen Sie das Format unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - Allgemein im Bereich Einstellungen für Standard-Dateiformat und ODF." #: export_ms.xhp msgctxt "" @@ -7671,7 +7671,7 @@ "11\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Print." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Drucken." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Drucken." #: fax.xhp msgctxt "" @@ -7844,7 +7844,7 @@ "par_idN1069D\n" "help.text" msgid "After you select the attributes that you want to search for, the Search for Styles box in the Options area of the %PRODUCTNAME Writer Find & Replace dialog changes to Including Styles." -msgstr "Nach der Auswahl der gesuchten Attribute wechselt die Beschriftung der Option Suche nach Vorlagen im Bereich Optionen des %PRODUCTNAME Writer-Dialogs Suchen & Ersetzen zu einschließlich Vorlagen." +msgstr "Nach der Auswahl der gesuchten Attribute wechselt die Beschriftung der Option Suche nach Vorlagen im Bereich Optionen des Dialogs %PRODUCTNAME Writer - Suchen & Ersetzen zu einschließlich Vorlagen." #: find_attributes.xhp msgctxt "" @@ -8007,7 +8007,7 @@ "5\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename]." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename]." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename]." #: flat_icons.xhp msgctxt "" @@ -9276,7 +9276,7 @@ "47\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - General and specify in the Save URLs relative to field if $[officename] creates relative or absolute hyperlinks. Relative linking is only possible when the document you are working on and the link destination are on the same drive." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - Allgemein und spezifizieren Sie im Feld URLs relativ zum ... speichern ob $[officename] relative oder absolute Hyperlinks erstellt. Relative Verknüpfungen sind nur möglich, wenn sich das Dokument und das Verknüpfungsziel auf dem selben Laufwerk befinden." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - Allgemein und legen Sie im Feld URLs relativ zum ... speichern fest, ob $[officename] relative oder absolute Hyperlinks erstellt. Relative Verknüpfungen sind nur möglich, wenn sich das Dokument und das Verknüpfungsziel auf dem selben Laufwerk befinden." #: hyperlink_rel_abs.xhp msgctxt "" @@ -9285,7 +9285,7 @@ "48\n" "help.text" msgid "You should create the same directory structure on your hard disk as that which exists in the web space hosted by your Internet provider. Call the root directory for the homepage on your hard disk \"homepage\", for example. The start file is then \"index.html\", the full path being \"C:\\homepage\\index.html\" (assuming Windows operating system). The URL on your Internet provider's server might then be as follows: \"http://www.myprovider.com/mypage/index.html\". With relative addressing, you indicate the link relative to the location of the output document. For example, if you placed all the graphics for your homepage in a subfolder called \"C:\\homepage\\images\", you would need to give the following path to access the graphic \"picture.gif\": \"images\\picture.gif\". This is the relative path, starting from the location of the file \"index.html\". On the provider's server, you would place the picture in the folder \"mypage/images\". When you transfer the document \"index.html\" to the provider's server through the File - Save As dialog, and if you have marked the option Copy local graphics to Internet under %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility, $[officename] will automatically copy the graphic to the correct directory on the server." -msgstr "Es empfiehlt sich, auf der Festplatte dieselbe Verzeichnisstruktur wie in Ihrem Homepage-Bereich auf dem Server Ihres Internetanbieters herzustellen. Benennen Sie zum Beispiel das Wurzelverzeichnis ihrer Homepage auf der Festplatte \"homepage\". Die Startdatei ist dann \"index.html\", der komplette Pfad lautet dann \"C:\\homepage\\index.html\" (ein Windows Betriebssystem angenommen). Die URL auf ihrem Internet Provider Server kann dann wie folgt lauten: \"http://www.myprovider.com/mypage/index.html\". Mit relativer Adressierung, geben Sie die Verknüpfung relativ zum Ausgabedokument an. Zum Beispiel, wenn Sie alle Grafiken für ihre Homepage in einem Unterordner \"C:\\homepage\\images\" platzieren, müssen Sie um auf die Grafik \"picture.gif\" zugreifen zu können, \"images\\picture.gif\" angeben. Dies ist der relative Pfad, beginnend beim Speicherort der Datei \"index.html\". Auf dem Server des Anbieters würden Sie die Bilder im Ordner \"mypage/images\" ablegen. Transferieren Sie das Dokument \"index.html\" zum Server des Anbieters über den Dialog Datei - Speichern unter, und haben Sie die Option Kopiere lokale Grafiken zum Internet unter %PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - HTML Kompatibilität ausgewählt, kopiert $[officename] die Grafiken automatisch in die korrekten Verzeichnisse auf dem Server." +msgstr "Es empfiehlt sich, auf der Festplatte dieselbe Verzeichnisstruktur wie in Ihrem Homepage-Bereich auf dem Server Ihres Internetanbieters herzustellen. Benennen Sie zum Beispiel das Wurzelverzeichnis ihrer Homepage auf der Festplatte \"homepage\". Die Startdatei ist dann \"index.html\", der komplette Pfad lautet dann \"C:\\homepage\\index.html\" (ein Windows Betriebssystem angenommen). Die URL auf ihrem Internet Provider Server kann dann wie folgt lauten: \"http://www.myprovider.com/mypage/index.html\". Mit relativer Adressierung, geben Sie die Verknüpfung relativ zum Ausgabedokument an. Zum Beispiel, wenn Sie alle Grafiken für ihre Homepage in einem Unterordner \"C:\\homepage\\images\" platzieren, müssen Sie um auf die Grafik \"picture.gif\" zugreifen zu können, \"images\\picture.gif\" angeben. Dies ist der relative Pfad, beginnend beim Speicherort der Datei \"index.html\". Auf dem Server des Anbieters würden Sie die Bilder im Ordner \"mypage/images\" ablegen. Transferieren Sie das Dokument \"index.html\" zum Server des Anbieters über den Dialog Datei - Speichern unter, und haben Sie die Option Kopiere lokale Grafiken zum Internet unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - HTML Kompatibilität ausgewählt, kopiert $[officename] die Grafiken automatisch in die korrekten Verzeichnisse auf dem Server." #: hyperlink_rel_abs.xhp msgctxt "" @@ -9355,7 +9355,7 @@ "bm_id3150502\n" "help.text" msgid "ImageMap; editor editors; ImageMap editor images; ImageMap pictures; ImageMap hotspots;adding to images URL;in pictures" -msgstr "Verweissensitive Grafik; EditorEditoren; Verweissensitive Grafik-EditorAbbildung; Verweissensitive GrafikBilder; Verweissensitive GrafikHotspots; zu einer Abbildung hinzufügenURL; in Bildern" +msgstr "Verweissensitive Grafik; EditorEditoren; verweissensitive Grafik-EditorAbbildungen; verweissensitive GrafikBilder; verweissensitive GrafikHotspots; zu einer Abbildung hinzufügenURL; in Bildern" #: imagemap.xhp msgctxt "" @@ -9427,7 +9427,7 @@ "par_idN106A3\n" "help.text" msgid "You can see an extended help text on the functions of each icon when you enable Extended Help in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - General." -msgstr "Wenn Sie unter %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Allgemein die Option Erweiterte Tipps aktivieren, erhalten Sie ausführlichere Hilfetexte zu den Funktionen der einzelnen Symbole." +msgstr "Wenn Sie unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Allgemein die Option Erweiterte Tipps aktivieren, erhalten Sie ausführlichere Hilfetexte zu den Funktionen der einzelnen Symbole." #: imagemap.xhp msgctxt "" @@ -9537,7 +9537,7 @@ "8\n" "help.text" msgid "If you always want the file dialogs to show another format by default, choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - General and select that format as Default file format." -msgstr "Wenn Sie Ihre Dokumente immer aus einem Fremdformat öffnen wollen, legen Sie dies unter %PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - Allgemein im Bereich Einstellungen für Standard Dateiformat und ODF fest." +msgstr "Wenn Sie Ihre Dokumente immer aus einem Fremdformat öffnen wollen, legen Sie dies unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - Allgemein im Bereich Einstellungen für Standard Dateiformat und ODF fest." #: import_ms.xhp msgctxt "" @@ -10266,7 +10266,7 @@ "tit\n" "help.text" msgid "Shortcuts (%PRODUCTNAME Accessibility)" -msgstr "Tastatursteuerung (%PRODUCTNAME Zugänglichkeit)" +msgstr "Tastatursteuerung (%PRODUCTNAME Barrierefreiheit)" #: keyboard.xhp msgctxt "" @@ -10274,7 +10274,7 @@ "bm_id3158421\n" "help.text" msgid "accessibility;general shortcuts shortcut keys; %PRODUCTNAME accessibility" -msgstr "Zugänglichkeit;allgemeine Tastenkombinationen Tastaturkombinationen; %PRODUCTNAME-Zugänglichkeit" +msgstr "Barrierefreiheit; allgemeine Tastenkombinationen Tastaturkombinationen; %PRODUCTNAME Barrierefreiheit" #: keyboard.xhp msgctxt "" @@ -10283,7 +10283,7 @@ "52\n" "help.text" msgid "Shortcuts (%PRODUCTNAME Accessibility)" -msgstr "Tastatursteuerung (%PRODUCTNAME-Zugänglichkeit)" +msgstr "Tastatursteuerung (%PRODUCTNAME Barrierefreiheit)" #: keyboard.xhp msgctxt "" @@ -10310,7 +10310,7 @@ "23\n" "help.text" msgid "In addition, under the keyword \"Accessibility\" you find step-by-step instructions about how to control the selected module without a mouse device." -msgstr "Darüber hinaus finden Sie unter dem Stichwort \"Zugänglichkeit\" genaue Anweisungen zur Bedienung des ausgewählten Moduls ohne Maus." +msgstr "Darüber hinaus finden Sie unter dem Stichwort „Barrierefreiheit“ genaue Anweisungen zur Bedienung des ausgewählten Moduls ohne Maus." #: keyboard.xhp msgctxt "" @@ -10777,7 +10777,7 @@ "57\n" "help.text" msgid "Set the grid resolution unit with %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Grid in the Resolution area. If you enter a number greater than 1 in the Subdivision area, you must press the arrow key as often as the number states to move the selected object by one grid resolution unit." -msgstr "Die Rastereinheit stellen Sie unter %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Gitter im Bereich Auflösung ein. Haben Sie im Bereich Unterteilung eine Zahl größer eins eingetragen, müssen Sie die Pfeiltaste genau so oft drücken, um das ausgewählte Objekt um eine Gittereinheit zu verschieben." +msgstr "Die Rastereinheit stellen Sie unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Gitter im Bereich Auflösung ein. Haben Sie im Bereich Unterteilung eine Zahl größer eins eingetragen, müssen Sie die Pfeiltaste genau so oft drücken, um das ausgewählte Objekt um eine Gittereinheit zu verschieben." #: keyboard.xhp msgctxt "" @@ -11935,7 +11935,7 @@ "7\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options. Go to Language Settings - Languages." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen. Gehen Sie zu Spracheinstellungen - Sprachen." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen.... Gehen Sie zu Spracheinstellungen - Sprachen." #: language_select.xhp msgctxt "" @@ -12195,7 +12195,7 @@ "par_id3163853\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - Spracheinstellungen - Sprachen." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Sprachen." #: language_select.xhp msgctxt "" @@ -12348,7 +12348,7 @@ "28\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages" -msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen - Spracheinstellungen - Sprachen" +msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Sprachen" #: language_select.xhp msgctxt "" @@ -12514,7 +12514,7 @@ "64\n" "help.text" msgid "You can draw a line above, beside or below a paragraph in a Writer text document by choosing Format - Paragraph - Borders." -msgstr "Mit den Optionen unter Format - Absatz - Umrandung können Sie über, unter und neben Absätzen Linien einfügen." +msgstr "Mit den Optionen unter Format - Absatz... - Umrandung können Sie über, unter und neben Absätzen Linien einfügen." #: line_intext.xhp msgctxt "" @@ -12562,7 +12562,7 @@ "par_idN107E0\n" "help.text" msgid "To disable the automatic borders, choose Tools - AutoCorrect Options - Options and clear Apply border." -msgstr "Um die automatische Erstellung von Umrandungen zu deaktivieren, wählen Sie Extras - AutoKorrektur-Optionen - Optionen und deaktivieren Umrandung anwenden." +msgstr "Um die automatische Erstellung von Umrandungen zu deaktivieren, wählen Sie Extras - AutoKorrektur-Optionen... - Optionen und deaktivieren Umrandung anwenden." #: line_intext.xhp msgctxt "" @@ -12847,7 +12847,7 @@ "bm_id3093440\n" "help.text" msgid "macros; recordingrecording; macrosBasic; recording macros" -msgstr "Makros; aufnehmenaufnehmen; MakrosBasic; aufnehmen von Makros" +msgstr "Makros; aufnehmenAufnehmen; MakrosBasic; aufnehmen von Makros" #: macro_recording.xhp msgctxt "" @@ -13020,7 +13020,7 @@ "par_id8014465\n" "help.text" msgid "Actions that are not related to the document contents are not recorded. For example, changes made in the Options dialog, macro organizer, customizing." -msgstr "Aktionen, die sich nicht auf den Dokumenteninhalt beziehen, werden nicht aufgezeichnet. Z. B. Änderungen, die in im Optionen-Dialog, in der Makroverwaltung und unter Anpassen gemacht werden." +msgstr "Aktionen, die sich nicht auf den Dokumenteninhalt beziehen, werden nicht aufgezeichnet. Z.B. Änderungen, die in im Dialog Optionen, in der Makroverwaltung und unter Anpassen gemacht werden." #: macro_recording.xhp msgctxt "" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programmierung in %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Die Makroaufzeichnungsfunktion steht in %PRODUCTNAME Writer nur für Textdokumente und in %PRODUCTNAME Calc nur für Tabellendokumente zur Verfügung." - #: main.xhp msgctxt "" "main.xhp\n" @@ -13113,7 +13105,7 @@ "10\n" "help.text" msgid "Accessibility" -msgstr "Zugänglichkeit (Accessibility)" +msgstr "Barrierefreiheit" #: main.xhp msgctxt "" @@ -13242,7 +13234,7 @@ "bm_id3159201\n" "help.text" msgid "documents;measurement units inmeasurement units;selectingunits;measurement unitscentimetersinchesdistancesselecting;measurement units" -msgstr "Dokument;Maßeinheiten inMaßeinheiten;DokumentEinheit;MaßeinheitZentimeterZollAbstandAuswählen;Maßeinheiten" +msgstr "Dokumente; Maßeinheiten inMaßeinheiten; AuswählenEinheiten; MaßeinheitenZentimeterZollAbständeAuswählen; Maßeinheiten" #: measurement_units.xhp msgctxt "" @@ -13276,7 +13268,7 @@ "3\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen...." #: measurement_units.xhp msgctxt "" @@ -13330,7 +13322,7 @@ "9\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General" -msgstr "%PRODUCTNAME - EinstellungenExtras- Optionen - %PRODUCTNAME Writer - Allgemein" +msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Allgemein" #: microsoft_terms.xhp msgctxt "" @@ -13833,7 +13825,7 @@ "par_id0804200804174819\n" "help.text" msgid "The most recent versions of %PRODUCTNAME can load and save the Microsoft Office Open XML document formats with the extensions docx, xlsx, and pptx. The same versions can also run some Excel Visual Basic scripts, if you enable this feature at %PRODUCTNAME - PreferencesTools - Options - Load/Save - VBA Properties." -msgstr "Die meisten der aktuellen Versionen von %PRODUCTNAME können die Microsoft Office Open XML-Formate docx, xlsx und pptx laden und speichern. Die gleichen Versionen können auch einige Excel Visual Basic-Skripte ausführen, wenn Sie dies unter %PRODUCTNAME - VoreinstellungenExtras - Optionen - Laden/Speichern - VBA Properties eingestellt haben." +msgstr "Die meisten der aktuellen Versionen von %PRODUCTNAME können die Microsoft Office Open XML-Formate docx, xlsx und pptx laden und speichern. Die gleichen Versionen können auch einige Excel Visual Basic-Skripte ausführen, wenn Sie dies unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - VBA Properties eingestellt haben." #: ms_import_export_limitations.xhp msgctxt "" @@ -14405,7 +14397,7 @@ "16\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - General." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - Allgemein." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - Allgemein." #: ms_user.xhp msgctxt "" @@ -14485,7 +14477,7 @@ "par_id0804200804173539\n" "help.text" msgid "The most recent versions of %PRODUCTNAME can run some Excel Visual Basic scripts if you enable this feature at %PRODUCTNAME - PreferencesTools - Options - Load/Save - VBA Properties." -msgstr "Die aktuelle Version von %PRODUCTNAME kann einige Excel Visual Basic Skripte ausführen, wenn Sie dies unter %PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speichern - VBA Eigenschaften aktivieren." +msgstr "Die aktuelle Version von %PRODUCTNAME kann einige Excel Visual Basic Skripte ausführen, wenn Sie dies unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - VBA Eigenschaften aktivieren." #: ms_user.xhp msgctxt "" @@ -14530,7 +14522,7 @@ "29\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - VBA Properties to set the VBA macro handling of $[officename]." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - Laden/Speicher - VBA Eigenschaften, um die Behandlung von VBA Makros durch $[officename] festzulegen." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speicher - VBA Eigenschaften, um die Behandlung von VBA Makros durch $[officename] festzulegen." #: navigator.xhp msgctxt "" @@ -15209,7 +15201,7 @@ "bm_id3620715\n" "help.text" msgid "clipboard;pasting formatted/unformatted textinserting;clipboard optionspasting;formatted/unformatted texttext formats;pastingformats;pasting in special formats" -msgstr "Zwischenablage;formatierten/unformatierten Text einfügenEinfügen; ZwischenablageoptionenEinfügen;formatierten/unformatierten TextTextformate;einfügenFormate;in speziellen Formaten einfügen" +msgstr "Zwischenablage; formatierten/unformatierten Text einfügenEinfügen; ZwischenablageoptionenEinfügen; formatierten/unformatierten TextTextformate; einfügenFormate; in speziellen Formaten einfügen" #: pasting.xhp msgctxt "" @@ -15434,7 +15426,7 @@ "10\n" "help.text" msgid "Choose Tools - Options - %PRODUCTNAME Impress or Tools - Options - %PRODUCTNAME Draw, as appropriate." -msgstr "Rufen Sie Extras - Optionen - %PRODUCTNAME Impress oder Extras - Optionen - %PRODUCTNAME Draw auf." +msgstr "Rufen Sie Extras - Optionen... - %PRODUCTNAME Impress oder Extras - Optionen... - %PRODUCTNAME Draw auf." #: print_blackwhite.xhp msgctxt "" @@ -15515,7 +15507,7 @@ "20\n" "help.text" msgid "Choose Tools - Options - %PRODUCTNAME Writer or Tools - Options - %PRODUCTNAME Writer/Web." -msgstr "Wählen Sie Extras - Optionen - %PRODUCTNAME Writer oder Extras - Optionen - %PRODUCTNAME Writer/Web." +msgstr "Wählen Sie Extras - Optionen... - %PRODUCTNAME Writer oder Extras - Optionen... - %PRODUCTNAME Writer/Web." #: print_blackwhite.xhp msgctxt "" @@ -15587,7 +15579,7 @@ "30\n" "help.text" msgid "Tools - Options dialog" -msgstr "Dialog Extras - Optionen" +msgstr "Dialog Extras - Optionen..." #: print_faster.xhp msgctxt "" @@ -15627,7 +15619,7 @@ "par_idN106CE\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Print." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Drucken." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Drucken." #: print_faster.xhp msgctxt "" @@ -15788,7 +15780,7 @@ "64\n" "help.text" msgid "Information entered in File - Properties is not encrypted. This includes the name of the author, creation date, word and character counts." -msgstr "Die Angaben unter Datei - Eigenschaften werden nicht verschlüsselt. Dabei handelt es sich um den Namen des Autors, das Erstellungsdatum, die Anzahl der Wörter und der Zeichen." +msgstr "Die Angaben unter Datei - Eigenschaften... werden nicht verschlüsselt. Dabei handelt es sich um den Namen des Autors, das Erstellungsdatum, die Anzahl der Wörter und der Zeichen." #: protection.xhp msgctxt "" @@ -15990,7 +15982,7 @@ "bm_id3150499\n" "help.text" msgid "marking changes highlighting changes changes; review function review function; recording changes example Track Changes, see review function" -msgstr "Änderungen markieren Änderungen hervorheben Änderungen; Überarbeitungsfunktion Überarbeitungsfunktion; Beispiel für Änderungen auszeichnen Änderungen aufzeichnen, siehe Überarbeitungsfunktion" +msgstr "Änderungen; markierenÄnderungen; hervorhebenÄnderungen; ÜberarbeitungsfunktionÜberarbeitungsfunktion; Beispiel für Änderungen auszeichnenÄnderungen aufzeichnen, siehe auch Überarbeitungsfunktion" #: redlining.xhp msgctxt "" @@ -16068,7 +16060,7 @@ "bm_id3150247\n" "help.text" msgid "changes; accepting or rejectingreview function;accepting or rejecting changes" -msgstr "Änderung; akzeptieren oder verwerfenÜberarbeitungsfunktion; Änderungen akzeptieren oder verwerfen" +msgstr "Änderungen; akzeptieren oder verwerfenÜberarbeitungsfunktion; Änderungen akzeptieren oder verwerfen" #: redlining_accept.xhp msgctxt "" @@ -16172,7 +16164,7 @@ "bm_id3154788\n" "help.text" msgid "documents; comparingcomparisons;document versionsversions; comparing documentschanges;comparing to originalreview function; comparing documents" -msgstr "Dokumente; vergleichenVergleichen;DokumentversionenVersionen; Dokumente vergleichenÄnderungen;mit dem Original vergleichenÜberarbeitungsfunktion; Dokumente vergleichen" +msgstr "Dokumente; vergleichenVergleichen; DokumentversionenVersionen; Dokumente vergleichenÄnderungen; mit dem Original vergleichenÜberarbeitungsfunktion; Dokumente vergleichen" #: redlining_doccompare.xhp msgctxt "" @@ -16361,7 +16353,7 @@ "bm_id3155364\n" "help.text" msgid "changes; recording recording; changes comments; on changes review function;tracking changes" -msgstr "Änderungen; Aufzeichnen Aufzeichnen; Änderungen Kommentare; bei Änderungen Überarbeitungsfunktion;Änderungen aufzeichnen" +msgstr "Änderungen; aufzeichnenAufzeichnen; ÄnderungenKommentare; bei ÄnderungenÜberarbeitungsfunktion; Änderungen aufzeichnen" #: redlining_enter.xhp msgctxt "" @@ -16486,7 +16478,7 @@ "16\n" "help.text" msgid "To change the settings for tracking changes, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Changes or on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Changes." -msgstr "Die Art der zusätzlichen Markierung legen Sie unter %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Änderungen oder einem %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Calc - Änderungen fest." +msgstr "Die Art der zusätzlichen Markierung legen Sie unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Änderungen oder %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Calc - Änderungen fest." #: redlining_navigation.xhp msgctxt "" @@ -16566,7 +16558,7 @@ "bm_id3159201\n" "help.text" msgid "changes; protectingprotecting; recorded changesrecords; protectingreview function;protecting records" -msgstr "Änderungen; SchützenSchützen; aufgezeichnete ÄnderungenAufzeichnungen; SchützenÜberarbeitungsfunktionen;Aufzeichnung schützen" +msgstr "Änderungen; SchützenSchützen; aufgezeichnete ÄnderungenAufzeichnungen; SchützenÜberarbeitungsfunktionen; Aufzeichnungen schützen" #: redlining_protect.xhp msgctxt "" @@ -16678,7 +16670,7 @@ "bm_id3150040\n" "help.text" msgid "corner roundingsrectangles with round cornerslegends;rounding cornersround cornerscustomizing;round corners" -msgstr "EckenrundungenRechtecke mit runden EckenLegenden;Ecken rundenRunde EckenAnpassen;runde Ecken" +msgstr "EckenrundungenRechtecke mit runden EckenLegenden; Ecken rundenRunde EckenAnpassen; runde Ecken" #: round_corner.xhp msgctxt "" @@ -16809,7 +16801,7 @@ "par_idN10758\n" "help.text" msgid "Choose Tools - Customize, and click the Menus tab." -msgstr "Wählen Sie Extras - Anpassen und klicken Sie auf das Register Menüs." +msgstr "Wählen Sie Extras - Anpassen... und klicken Sie auf das Register Menüs." #: scripting.xhp msgctxt "" @@ -16873,7 +16865,7 @@ "par_idN10787\n" "help.text" msgid "Choose Tools - Customize - Keyboard." -msgstr "Wählen Sie Extras - Anpassen -Tastatur." +msgstr "Wählen Sie Extras - Anpassen... - Tastatur." #: scripting.xhp msgctxt "" @@ -16945,7 +16937,7 @@ "par_idN1078E\n" "help.text" msgid "Choose Tools - Customize - Events." -msgstr "Wählen Sie Extras - Anpassen -Ereignisse." +msgstr "Wählen Sie Extras - Anpassen... - Ereignisse." #: scripting.xhp msgctxt "" @@ -17312,7 +17304,7 @@ "66\n" "help.text" msgid "In order to enter longer dashes, you can find under Tools - AutoCorrect Options- Options the Replace dashes option. This option replaces one or two minus signs under certain conditions with an en-dash or an em-dash (see $[officename] Help)." -msgstr "Zum Einfügen langer Gedankenstriche steht Ihnen unter Extras - AutoKorrektur-Optionen- Optionen die Option Gedankenstriche ersetzen zur Verfügung. Mithilfe dieser Option lassen sich ein oder zwei Minuszeichen unter bestimmten Bedingungen durch einen Halbgeviertstrich oder einen Geviertstrich ersetzen (siehe $[officename] Hilfe)." +msgstr "Zum Einfügen langer Gedankenstriche steht Ihnen unter Extras - AutoKorrektur-Optionen...- Optionen die Option Gedankenstriche ersetzen zur Verfügung. Mithilfe dieser Option lassen sich ein oder zwei Minuszeichen unter bestimmten Bedingungen durch einen Halbgeviertstrich oder einen Geviertstrich ersetzen (siehe $[officename] Hilfe)." #: space_hyphen.xhp msgctxt "" @@ -17471,7 +17463,7 @@ "305\n" "help.text" msgid "In $[officename] you can also activate an icon for sending faxes to a default fax. To do this, choose Tools - Customize - Toolbars, click Add Commands and add from \"Documents\" the Send Default Fax icon. You can set which fax is used when this button is pressed under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Print." -msgstr "In $[officename] können Sie auch ein Symbol verwenden um Faxe zum Standard-Faxanschluss zu senden. Um dies zu erreichen, wählen Sie Extras - Anpassen - Symbolleisten, klicken Sie Kommando hinzufügen und fügen Sie aus der Kategorie Dokumente das Symbol Standard-Fax senden ein. Sie können unter %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Druckeneinstellen, welches Fax genutzt wird, wenn Sie die Schaltfläche anklicken." +msgstr "In $[officename] können Sie auch ein Symbol verwenden um Faxe zum Standard-Faxanschluss zu senden. Um dies zu erreichen, wählen Sie Extras - Anpassen - Symbolleisten, klicken Sie Kommando hinzufügen und fügen Sie aus der Kategorie Dokumente das Symbol Standard-Fax senden ein. Sie können unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Druckeneinstellen, welches Fax genutzt wird, wenn Sie die Schaltfläche anklicken." #: spadmin.xhp msgctxt "" @@ -17568,7 +17560,7 @@ "11\n" "help.text" msgid "Double-click My Templates in the list. You will see the user-defined templates in the user directory specified under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths. Select the template you have just saved." -msgstr "Klicken Sie in der Liste doppelt auf Meine Vorlagen. Sie werden die benutzerdefinierten Vorlagen im Benutzerverzeichnis sehen, das Sie unter %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME - Pfade festgelegt haben. Wählen Sie die Vorlage, die Sie gerade gespeichert haben." +msgstr "Klicken Sie in der Liste doppelt auf Meine Vorlagen. Sie werden die benutzerdefinierten Vorlagen im Benutzerverzeichnis sehen, das Sie unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Pfade festgelegt haben. Wählen Sie die Vorlage, die Sie gerade gespeichert haben." #: standard_template.xhp msgctxt "" @@ -18533,7 +18525,7 @@ "bm_id3144436\n" "help.text" msgid "tab stops; inserting and editingparagraphs; tab stopsdefaults;tab stops in textediting; tab stopsinserting;tab stopsdecimal tab stopsdeleting;tab stopsmoving;tab stops on rulerrulers; default settingsrulers; measurement unitsmeasurement units; changing on rulers" -msgstr "Tabulatoren; einfügen und bearbeitenAbsätze; TabulatorenStandards;Tabulatoren in TextBearbeiten; TabulatorenEinfügen;TabulatorenDezimaltabulatorenLöschen;TabulatorenVerschieben;Tabulatoren im LinealLineale; StandardeinstellungenLineale; MaßeinheitenMaßeinheiten; in Linealen ändern" +msgstr "Tabulatoren; einfügen und bearbeitenAbsätze; TabulatorenStandards; Tabulatoren in TextBearbeiten; TabulatorenEinfügen; TabulatorenDezimaltabulatorenLöschen; TabulatorenVerschieben; Tabulatoren im LinealLineale; StandardeinstellungenLineale; MaßeinheitenMaßeinheiten; in Linealen ändern" #: tabs.xhp msgctxt "" @@ -18558,7 +18550,7 @@ "par_id9434492\n" "help.text" msgid "Change the default tab stops for all documents: Use the menu %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General." -msgstr "Ändern der Standardtabulatoren für alle Dokumente: Nutzen Sie hierzu das Register %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Allgemein." +msgstr "Ändern der Standardtabulatoren für alle Dokumente: Nutzen Sie hierzu das Register %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Allgemein." #: tabs.xhp msgctxt "" @@ -18803,7 +18795,7 @@ "14\n" "help.text" msgid "If you want to change the settings of your default tab stops, you will find further information under %PRODUCTNAME Writer - General%PRODUCTNAME Calc - General%PRODUCTNAME Draw - General%PRODUCTNAME Impress - General(module name) - General in the Options dialog box." -msgstr "Wenn Sie die Standard-Tabulatoren ändern möchten, finden Sie weitere Informationen unter%PRODUCTNAME Writer - Allgemein%PRODUCTNAME Calc - Allgemein%PRODUCTNAME Draw - Allgemein%PRODUCTNAME Impress - Allgemein(Modulname) - Allgemein im Dialog Optionen." +msgstr "Wenn Sie die Standard-Tabulatoren ändern möchten, finden Sie weitere Informationen unter %PRODUCTNAME Writer - Allgemein%PRODUCTNAME Calc - Allgemein%PRODUCTNAME Draw - Allgemein%PRODUCTNAME Impress - Allgemein (Modulname) - Allgemein im Dialog Optionen." #: tabs.xhp msgctxt "" @@ -18812,7 +18804,7 @@ "15\n" "help.text" msgid "The context menu of the ruler allows you to change the displayed units of measurement. These changes are only valid until you exit $[officename], and they only apply to the ruler on whose context menu you made the change. If you want to change the ruler measurement units permanently, choose Tools - Options - [Document type] - View and change the measurement unit there." -msgstr "Im Kontextmenü des Lineals können Sie die angezeigte Maßeinheit umstellen. Diese Änderungen sind nur so lange gültig, bis Sie $[officename] beenden, und wirken sich nur auf das Lineal aus, über dessen Kontextmenü Sie die Änderungen vorgenommen haben. Wenn Sie die Maßeinheit der Lineale dauerhaft ändern möchten, wählen Sie Extras – Optionen – [Dokumenttyp] – Ansicht und nehmen die Umstellung dort vor." +msgstr "Im Kontextmenü des Lineals können Sie die angezeigte Maßeinheit umstellen. Diese Änderungen sind nur so lange gültig, bis Sie $[officename] beenden, und wirken sich nur auf das Lineal aus, über dessen Kontextmenü Sie die Änderungen vorgenommen haben. Wenn Sie die Maßeinheit der Lineale dauerhaft ändern möchten, wählen Sie Extras – Optionen... – [Dokumenttyp] – Ansicht und nehmen die Umstellung dort vor." #: tabs.xhp msgctxt "" @@ -19332,7 +19324,7 @@ "4\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Pfade." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Pfade." #: workfolder.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/shared/optionen.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-10 09:44+0000\n" +"PO-Revision-Date: 2014-08-30 10:04+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402393457.000000\n" +"X-POOTLE-MTIME: 1409393075.000000\n" #: 01000000.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3153665\n" "help.text" msgid "options; tools defaults; program configuration settings; program configuration" -msgstr "Optionen;Extras Standardeinstellungen;Programmeinstellungen Einstellungen;Programmeinstellungen" +msgstr "Optionen; ExtrasStandardeinstellungen; ProgrammeinstellungenEinstellungen; Programmeinstellungen" #: 01000000.xhp msgctxt "" @@ -82,7 +82,7 @@ "par_id1013200911280529\n" "help.text" msgid "Note for Mac OS X users: The Help mentions the menu path Tools - Options at numerous places. Replace this path with %PRODUCTNAME - Preferences on your Mac OS X main menu. Both menu entries open the Options dialog box." -msgstr "Bemerkungen für Anwender von Mac OS X: Die Hilfe erwähnt an mehreren Stellen den Menüpfad Extras - Optionen. Ersetzen Sie dies durch %PRODUCTNAME - Eigenschaften auf Ihrem Mac OS X Hauptmenü. Beide Menüeinträge öffnen den Optionsdialog." +msgstr "Bemerkungen für Anwender von Mac OS X: Die Hilfe erwähnt an mehreren Stellen den Menüpfad Extras - Optionen... Ersetzen Sie dies durch %PRODUCTNAME - Eigenschaften auf Ihrem Mac OS X Hauptmenü. Beide Menüeinträge öffnen den Dialog Optionen." #: 01000000.xhp msgctxt "" @@ -554,7 +554,7 @@ "bm_id3143284\n" "help.text" msgid "saving; options defaults;of saving URL; saving absolute/relative paths relative saving of URLs absolute saving of URLs" -msgstr "Speichern; Optionen Vorgaben;beim Speichern URL; absolute/relative Pfade speichern URLs relativ speichern URLs absolut speichern" +msgstr "Speichern; OptionenVorgaben; beim SpeichernURL; absolute/relative Pfade speichernURLs relativ speichernURLs absolut speichern" #: 01010200.xhp msgctxt "" @@ -741,7 +741,7 @@ "37\n" "help.text" msgid "To change the location of the backup copy, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths, and then enter a new path for the backup file." -msgstr "Um den Speicherort für die Sicherungskopien zu ändern, wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME - Pfade, und geben dort einen neuen Pfad für die Sicherungsdateien an." +msgstr "Um den Speicherort für die Sicherungskopien zu ändern, wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME - Pfade und geben dort einen neuen Pfad für die Sicherungsdateien an." #: 01010200.xhp msgctxt "" @@ -3492,7 +3492,7 @@ "bm_id3155341\n" "help.text" msgid "views; defaults defaults; views settings; views scaling; font sizes in user interface font sizes; scaling on screen WYSIWYG in fonts lists previews; fonts lists font lists font name box mouse; positioning clipboard; selection clipboard selection clipboard" -msgstr "Ansichten; StandardStandard; AnsichtenEinstellungen; AnsichtenSkalierung; Schriftgröße in der BenutzeroberflächeSchriftgröße; Skalierung auf dem BildschirmWYSIWYG in SchriftartenlisteVorschau; SchriftartenlisteListe der SchriftartenSchriftart (Feld)Maus; PositionierungZwischenablage; Auswahl in ZwischenablageAuswahl in Zwischenablage" +msgstr "Ansichten; StandardStandard; AnsichtenEinstellungen; AnsichtenSkalierung; Schriftgröße in der BenutzeroberflächeSchriftgröße; Skalierung auf dem BildschirmWYSIWYG in SchriftartenlisteVorschau; SchriftartenlisteListe der SchriftartenSchriftart (Feld)Maus; PositionierungZwischenablage; Auswahl in ZwischenablageAuswahl; in Zwischenablage" #: 01010800.xhp msgctxt "" @@ -4663,7 +4663,7 @@ "tit\n" "help.text" msgid "Accessibility" -msgstr "Zugänglichkeit (Accessibility)" +msgstr "Barrierefreiheit" #: 01013000.xhp msgctxt "" @@ -4671,7 +4671,7 @@ "bm_id3159411\n" "help.text" msgid "disabled personstext colors for better accessibilityanimations; accessibility optionsHelp tips; hidinghigh contrast modeaccessibility; optionsoptions; accessibility" -msgstr "Behinderte PersonenTextfarben zur besseren LesbarkeitAnimationen; ZugänglichkeitsoptionenTipps; ausblendenKontrastdarstellungsmodusZugänglichkeit; OptionenOptionen; Zugänglichkeit" +msgstr "Personen mit BehinderungTextfarben zur besseren LesbarkeitAnimationen; Optionen der BarrierefreiheitTipps; ausblendenKontrastdarstellungsmodusBarrierefreiheit; OptionenOptionen; Barrierefreiheit" #: 01013000.xhp msgctxt "" @@ -4680,7 +4680,7 @@ "1\n" "help.text" msgid "Accessibility" -msgstr "Zugänglichkeit" +msgstr "Barrierefreiheit" #: 01013000.xhp msgctxt "" @@ -4689,7 +4689,7 @@ "2\n" "help.text" msgid "Sets options that make %PRODUCTNAME programs more accessible for users with reduced sight, limited dexterity or other disabilities." -msgstr "Legt Optionen für die Zugänglichkeit der Module von %PRODUCTNAME fest, z. B. für Personen mit Sehbehinderungen oder für die Steuerung der Module ohne die Maus." +msgstr "Legt Optionen für die Barrierefreiheit der Module von %PRODUCTNAME fest, z.B. für Personen mit Sehbehinderungen oder für die Steuerung der Module ohne die Maus." #: 01013000.xhp msgctxt "" @@ -4707,7 +4707,7 @@ "10\n" "help.text" msgid "Sets accessibility options." -msgstr "Hier legen Sie die Zugänglichkeitsoptionen fest." +msgstr "Hier legen Sie die Optionen der Barrierefreiheit fest." #: 01013000.xhp msgctxt "" @@ -5443,7 +5443,7 @@ "bm_id2322153\n" "help.text" msgid "macros;selecting security warningssecurity;options for documents with macrosmacros;security" -msgstr "Makros;Auswahl der SicherheitswarnungenSicherheit;Optionen für Dokumente mit MakrosMakros;Sicherheit" +msgstr "Makros; Auswahl der SicherheitswarnungenSicherheit; Optionen für Dokumente mit MakrosMakros; Sicherheit" #: 01030300.xhp msgctxt "" @@ -6094,7 +6094,7 @@ "8\n" "help.text" msgid "Specifies the settings for basic fonts for complex text layout languages if their support has been activated under %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." -msgstr "Legt die Einstellungen zu Basisschriften für \"Complex Text Layout\"-Sprachen fest, wenn die Unterstützung unter %PRODUCTNAME - EigenschaftenExtras - Optionen - Spracheinstellungen - Sprachen aktiviert wurde." +msgstr "Legt die Einstellungen zu Basisschriften für \"Complex Text Layout\"-Sprachen fest, wenn die Unterstützung unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - Spracheinstellungen - Sprachen aktiviert wurde." #: 01040200.xhp msgctxt "" @@ -6513,7 +6513,7 @@ "19\n" "help.text" msgid "You can also change the basic fonts for Asian and complex text layout languages if their support is enabled in %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." -msgstr "Sie können die Grundschriften für asiatische und Complex Text Layout Sprachen ändern, wenn Sie die entsprechnde Unterstützung unter%PRODUCTNAME - EigenschaftenExtras - Optionen - Spracheinstellungen - Sprachen aktiviert haben." +msgstr "Sie können die Grundschriften für asiatische und Complex Text Layout Sprachen ändern, wenn Sie die entsprechnde Unterstützung unter%PRODUCTNAME - EigenschaftenExtras - Optionen... - Spracheinstellungen - Sprachen aktiviert haben." #: 01040300.xhp msgctxt "" @@ -7441,7 +7441,7 @@ "bm_id3144510\n" "help.text" msgid "non-printing characters (Writer)displaying; non-printing characters (Writer)paragraph marks; displaying (Writer)characters; displaying only on screen (Writer)optional hyphens (Writer)hyphens; displaying custom (Writer)custom hyphens (Writer)spaces; displaying (Writer)spaces; showing protected spaces (Writer)protected spaces; showing (Writer)non-breaking spaces (Writer)tab stops; displaying (Writer)break display (Writer)hidden text;showing (Writer)hidden fields display (Writer)paragraphs; hidden paragraphs (Writer)cursor; allowing in protected areas (Writer)" -msgstr "Steuerzeichen (Writer)Anzeigen; Steuerzeichen (Writer)Absatzzeichen; anzeigen (Writer)Zeichen; nur auf dem Bildschirm anzeigen (Writer)Bedingte Trennstriche (Writer)Trennstriche; bedingte Trennstriche anzeigen (Writer)Geschützte Bindestriche (Writer)Leerzeichen; anzeigen (Writer)Leerzeichen; geschützte anzeigen (Writer)Geschützte Leerzeichen; anzeigen (Writer)Geschützte Leerzeichen (Writer)Tabulatoren; anzeigen (Writer)Anzeigen von Umbrüchen (Writer)Ausgeblendeten Text; anzeigen (Writer)Ausgeblendete Felder anzeigen (Writer)Absätze; ausgeblendete (Writer)Cursor; in geschützten Bereichen zulassen (Writer)" +msgstr "Steuerzeichen (Writer)Anzeigen; Steuerzeichen (Writer)Absatzzeichen anzeigen (Writer)Zeichen; nur auf dem Bildschirm anzeigen (Writer)Bedingte Trennstriche (Writer)Trennstriche; bedingte Trennstriche anzeigen (Writer)Geschützte Bindestriche (Writer)Leerzeichen; anzeigen (Writer)Leerzeichen; geschützte anzeigen (Writer)Geschützte Leerzeichen; anzeigen (Writer)Tabulatoren; anzeigen (Writer)Anzeigen; Umbrüche (Writer)Ausgeblendeten Text; anzeigen (Writer)Ausgeblendete Felder; anzeigen (Writer)Absätze; ausgeblendete (Writer)Cursor; in geschützten Bereichen zulassen (Writer)" #: 01040600.xhp msgctxt "" @@ -8374,7 +8374,7 @@ "bm_id3577990\n" "help.text" msgid "Word documents;compatibility importing;compatibility settings for text import options;compatibility (Writer) compatibility settings for MS Word import Microsoft Office;importing Word documents layout;importing Word documents formatting;printer metrics (Writer) metrics;document formatting (Writer) printer metrics for document formatting (Writer)" -msgstr "Word-Dokumente;Kompatibilität Importieren;Kompatibilitätseinstellung für den Textimport Optionen;Kompatibilität (Writer) Kompatibilitätseinstellungen für den Import aus MS Word Microsoft Office;Word-Dokumente importieren Layout;Word-Dokumente importieren Formatierung;Druckermaße (Writer) Maße;Dokumentformatierung (Writer) Druckermaße für Textformatierung verwenden (Writer)" +msgstr "Word-Dokumente; KompatibilitätImportieren; Kompatibilitätseinstellung für den TextimportOptionen; Kompatibilität (Writer)Kompatibilitätseinstellungen für den Import aus MS WordMicrosoft Office; Word-Dokumente importierenLayout; Word-Dokumente importierenFormatierung; Druckermaße (Writer) Maße; Dokumentformatierung (Writer)Druckermaße für Textformatierung verwenden (Writer)" #: 01041000.xhp msgctxt "" @@ -8770,7 +8770,7 @@ "bm_id5164036\n" "help.text" msgid "automatic captions (Writer)AutoCaption function in %PRODUCTNAME Writercaptions;automatic captions (Writer)" -msgstr "automatische Beschriftungen (Writer)Automatische Beschriftungs-Funktion in %PRODUCTNAME WriterBeschriftungen;automatische Beschriftungen (Writer)" +msgstr "Automatische Beschriftungen (Writer)Automatische Beschriftungs-Funktion in %PRODUCTNAME WriterBeschriftungen; automatische Beschriftungen (Writer)" #: 01041100.xhp msgctxt "" @@ -9267,7 +9267,7 @@ "par_id984221\n" "help.text" msgid "Set the grid color on %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Appearance." -msgstr "Setzen Sie die Farbe des Rasters unter %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME - Darstellung." +msgstr "Setzen Sie die Farbe des Rasters unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME - Darstellung." #: 01050300.xhp msgctxt "" @@ -10351,7 +10351,7 @@ "6\n" "help.text" msgid "Specifies whether formulas with iterative references (formulas that are continuously repeated until the problem is solved) are calculated after a specific number of repetitions. If the Iterations box is not marked, an iterative reference in the table will cause an error message." -msgstr "Gibt an, ob Formeln mit zirkulären Referenzen (d. h. Formeln, die bis zur Lösung der Aufgabe ständig wiederholt werden) nach einer bestimmten Anzahl von Wiederholungen ausgerechnet werden sollen. Wenn die Option Iterationen nicht markiert ist, führen zirkuläre Referenzen in Tabellen zu Fehlermeldungen." +msgstr "Gibt an, ob Formeln mit zirkulären Referenzen (d.h. Formeln, die bis zur Lösung der Aufgabe ständig wiederholt werden) nach einer bestimmten Anzahl von Wiederholungen ausgerechnet werden sollen. Wenn die Option Iterationen nicht markiert ist, führen zirkuläre Referenzen in Tabellen zu Fehlermeldungen." #: 01060500.xhp msgctxt "" @@ -10513,7 +10513,7 @@ "23\n" "help.text" msgid "Sets the maximum number of iteration steps." -msgstr "Legt die maximal zulässige Anzahl von Iterationsschritten fest." +msgstr "Legt die maximal zulässige Anzahl von Iterationsschritten fest." #: 01060500.xhp msgctxt "" @@ -11013,7 +11013,7 @@ "3\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Print defines the settings for all spreadsheets. To define settings for the current document only, choose File - Print, then click the Options button." -msgstr "%PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Calc - Drucken legt die Einstellungen für alle Tabellendokumente fest. Um die Einstellung nur für das aktuelle Dokument zu ändern, wählen SieDatei - Drucken, und nehmen dort die entsprechenden Einstellungen vor." +msgstr "%PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Calc - Drucken legt die Einstellungen für alle Tabellendokumente fest. Um die Einstellung nur für das aktuelle Dokument zu ändern, wählen SieDatei - Drucken... und nehmen Sie dort die entsprechenden Einstellungen vor." #: 01060700.xhp msgctxt "" @@ -11961,7 +11961,7 @@ "bm_id3155450\n" "help.text" msgid "printing; drawings defaultsdrawings; printing defaultspages;printing page names in presentationsprinting; dates in presentationsdates; printing in presentationstimes; inserting when printing presentationsprinting; hidden pages of presentationshidden pages; printing in presentationsprinting; without scaling in presentationsscaling; when printing presentationsprinting; fitting to pages in presentationsfitting to pages; print settings in presentationsprinting; tiling pages in presentations" -msgstr "Drucken; Standardeinstellungen für ZeichnungenZeichnungen; StandarddruckeinstellungenSeiten;Seitennamen in Präsentationen druckenDrucken; Datumsangaben in PräsentationenDatumsangaben; in Präsentationen druckenUhrzeiten; beim Drucken einer Präsentation einfügenDrucken; ausgeblendete Seiten in PräsentationenAusgeblendeten Seiten; in Präsentationen druckenDrucken; ohne Skalierung in PräsentationenSkalierung; beim Drucken von PräsentationenDrucken; an Seitengröße anpassenAn Seitengröße anpassen; Druckeinstellungen in PräsentationenDrucken; Seiten kacheln in Präsentationen" +msgstr "Drucken; Standardeinstellungen für ZeichnungenZeichnungen; StandarddruckeinstellungenSeiten; Seitennamen in Präsentationen druckenDrucken; Datumsangaben in PräsentationenDatumsangaben; in Präsentationen druckenUhrzeiten; beim Drucken einer Präsentation einfügenDrucken; ausgeblendete Seiten in PräsentationenAusgeblendeten Seiten; in Präsentationen druckenDrucken; ohne Skalierung in PräsentationenSkalierung; beim Drucken von PräsentationenDrucken; an Seitengröße anpassenAn Seitengröße anpassen; Druckeinstellungen in PräsentationenDrucken; Seiten kacheln in Präsentationen" #: 01070400.xhp msgctxt "" @@ -12301,7 +12301,7 @@ "bm_id3149295\n" "help.text" msgid "presentations; starting with wizardobjects; always moveable (Impress/Draw)distorting in drawingsspacing; tabs in presentationstab stops; spacing in presentationstext objects; in presentations and drawings" -msgstr "Präsentationen; mit Assistenten startenObjekte; immer verschiebbar (Impress/Draw)Verzerren in ZeichnungenAbstand; Tabulatoren in PräsentationenTabulatoren; Abstände in PräsentationenTextobjekte; in Präsentationen und Zeichnungen" +msgstr "Präsentationen; mit Assistenten startenObjekte; immer verschiebbar (Impress/Draw)Verzerren in ZeichnungenAbstände; Tabulatoren in PräsentationenTabulatoren; Abstände in PräsentationenTextobjekte; in Präsentationen und Zeichnungen" #: 01070500.xhp msgctxt "" @@ -12686,7 +12686,7 @@ "2\n" "help.text" msgid "Defines the print format and print options for all new formula documents. These options apply when you print a formula directly from %PRODUCTNAME Math. You can also call the dialog by clicking the Options button in the Print dialog. The settings you define in the %PRODUCTNAME - PreferencesTools - Options dialog will be permanent settings, whereas the settings in the Print dialog are only valid for the current document." -msgstr "Legt das Druckformat und die Druckoptionen für alle neuen Formeldokumente fest. Diese Optionen gelten für Formeln, die Sie direkt aus %PRODUCTNAME Math drucken. Diese Einstellungen können Sie auch direkt im Druckdialog vornehmen. Die Einstellungen, welche Sie in %PRODUCTNAME - EigenschaftenExtras - Optionen setzen, gelten allgemein, während die Einstellungen im Druckdialog nur für das aktuelle Dokument gültig sind." +msgstr "Legt das Druckformat und die Druckoptionen für alle neuen Formeldokumente fest. Diese Optionen gelten für Formeln, die Sie direkt aus %PRODUCTNAME Math drucken. Diese Einstellungen können Sie auch direkt im Druckdialog vornehmen. Die Einstellungen, welche Sie in %PRODUCTNAME - EigenschaftenExtras - Optionen... setzen, gelten allgemein, während die Einstellungen im Druckdialog nur für das aktuelle Dokument gültig sind." #: 01090000.xhp msgctxt "" @@ -12711,7 +12711,7 @@ "bm_id3156410\n" "help.text" msgid "printing;formulas in $[officename] Mathtitle rows; printing in $[officename] Mathformula texts; printing in $[officename] Mathframes; printing in $[officename] Mathprinting; in original size in $[officename] Mathoriginal size; printing in $[officename] Mathprinting; fitting to pages in $[officename] Mathformat filling printing in $[officename] Mathprinting; scaling in $[officename] Mathscaling; printing in $[officename] Mathfitting to pages;print settings in Math" -msgstr "Drucken;Formeln in $[officename] MathTitelzeilen; in $[officename] Math druckenFormeltexte; in $[officename] Math druckenRahmen; in $[officename] Math druckenDrucken; in Originalgröße in $[officename] MathOriginalgröße; drucken in $[officename] MathDrucken; an Seiten anpassen in $[officename] MathFormatfüllend drucken in $[officename] MathDrucken; Skalierung in $[officename] MathSkalierung; in $[officename] Math druckenAn Seiten anpassen;Druckeinstellungen in Math" +msgstr "Drucken;Formeln in $[officename] MathTitelzeilen; in $[officename] Math druckenFormeltexte; in $[officename] Math druckenRahmen; in $[officename] Math druckenDrucken; in Originalgröße in $[officename] MathOriginalgröße; drucken in $[officename] MathDrucken; an Seiten anpassen in $[officename] MathFormatfüllend drucken in $[officename] MathDrucken; Skalierung in $[officename] MathSkalierung; in $[officename] Math druckenAn Seiten anpassen; Druckeinstellungen in Math" #: 01090100.xhp msgctxt "" @@ -14984,7 +14984,7 @@ "par_idN1056A\n" "help.text" msgid "The Macro Security dialog appears when a document contains one or more macros. You can also call the dialog from the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Security page." -msgstr "Der Dialog Makro Sicherheit erscheint, wenn ein Dokument ein oder mehrere Makros enthält. Sie können diesen Dialog auch über %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME - Sicherheit aufrufen." +msgstr "Der Dialog Makro Sicherheit erscheint, wenn ein Dokument ein oder mehrere Makros enthält. Sie können diesen Dialog auch über %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME - Sicherheit aufrufen." #: macrosecurity_sl.xhp msgctxt "" @@ -15448,7 +15448,7 @@ "bm_id7657094\n" "help.text" msgid "update options online update options options;online update online updates; checking automatically updates; checking automatically Internet; checking for updates" -msgstr "Update Optionen Online Update Optionen Optionen;Online Update Online Updates; automatisch suchen Updates; automatisch suchen Internet; Nach Updates suchen" +msgstr "Update OptionenOnline Update OptionenOptionen; Online UpdateOnline Updates; automatisch suchenUpdates; automatisch suchenInternet; Nach Updates suchen" #: online_update.xhp msgctxt "" @@ -15480,7 +15480,7 @@ "par_id7523728\n" "help.text" msgid "Mark to check for online updates periodically, then select the time interval how often %PRODUCTNAME will check for online updates. %PRODUCTNAME will check once a day, week, or month, as soon as a working Internet connection is detected. If you connect to the Internet by a proxy server, set the proxy on %PRODUCTNAME - PreferencesTools - Options - Internet - Proxy." -msgstr "Markieren Sie den Eintrag, wenn Sie regelmäßig nach Updates suchen wollen. Danach wählen Sie das Intervall in dem %PRODUCTNAME auf Updates prüfen soll. %PRODUCTNAME wird einmal am Tag, in der Woche oder im Monat nach Updates suchen, sofern eine Sie mit dem Internetverbindung verfügbar ist. Wenn Sie über einen Proxy mit dem Internet verbunden sind, konfigurieren Sie diesen unter %PRODUCTNAME - EigenschaftenExtras - Optionen - Internet - Proxy." +msgstr "Markieren Sie den Eintrag, wenn Sie regelmäßig nach Updates suchen wollen. Danach wählen Sie das Intervall in dem %PRODUCTNAME auf Updates prüfen soll. %PRODUCTNAME wird einmal am Tag, in der Woche oder im Monat nach Updates suchen, sofern eine Sie mit dem Internetverbindung verfügbar ist. Wenn Sie über einen Proxy mit dem Internet verbunden sind, konfigurieren Sie diesen unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - Internet - Proxy." #: online_update.xhp msgctxt "" @@ -15640,7 +15640,7 @@ "par_idN1054E\n" "help.text" msgid "On the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Mail Merge E-mail tab page, click the Server Authentication button to specify the server security settings." -msgstr "klicken Sie unter %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Writer - Serienbrief-E-mail auf Server Authentifizierung, um die Einstellungen der Server-Sicherheit zu setzen." +msgstr "klicken Sie unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Writer - Serienbrief-E-mail auf Server Authentifizierung, um die Einstellungen der Server-Sicherheit zu setzen." #: serverauthentication.xhp msgctxt "" @@ -15840,7 +15840,7 @@ "par_idN10557\n" "help.text" msgid "When you enter settings on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Mail Merge E-mail tab page, you can click the Test Settings button to test your settings." -msgstr "Wenn Sie Ihre Einstellungen unter %PRODUCTNAME - EigenschaftenExtras - Optionen - %PRODUCTNAME Writer - Serienbrief-E-mail vorgenommen haben, können Sie zum Testen auf Einstellungen testen klicken." +msgstr "Wenn Sie Ihre Einstellungen unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - %PRODUCTNAME Writer - Serienbrief-E-mail vorgenommen haben, können Sie zum Testen auf Einstellungen testen klicken." #: testaccount.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/simpress/01.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/simpress/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/simpress/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-25 17:41+0200\n" -"PO-Revision-Date: 2014-06-06 17:47+0000\n" +"PO-Revision-Date: 2014-08-27 09:23+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402076860.000000\n" +"X-POOTLE-MTIME: 1409131386.000000\n" #: 01170000.xhp msgctxt "" @@ -3628,7 +3628,7 @@ "3\n" "help.text" msgid "To edit the name, choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - User Data." -msgstr "Um den Namen zu bearbeiten, wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen - $[officename] - Benutzerdaten." +msgstr "Um den Namen zu bearbeiten, wählen Sie %PRODUCTNAME - EigenschaftenExtras - Optionen... - $[officename] - Benutzerdaten." #: 04990700.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/simpress/02.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/simpress/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/simpress/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/simpress/02.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2013-11-05 16:29+0000\n" +"POT-Creation-Date: 2014-05-02 00:10+0200\n" +"PO-Revision-Date: 2014-08-27 09:23+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1383668954.0\n" +"X-POOTLE-MTIME: 1409131406.000000\n" #: 04010000.xhp msgctxt "" @@ -246,7 +246,7 @@ "3\n" "help.text" msgid "This Status bar field uses the same measurement units as the rulers. You can define the units by choosing %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress - General." -msgstr "Die Einheit des Felds in der Statusleiste entspricht der Einheit in den Linealen. Sie können die Einheiten unter %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Impress - Allgemein festlegen." +msgstr "Die Einheit des Felds in der Statusleiste entspricht der Einheit in den Linealen. Sie können die Einheiten unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Impress - Allgemein festlegen." #: 08060000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/simpress/guide.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2013-12-06 16:49+0000\n" +"POT-Creation-Date: 2014-05-02 00:10+0200\n" +"PO-Revision-Date: 2014-08-30 08:55+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1386348551.0\n" +"X-POOTLE-MTIME: 1409388935.000000\n" #: 3d_create.xhp msgctxt "" @@ -1851,7 +1851,7 @@ "bm_id3146119\n" "help.text" msgid "slide shows; customcustom slide showsstarting; always with the current slidestarting;custom slide showshiding;slidesshowing;hidden slideshidden pages;showing" -msgstr "Bildschirmpräsentationen; benutzerdefinierteBenutzerdefinierte BildschirmpräsentationenStarten; immer mit aktueller FolieStarten;benutzerdefinierte BildschirmpräsentationenAusblenden;FolienAnzeigen;ausgeblendete FolienAusgeblendete Seiten;anzeigen" +msgstr "Bildschirmpräsentationen; benutzerdefinierteBenutzerdefinierte BildschirmpräsentationenStarten; immer mit aktueller FolieStarten; benutzerdefinierte BildschirmpräsentationenAusblenden; FolienAnzeigen; ausgeblendete FolienAusgeblendete Seiten; anzeigen" #: individual.xhp msgctxt "" @@ -1986,7 +1986,7 @@ "66\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress - General." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Impress - Allgemein." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Impress - Allgemein." #: individual.xhp msgctxt "" @@ -2091,7 +2091,7 @@ "bm_id3154702\n" "help.text" msgid "accessibility; $[officename] Impress" -msgstr "Zugänglichkeit; $[officename] Impress" +msgstr "Barrierefreiheit; $[officename] Impress" #: keyboard.xhp msgctxt "" @@ -2514,7 +2514,7 @@ "bm_id3154013\n" "help.text" msgid "layers;working withlocking layershiding;layersunlocking layersshowing;hidden layersselecting;layers" -msgstr "Ebenen;arbeiten mitEbenen sperrenAusblenden;EbenenEbenen freigebenAnzeigen;ausgeblendete EbenenAuswählen;Ebenen" +msgstr "Ebenen; arbeiten mitEbenen sperrenAusblenden; EbenenEbenen freigebenAnzeigen; ausgeblendete EbenenAuswählen; Ebenen" #: layer_tipps.xhp msgctxt "" @@ -3540,7 +3540,7 @@ "bm_id3156386\n" "help.text" msgid "$[officename] Impress instructionsinstructions; $[officename] Impress" -msgstr "$[officename] Impress-AnleitungenAnleitungen; $[officename] Impress" +msgstr "$[officename] Impress; AnleitungenAnleitungen; $[officename] Impress" #: main.xhp msgctxt "" @@ -4441,7 +4441,7 @@ "3\n" "help.text" msgid "To set the default printing options for $[officename] Impress, choose Tools - Options - %PRODUCTNAME Impress - Print." -msgstr "Zum Festlegen der Standarddruckoptionen für $[officename] Impress wählen Sie Extras - Optionen - %PRODUCTNAME Impress - Drucken." +msgstr "Zum Festlegen der Standarddruckoptionen für $[officename] Impress wählen Sie Extras - Optionen... - %PRODUCTNAME Impress - Drucken." #: printing.xhp msgctxt "" @@ -4477,7 +4477,7 @@ "8\n" "help.text" msgid "These settings override the default printer options in Tools - Options - %PRODUCTNAME Impress - Print for the current print job only." -msgstr "Diese Einstellungen setzen die unter Extras - Optionen - %PRODUCTNAME Impress - Drucken festgelegten Standardoptionen für den aktuellen Druckauftrag außer Kraft." +msgstr "Diese Einstellungen setzen die unter Extras - Optionen... - %PRODUCTNAME Impress - Drucken festgelegten Standardoptionen für den aktuellen Druckauftrag außer Kraft." #: printing.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/smath/01.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/smath/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/smath/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/smath/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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: 2013-11-24 08:01+0000\n" +"PO-Revision-Date: 2014-08-27 08:53+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385280106.0\n" +"X-POOTLE-MTIME: 1409129629.000000\n" #: 02080000.xhp msgctxt "" @@ -3572,7 +3572,7 @@ "45\n" "help.text" msgid "To insert scalable floor brackets, type left lfloorright rfloor directly in the Commands window." -msgstr "Sie fügen durch eine direkte Eingabe im Kommandofenster sich automatisch an die Zeichengröße anpassende linke und rechte Linien mit Kanten unten und einem Platzhalter dazwischen ein, wenn Sie left lfloorright rfloor eingeben. Eine Eingabe ist aber auch ohne Platzhalter-Zeichen möglich." +msgstr "Sie fügen durch eine direkte Eingabe im Kommandofenster sich automatisch an die Zeichengröße anpassende linke und rechte Linien mit Kanten unten und einem Platzhalter dazwischen ein, wenn Sie left lfloorright rfloor eingeben. Eine Eingabe ist aber auch ohne Platzhalter-Zeichen möglich." #: 03090500.xhp msgctxt "" @@ -3581,7 +3581,7 @@ "46\n" "help.text" msgid "To insert scalable ceiling brackets, type left lceilright rceil directly in the Commands window." -msgstr "Sie fügen durch eine direkte Eingabe im Kommandofenster sich automatisch an die Zeichengröße anpassende linke und rechte Linien mit Kanten oben und einem Platzhalter dazwischen ein, wenn Sie left lceilright rceil eingeben. Eine Eingabe ist aber auch ohne Platzhalter-Zeichen möglich." +msgstr "Sie fügen durch eine direkte Eingabe im Kommandofenster sich automatisch an die Zeichengröße anpassende linke und rechte Linien mit Kanten oben und einem Platzhalter dazwischen ein, wenn Sie left lceilright rceil eingeben. Eine Eingabe ist aber auch ohne Platzhalter-Zeichen möglich." #: 03090500.xhp msgctxt "" @@ -6171,7 +6171,7 @@ "10\n" "help.text" msgid "Brackets do not adjust their size to the enclosed expression. For example, if you want \"( a over b )\" with a bracket size adjusted to a and b you must insert \"left\" and \"right\". Entering \"left(a over b right)\" produces appropriate sizing. If, however, the brackets themselves are part of the expression whose size is changed, they are included the size change: \"size 3(a over b)\" and \"size 12(a over b)\". The sizing of the bracket-to-expression ratio does not change in any way." -msgstr "Eine weitere Gemeinsamkeit all dieser Klammern ist es, dass sie ihre Größe nicht dem umschlossenen Ausdruck anpassen und umgekehrt. Wollen Sie z. B. \"( a over b )\" mit einer a und b angepassten Klammergröße darstellen, müssen Sie \"left\" und \"right\" einfügen. Die Eingabe von size18(\" stellt angemessene Größenverhältnisse her. Dasselbe gilt für die unterschiedliche Eingabe und somit entsprechenden Ergebnisse von \"(size 3{a over b})\" und \"left(size 3{a over b}right)\". Sind die Klammern selbst Teil des Ausdrucks, dessen Größe geändert wird, sind sie von der Größenveränderung auch betroffen: \"size 3(a over b)\" und \"size 12(a over b)\". Dies ändert nichts an dem Größenverhältnis von Klammer zu geklammertem Ausdruck." +msgstr "Eine weitere Gemeinsamkeit all dieser Klammern ist es, dass sie ihre Größe nicht dem umschlossenen Ausdruck anpassen und umgekehrt. Wollen Sie z.B. \"( a over b )\" mit einer a und b angepassten Klammergröße darstellen, müssen Sie \"left\" und \"right\" einfügen. Die Eingabe von size18(\" stellt angemessene Größenverhältnisse her. Dasselbe gilt für die unterschiedliche Eingabe und somit entsprechenden Ergebnisse von \"(size 3{a over b})\" und \"left(size 3{a over b}right)\". Sind die Klammern selbst Teil des Ausdrucks, dessen Größe geändert wird, sind sie von der Größenveränderung auch betroffen: \"size 3(a over b)\" und \"size 12(a over b)\". Dies ändert nichts an dem Größenverhältnis von Klammer zu geklammertem Ausdruck." #: 03091100.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/smath/guide.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/smath/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/smath/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/smath/guide.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2013-06-06 18:11+0000\n" -"Last-Translator: Raymond \n" +"POT-Creation-Date: 2014-05-02 00:14+0200\n" +"PO-Revision-Date: 2014-08-27 09:25+0000\n" +"Last-Translator: Christian \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1370542264.0\n" +"X-POOTLE-MTIME: 1409131514.000000\n" #: align.xhp msgctxt "" @@ -318,7 +318,7 @@ "tit\n" "help.text" msgid "Shortcuts ($[officename] Math Accessibility)" -msgstr "Tastatursteuerung ($[officename] Math Zugänglichkeit)" +msgstr "Tastatursteuerung ($[officename] Math Barrierefreiheit)" #: keyboard.xhp msgctxt "" @@ -326,7 +326,7 @@ "bm_id3149018\n" "help.text" msgid "accessibility; $[officename] Math shortcuts" -msgstr "Zugänglichkeit; Tastenkombinationen in $[officename] Math" +msgstr "Barrierefreiheit; Tastenkombinationen in $[officename] Math" #: keyboard.xhp msgctxt "" @@ -335,7 +335,7 @@ "12\n" "help.text" msgid "Shortcuts ($[officename] Math Accessibility)" -msgstr "Tastatursteuerung ($[officename] Math Zugänglichkeit)" +msgstr "Tastatursteuerung ($[officename] Math Barrierefreiheit)" #: keyboard.xhp msgctxt "" @@ -659,7 +659,7 @@ "bm_id3147341\n" "help.text" msgid "$[officename] Math;general instructionsinstructions; $[officename] MathEquation Editor, see $[officename] Math" -msgstr "$[officename] Math;allgemeine HinweiseAnleitungen; $[officename] MathFormel Editor, siehe $[officename] Math" +msgstr "$[officename] Math; allgemeine HinweiseAnleitungen; $[officename] MathFormel Editor, siehe $[officename] Math" #: main.xhp msgctxt "" @@ -862,7 +862,7 @@ "par_id755943\n" "help.text" msgid "If you have set up Math to convert imported MathType formulas (in %PRODUCTNAME - PreferencesTools - Options - Load/Save - Microsoft Office), you see the formula with a placeholder instead of the asterisk." -msgstr "Wenn Sie (unter %PRODUCTNAME - EigenschaftenExtras - Optionen - Laden/Speichern - Microsoft Office), eingestellt haben, dass Math importierte MathType Formeln umwandelt, sehen Sie die Formel mit einem Platzhalter anstatt eines Sterns." +msgstr "Wenn Sie (unter %PRODUCTNAME - EigenschaftenExtras - Optionen... - Laden/Speichern - Microsoft Office), eingestellt haben, dass Math importierte MathType Formeln umwandelt, sehen Sie die Formel mit einem Platzhalter anstatt eines Sterns." #: text.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/swriter/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:10+0200\n" -"PO-Revision-Date: 2014-06-21 06:01+0000\n" +"PO-Revision-Date: 2014-08-27 09:25+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403330487.000000\n" +"X-POOTLE-MTIME: 1409131557.000000\n" #: 00000004.xhp msgctxt "" @@ -877,7 +877,7 @@ "61\n" "help.text" msgid "Choose Insert - Caption - Options" -msgstr "Menü Einfügen - Beschriftung - Optionen" +msgstr "Menü Einfügen - Beschriftung... - Optionen" #: 00000404.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/swriter/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-25 17:42+0200\n" -"PO-Revision-Date: 2014-06-21 06:22+0000\n" +"PO-Revision-Date: 2014-08-30 09:52+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403331759.000000\n" +"X-POOTLE-MTIME: 1409392379.000000\n" #: 01120000.xhp msgctxt "" @@ -1561,7 +1561,7 @@ "11\n" "help.text" msgid "You can configure $[officename] according to your specific preferences for navigating within a document. To do this, choose Tools - Customize. The various tables for adapting menus, keyboard input or toolbars contain various functions for navigation within the document under the \"Navigate\" area. In this way you can jump to the index tags in the document with the \"To Next/Previous Index Tag\" functions." -msgstr "Zur Navigation innerhalb eines Dokuments können Sie $[officename] Ihren Wünschen entsprechend konfigurieren. Wählen Sie dazu den Menübefehl Extras - Anpassen. Auf den verschiedenen Registern zur Anpassung von Menüs, Tastatur oder Symbolleisten finden Sie im Bereich Navigieren verschiedene Funktionen, um sich innerhalb des Dokuments zu bewegen. So können Sie z. B. mit den Funktionen 'Zur nächsten/vorherigen Indexmarkierung' die Verzeichnismarkierungen im Dokument anspringen." +msgstr "Zur Navigation innerhalb eines Dokuments können Sie $[officename] Ihren Wünschen entsprechend konfigurieren. Wählen Sie dazu den Menübefehl Extras - Anpassen.... Auf den verschiedenen Registern zur Anpassung von Menüs, Tastatur oder Symbolleisten finden Sie im Bereich Navigieren verschiedene Funktionen, um sich innerhalb des Dokuments zu bewegen. So können Sie z. B. mit den Funktionen 'Zur nächsten/vorherigen Indexmarkierung' die Verzeichnismarkierungen im Dokument anspringen." #: 02110100.xhp msgctxt "" @@ -3629,7 +3629,7 @@ "2\n" "help.text" msgid "Shows or hides the horizontal ruler, that you can use to adjust page margins, tab stops, indents, borders, table cells, and to arrange objects on the page. To show the vertical ruler, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - View, and then select the Vertical ruler check box in the Ruler area." -msgstr "Blendet das Horizontale Lineal ein oder aus, das sie zum Einstellen von Seitenrändern,Tabulatoren, Einzügen, Umrandungen, Tabellenzellen verwenden können, und um Objekte auf der Seiten anzuordnen. Um das vertikale Lineal anzuzeigen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Ansicht und aktiveren dann das Markierfeld Vertikales Lineal im Bereich Lineal." +msgstr "Blendet das Horizontale Lineal ein oder aus, das sie zum Einstellen von Seitenrändern,Tabulatoren, Einzügen, Umrandungen, Tabellenzellen verwenden können, und um Objekte auf der Seiten anzuordnen. Um das vertikale Lineal anzuzeigen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Ansicht und aktiveren dann das Markierfeld Vertikales Lineal im Bereich Lineal." #: 03050000.xhp msgctxt "" @@ -3733,7 +3733,7 @@ "4\n" "help.text" msgid "To change the default field display to field names instead of the field contents, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - View, and then select the Field codes checkbox in the Display area." -msgstr "Um die standardmäßige Anzeige auf die Feldnamen anstelle der Feldinhalte zu ändern, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Ansicht und aktivieren dann das Markierfeld Feldnamen im Bereich Anzeigen." +msgstr "Um die standardmäßige Anzeige auf die Feldnamen anstelle der Feldinhalte zu ändern, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Ansicht und aktivieren dann das Markierfeld Feldnamen im Bereich Anzeigen." #: 03090000.xhp msgctxt "" @@ -3795,7 +3795,7 @@ "6\n" "help.text" msgid "To specify which nonprinting characters are displayed, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids, and then select the options that you want in the Display of area." -msgstr "Um festzulegen welche Steuerzeichen angezeigt werden, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Formatierungshilfen und markieren dann die gewünschten Optionen im Bereich Anzeigen von ." +msgstr "Um festzulegen welche Steuerzeichen angezeigt werden, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Formatierungshilfen und markieren dann die gewünschten Optionen im Bereich Anzeigen von ." #: 03120000.xhp msgctxt "" @@ -3882,7 +3882,7 @@ "3\n" "help.text" msgid "To enable this feature, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids, and ensure that the Hidden paragraphs check box in the Display of area is selected." -msgstr "Um diese Funktion zu aktivieren, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Formatierungshilfen und stellen Sie sicher, dass das Markierfeld Versteckte Absätze im Bereich Anzeigen von aktiviert ist." +msgstr "Um diese Funktion zu aktivieren, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Formatierungshilfen und stellen Sie sicher, dass das Markierfeld Versteckte Absätze im Bereich Anzeigen von aktiviert ist." #: 03140000.xhp msgctxt "" @@ -6204,7 +6204,7 @@ "9\n" "help.text" msgid "Inserts fields containing user data. You can change the user-data that is displayed by choosing %PRODUCTNAME - PreferencesTools - Options - $[officename] - User Data." -msgstr "Fügt Felder mit Benutzerdaten ein. Sie können die angezeigten Benutzerdaten unter %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Benutzerdaten ändern." +msgstr "Fügt Felder mit Benutzerdaten ein. Sie können die angezeigten Benutzerdaten unter %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Benutzerdaten ändern." #: 04090001.xhp msgctxt "" @@ -7307,7 +7307,7 @@ "14\n" "help.text" msgid "Inserts a text field that is hidden when the condition that you specify is met. To use this function, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids and clear the Fields: Hidden text check box." -msgstr "Fügt ein Textfeld ein, das versteckt wird, wenn die von Ihnen festgelegte Bedingung erfüllt ist. Zum Benutzen dieser Funktion wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Formatierungshilfen und deaktivieren das Markierfeld Feldbefehle: Versteckter Text ." +msgstr "Fügt ein Textfeld ein, das versteckt wird, wenn die von Ihnen festgelegte Bedingung erfüllt ist. Zum Benutzen dieser Funktion wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Formatierungshilfen und deaktivieren das Markierfeld Feldbefehle: Versteckter Text ." #: 04090003.xhp msgctxt "" @@ -7325,7 +7325,7 @@ "16\n" "help.text" msgid "Hides a paragraph when the condition that you specify is met. To use this function, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids and clear the Fields: Hidden paragraph check box." -msgstr "Versteckt einen Absatz, wenn die von Ihnen vorgegebene Bedingung zutrifft. Um diese Funktion anzuwenden, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Formatierungshilfen und deaktivieren das Markierfeld Feldbefehle: Versteckte Absätze." +msgstr "Versteckt einen Absatz, wenn die von Ihnen vorgegebene Bedingung zutrifft. Um diese Funktion anzuwenden, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Formatierungshilfen und deaktivieren das Markierfeld Feldbefehle: Versteckte Absätze." #: 04090003.xhp msgctxt "" @@ -9258,7 +9258,7 @@ "bm_id3145828\n" "help.text" msgid "logical expressions formulating conditions conditions; in fields and sections fields;defining conditions sections;defining conditions variables; in conditions user data;in conditions databases;in conditions hiding; database fields" -msgstr "Logische Ausdrücke Formulieren von Bedingungen Bedingungen; in Feldbefehlen und Abschnitten Feldbefehle;Bedingungen definieren Abschnitte;Bedingungen definieren Variablen; in Bedingungen Benutzerdaten;in Bedingungen Datenbanken;in Bedingungen Verbergen; Datenbankfelder" +msgstr "Logische AusdrückeFormulieren von BedingungenBedingungen; in Feldbefehlen und AbschnittenFeldbefehle; Bedingungen definierenAbschnitte; Bedingungen definierenVariablen; in BedingungenBenutzerdaten; in BedingungenDatenbanken; in BedingungenVerbergen; Datenbankfelder" #: 04090200.xhp msgctxt "" @@ -9600,7 +9600,7 @@ "96\n" "help.text" msgid "You can include user data when you define conditions. To change your user data, choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - User data. User data must be entered in the form of strings. You can query the user data with \"==\" (EQ), \"!=\" (NEQ), or \"!\"(NOT)." -msgstr "Sie können Benutzerdaten mit einbeziehen, wenn Sie Bedingungen definieren. Um Ihre Benutzerdaten zu ändern, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Benutzerdaten. Benutzerdaten müssen als Zeichenketten eingegeben werden. Sie können die Benutzerdaten mit \"==\" (EQ), \"!=\" (NEQ), or \"!\"(NOT) abfragen." +msgstr "Sie können Benutzerdaten mit einbeziehen, wenn Sie Bedingungen definieren. Um Ihre Benutzerdaten zu ändern, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Benutzerdaten. Benutzerdaten müssen als Zeichenketten eingegeben werden. Sie können die Benutzerdaten mit \"==\" (EQ), \"!=\" (NEQ), or \"!\"(NOT) abfragen." #: 04090200.xhp msgctxt "" @@ -10149,7 +10149,7 @@ "58\n" "help.text" msgid "To display hidden paragraphs on the screen, you can choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids, and clear the Fields: Hidden paragraphs check box." -msgstr "Um versteckte Absätze am Bildschirm anzuzeigen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Formatierungshilfen und deaktivieren das Markierfeld Felder: Versteckte Absätze." +msgstr "Um versteckte Absätze am Bildschirm anzuzeigen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Formatierungshilfen und deaktivieren das Markierfeld Felder: Versteckte Absätze." #: 04090200.xhp msgctxt "" @@ -13857,7 +13857,7 @@ "6\n" "help.text" msgid "The increment by which you move an object with the keyboard is determined by the document grid. To change the properties of the document grid, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Grid." -msgstr "Die Schrittweite mit der Sie ein Objekt mit der Tastatur bewegen, ist durch das Raster des Dokumentes festgelegt. Um die Eigenschaften des Dokumentenraster zu verändern, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Raster." +msgstr "Die Schrittweite mit der Sie ein Objekt mit der Tastatur bewegen, ist durch das Raster des Dokumentes festgelegt. Um die Eigenschaften des Dokumentenraster zu verändern, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Raster." #: 04150000.xhp msgctxt "" @@ -13918,7 +13918,7 @@ "50\n" "help.text" msgid "$[officename] can automatically format numbers that you enter in a table cell, for example, dates and times. To activate this feature, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table and click the Number recognition check box in the Input in tables area." -msgstr "$[officename] kann automatisch Zahlen formatieren, die Sie in eine Tabellenzelle einfügen, zum Beispiel Datums- oder Zeitangaben. Um diese Funktion zu aktivieren, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Tabelle und klicken auf das Markierfeld Zahlenerkennung im Bereich Eingabe in Tabellen." +msgstr "$[officename] kann automatisch Zahlen formatieren, die Sie in eine Tabellenzelle einfügen, zum Beispiel Datums- oder Zeitangaben. Um diese Funktion zu aktivieren, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Tabelle und klicken auf das Markierfeld Zahlenerkennung im Bereich Eingabe in Tabellen." #: 04150000.xhp msgctxt "" @@ -14150,7 +14150,7 @@ "53\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table" -msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Tabelle" +msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Tabelle" #: 04180400.xhp msgctxt "" @@ -14166,7 +14166,7 @@ "bm_id3145799\n" "help.text" msgid "databases; exchangingaddress books; exchangingexchanging databasesreplacing;databases" -msgstr "Datenbank; austauschen in TextdokumentAdressbuch; austauschenAustauschen; DatenbankenErsetzen;Datenbanken" +msgstr "Datenbanken; austauschen in TextdokumentAdressbücher; austauschenAustauschen; DatenbankenErsetzen; Datenbanken" #: 04180400.xhp msgctxt "" @@ -14413,7 +14413,7 @@ "4\n" "help.text" msgid "An inserted script is indicated by a small green rectangle. If you do not see the rectangle, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web - View, and select the Comments check box. To edit a script, double-click the green rectangle." -msgstr "Ein eingefügtes Skript wird durch ein kleines grünes Rechteck angezeigt. Wenn Sie das Rechteck nicht sehen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer/Web - Ansicht und markieren Sie das Markierfeld Kommentare. Um ein Skript zu bearbeiten, klicken Sie doppelt auf das grüne Rechteck." +msgstr "Ein eingefügtes Skript wird durch ein kleines grünes Rechteck angezeigt. Wenn Sie das Rechteck nicht sehen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer/Web - Ansicht und markieren Sie das Markierfeld Kommentare. Um ein Skript zu bearbeiten, klicken Sie doppelt auf das grüne Rechteck." #: 04200000.xhp msgctxt "" @@ -14773,7 +14773,7 @@ "4\n" "help.text" msgid "Specify the hyphenation options for text documents." -msgstr "Legen Sie die Silbentrennungs-Optionen für Textdokumente fest." +msgstr "Legen Sie die Optionen zur Silbentrennungs für Textdokumente fest." #: 05030200.xhp msgctxt "" @@ -20196,7 +20196,7 @@ "10\n" "help.text" msgid "To change the behavior of tables in a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table." -msgstr "Das Verhalten von Tabellen in einem Textdokument legen Sie unter %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Tabelle fest." +msgstr "Das Verhalten von Tabellen in einem Textdokument legen Sie unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Tabelle fest." #: 05090201.xhp msgctxt "" @@ -21114,7 +21114,7 @@ "5\n" "help.text" msgid "Enter the number of columns or rows that you want." -msgstr "Geben Sie die gewünschte Anzahl Spalten bzw. Zeilen ein." +msgstr "Geben Sie die gewünschte Anzahl Spalten bzw. Zeilen ein." #: 05120400.xhp msgctxt "" @@ -22011,7 +22011,7 @@ "par_idN1071D\n" "help.text" msgid "You can assign shortcut keys to Styles on the Tools - Customize - Keyboard tab page." -msgstr "Im Menü Extras - Anpassen, Register Tastatur können Sie Vorlagen Tastenkombinationen zuweisen." +msgstr "Im Menü Extras - Anpassen..., Register Tastatur können Sie Vorlagen Tastenkombinationen zuweisen." #: 05140000.xhp msgctxt "" @@ -22133,7 +22133,7 @@ "13\n" "help.text" msgid "Displays formatting styles for pages. Use page styles to determine page layouts, including the presence of headers and footers." -msgstr "Zeigt die Formatvorlagen für Seiten an. Verwenden Sie Seitenvorlagen, um die Optionen für das Seitenlayout festzulegen, z. B. das Vorhandensein von Kopf- und Fußzeilen." +msgstr "Zeigt die Formatvorlagen für Seiten an. Verwenden Sie Seitenvorlagen, um die Optionen für das Seitenlayout festzulegen, z.B. das Vorhandensein von Kopf- und Fußzeilen." #: 05140000.xhp msgctxt "" @@ -22294,7 +22294,7 @@ "bm_id3153925\n" "help.text" msgid "AutoCorrect function;text documents" -msgstr "AutoKorrektur Funktion;Text Dokumente" +msgstr "AutoKorrektur-Funktion; Textdokumente" #: 05150000.xhp msgctxt "" @@ -22312,7 +22312,7 @@ "2\n" "help.text" msgid "Automatically formats the file according to the options that you set under Tools - AutoCorrect Options." -msgstr "Formatiert die Datei automatisch entsprechend den von Ihnen unter Extras - AutoKorrektur Optionen getroffenen Einstellungen." +msgstr "Formatiert die Datei automatisch entsprechend den von Ihnen unter Extras - AutoKorrektur-Optionen... getroffenen Einstellungen." #: 05150000.xhp msgctxt "" @@ -22363,7 +22363,7 @@ "2\n" "help.text" msgid "Automatically formats the document while you type. To set the formatting options, choose Tools - AutoCorrect Options, and then click the Options tab." -msgstr "Formatiert das Dokument automatisch während der Eingabe. Um die Formatierungsoptionen festzulegen, wählen Sie Extras - AutoKorrektur-Optionen und klicken dann auf das Register Optionen." +msgstr "Formatiert das Dokument automatisch während der Eingabe. Um die Formatierungsoptionen festzulegen, wählen Sie Extras - AutoKorrektur-Optionen... und klicken dann auf das Register Optionen." #: 05150100.xhp msgctxt "" @@ -22406,7 +22406,7 @@ "bm_id2655415\n" "help.text" msgid "tables;AutoFormat function styles;table styles AutoFormat function for tables" -msgstr "Tabellen;AutoFormat Funktion Vorlagen;Tabellenvorlagen AutoFormat Funktion für Tabellen" +msgstr "Tabellen; AutoFormat-FunktionVorlagen; TabellenvorlagenAutoFormat-Funktion; für Tabellen" #: 05150101.xhp msgctxt "" @@ -22735,7 +22735,7 @@ "bm_id\n" "help.text" msgid "AutoCorrect function;headings headings;automatic separator lines;AutoCorrect function" -msgstr "AutoKorrektur Funktion;Überschriften Überschriften;automatisch Trennlinien;AutoKorrektur Funktion" +msgstr "AutoKorrektur-Funktion; ÜberschriftenÜberschriften; automatischeTrennlinien; AutoKorrektur-Funktion" #: 05150200.xhp msgctxt "" @@ -22753,7 +22753,7 @@ "2\n" "help.text" msgid "Automatically formats the file according to the options that you set under Tools - AutoCorrect Options." -msgstr "Formatiert die Datei automatisch entsprechend der von Ihnen unter Extras - AutoKorrektur Optionen eingestellten Vorgaben." +msgstr "Formatiert die Datei automatisch entsprechend der von Ihnen unter Extras - AutoKorrektur-Optionen... eingestellten Vorgaben." #: 05150200.xhp msgctxt "" @@ -22914,7 +22914,7 @@ "2\n" "help.text" msgid "Automatically formats the file according to the options that you set under Tools - AutoCorrect Options. In a dialog, you are asked to accept or reject the changes." -msgstr "Formatiert die Datei automatisch gemäß den unter Extras - AutoKorrektur-Optionen festgelegten Einstellungen. $[officename] fragt Sie vor der Übernahme der Formatierung, ob Sie die Änderungen annehmen oder verwerfen möchten." +msgstr "Formatiert die Datei automatisch gemäß den unter Extras - AutoKorrektur-Optionen... festgelegten Einstellungen. $[officename] fragt Sie vor der Übernahme der Formatierung, ob Sie die Änderungen annehmen oder verwerfen möchten." #: 05150300.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 die automatischen Vorschlagsdialoge für die Silbentrennung abzuschalten, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Linguistik und aktivieren Sie das Markierfeld Trennen ohne Nachfrage." #: 06030000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/swriter/02.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/swriter/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/swriter/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/swriter/02.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-09 05:36+0000\n" +"PO-Revision-Date: 2014-08-27 09:46+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402292191.000000\n" +"X-POOTLE-MTIME: 1409132793.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 "Operatoren; in FormelnStatistische FunktionenTrigonometrische FunktionenSeiten;AnzahlVariablen;DokumenteigenschaftenArithmetische Operatoren in Formeln" +msgstr "Operatoren; in FormelnStatistische FunktionenTrigonometrische FunktionenSeiten; AnzahlVariablen;DokumenteigenschaftenArithmetische Operatoren in Formeln" #: 14020000.xhp msgctxt "" @@ -3657,7 +3657,7 @@ "2\n" "help.text" msgid "Inserts the name of the person who created the document here as a field. The field applies the entry made under %PRODUCTNAME - PreferencesTools - Options - $[officename] - User data." -msgstr "Fügt hier den Namen des Dokumenterstellers als Feld ein. Das Feld verwendet den Eintrag unter %PRODUCTNAME - EinstellungenExtras - Optionen - $[officename] - Benutzerdaten." +msgstr "Fügt hier den Namen des Dokumenterstellers als Feld ein. Das Feld verwendet den Eintrag unter %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Benutzerdaten." #: 18120000.xhp msgctxt "" @@ -3682,7 +3682,7 @@ "bm_id3147167\n" "help.text" msgid "graphics;do not showimages;do not showpictures;do not show" -msgstr "Grafiken;nicht anzeigenAbbildungen;nicht anzeigenBilder;nicht anzeigen" +msgstr "Grafiken; nicht anzeigenBilder; nicht anzeigen" #: 18120000.xhp msgctxt "" @@ -3742,7 +3742,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 "Aktiviert oder deaktiviert den Direkt-Cursor. Sie können das Verhalten des Direkt-Cursors einstellen unter %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Formatierungshilfen." +msgstr "Aktiviert oder deaktiviert den Direkt-Cursor. Sie können das Verhalten des Direkt-Cursors einstellen unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Formatierungshilfen." #: 18130000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/swriter/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-12 13:25+0200\n" -"PO-Revision-Date: 2014-06-21 06:21+0000\n" +"PO-Revision-Date: 2014-08-30 10:00+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403331679.000000\n" +"X-POOTLE-MTIME: 1409392821.000000\n" #: anchor_object.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3147828\n" "help.text" msgid "objects;anchoring options positioning;objects (guide) anchors;options frames;anchoring options pictures;anchoring options centering;images on HTML pages" -msgstr "Objekte;VerankerungsoptionenPositionieren;Objekte (Anleitung)Anker;OptionenRahmen;VerankerungsoptionenBilder;VerankerungsoptionenZentrieren;Bilder auf HTML-Seiten" +msgstr "Objekte; VerankerungsoptionenPositionieren; Objekte (Anleitung)Anker; OptionenRahmen; VerankerungsoptionenBilder; VerankerungsoptionenZentrieren; Bilder auf HTML-Seiten" #: anchor_object.xhp msgctxt "" @@ -356,7 +356,7 @@ "bm_id3147407\n" "help.text" msgid "numbering; lists, while typing bullet lists;creating while typing lists;automatic numbering numbers;lists automatic bullets/numbers; AutoCorrect function bullets; using automatically paragraphs; automatic numbering" -msgstr "Nummerierung; Listen, bei der EingabeAufzählungslisten;bei der Eingabe erstellenListen;automatische NummerierungNummern;ListenAutomatische Nummerierung; AutoKorrekturAufzählungszeichen; automatisch setzenAutomatische AufzählungszeichenAbsätze;automatische Nummerierung" +msgstr "Nummerierung; Listen, bei der EingabeAufzählungslisten; bei der Eingabe erstellenListen; automatische NummerierungNummern; ListenAutomatische Nummerierung; AutoKorrekturAufzählungszeichen; automatisch setzenAutomatische AufzählungszeichenAbsätze; automatische Nummerierung" #: auto_numbering.xhp msgctxt "" @@ -392,7 +392,7 @@ "29\n" "help.text" msgid "Choose Tools - AutoCorrect Options, click the Options tab, and then select “Apply numbering – symbol”." -msgstr "Wählen Sie Extras - AutoKorrektur-Optionen, klicken Sie auf das Register Optionen und aktivieren Sie das Markierfeld “Nummerierung anwenden - Symbol”." +msgstr "Wählen Sie im Menü Extras - AutoKorrektur-Optionen..., klicken Sie auf das Register Optionen und aktivieren Sie das Markierfeld “Nummerierung anwenden - Symbol”." #: auto_numbering.xhp msgctxt "" @@ -479,7 +479,7 @@ "bm_id3154250\n" "help.text" msgid "turning off automatic correction text;turning off automatic correction uppercase;changing to lowercase capital letters;changing to small letters after periods quotation marks;changing automatically words;automatic replacement on/off lines;automatic drawing on/off underlining;quick borders; automatic drawing on/off automatic changes on/off changes;automatic AutoCorrect function;turning off" -msgstr "Autokorrektur abschalten Text;Autokorrektur abschalten Großbuchstaben;in Kleinbuchstaben umwandeln Großschreibung;nach Punkt in Kleinschreibung ändern Anführungszeichen;automatisch ändern Wörter;automatische Ersetzung ein/aus Linien;automatisches Zeichnen ein/aus Unterstreichung;schnelle Umrandung; automatische ein/aus Automatische Änderungen ein/aus Änderungen;automatisch AutoKorrektur-Funktion; abschalten" +msgstr "Autokorrektur; abschaltenText; Autokorrektur abschaltenGroßbuchstaben; in Kleinbuchstaben umwandelnGroßschreibung; nach Punkt in Kleinschreibung ändernAnführungszeichen; automatisch ändernWörter; automatische Ersetzung ein/ausLinien; automatisches Zeichnen ein-/ausschaltenUnterstreichung; schnelleUmrandung; automatische ein-/ausschaltenAutomatische Änderungen ein-/ausschaltenÄnderungen; automatischeAutoKorrektur-Funktion; abschalten" #: auto_off.xhp msgctxt "" @@ -531,7 +531,7 @@ "14\n" "help.text" msgid "Choose Tools - AutoCorrect Options." -msgstr "Menü Extras - AutoKorrektur-Optionen." +msgstr "Wählen Sie im Menü Extras - AutoKorrektur-Optionen...." #: auto_off.xhp msgctxt "" @@ -576,7 +576,7 @@ "6\n" "help.text" msgid "Choose Tools - AutoCorrect Options." -msgstr "Menü Extras - AutoKorrektur-Optionen." +msgstr "Wählen Sie im Menü Extras - AutoKorrektur-Optionen...." #: auto_off.xhp msgctxt "" @@ -612,7 +612,7 @@ "10\n" "help.text" msgid "Choose Tools – AutoCorrect Options." -msgstr "Menü Extras - AutoKorrektur-Optionen." +msgstr "Wählen Sie im Menü Extras - AutoKorrektur-Optionen...." #: auto_off.xhp msgctxt "" @@ -657,7 +657,7 @@ "19\n" "help.text" msgid "Choose Tools - AutoCorrect Options." -msgstr "Menü Extras - AutoKorrektur-Optionen." +msgstr "Wählen Sie im Menü Extras - AutoKorrektur-Optionen...." #: auto_off.xhp msgctxt "" @@ -745,7 +745,7 @@ "6\n" "help.text" msgid "If you choose a word from the AutoCorrect submenu, the underlined word and the replacement word are automatically added to the AutoCorrect list for the current language. To view the AutoCorrect list, choose Tools – AutoCorrect Options, and then click the Replace tab." -msgstr "Wenn Sie ein Wort aus dem Untermenü AutoKorrektur auswählen, wird das unterstrichene und das ersetzte Wort automatisch zur Autokorrektur Liste für die aktuell eingestellte Sprache hinzugefügt. Um die AutoKorrektur Liste anzusehen, wählen Sie Extras - AutoKorrektur-Optionen, und klicken dann auf das Register Ersetzung." +msgstr "Wenn Sie ein Wort aus dem Untermenü AutoKorrektur auswählen, wird das unterstrichene und das ersetzte Wort automatisch zur Autokorrektur Liste für die aktuell eingestellte Sprache hinzugefügt. Um die AutoKorrektur Liste anzusehen, wählen Sie Extras - AutoKorrektur-Optionen... und klicken dann auf das Register Ersetzung." #: auto_spellcheck.xhp msgctxt "" @@ -815,7 +815,7 @@ "bm_id3152887\n" "help.text" msgid "AutoCorrect function; adding exceptions exceptions; AutoCorrect function abbreviations capital letters;avoiding after specific abbreviations" -msgstr "AutoKorrektur-Funktion; Ausnahmen hinzufügenAusnahmen; AutoKorrektur-FunktionKürzelGroßbuchstaben;nach bestimmten Kürzeln vermeiden" +msgstr "AutoKorrektur-Funktion; Ausnahmen hinzufügenAusnahmen; AutoKorrektur-FunktionKürzelGroßbuchstaben; nach bestimmten Kürzeln vermeiden" #: autocorr_except.xhp msgctxt "" @@ -842,7 +842,7 @@ "13\n" "help.text" msgid "Choose Tools - AutoCorrect Options, and then click the Exceptions tab." -msgstr "Menü Extras - AutoKorrektur-Optionen, dann klicken Sie auf das Register Ausnahmen." +msgstr "Wählen Sie im Menü Extras - AutoKorrektur-Optionen... und dann das Register Ausnahmen." #: autocorr_except.xhp msgctxt "" @@ -2841,7 +2841,7 @@ "26\n" "help.text" msgid "Select the options that you want, and then click OK. If you want, you can also enter different text in the Category box, for example Figure." -msgstr "Wählen Sie die gewünschten Optionen und klicken Sie dann auf OK. Sie können auch eigenen Text als Kategorie eingeben, zum Beispiel Grafik." +msgstr "Wählen Sie die gewünschten Optionen und klicken Sie dann auf OK. Sie können auch eigenen Text als Kategorie eingeben, zum Beispiel Grafik." #: captions.xhp msgctxt "" @@ -2868,7 +2868,7 @@ "45\n" "help.text" msgid "$[officename] can automatically add a caption when you insert an object, graphic, frame, or table. Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - AutoCaption." -msgstr "$[officename] kann automatisch eine Beschriftung hinzufügen, wenn Sie ein Objekt, eine Grafik, einen Rahmen oder eine Tabelle einfügen. Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Automatische Bildbeschriftung." +msgstr "$[officename] kann automatisch eine Beschriftung hinzufügen, wenn Sie ein Objekt, eine Grafik, einen Rahmen oder eine Tabelle einfügen. Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Automatische Bildbeschriftung." #: captions_numbers.xhp msgctxt "" @@ -2983,7 +2983,7 @@ "43\n" "help.text" msgid "$[officename] can automatically add a caption when you insert an object, graphic, or table. Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - AutoCaption." -msgstr "$[officename] kann automatisch eine Beschriftung hinzufügen, wenn Sie ein Objekt, eine Grafik oder eine Tabelle einfügen. Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Automatische Bildbeschriftung." +msgstr "$[officename] kann automatisch eine Beschriftung hinzufügen, wenn Sie ein Objekt, eine Grafik oder eine Tabelle einfügen. Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Automatische Bildbeschriftung." #: captions_numbers.xhp msgctxt "" @@ -3641,7 +3641,7 @@ "14\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Writing Aids." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - Spracheinstellungen - Linguistik." +msgstr "Wählen Sie im Menü %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Linguistik." #: delete_from_dict.xhp msgctxt "" @@ -3884,7 +3884,7 @@ "par_id7594225\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Print." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Drucken." +msgstr "Wählen Sie im Menü %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Drucken." #: even_odd_sdw.xhp msgctxt "" @@ -5111,7 +5111,7 @@ "par_id4646748\n" "help.text" msgid "When you have enabled Asian language support under %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages, the Find & Replace dialog offers options to search Asian text." -msgstr "Wenn Sie die Unterstützung von asiatischen Sprachen unter %PRODUCTNAME - EinstellungenExtras - Optionen - Spracheinstellungen - Sprachen eingerichtet haben, bietet der Dialog Suchen & Ersetzen Optionen an, um nach asiatischem Text zu suchen." +msgstr "Wenn Sie die Unterstützung von asiatischen Sprachen unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Sprachen eingerichtet haben, bietet der Dialog Suchen & Ersetzen Optionen an, um nach asiatischem Text zu suchen." #: finding.xhp msgctxt "" @@ -5570,7 +5570,7 @@ "bm_id3147683\n" "help.text" msgid "spacing; endnotes/footnotes endnotes; spacing footnotes; spacing borders;for footnotes/endnotes lines;footnotes/endnotes" -msgstr "Abstand; Fuß-/EndnoteEndnote; AbstandFußnote; AbstandUmrandungen; für Fuß-/EndnotenLinien; Fuß-/Endnoten" +msgstr "Abstände; Fuß-/EndnoteEndnoten; AbstandFußnote; AbstandUmrandungen; für Fuß-/EndnotenLinien; Fuß-/Endnoten" #: footnote_with_line.xhp msgctxt "" @@ -7364,7 +7364,7 @@ "40\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Writing Aids" -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - Spracheinstellungen - Linguistik" +msgstr "Wählen Sie im Menü %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Linguistik" #: hyphen_prevent.xhp msgctxt "" @@ -7425,7 +7425,7 @@ "par_id0302200910262850\n" "help.text" msgid "Enable the special features of complex text layout (CTL) languages: Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages and check Enabled for complex text layout (CTL). Click OK." -msgstr "Aktivieren Sie die besondere Funktion 'Complex Text Layout' (CTL) Sprachen: Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - Spracheinstellungen - Sprachen und markieren Sie Steuerelemente für bidirektionales Schreiben anzeigen. Klicken Sie auf OK." +msgstr "Aktivieren Sie die besondere Funktion 'Complex Text Layout' (CTL) Sprachen: Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Sprachen und markieren Sie Steuerelemente für bidirektionales Schreiben anzeigen. Klicken Sie auf OK." #: hyphen_prevent.xhp msgctxt "" @@ -7490,7 +7490,7 @@ "par_id5589159\n" "help.text" msgid "To change the measurement units, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General, and then select a new measurement unit in the Settings area." -msgstr "Um die Maßeinheiten zu ändern, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Allgemein und wählen dann eine neue Maßeinheit im Bereich Einstellungen." +msgstr "Um die Maßeinheiten zu ändern, wählen Sie im Menü %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Allgemein und wählen dann eine neue Maßeinheit im Bereich Einstellungen." #: indenting.xhp msgctxt "" @@ -7676,7 +7676,7 @@ "59\n" "help.text" msgid "If you cannot place your cursor in the index or table of contents, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids, and then select Enable in the Cursor in protected areas section." -msgstr "Wenn Sie den Cursor nicht in das Stichwort- oder Inhaltsverzeichnis setzen können, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Formatierungshilfen und wählen dann Zulassen im AbschnittCursor in geschützten Zonen." +msgstr "Wenn Sie den Cursor nicht in das Stichwort- oder Inhaltsverzeichnis setzen können, wählen Sie im Menü %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Formatierungshilfen und wählen dann Zulassen im AbschnittCursor in geschützten Zonen." #: indices_edit.xhp msgctxt "" @@ -8066,7 +8066,7 @@ "36\n" "help.text" msgid "If you want to use a concordance file, select Concordance file in the Options area, click the File button, and then locate an existing file or create a new concordance file." -msgstr "Wenn Sie eine Konkordanzdatei verwenden wollen, wählen Sie Konkordanzdatei im Bereich Optionen aus, klicken Sie auf die Schaltfläche Datei öffnen Sie eine vorhandene Datei oder erstellen eine neue." +msgstr "Wenn Sie eine Konkordanzdatei verwenden wollen, wählen Sie im Menü Konkordanzdatei im Bereich Optionen aus, klicken Sie auf die Schaltfläche Datei öffnen Sie eine vorhandene Datei oder erstellen eine neue." #: indices_index.xhp msgctxt "" @@ -9285,7 +9285,7 @@ "tit\n" "help.text" msgid "Using Shortcut Keys ($[officename] Writer Accessibility)" -msgstr "Verwenden von Tastaturkombinationen (Zugänglichkeit in $[officename] Writer)" +msgstr "Verwenden von Tastaturkombinationen ($[officename] Writer Barrierefreiheit)" #: keyboard.xhp msgctxt "" @@ -9293,7 +9293,7 @@ "bm_id3151169\n" "help.text" msgid "keyboard; accessibility $[officename] Writer accessibility; $[officename] Writer" -msgstr "Tastatur; Eingabehilfen in $[officename] WriterZugänglichkeit; $[officename] Writer" +msgstr "Tastatur; Barrierefreiheit in $[officename] WriterBarrierefreiheit; $[officename] Writer" #: keyboard.xhp msgctxt "" @@ -9302,7 +9302,7 @@ "1\n" "help.text" msgid "Using Shortcut Keys ($[officename] Writer Accessibility)" -msgstr "Verwenden von Tastaturkombinationen (Zugänglichkeit in $[officename] Writer)" +msgstr "Verwenden von Tastaturkombinationen (Barrierefreiheit in $[officename] Writer)" #: keyboard.xhp msgctxt "" @@ -9546,7 +9546,7 @@ "bm_id3155855\n" "help.text" msgid "$[officename] Writer; instructionsinstructions; $[officename] Writer" -msgstr "Writer; AnleitungenAnleitungen; Writer" +msgstr "Writer; AnleitungenAnleitungen; $[officename] Writer" #: main.xhp msgctxt "" @@ -9880,7 +9880,7 @@ "11\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table, and select or clear the Number recognition check box." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Tabelle und aktivierten oder deaktivieren Sie das Markierfeld Zahlenerkennung." +msgstr "Wählen Sie im Menü %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Tabelle und aktivierten oder deaktivieren Sie das Markierfeld Zahlenerkennung." #: number_date_conv.xhp msgctxt "" @@ -9889,7 +9889,7 @@ "14\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table" -msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Tabelle" +msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Tabelle" #: number_sequence.xhp msgctxt "" @@ -11824,7 +11824,7 @@ "par_idN1067F\n" "help.text" msgid "To print your document scaled down, set the print options on the Page Layout tab page of the File - Print dialog." -msgstr "Um Ihr Dokument verkleinert auszudrucken, stellen Sie die entsprechenden Optionen auf der Registerseite Seitenlayout des Datei - Drucken Dialogs ein." +msgstr "Um Ihr Dokument verkleinert auszudrucken, stellen Sie die entsprechenden Optionen auf der Registerseite Seitenlayout des Dialogs Datei - Drucken... ein." #: print_preview.xhp msgctxt "" @@ -12262,7 +12262,7 @@ "40\n" "help.text" msgid "Place the cursor in the cell or select the cells. First, if necessary, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids and mark Cursor in protected areas - Enable. Then right-click the cell to open the context menu, choose Cell - Unprotect." -msgstr "Setzen Sie den Cursor in die Zelle oder markieren Sie die Zellen. Wählen Sie zuerst, falls erforderlich, %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Formatierungshilfen und markieren im Bereich Cursor in geschützten Zonen - Zulassen. Öffnen Sie das Kontextmenü durch Rechts-Klick auf die Zelle und wählen Sie Zelle - Schutz aufheben." +msgstr "Setzen Sie den Cursor in die Zelle oder markieren Sie die Zellen. Wählen Sie zuerst, falls erforderlich, %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Formatierungshilfen und markieren im Bereich Cursor in geschützten Zonen - Zulassen. Öffnen Sie das Kontextmenü durch Rechts-Klick auf die Zelle und wählen Sie Zelle - Schutz aufheben." #: protection.xhp msgctxt "" @@ -12351,7 +12351,7 @@ "49\n" "help.text" msgid "Place the cursor in the index. First of all, if necessary, under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids , mark Cursor in protected areas - Enable." -msgstr "Setzen Sie den Cursor in das Verzeichnis. Markieren Sie zuerst, falls erforderlich, %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Formatierungshilfen , Cursor in geschützten Zonen - Zulassen." +msgstr "Setzen Sie den Cursor in das Verzeichnis. Markieren Sie zuerst, falls erforderlich, %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Formatierungshilfen , Cursor in geschützten Zonen - Zulassen." #: protection.xhp msgctxt "" @@ -12772,7 +12772,7 @@ "bm_id4825891\n" "help.text" msgid "rows; register-true text lines of text; register-true pages;register-true paragraphs;register-true register-true;pages and paragraphs spacing;register-true text formatting;register-true text" -msgstr "Zeilen; registerhaltiger TextTextzeilen; registerhaltigSeiten; registerhaltigAbsätze; registerhaltigRegisterhaltig; Seiten und AbsätzeAbstand; registerhaltiger TextFormatierung; registerhaltiger Text" +msgstr "Zeilen; registerhaltiger TextTextzeilen; registerhaltigSeiten; registerhaltigAbsätze; registerhaltigRegisterhaltig; Seiten und AbsätzeAbstände; registerhaltiger TextFormatierungen; registerhaltiger Text" #: registertrue.xhp msgctxt "" @@ -12920,7 +12920,7 @@ "5\n" "help.text" msgid "Choose Tools - AutoCorrect Options." -msgstr "Menü Extras - AutoKorrektur-Optionen." +msgstr "Wählen SIe im Menü Extras - AutoKorrektur-Optionen...." #: removing_line_breaks.xhp msgctxt "" @@ -13076,7 +13076,7 @@ "bm_id8186284\n" "help.text" msgid "rulers;using rulershorizontal rulersvertical rulersindents; setting on rulerspage margins on rulerstable cells;adjusting the width on rulersshowing;rulershiding;rulersadjusting page margins and cell widths" -msgstr "Lineale;Verwendung von LinealenHorizontale LinealeVertikale LinealeEinzüge; Einstellung auf LinealenSeitenränder auf LinealenTabellenzellen;Ausrichten der Breite auf LinealenAnzeigen;LinealeVerbergen;LinealeAnpassen Seitenränder und Zellbreiten" +msgstr "Lineale; Verwendung von LinealenHorizontale LinealeVertikale LinealeEinzüge; Einstellung auf LinealenSeitenränder auf LinealenTabellenzellen; Ausrichten der Breite auf LinealenAnzeigen; LinealeVerbergen; LinealeAnpassen; Seitenränder und Zellbreiten" #: ruler.xhp msgctxt "" @@ -13092,7 +13092,7 @@ "par_idN1067D\n" "help.text" msgid "To show or hide rulers, choose View - Ruler. To show the vertical ruler, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - View, and then select Vertical ruler in the Ruler area." -msgstr "Um Lineale anzuzeigen oder zu verbergen, wählen Sie Ansicht - Lineal. Um das vertikale Lineal anzuzeigen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Ansicht, und aktivieren Vertikales Lineal im Bereich Lineal." +msgstr "Um Lineale anzuzeigen oder zu verbergen, wählen Sie Ansicht - Lineal. Um das vertikale Lineal anzuzeigen, wählen Sie im Menü %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Ansicht und aktivieren Vertikales Lineal im Bereich Lineal." #: ruler.xhp msgctxt "" @@ -13990,7 +13990,7 @@ "bm_id3155622\n" "help.text" msgid "smart tagsAutoCorrect function; smart tagsoptions;smart tagsdisabling;smart tagsinstalling;smart tags" -msgstr "Smart TagsAutoKorrektur Funktion; Smart TagsOptionen;Smart TagsAbschalten;Smart TagsInstallieren;Smart Tags" +msgstr "Smart TagsAutoKorrektur-Funktion; Smart TagsOptionen; Smart TagsAbschalten; Smart TagsInstallieren; Smart Tags" #: smarttags.xhp msgctxt "" @@ -14078,7 +14078,7 @@ "par_id1998962\n" "help.text" msgid "In the Smart Tags menu you see the available actions that are defined for this Smart Tag. Choose an option from the menu. The Smart Tags Options command opens the Smart Tags page of Tools - Autocorrect Options." -msgstr "Im Smart Tag Menü sehen Sie die Aktionen, welche für das aktuelle Smart Tag verfügbar sind. Wählen Sie eine der angezeigten Optionen. Der Eintrag Smart Tag Optionen öffnet das Register Smart Tags im Dialog Extras - AutoKorrektur-Optionen." +msgstr "Im Smart Tag Menü sehen Sie die Aktionen, welche für das aktuelle Smart Tag verfügbar sind. Wählen Sie eine der angezeigten Optionen. Der Eintrag Smart Tag Optionen öffnet das Register Smart Tags im Dialog Extras - AutoKorrektur-Optionen..." #: smarttags.xhp msgctxt "" @@ -14094,7 +14094,7 @@ "par_id349131\n" "help.text" msgid "When you have installed at least one Smart Tags extension, you see the Smart Tags page in Tools - Autocorrect Options. Use this dialog to enable or disable Smart Tags and to manage the installed tags." -msgstr "Wenn Sie mindestens eine Smart Tag Extension installiert haben, sehen Sie das Register Smart Tags im Dialog Extras - AutoKorrektur-Optionen. Verwenden Sie diesen Dialog, um Smart Tags zu aktivieren, zu deaktivieren und die installierten Smart Tags zu verwalten." +msgstr "Wenn Sie mindestens eine Smart Tag Extension installiert haben, sehen Sie das Register Smart Tags im Dialog Extras - AutoKorrektur-Optionen.... Verwenden Sie diesen Dialog, um Smart Tags zu aktivieren, zu deaktivieren und die installierten Smart Tags zu verwalten." #: smarttags.xhp msgctxt "" @@ -15052,7 +15052,7 @@ "48\n" "help.text" msgid "Choose Edit - Paste Special, and choose from the following options:" -msgstr "Wählen Sie Bearbeiten - Inhalte einfügen, und wählen eine der folgenden Optionen:" +msgstr "Wählen Sie Bearbeiten - Inhalte einfügen... und wählen eine der folgenden Optionen:" #: table_insert.xhp msgctxt "" @@ -15487,7 +15487,7 @@ "par_id3155891\n" "help.text" msgid "You can specify the behavior for the arrow keys by choosing %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table, and selecting the options that you want in the Keyboard handling area." -msgstr "Sie können das Verhalten der Pfeiltasten unter %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Tabelle festlegen. Wählen Sie die gewünschten Optionen im Bereich Tastaturbedienung aus." +msgstr "Sie können das Verhalten der Pfeiltasten unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Tabelle festlegen. Wählen Sie die gewünschten Optionen im Bereich Tastaturbedienung aus." #: table_sizing.xhp msgctxt "" @@ -15618,7 +15618,7 @@ "8\n" "help.text" msgid "To set the Behavior of rows/columns options for tables in text documents, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table, or use the Fixed, Fixed/Proportional, and Variable icons on the Table Bar. There are three display modes for tables:" -msgstr "Um die Tabellenoptionen für dasVerhalten von Zeilen/Spalten in Textdokumenten einzustellen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Tabelle oder benutzen Sie eines der Symbole Fix, Fix/proportional oder Variabel aus der Symbolleiste Tabelle. Es gibt drei Anzeigemodi für Tabellen:" +msgstr "Um die Tabellenoptionen für dasVerhalten von Zeilen/Spalten in Textdokumenten einzustellen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Tabelle oder benutzen Sie eines der Symbole Fix, Fix/proportional oder Variabel aus der Symbolleiste Tabelle. Es gibt drei Anzeigemodi für Tabellen:" #: tablemode.xhp msgctxt "" @@ -16246,7 +16246,7 @@ "41\n" "help.text" msgid "To set the behavior of the direct cursor, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids." -msgstr "Um das Verhalten des Direkt-Cursors einzustellen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - %PRODUCTNAME Writer - Formatierungshilfen." +msgstr "Um das Verhalten des Direkt-Cursors einzustellen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Formatierungshilfen." #: text_direct_cursor.xhp msgctxt "" @@ -16346,7 +16346,7 @@ "68\n" "help.text" msgid "Right-click in a paragraph, choose Paragraph, set the options that you want, for example, the background color, and then click OK." -msgstr "Rechtsklicken Sie in einen Absatz, wählen Sie Absatz, legen Sie die gewünschten Optionen (z. B. die Hintergrundfarbe) fest und klicken Sie auf OK." +msgstr "Rechtsklicken Sie in einen Absatz, wählen Sie Absatz, legen Sie die gewünschten Optionen (z.B. die Hintergrundfarbe) fest und klicken Sie auf OK." #: text_emphasize.xhp msgctxt "" @@ -17930,7 +17930,7 @@ "bm_id3148882\n" "help.text" msgid "automatic word completion completion of words AutoCorrect function; word completion word completion;using/disabling disabling;word completion switching off;word completion deactivating;word completion refusing word completions rejecting word completions" -msgstr "Automatische Wortergänzung Wortergänzung AutoKorrektur-Funktion; Wortergänzung Wortergänzung;ein-/ausschalten Deaktivieren;Wortergänzung Ausschalten;Wortergänzung Abschalten;Wortergänzung Verwerfen von Wortergänzung Ablehnen von Wortergänzung " +msgstr "Automatische WortergänzungWortergänzungAutoKorrektur-Funktion; WortergänzungWortergänzung; ein-/ausschaltenDeaktivieren; WortergänzungAusschalten; WortergänzungAbschalten; WortergänzungVerwerfen; WortergänzungenAblehnen; Wortergänzungen" #: word_completion.xhp msgctxt "" @@ -17995,7 +17995,7 @@ "par_idN107A5\n" "help.text" msgid "Choose Tools - AutoCorrect Options - Word Completion." -msgstr "Menü Extras - AutoKorrektur-Optionen - Wortergänzung." +msgstr "Menü Extras - AutoKorrektur-Optionen... - Wortergänzung." #: word_completion.xhp msgctxt "" @@ -18051,7 +18051,7 @@ "par_id2593462\n" "help.text" msgid "To fine-tune the word completion choose Tools – AutoCorrect Options - Word Completion and select any of the following options:" -msgstr "Um die Wortergänzung einzustellen, gehen Sie über Extras - AutoKorrektur-Optionen - Wortergänzung und wählen eine aus den folgenden Optionen:" +msgstr "Um die Wortergänzung einzustellen, gehen Sie über Extras - AutoKorrektur-Optionen... - Wortergänzung und wählen eine aus den folgenden Optionen:" #: word_completion_adjust.xhp msgctxt "" @@ -18243,7 +18243,7 @@ "bm_id3149686\n" "help.text" msgid "words; counting in text number of words documents; number of words/characters text; number of words/characters characters; counting number of characters counting words word counts" -msgstr "Wörter; im Text zählenAnzahl WörterDokument; Wörter-/ZeichenanzahlText; Wörter-/ZeichenanzahlZeichen; zählenZeichenanzahlWörter zählenWortanzahl" +msgstr "Wörter; im Text zählenAnzahl; WörterDokument; Wörter-/ZeichenanzahlText; Wörter-/ZeichenanzahlZeichen; zählenZeichenanzahlWörter; zählenWortanzahl" #: words_count.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-23 15:44+0000\n" +"PO-Revision-Date: 2014-08-27 09:50+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406130298.000000\n" +"X-POOTLE-MTIME: 1409133006.000000\n" #: LibreLogo.xhp msgctxt "" @@ -150,7 +150,7 @@ "par_345\n" "help.text" msgid "The “magic wand” icon sets 2-page layout for program editing, expands and converts to uppercase the abbreviated, lowercase Logo commands in the Writer document. Change the language of the document (Tools » Options » Language Settings » Languages » Western) and click on this icon to translate the Logo program to the selected language." -msgstr "Das Icon mit dem Zauberstab setzt ein doppelseitiges Layout für die Programmbearbeitung, erweitert abgekürzte Logo-Begehle und konvertiert Logo-Befehle innerhalb eines Writer Dokuments in Großbuchstaben. Wechseln Sie die Sprache des Dokuments (Extras -> Optionen -> Spracheinstellungen -> Sprache -> Westlich) und klicken Sie auf diese Schaltfläche, um den Logo-Programmcode in die gewählte Sprache zu übersetzten." +msgstr "Das Icon mit dem Zauberstab setzt ein doppelseitiges Layout für die Programmbearbeitung, erweitert abgekürzte Logo-Begehle und konvertiert Logo-Befehle innerhalb eines Writer Dokuments in Großbuchstaben. Wechseln Sie die Sprache des Dokuments (Extras » Optionen... » Spracheinstellungen » Sprache » Westlich) und klicken Sie auf diese Schaltfläche, um den Logo-Programmcode in die gewählte Sprache zu übersetzten." #: LibreLogo.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-4.3.2/translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407786575.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/readlicense_oo/docs.po libreoffice-l10n-4.3.2/translations/source/de/readlicense_oo/docs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/readlicense_oo/docs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/readlicense_oo/docs.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:06+0200\n" -"PO-Revision-Date: 2014-05-24 03:22+0000\n" +"PO-Revision-Date: 2014-08-27 05:29+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1400901735.000000\n" +"X-POOTLE-MTIME: 1409117350.000000\n" #: readme.xrm msgctxt "" @@ -654,9 +654,10 @@ "aw22\n" "readmeitem.text" msgid "Important Accessibility Notes" -msgstr "Wichtige Hinweise zur Zugänglichkeit (Accessibility)" +msgstr "Wichtige Hinweise zur Barrierefreiheit" #: readme.xrm +#, fuzzy msgctxt "" "readme.xrm\n" "access7\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/sc/uiconfig/scalc/ui.po libreoffice-l10n-4.3.2/translations/source/de/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/sc/uiconfig/scalc/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/sc/uiconfig/scalc/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407586444.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/setup_native/source/mac.po libreoffice-l10n-4.3.2/translations/source/de/setup_native/source/mac.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/setup_native/source/mac.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/setup_native/source/mac.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,10 +2,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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:05+0200\n" -"PO-Revision-Date: 2011-04-05 19:29+0200\n" -"Last-Translator: Jochen \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-08-27 05:54+0000\n" +"Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1409118862.000000\n" #: macinstall.ulf msgctxt "" @@ -189,7 +190,7 @@ "InstallCompleteText2\n" "LngText.text" msgid "Call '[PRODUCTNAME]-Preferences-Language Settings-Languages' to change the user interface language." -msgstr "Benutzen Sie '[PRODUCTNAME]-Optionen-Spracheinstellungen-Sprachen' um die Sprache der Benutzeroberfläche zu ändern." +msgstr "Benutzen Sie '[PRODUCTNAME] - Einstellungen - Spracheinstellungen - Sprachen' um die Sprache der Benutzeroberfläche zu ändern." #: macinstall.ulf msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/sfx2/source/doc.po libreoffice-l10n-4.3.2/translations/source/de/sfx2/source/doc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/sfx2/source/doc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/sfx2/source/doc.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-05-29 06:54+0000\n" +"PO-Revision-Date: 2014-08-27 05:55+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401346485.000000\n" +"X-POOTLE-MTIME: 1409118923.000000\n" #: doc.src msgctxt "" @@ -706,7 +706,7 @@ "STR_XMLSEC_ODF12_EXPECTED\n" "string.text" msgid "The document format version is set to ODF 1.1 (OpenOffice.org 2.x) in Tools-Options-Load/Save-General. Signing documents requires ODF 1.2 (OpenOffice.org 3.x)." -msgstr "Unter Extras-Optionen-Laden/Speichern-Allgemein ist die Dokumentformatversion ODF 1.1 (OpenOffice.org 2.x) eingestellt. Für das Signieren ist ODF 1.2 (OpenOffice.org 3.x) notwendig." +msgstr "Unter 'Extras - Optionen... - Laden/Speichern - Allgemein' ist die Dokumentformatversion ODF 1.1 (OpenOffice.org 2.x) eingestellt. Für das Signieren ist ODF 1.2 (OpenOffice.org 3.x) notwendig." #: doc.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/svtools/source/java.po libreoffice-l10n-4.3.2/translations/source/de/svtools/source/java.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/svtools/source/java.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/svtools/source/java.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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:05+0200\n" -"PO-Revision-Date: 2013-06-09 18:24+0000\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:02+0200\n" +"PO-Revision-Date: 2014-08-27 05:55+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1370802252.0\n" +"X-POOTLE-MTIME: 1409118947.000000\n" #: javaerror.src msgctxt "" @@ -38,7 +38,7 @@ "WARNINGBOX_INVALIDJAVASETTINGS\n" "warningbox.text" msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME." -msgstr "Die Konfiguration von %PRODUCTNAME wurde geändert. Wählen Sie unter Extras - Optionen... - %PRODUCTNAME - Erweitert die Java-Laufzeitumgebung, die %PRODUCTNAME benutzen soll." +msgstr "Die Konfiguration von %PRODUCTNAME wurde geändert. Wählen Sie unter 'Extras - Optionen... - %PRODUCTNAME - Erweitert' die Java-Laufzeitumgebung, die %PRODUCTNAME benutzen soll." #: javaerror.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/svx/source/items.po libreoffice-l10n-4.3.2/translations/source/de/svx/source/items.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/svx/source/items.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/svx/source/items.po 2014-09-16 19:55:40.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: 2014-05-31 06:44+0000\n" +"POT-Creation-Date: 2014-07-30 10:58+0200\n" +"PO-Revision-Date: 2014-08-27 05:56+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401518659.000000\n" +"X-POOTLE-MTIME: 1409118965.000000\n" #: svxerr.src msgctxt "" @@ -96,7 +96,7 @@ msgstr "" "$(ARG1) wird von der Prüfung nicht unterstützt bzw. ist gegenwärtig nicht aktiviert.\n" "Überprüfen Sie Ihre Installation und installieren Sie gegebenenfalls das benötigte Sprachmodul\n" -"bzw. aktivieren Sie in 'Extras - Optionen - Spracheinstellungen - Linguistik' das entsprechende Sprachmodul." +"bzw. aktivieren Sie in 'Extras - Optionen - Spracheinstellungen - Linguistik' das entsprechende Sprachmodul." #: svxerr.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/svx/source/src.po libreoffice-l10n-4.3.2/translations/source/de/svx/source/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/svx/source/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/svx/source/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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: 2012-11-15 19:18+0000\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:06+0200\n" +"PO-Revision-Date: 2014-08-27 05:56+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1353007101.0\n" +"X-POOTLE-MTIME: 1409118984.000000\n" #: app.src msgctxt "" @@ -1060,7 +1060,7 @@ msgstr "" "Dieses Dokument enthält Makros.\n" "\n" -"Makros könnten Viren enthalten. Die Ausführung dieser Makros wird aufgrund der aktuellen Makrosicherheitseinstellung in Extras - Optionen... - %PRODUCTNAME - Sicherheit unterbunden.\n" +"Makros könnten Viren enthalten. Die Ausführung dieser Makros wird aufgrund der aktuellen Makrosicherheitseinstellung in 'Extras - Optionen... - %PRODUCTNAME - Sicherheit' unterbunden.\n" "\n" "Manche Funktionen stehen daher möglicherweise nicht zur Verfügung." diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/sw/source/core/uibase/uiview.po libreoffice-l10n-4.3.2/translations/source/de/sw/source/core/uibase/uiview.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/sw/source/core/uibase/uiview.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/sw/source/core/uibase/uiview.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:02+0200\n" -"PO-Revision-Date: 2014-06-05 04:13+0000\n" +"PO-Revision-Date: 2014-08-27 05:56+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401941624.000000\n" +"X-POOTLE-MTIME: 1409119012.000000\n" #: view.src msgctxt "" @@ -54,7 +54,7 @@ "MSG_ERR_NO_FAX\n" "infobox.text" msgid "No fax printer has been set under Tools/Options/%1/Print." -msgstr "Kein Fax-Drucker unter Extras/Optionen/%1/Drucken eingestellt." +msgstr "Kein Fax-Drucker unter 'Extras - Optionen... - %1 - Drucken eingestellt." #: view.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/de/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:57+0200\n" -"PO-Revision-Date: 2014-08-11 16:47+0000\n" +"PO-Revision-Date: 2014-09-03 16:09+0000\n" "Last-Translator: Christian \n" "Language-Team: none\n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407775669.000000\n" +"X-POOTLE-MTIME: 1409760547.000000\n" #: abstractdialog.ui msgctxt "" @@ -6741,7 +6741,7 @@ "label\n" "string.text" msgid "Synchroni_ze contents" -msgstr "Inhalte _vergleichen" +msgstr "Inhalte s_ynchronisieren" #: labeloptionspage.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/de/swext/mediawiki/help.po libreoffice-l10n-4.3.2/translations/source/de/swext/mediawiki/help.po --- libreoffice-l10n-4.3.1~rc2/translations/source/de/swext/mediawiki/help.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/de/swext/mediawiki/help.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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:05+0200\n" -"PO-Revision-Date: 2013-06-15 14:08+0000\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-08-27 05:58+0000\n" "Last-Translator: Christian \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1371305314.0\n" +"X-POOTLE-MTIME: 1409119098.000000\n" #: help.tree msgctxt "" @@ -110,7 +110,7 @@ "par_id4277169\n" "help.text" msgid "Before you use the Wiki Publisher, ensure that %PRODUCTNAME uses a Java Runtime Environment (JRE). To check the status of the JRE, choose Tools - Options - %PRODUCTNAME - Advanced. Ensure that \"Use a Java runtime environment\" is marked and that a Java runtime folder is selected in the big listbox. If no JRE was activated, then activate a JRE 1.4 or later and restart %PRODUCTNAME." -msgstr "Bevor Sie mit Wiki Publisher arbeiten, überprüfen Sie, ob %PRODUCTNAME eine Java Runtime Environment (JRE) nutzt. Um den Status der JRE zu überprüfen, wählen Sie Extras - Optionen... - %PRODUCTNAME - Erweitert. Die Option \"Eine Java-Laufzeitumgebung (Java runtime environment) verwenden\" muss markiert sein und ein Java Runtime-Verzeichnis muss in dem Listenfeld ausgewählt sein. Wenn keine JRE aktiviert ist, aktivieren Sie JRE 1.4 oder höher und starten Sie %PRODUCTNAME neu." +msgstr "Bevor Sie mit Wiki Publisher arbeiten, überprüfen Sie, ob %PRODUCTNAME eine Java Runtime Environment (JRE) nutzt. Um den Status der JRE zu überprüfen, wählen Sie Extras - Optionen... - %PRODUCTNAME - Erweitert. Die Option „Eine Java-Laufzeitumgebung (Java runtime environment) verwenden“ muss markiert sein und ein Java Runtime-Verzeichnis muss in dem Listenfeld ausgewählt sein. Wenn keine JRE aktiviert ist, aktivieren Sie JRE 1.4 oder höher und starten Sie %PRODUCTNAME neu." #: wiki.xhp msgctxt "" @@ -134,7 +134,7 @@ "par_id3751640\n" "help.text" msgid "Note: If you connect to the web using a proxy server, enter the proxy information to Tools - Options - Internet - Proxy, and restart the software." -msgstr "Hinweis: Falls Sie einen Proxy-Server für Ihre Internetverbindung benutzen, geben Sie die Informationen zum Proxy unter Extras - Optionen - Internet - Proxy ein und starten die Software neu." +msgstr "Hinweis: Falls Sie einen Proxy-Server für Ihre Internetverbindung benutzen, geben Sie die Informationen zum Proxy unter Extras - Optionen... - Internet - Proxy ein und starten die Software neu." #: wiki.xhp msgctxt "" @@ -142,7 +142,7 @@ "par_id9533677\n" "help.text" msgid "Open a Writer document, and choose Tools - Options - Internet - MediaWiki." -msgstr "Öffnen Sie ein Writer-Dokument und wählen dann Extras - Optionen - Internet - MediaWiki." +msgstr "Öffnen Sie ein Writer-Dokument und wählen dann Extras - Optionen... - Internet - MediaWiki." #: wiki.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/dgo/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/dgo/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/dgo/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/dgo/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-07-28 06:47+0000\n" "Last-Translator: Kaniska PSS \n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -671,7 +671,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -680,7 +680,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -689,7 +689,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/dz/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/dz/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/dz/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/dz/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-16 13:48+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -663,7 +663,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -672,7 +672,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -681,7 +681,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/dz/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/dz/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/dz/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/dz/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-12-01 01:14+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13061,14 +13061,6 @@ msgid "Programming in %PRODUCTNAME" msgstr " %PRODUCTNAME ནང་ལས་རིམ་བཟོ་ལས།" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "མེཀ་རོ་སྒར་བཟུང་ལས་འགན་འདི་ %PRODUCTNAME རྩོམ་འབྲི་པ་ནང་གི་ཚིག་ཡིག་གི་ཡིག་ཆ་གི་དོན་ལུ་དང་ %PRODUCTNAME ཀེལཀི་ནང་གི་ཤོག་ཁྲམ་ཚུ་གི་དོན་ལུ་རྐྱངམ་ཅིག་ འཐོབ་ཚུགས།" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/el/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/el/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/el/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/el/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-12 14:40+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Έγγραφο BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Έγγραφο BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Έγγραφο BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Έγγραφο ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Έγγραφο ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Έγγραφο ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Έγγραφο GreatWorks" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Έγγραφο GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Έγγραφο GreatWorks" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works για Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works για έγγραφο Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works για έγγραφο Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/el/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/el/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/el/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/el/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-06-27 10:51+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: www.gnome.gr\n" @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1403866263.000000\n" @@ -13056,14 +13056,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Προγραμματισμός στο %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Η λειτουργία καταγραφής μακροεντολών στο %PRODUCTNAME είναι διαθέσιμη μόνο για έγγραφα κειμένου και για υπολογιστικά φύλλα στο %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/el/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/el/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/el/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/el/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-06-12 06:48+0000\n" +"PO-Revision-Date: 2014-09-02 15:09+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: team@lists.gnome.gr\n" "Language: el\n" @@ -15,7 +15,7 @@ "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1402555705.000000\n" +"X-POOTLE-MTIME: 1409670550.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -1733,7 +1733,7 @@ "SfxStyleFamiliesRes1\n" "#define.text" msgid "Drawing Object Styles" -msgstr "" +msgstr "Τεχνοτροπίες αντικειμένου σχεδίασης" #: res_bmp.src msgctxt "" @@ -4011,7 +4011,7 @@ "STR_GRAPHICS_STYLE_FAMILY\n" "string.text" msgid "Drawing Object Styles" -msgstr "" +msgstr "Τεχνοτροπίες αντικειμένου σχεδίασης" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/el/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/el/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/el/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/el/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-05-09 09:54+0000\n" +"PO-Revision-Date: 2014-09-02 15:09+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: team@lists.gnome.gr\n" "Language: el\n" @@ -15,7 +15,7 @@ "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1399629248.000000\n" +"X-POOTLE-MTIME: 1409670596.000000\n" #: alignmentdialog.ui msgctxt "" @@ -600,7 +600,7 @@ "label\n" "string.text" msgid "Ig_nore ~~ and ' at the end of the line" -msgstr "" +msgstr "Να πα_ραβλέπονται τα ~~ και ' στο τέλος της γραμμής" #: smathsettings.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/el/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/el/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/el/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/el/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:57+0200\n" -"PO-Revision-Date: 2014-06-12 08:22+0300\n" -"Last-Translator: Dimitris Spingos (Δημήτρης Σπίγγος) \n" +"PO-Revision-Date: 2014-09-02 15:10+0000\n" +"Last-Translator: Dimitris Spingos \n" "Language-Team: team@lists.gnome.gr\n" "Language: el\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1390014296.0\n" +"X-POOTLE-MTIME: 1409670647.000000\n" #: abstractdialog.ui msgctxt "" @@ -5050,7 +5050,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Υπόβαθρο" #: framedialog.ui msgctxt "" @@ -8647,7 +8647,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Υπόβαθρο" #: objectdialog.ui msgctxt "" @@ -10496,7 +10496,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Υπόβαθρο" #: picturedialog.ui msgctxt "" @@ -13088,7 +13088,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Παρασκήνιο" #: templatedialog4.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/en-GB/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/en-GB/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/en-GB/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/en-GB/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-24 12:07+0000\n" "Last-Translator: Stuart \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks Document" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks Document" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks Document" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/en-GB/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/en-GB/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/en-GB/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/en-GB/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-06-24 10:24+0000\n" "Last-Translator: Stuart \n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programming in %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/en-GB/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/en-GB/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/en-GB/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/en-GB/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407881787.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/en-ZA/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/en-ZA/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/en-ZA/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/en-ZA/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 10:12+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -664,7 +664,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -673,7 +673,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -682,7 +682,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/en-ZA/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/en-ZA/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-12-01 05:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programming in %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/eo/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/eo/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/eo/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/eo/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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:08+0200\n" -"PO-Revision-Date: 2014-06-07 02:06+0000\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" +"PO-Revision-Date: 2014-09-04 01:37+0000\n" "Last-Translator: Donald \n" "Language-Team: LANGUAGE \n" "Language: eo\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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402106800.000000\n" +"X-POOTLE-MTIME: 1409794628.000000\n" #: AbiWord.xcu msgctxt "" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokumento de BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "Teksta dokumento de BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokumento de BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "Kalkultabelo de BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokumento de BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "Desegnaĵo de BeagleWorks/WordPerfect Works v1" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokumento de ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "Teksta dokumento de ClarisWorks/AppleWorks" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokumento de ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "Kalkultabelo de ClarisWorks/AppleWorks" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokumento de ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "Desegnaĵo de ClarisWorks/AppleWorks" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokumento de GreatWorks" +msgid "GreatWorks Text Document" +msgstr "Teksta dokumento de GreatWorks" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokumento de GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "Kalkultabelo de GreatWorks" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokumento de GreatWorks" +msgid "GreatWorks Drawing" +msgstr "Desegnaĵo de GreatWorks" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokumento de Microsoft Works por Mac (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "Teksta dokumento de Microsoft Works por Mac (v1 - v4)" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokumento de Microsoft Works por Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "Kalkultabelo de Microsoft Works por Mac (v1 - v4)" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokumento de Microsoft Works por Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "Desegnaĵo de Microsoft Works por Mac (v1 - v4)" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/eo/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/eo/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/eo/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/eo/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2013-09-11 23:53+0000\n" "Last-Translator: Donald \n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programi en %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "La makroregistrada funkcio disponeblas por testaj dokumentoj en %PRODUCTNAME-Verkilo kaj por kalkultabeloj en %PRODUCTNAME-Kalkultabelilo." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/eo/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/eo/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/eo/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/eo/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407713868.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/eo/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/eo/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/eo/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/eo/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407713916.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/eo/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/eo/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/eo/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/eo/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1407713954.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/cui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/es/cui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/cui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/cui/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-08-08 14:56+0000\n" +"PO-Revision-Date: 2014-08-31 00:24+0000\n" "Last-Translator: Adolfo \n" "Language-Team: none\n" "Language: es\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407509780.000000\n" +"X-POOTLE-MTIME: 1409444672.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -9050,7 +9050,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Fuente" +msgstr "Tipo de letra" #: optfontspage.ui msgctxt "" @@ -13589,7 +13589,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Fuente" +msgstr "Tipo de letra" #: searchformatdialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dbaccess/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/es/dbaccess/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dbaccess/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dbaccess/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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 03:33+0000\n" +"PO-Revision-Date: 2014-08-31 00:25+0000\n" "Last-Translator: Adolfo \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401593638.000000\n" +"X-POOTLE-MTIME: 1409444703.000000\n" #: admindialog.ui msgctxt "" @@ -77,7 +77,7 @@ "title\n" "string.text" msgid "Data Source" -msgstr "Fuente de datos" +msgstr "Origen de datos" #: choosedatasourcedialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/af_ZA.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/af_ZA.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/af_ZA.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/af_ZA.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407506600.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/bg_BG.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/bg_BG.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/bg_BG.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/bg_BG.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407506738.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/da_DK.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/da_DK.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/da_DK.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/da_DK.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407506780.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/de.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/de.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/de.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/de.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407506831.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/el_GR.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/el_GR.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/el_GR.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/el_GR.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407506852.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/en.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/en.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/en.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/en.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407506922.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/es.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/es.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/es.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/es.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407506947.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/et_EE.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/et_EE.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/et_EE.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/et_EE.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407506963.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/fr_FR.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/fr_FR.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/fr_FR.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/fr_FR.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407506981.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/gl.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/gl.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/gl.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/gl.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507086.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/hr_HR.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/hr_HR.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/hr_HR.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/hr_HR.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507105.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/hu_HU.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/hu_HU.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/hu_HU.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/hu_HU.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2014-05-02 00:01+0200\n" -"PO-Revision-Date: 2014-08-08 14:12+0000\n" +"PO-Revision-Date: 2014-08-26 14:47+0000\n" "Last-Translator: Adolfo \n" "Language-Team: none\n" "Language: es\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407507147.000000\n" +"X-POOTLE-MTIME: 1409064458.000000\n" #: description.xml msgctxt "" @@ -22,4 +22,4 @@ "dispname\n" "description.text" msgid "Hungarian spelling dictionary, hyphenation rules, thesaurus, and grammar checker" -msgstr "Corrector ortográfico y gramatical, sinónimos y reglas de división de palabras" +msgstr "Húngaro: corrector ortográfico y gramatical, sinónimos y reglas de división de palabras" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/it_IT.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/it_IT.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/it_IT.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/it_IT.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507171.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/lt_LT.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/lt_LT.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/lt_LT.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/lt_LT.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507187.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/lv_LV.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/lv_LV.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/lv_LV.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/lv_LV.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507207.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/nl_NL.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/nl_NL.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/nl_NL.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/nl_NL.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507227.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/no.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/no.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/no.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/no.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507277.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/pl_PL.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/pl_PL.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/pl_PL.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/pl_PL.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507303.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/pt_BR.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/pt_BR.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/pt_BR.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/pt_BR.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507400.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/pt_PT.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/pt_PT.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/pt_PT.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/pt_PT.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507409.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/ro.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/ro.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/ro.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/ro.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507434.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/ru_RU.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/ru_RU.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/ru_RU.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/ru_RU.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507473.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/sk_SK.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/sk_SK.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/sk_SK.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/sk_SK.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507497.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/sl_SI.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/sl_SI.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/sl_SI.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/sl_SI.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507533.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/sr.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/sr.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/sr.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/sr.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507572.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/te_IN.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/te_IN.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/te_IN.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/te_IN.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507881.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/uk_UA.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/uk_UA.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/uk_UA.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/uk_UA.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507903.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/zu_ZA.po libreoffice-l10n-4.3.2/translations/source/es/dictionaries/zu_ZA.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/dictionaries/zu_ZA.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/dictionaries/zu_ZA.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407507932.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/extensions/source/update/check.po libreoffice-l10n-4.3.2/translations/source/es/extensions/source/update/check.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/extensions/source/update/check.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/extensions/source/update/check.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:06+0200\n" -"PO-Revision-Date: 2014-05-22 22:59+0000\n" +"PO-Revision-Date: 2014-08-31 00:09+0000\n" "Last-Translator: Adolfo \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1400799589.000000\n" +"X-POOTLE-MTIME: 1409443749.000000\n" #: updatehdl.src msgctxt "" @@ -57,8 +57,8 @@ "\n" "La versión instalada es %PRODUCTNAME %PRODUCTVERSION.\n" "\n" -"Nota: Antes de descargar una actualización, asegúrese que tiene los permisos de acceso necesarios para instalarla.\n" -"Puede ser necesario ingresar una contraseña, usualmente del administrador del sistema o del usuario root." +"Antes de descargar la actualización, asegúrese de que tiene los permisos necesarios para instalarla.\n" +"Puede ser necesario escribir la contraseña del administrador del sistema o del usuario «root»." #: updatehdl.src msgctxt "" @@ -96,7 +96,7 @@ msgstr "" "La ubicación de la descarga es: %DOWNLOAD_PATH.\n" "\n" -"Puede cambiarla en Herramientas ▸ Opciones ▸ %PRODUCTNAME ▸ Actualización en línea." +"Puede cambiarla en Herramientas > Opciones > %PRODUCTNAME > Actualización en línea." #: updatehdl.src msgctxt "" @@ -150,7 +150,7 @@ "RID_UPDATE_STR_CANCEL_DOWNLOAD\n" "string.text" msgid "Do you really want to cancel the download?" -msgstr "¿Realmente desea cancelar la descarga?" +msgstr "¿Está seguro de que quiere cancelar la descarga?" #: updatehdl.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/extensions/uiconfig/spropctrlr/ui.po libreoffice-l10n-4.3.2/translations/source/es/extensions/uiconfig/spropctrlr/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/extensions/uiconfig/spropctrlr/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/extensions/uiconfig/spropctrlr/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407837495.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/es/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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:08+0200\n" -"PO-Revision-Date: 2014-06-28 03:39+0000\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" +"PO-Revision-Date: 2014-09-03 07:20+0000\n" "Last-Translator: Adolfo \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403926775.000000\n" +"X-POOTLE-MTIME: 1409728808.000000\n" #: AbiWord.xcu msgctxt "" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento de BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "Documento de texto de BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento de BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "Hoja de cálculo de BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento de BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "Dibujo de BeagleWorks/WordPerfect Works v1" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento de ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "Documento de texto de ClarisWorks/AppleWorks" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento de ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "Hoja de cálculo de ClarisWorks/AppleWorks" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento de ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "Dibujo de ClarisWorks/AppleWorks" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento de GreatWorks" +msgid "GreatWorks Text Document" +msgstr "Documento de texto de GreatWorks" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento de GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "Hoja de cálculo de GreatWorks" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento de GreatWorks" +msgid "GreatWorks Drawing" +msgstr "Dibujo de GreatWorks" #: HTML_MasterDoc.xcu msgctxt "" @@ -653,7 +653,7 @@ "UIName\n" "value.text" msgid "Microsoft Word for Mac (v1 - v5)" -msgstr "Microsoft Word para Mac (v. 1-5)" +msgstr "Microsoft Word for Mac (v. 1-5)" #: Mac_Works.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Documento de Microsoft Works para Mac (v. 1-4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "Documento de texto de Microsoft Works for Mac (v. 1-4)" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Documento de Microsoft Works para Mac (v. 1-4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "Hoja de cálculo de Microsoft Works for Mac (v. 1-4)" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Documento de Microsoft Works para Mac (v. 1-4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "Dibujo de Microsoft Works for Mac (v. 1-4)" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared/01.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/sbasic/shared/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/sbasic/shared/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407359010.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408090112.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408933455.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/scalc/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/scalc/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407511372.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/scalc/01.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-08-08 21:41+0000\n" -"Last-Translator: Grettel \n" +"PO-Revision-Date: 2014-08-30 11:37+0000\n" +"Last-Translator: Diego \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407534076.000000\n" +"X-POOTLE-MTIME: 1409398623.000000\n" #: 01120000.xhp msgctxt "" @@ -55476,7 +55476,7 @@ "10\n" "help.text" msgid "Select the comparative operator that you want to use. The available operators depend on what you selected in the Allow box. If you select \"between\" or \"not between\", the Minimum and Maximum input boxes appear. Otherwise, only the Minimum, the Maximum, or the Value input boxes appear." -msgstr "" +msgstr "Seleccione el operador de comparación que desee usar. Los operadores disponibles dependen de la opción seleccionada en el cuadro Permitir. Al seleccionar \"entre\" o \"no entre\" se muestran los cuadros de entrada Mínimo y Máximo. En otros casos, sólo se muestra uno de los cuadros de entrada: Mínimo, Máximo o Valor." #: 12120100.xhp msgctxt "" @@ -55530,7 +55530,7 @@ "16\n" "help.text" msgid "Enter the maximum value for the data validation option that you selected in the Allow box." -msgstr "" +msgstr "Escriba el valor máximo para la opción de validación de datos seleccionada en el cuadro Permitir." #: 12120200.xhp msgctxt "" @@ -56159,7 +56159,7 @@ "par_id3252589\n" "help.text" msgid "=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"y\") yields 38. =DATEDIF(\"1974-04-17\";\"2012-06-13\";\"ym\") yields 1. =DATEDIF(\"1974-04-17\";\"2012-06-13\";\"md\") yields 27. So he is 38 years, 1 month and 27 days old." -msgstr "" +msgstr "=DATEDIF(\"17-04-1974\";\"13-06-2012\";\"y\") devuelve 38. =DATEDIF(\"17-04-1974\";\"13-06-2012\";\"ym\") devuelve 1. =DATEDIF(\"17-04-1974\";\"13-06-2012\";\"md\") devuelve 27. Por tanto, él tiene 38 años, 1 mes y 27 días." #: func_datedif.xhp msgctxt "" @@ -56167,7 +56167,7 @@ "par_id3352589\n" "help.text" msgid "=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"m\") yields 457, he has been living for 457 months." -msgstr "" +msgstr "=DATADIF(\"17-04-1974\";\"13-06-2012\";\"m\") devuelve 457, él ha vivido 457 meses." #: func_datedif.xhp msgctxt "" @@ -56175,7 +56175,7 @@ "par_id3452589\n" "help.text" msgid "=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"d\") yields 13937, he has been living for 13937 days." -msgstr "" +msgstr "=DATADIF(\"17-04-1974\";\"13-06-2012\";\"d\") devuelve 13937, él ha vivido 13937 días." #: func_datedif.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/scalc/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/scalc/guide.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-08-05 13:46+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2014-08-30 11:44+0000\n" +"Last-Translator: Diego \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407246418.000000\n" +"X-POOTLE-MTIME: 1409399082.000000\n" #: address_auto.xhp msgctxt "" @@ -5549,7 +5549,7 @@ "22\n" "help.text" msgid "An image that you have loaded with Format - Page - Background is only visible in print or in the page preview. To display a background image on screen as well, insert the graphic image by choosing Insert - Image - From File and arrange the image behind the cells by choosing Format - Arrange - To Background. Use the Navigator to select the background image." -msgstr "" +msgstr "Una imagen cargada mediante Formato - Página - Fondo sólo se ve al imprimir o en la vista previa. Para mostrar también en pantalla una imagen de fondo, inserte el gráfico en Insertar - Imagen - De archivo y coloque la imagen detrás de las celdas seleccionando Formato - Posición - Enviar al fondo. Utilice el Navegador para seleccionar la imagen de fondo." #: format_table.xhp msgctxt "" @@ -7664,7 +7664,7 @@ "par_id2760093\n" "help.text" msgid "When you drag-and-drop a selection of cells, rows or columns on a Calc sheet, the cells (including the ones in selected rows or columns) normally overwrite the existing cells in the area where you drop. This is the normal overwrite mode." -msgstr "" +msgstr "Al arrastrar y soltar celdas, filas o columnas, previamente seleccionadas en una hoja de Calc, generalmente éstas sobreescribirán las celdas destino (las celdas del rango donde suelta las celdas seleccionadas). Este es el modo de sobreescritura normal." #: move_dragdrop.xhp msgctxt "" @@ -7672,7 +7672,7 @@ "par_id2760101\n" "help.text" msgid "Note that to drag-and-drop entire rows or columns, you must select the rows or columns you want to move (or copy) first, then start dragging from selected cells, not from the row or column headers (cells would be deselected by this)." -msgstr "" +msgstr "Tenga en cuenta que para arrastrar y soltar las filas o columnas enteras, debe seleccionar las filas o columnas que desea mover (o copiar) en primer lugar, a continuación, empezar a arrastrar las celdas seleccionadas, no de los encabezados de fila o columna (si hace esto las celdas serán de-seleccionadas)." #: move_dragdrop.xhp msgctxt "" @@ -7728,7 +7728,7 @@ "par_id2586748\n" "help.text" msgid "In both modes, you can hold down the CommandCtrl key, or CommandCtrl+Shift keys while you release the mouse button to insert a copy or a link, respectively." -msgstr "En ambos modos, puede mantener pulsada la tecla ComandoCtrl, o las teclas ComandoCtrl+Mayús mientras suelta el botón del ratón para insertar una copia o un enlace, respectivamente." +msgstr "En ambos modos, puede mantener pulsada la tecla ControlCtrl, o las teclas ControlCtrl+Mayús mientras suelta el botón del ratón para insertar una copia o un enlace, respectivamente." #: move_dragdrop.xhp msgctxt "" @@ -10882,7 +10882,7 @@ "bm_id3147240\n" "help.text" msgid "cells; merging/unmerging tables; merging cells cell merges unmerging cells splitting cells merging;cells" -msgstr "" +msgstr "celdas; unir/desunir tablas; unir celdas uniones de celdas desunir celdas unir;celdas" #: table_cellmerge.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/schart/01.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/schart/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/schart/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/schart/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408915407.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/shared/01.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/shared/01.po 2014-09-16 19:55:40.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: 2014-06-25 17:39+0200\n" -"PO-Revision-Date: 2014-08-15 08:11+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2014-09-02 11:47+0000\n" +"Last-Translator: Diego \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408090292.000000\n" +"X-POOTLE-MTIME: 1409658432.000000\n" #: 01010000.xhp msgctxt "" @@ -2886,7 +2886,7 @@ "64\n" "help.text" msgid "The following sections describe the %PRODUCTNAME Save as dialog. To activate the %PRODUCTNAME Open and Save dialog boxes, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME- General, and then select the Use %PRODUCTNAME dialogs in the Open/Save dialogs area." -msgstr "" +msgstr "Las secciones siguientes describen el cuadro de diálogo Guardar como de %PRODUCTNAME. Para activar los cuadros de diálogo Abrir y Guardar propios de %PRODUCTNAME, vaya al menú %PRODUCTNAME ▸ PreferenciasHerramientas ▸ Opciones%PRODUCTNAME ▸ General y seleccione la casilla Usar cuadros de diálogo de %PRODUCTNAME en el área Diálogos para abrir/guardar." #: 01070000.xhp msgctxt "" @@ -6480,7 +6480,7 @@ "23\n" "help.text" msgid "Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells. " -msgstr "" +msgstr "Suma los valores de las celdas contenidas en el portapapeles con los de las celdas de destino. Asimismo, si el portapapeles únicamente contiene comentarios, los añade a las celdas de destino." #: 02070000.xhp msgctxt "" @@ -6498,7 +6498,7 @@ "25\n" "help.text" msgid "Subtracts the values in the clipboard cells from the values in the target cells. " -msgstr "" +msgstr "Resta los valores de las celdas contenidas en el portapapeles de los de las celdas de destino." #: 02070000.xhp msgctxt "" @@ -6516,7 +6516,7 @@ "27\n" "help.text" msgid "Multiplies the values in the clipboard cells with the values in the target cells. " -msgstr "" +msgstr "Multiplica los valores de las celdas contenidas en el portapapeles por los de las celdas de destino." #: 02070000.xhp msgctxt "" @@ -6534,7 +6534,7 @@ "29\n" "help.text" msgid "Divides the values in the target cells by the values in the clipboard cells. " -msgstr "" +msgstr "Divide los valores de las celdas de destino por los de las celdas contenidas en el portapapeles. " #: 02070000.xhp msgctxt "" @@ -6570,7 +6570,7 @@ "31\n" "help.text" msgid "Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the Multiply or the Divide operation, the operation is not applied to the target cell of an empty cell in the clipboard." -msgstr "" +msgstr "Las celdas vacías del portapapeles no sustituyen a las celdas de destino. Si utiliza esta opción junto con la operación Multiplicar o Dividir, la operación no se aplica a la celda de destino de una celda vacía del portapapeles." #: 02070000.xhp msgctxt "" @@ -6597,7 +6597,7 @@ "34\n" "help.text" msgid "The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows." -msgstr "" +msgstr "Las líneas de los rangos dentro del portapapeles puedes pegarlas para convertirlas en columnas fuera de los rangos. Los rangos de columnas en el portapapeles son pegadas para convertirse en filas." #: 02070000.xhp msgctxt "" @@ -6615,7 +6615,7 @@ "36\n" "help.text" msgid "Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the Insert All option is also selected. " -msgstr "" +msgstr "Inserta el intervalo de celdas como vínculo, de modo que los cambios efectuados en las celdas en el archivo de origen se actualizan en el archivo de destino. Para garantizar que los cambios efectuados en las celdas vacías del archivo de origen se actualicen en el archivo de destino, compruebe que esté también seleccionada la opción Insertar todo. " #: 02070000.xhp msgctxt "" @@ -6678,7 +6678,7 @@ "62\n" "help.text" msgid "Target cells are shifted downward when you insert cells from the clipboard. " -msgstr "" +msgstr "Las celdas de destino se desplazan hacia abajo al insertar celdas desde el portapapeles. " #: 02070000.xhp msgctxt "" @@ -6696,7 +6696,7 @@ "64\n" "help.text" msgid "Target cells are shifted to the right when you insert cells from the clipboard. " -msgstr "" +msgstr "Las celdas de destino se desplazan a la derecha cuando se insertan celdas desde el portapapeles. " #: 02090000.xhp msgctxt "" @@ -15482,7 +15482,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 "Especifica la configuración de idioma para los campos de celdas seleccionados. Si se configura el idioma como Automático, $[officename] aplica automáticamente los formatos numéricos asociados con el idioma predeterminado del sistema. Seleccione cualquier idioma para establecer la configuración de los campos de celdas seleccionados." #: 05020300.xhp msgctxt "" @@ -20967,7 +20967,7 @@ "6\n" "help.text" msgid "If the Keep Scale option is selected, enter a positive amount to trim the left edge of the graphic, or a negative amount to add white space to the left of the graphic. If the Keep image size option is selected, enter a positive amount to increase the horizontal scale of the graphic, or a negative amount to decrease the horizontal scale of the graphic." -msgstr "" +msgstr "Si se ha seleccionado la opción Mantener la escala, escriba una cantidad positiva para recortar el borde izquierdo del gráfico o una cantidad negativa para agregar un espacio en blanco a la parte izquierda del gráfico. Si se ha seleccionado la opción Conservar el tamaño de la imagen, escriba una cifra positiva para incrementar la escala horizontal del gráfico o una negativa para disminuirla." #: 05030800.xhp msgctxt "" @@ -20985,7 +20985,7 @@ "8\n" "help.text" msgid "If the Keep Scale option is selected, enter a positive amount to trim the right edge of the graphic, or a negative amount to add white space to the right of the graphic. If the Keep image size option is selected, enter a positive amount to increase the horizontal scale of the graphic, or a negative amount to decrease the horizontal scale of the graphic." -msgstr "" +msgstr "Si se ha seleccionado la opción Mantener la escala, escriba una cantidad positiva para recortar el borde derecho del gráfico o una cantidad negativa para agregar un espacio en blanco a la parte derecha del gráfico. Si se ha seleccionado la opción Conservar el tamaño de la imagen, escriba una cifra positiva para incrementar la escala horizontal del gráfico o una negativa para disminuirla." #: 05030800.xhp msgctxt "" @@ -21003,7 +21003,7 @@ "10\n" "help.text" msgid "If the Keep Scale option is selected, enter a positive amount to trim the top of the graphic, or a negative amount to add white space above the graphic. If the Keep image size option is selected, enter a positive amount to increase the vertical scale of the graphic, or a negative amount to decrease the vertical scale of the graphic." -msgstr "" +msgstr "Si se ha seleccionado la opción Mantener la escala, escriba una cantidad positiva para recortar el borde superior del gráfico o una cantidad negativa para agregar un espacio en blanco en la parte superior del gráfico. Si se ha seleccionado la opción Conservar el tamaño, escriba una cantidad positiva para incrementar la escala vertical del gráfico o una negativa para disminuirla." #: 05030800.xhp msgctxt "" @@ -21021,7 +21021,7 @@ "12\n" "help.text" msgid "If the Keep Scale option is selected, enter a positive amount to trim the bottom of the graphic, or a negative amount to add white space below the graphic. If the Keep image size option is selected, enter a positive amount to increase the vertical scale of the graphic, or a negative amount to decrease the vertical scale of the graphic." -msgstr "" +msgstr "Si se ha seleccionado la opción Mantener la escala, escriba una cantidad positiva para recortar la parte inferior del gráfico o una negativa para agregar un espacio en blanco por encima. Si se ha seleccionado la opción Conservar el tamaño, escriba una cantidad positiva para incrementar la escala vertical del gráfico o una negativa para disminuirla." #: 05030800.xhp msgctxt "" @@ -29330,7 +29330,7 @@ "5\n" "help.text" msgid "Enter Group" -msgstr "" +msgstr "Entrar al grupo" #: 05290000.xhp msgctxt "" @@ -29502,7 +29502,7 @@ "par_id3148520\n" "help.text" msgid "Enter Group" -msgstr "" +msgstr "Entrar al grupo" #: 05320000.xhp msgctxt "" @@ -29982,7 +29982,7 @@ "6\n" "help.text" msgid "Adjusts the row height to the size based on the default template. Existing contents may be shown vertically cropped. The height no longer increases automatically when you enter larger contents." -msgstr "" +msgstr "Ajusta el alto de fila al tamaño especificado en la plantilla predeterminada. Puede ocurrir que los contenidos existentes aparezcan recortados verticalmente. El alto ya no aumenta de manera automática al escribir contenidos más extensos." #: 05340200.xhp msgctxt "" @@ -30254,7 +30254,7 @@ "42\n" "help.text" msgid "Indents from the left edge of the cell by the amount that you enter." -msgstr "" +msgstr "Crea una sangría, del valor que especifique, en el borde izquierdo de la celda." #: 05340300.xhp msgctxt "" @@ -37942,7 +37942,7 @@ "10\n" "help.text" msgid "Replaces a library that has the same name with the current library." -msgstr "" +msgstr "Reemplaza una biblioteca que tenga el mismo nombre por la biblioteca actual." #: 06140000.xhp msgctxt "" @@ -38020,7 +38020,7 @@ "2\n" "help.text" msgid "Customizes and saves current menu layouts as well as creates new menus. You cannot customize context menus." -msgstr "" +msgstr "Personaliza y guarda las disposiciones de los menús actuales y crea menús nuevos. No es posible personalizar los menús contextuales." #: 06140100.xhp msgctxt "" @@ -38045,7 +38045,7 @@ "par_idN1069F\n" "help.text" msgid "Select the menu and submenu that you want to edit." -msgstr "" +msgstr "Seleccione el menú y el submenú que quiera editar." #: 06140100.xhp msgctxt "" @@ -38061,7 +38061,7 @@ "par_idN106B4\n" "help.text" msgid "Opens the New Menu dialog where you can enter the name of a new menu as well as select the location for the menu." -msgstr "" +msgstr "Abre el cuadro de diálogo Menú nuevo para introducir el nombre de un menú nuevo y seleccionar su ubicación." #: 06140100.xhp msgctxt "" @@ -38552,7 +38552,7 @@ "2\n" "help.text" msgid "Assigns or edits the shortcut keys for $[officename] commands, or $[officename] Basic macros." -msgstr "" +msgstr "Asigna o edita las teclas de acceso directo de las órdenes de $[officename] y las macros de $[officename] Basic." #: 06140200.xhp msgctxt "" @@ -38588,7 +38588,7 @@ "26\n" "help.text" msgid "Displays shortcut keys that are common to all $[officename] applications." -msgstr "" +msgstr "Muestra las teclas de acceso directo comunes a todas las aplicaciones de $[officename]." #: 06140200.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/shared/02.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/shared/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/shared/02.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408062558.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/shared/05.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/shared/05.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/shared/05.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/shared/05.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407511461.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-08-02 05:53+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2014-09-02 11:30+0000\n" +"Last-Translator: Diego \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406958837.000000\n" +"X-POOTLE-MTIME: 1409657421.000000\n" #: 02000000.xhp msgctxt "" @@ -3068,7 +3068,7 @@ "8\n" "help.text" msgid "With the left join, the results table contains all fields of the left table and only those fields of the right table for which the content of the linked fields is the same. In $[officename] SQL this type of link corresponds to the LEFT OUTER JOIN command." -msgstr "" +msgstr "En la unión izquierda, la tabla de resultados contiene todos los campos de la tabla izquierda y sólo los campos de la tabla derecha en los cuales el contenido de los campos vinculados es el mismo. En $[officename] SQL, este tipo de vínculo corresponde al comando LEFT OUTER JOIN." #: 02010101.xhp msgctxt "" @@ -3086,7 +3086,7 @@ "10\n" "help.text" msgid "With the right join, the results table contains all fields of the right table and only those fields of the left table for which the content of the linked fields is the same. In $[officename] SQL this type of link corresponds to the RIGHT OUTER JOIN command." -msgstr "" +msgstr "En la unión derecha, la tabla de resultados contiene todos los campos de la tabla derecha y sólo los campos de la tabla izquierda en los cuales el contenido de los campos vinculados es el mismo. En $[officename] SQL, este tipo de unión corresponde al comando RIGHT OUTER JOIN." #: 02010101.xhp msgctxt "" @@ -3104,7 +3104,7 @@ "12\n" "help.text" msgid "For a full join, the results table contains all fields of the left and right tables. In the SQL of $[officename] this type of link corresponds to the FULL OUTER JOIN command." -msgstr "" +msgstr "En las uniones completas, la tabla de resultados contiene todos los campos de las tablas izquierda y derecha. En $[officename] SQL, este tipo de vínculo corresponde al comando FULL OUTER JOIN." #: 02010101.xhp msgctxt "" @@ -4508,7 +4508,7 @@ "30\n" "help.text" msgid "The names of the tables selected for the link appear here as column names. If you click a field, you can use the arrow buttons to select a field from the table. Each relation is written in a row." -msgstr "" +msgstr "Los nombres de las tablas seleccionadas para el vínculo aparecen en forma de nombres de columna. Si hace clic en un campo podrá utilizar los botones de flecha para seleccionar un campo de la tabla. Cada una de las relaciones aparece detallada en una fila." #: 05020100.xhp msgctxt "" @@ -5880,7 +5880,7 @@ "25\n" "help.text" msgid "Enables $[officename] support of auto-incremented data fields for the current ODBC or JDBC data source. Select this check box if the database does not support the auto-increment feature in its SDBCX layer. In general, the auto-increment is selected for the primary key field." -msgstr "" +msgstr "Permite a $[officename] admitir campos de datos de incremento automático para la fuente de datos ODBC o JDBC actual. Seleccione esta opción si la base de datos no incorpora la función de incremento automático en su capa SDBCX. En general, la opción de incremento automático suele estar asociada al campo de llave primaria." #: 11020000.xhp msgctxt "" @@ -5979,7 +5979,7 @@ "19\n" "help.text" msgid "Only allows names that use characters that conform to the SQL92 naming constraints in the data source. All other characters are rejected. Each name must begin with a lower or upper case letter, or an underline ( _ ). The remaining characters can be ASCII letters, underlines, and numbers." -msgstr "" +msgstr "Permite únicamente el uso de nombres con caracteres que cumplan las restricciones de nombres SQL92 en la fuente de datos. El resto de caracteres se rechazan. Todos los nombres deben empezar por una letra mayúscula o minúscula o un guión bajo ( _ ). El resto de caracteres pueden ser letras ASCII, guiones bajos o números." #: 11020000.xhp msgctxt "" @@ -6156,7 +6156,7 @@ "11\n" "help.text" msgid "Lists the current indexes for the selected database table. To remove an index from the list, click the index, and then click the right arrow." -msgstr "" +msgstr "Enumera los índices actuales para la tabla de base de datos seleccionada. Para borrar un índice de la lista, pulse en él y luego en la flecha derecha." #: 11030100.xhp msgctxt "" @@ -6174,7 +6174,7 @@ "12\n" "help.text" msgid "Lists the available indexes that you can assign to a table. To assign an index to a selected table, click the left arrow icon. The left double arrow assigns all available indexes." -msgstr "" +msgstr "Enumera los índices disponibles que se pueden asignar a una tabla. Para asignar un índice a la tabla seleccionada, pulse en el símbolo de flecha izquierda. El símbolo de flecha izquierda doble asigna todos los índices disponibles." #: 11030100.xhp msgctxt "" @@ -7497,7 +7497,7 @@ "par_idN105D6\n" "help.text" msgid "Some databases assign version numbers to fields to track changes to records. The version number of a field is incremented by one each time the contents of the field are changed. Displays the internal version number of the record in the database table." -msgstr "" +msgstr "Algunas bases de datos asignan números de versión a los campos para supervisar los cambios en los registros. El número de versión de un campo se incrementa en uno cada vez que se modifica su contenido. Muestra el número de versión interno del registro en la tabla de la base de datos." #: dabaadvpropdat.xhp msgctxt "" @@ -7657,7 +7657,7 @@ "par_id66841632\n" "help.text" msgid "The heuristics sometimes fails. This tri-state check box by default is set to the undetermined state, which means \"apply the heuristics\". If the check box is enabled, primary key support is assumed. If the check box is disabled, no primary key support is assumed." -msgstr "" +msgstr "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." #: dabaadvpropdat.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.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-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-08-08 15:29+0000\n" -"Last-Translator: Adolfo \n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" +"PO-Revision-Date: 2014-09-02 11:31+0000\n" +"Last-Translator: Diego \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407511771.000000\n" +"X-POOTLE-MTIME: 1409657506.000000\n" #: aaa_start.xhp msgctxt "" @@ -206,7 +206,7 @@ "8\n" "help.text" msgid "Zooming of on-screen user interface for menus, icons, and documents" -msgstr "Escalado de la interfaz del usuario por pantalla para los menús, los símbolos y los documentos" +msgstr "Escala de la interfaz del usuario en pantalla para menús, iconos y documentos" #: accessibility.xhp msgctxt "" @@ -4596,7 +4596,7 @@ "12\n" "help.text" msgid "The filter that has been set can be removed by clicking Reset Filter/Sort icon Icon." -msgstr "" +msgstr "El filtro que se ha definido se puede quitar haciendo clic en Quitar Filtro u Orden icon Icono." #: data_tabledefine.xhp msgctxt "" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programación en %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "La función de registro de macros sólo está disponible para los documentos de texto en %PRODUCTNAME Writer y para las hojas de cálculo en %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" @@ -15806,7 +15798,7 @@ "11\n" "help.text" msgid "With every change made in %PRODUCTNAME Calc and %PRODUCTNAME Writer, the review function records who made the change. This function can be turned on with protection, so that it can only be turned off when the correct password is entered. Until then, all changes will continue to be recorded. Acceptance or rejection of changes is not possible." -msgstr "La función de revisión registra el autor de cada una de las modificaciones efectuadas en documentos de $[officename] Calc y $[officename] Writer. Esta función se puede activar con protección, de modo que sólo pueda desactivarse si se introduce la contraseña correcta. Hasta entonces, las modificaciones se seguirán grabando. No es posible aceptar o rechazar las modificaciones." +msgstr "La función de revisión registra el autor de cada una de las modificaciones efectuadas en documentos de %PRODUCTNAME Calc y %PRODUCTNAME Writer. Esta función se puede activar con protección, de modo que solo pueda desactivarse si se introduce la contraseña correcta. Hasta entonces, las modificaciones se seguirán grabando. No es posible aceptar o rechazar las modificaciones." #: protection.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/shared/optionen.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-08-14 23:33+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2014-09-02 11:49+0000\n" +"Last-Translator: Diego \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408059192.000000\n" +"X-POOTLE-MTIME: 1409658563.000000\n" #: 01000000.xhp msgctxt "" @@ -1775,7 +1775,7 @@ "par_id3151253\n" "help.text" msgid "You can use a [] block instead of the = sign to specify character changes before the hyphenation break. Possible character changes: (1) Extra characters, for example tug[g]gumi results the correct hyphenation “tugg- gummi” of the Swedish word “tuggummi”. (2) Character removing specified by a digit, for example paral·[1]lel results correct hyphenation “paral- lel” of the Catalan word “paral·lel”, removing one character before the break point. (3) Both removed and extra characters, for example cafee[2é]tje results correct hyphenation “café- tje” of the Dutch word “cafeetje”, removing two characters before the break point, and adding an extra one." -msgstr "Puede utilizar bloques con corchetes [] en vez de = para especificar cambios de caracteres antes del punto de división. Los cambios posibles son:
              1) Caracteres adicionales: por ejemplo, tug[g]gumi genera «tugg- gummi», la división correcta de la palabra sueca «tuggummi».
              2) Eliminación de caracteres especificada por un dígito: por ejemplo, paral·[1]lel genera «paral- lel», la división correcta de la palabra catalana «paral·lel». El bloque [1] indica que se eliminó un carácter antes del punto de división.
              3) Combinación de los métodos anteriores: por ejemplo, cafee[2é]tje genera «café- tje», la división correcta de la palabra neerlandesa «cafeetje». El bloque [2é] indica que se eliminaron dos caracteres antes del punto de división y se añadió uno." +msgstr "Puede utilizar bloques con corchetes [] en vez de = para especificar cambios de caracteres antes del punto de división. Los cambios posibles son:
              1) Caracteres adicionales: por ejemplo, tug[g]gumi genera «tugg- gummi», la división correcta de la palabra sueca «tuggummi».
              2) Eliminación de caracteres especificada por un dígito: por ejemplo, paral·[1]lel genera «paral- lel», la división correcta de la palabra catalana «paral·lel». El bloque [1] indica que se eliminó un carácter antes del punto de división.
              3) Combinación de los métodos anteriores: por ejemplo, cafee[2é]tje genera «café- tje», la división correcta de la palabra neerlandesa «cafeetje». El bloque [2é] indica que se eliminaron dos caracteres antes del punto de división y se añadió uno." #: 01010400.xhp msgctxt "" @@ -1883,7 +1883,7 @@ "44\n" "help.text" msgid "Specifies that capitalization is checked during spellcheck." -msgstr "Especifica que se revisen el uso de mayúsculas y minúsculas durante la revisión ortográfica." +msgstr "Especifica que se debe comprobar el uso de mayúsculas y minúsculas durante la revisión ortográfica." #: 01010400.xhp msgctxt "" @@ -2018,7 +2018,7 @@ "15\n" "help.text" msgid "Hyphenate without inquiry" -msgstr "Separar sin pregunta" +msgstr "Separar sin preguntar" #: 01010400.xhp msgctxt "" @@ -2124,7 +2124,7 @@ "8\n" "help.text" msgid "Only one sub-module can be activated under Hyphenation." -msgstr "Sólo se puede activar un submódulo en Separación silábica." +msgstr "Solo se puede activar un submódulo en División de palabras." #: 01010401.xhp msgctxt "" @@ -5897,7 +5897,7 @@ "10\n" "help.text" msgid "Defines the settings for exporting HTML documents. To export in HTML format select the HTML Document file type in the Save As dialog. You can find further instructions in the Import and export filters description." -msgstr "" +msgstr "Define la configuración para exportar documentos HTML. Si desea exportar en formato HTML, seleccione el tipo de archivo Documento HTML en el diálogo Guardar como. Puede buscar más instrucciones en la descripción de filtros de importación y exportación." #: 01030500.xhp msgctxt "" @@ -7790,7 +7790,7 @@ "25\n" "help.text" msgid "Specifies that you can set the cursor in a protected area, but cannot make any changes." -msgstr "" +msgstr "Especifica que se puede posicionar el cursor en las áreas protegidas, mas sin poder realizar modificaciones en ellas." #: 01040700.xhp msgctxt "" @@ -7879,7 +7879,7 @@ "24\n" "help.text" msgid "Specifies how changes in the document are displayed when text is deleted. If you record text deletions, the text is displayed with the selected attribute (for example, strikethrough) and is not deleted." -msgstr "" +msgstr "Especifica cómo se visualizan las modificaciones en el documento cuando se elimina texto. Si se graban las eliminaciones de texto, este se mostrará con el atributo seleccionado (por ejemplo, tachado) y no se borra." #: 01040700.xhp msgctxt "" @@ -8283,7 +8283,7 @@ "32\n" "help.text" msgid "Specifies the unit of measurement for text documents." -msgstr "" +msgstr "Especifica la unidad de medida de los documentos de texto." #: 01040900.xhp msgctxt "" @@ -8301,7 +8301,7 @@ "34\n" "help.text" msgid "Specifies the spacing between the individual tab stops. The horizontal ruler displays the selected spacing." -msgstr "" +msgstr "Especifica el espacio entre cada una de las tabulaciones. La regla horizontal muestra la cantidad de espacio seleccionada." #: 01040900.xhp msgctxt "" @@ -8317,7 +8317,7 @@ "par_id3150419\n" "help.text" msgid "When this setting is enabled, the measurement units of indents and spacing on Format - Paragraph - Indents & Spacing tab will be character (ch) and line." -msgstr "" +msgstr "Cuando se activa esta opción, las unidades de medida de las sangrías y el espacio en Formato ▸ Párrafo ▸ Sangrías y espaciado serán el carácter (car) y la línea." #: 01040900.xhp msgctxt "" @@ -8610,7 +8610,7 @@ "par_idN1086A\n" "help.text" msgid "The option will be set to off for new documents. For Writer documents created by a version prior to OpenOffice.org 2.0 the option is on." -msgstr "" +msgstr "La opción está desactivada en los documentos nuevos. Para los documentos de Writer creados en una versión anterior a OpenOffice.org 2.0, la opción estará activada." #: 01041000.xhp msgctxt "" @@ -8714,7 +8714,7 @@ "par_idN10848\n" "help.text" msgid "Click to use the current settings on this tab page as the default for further sessions with %PRODUCTNAME." -msgstr "" +msgstr "Pulse en esta opción para utilizar la configuración actual de esta pestaña como predeterminada para las próximas veces que utilice %PRODUCTNAME." #: 01041000.xhp msgctxt "" @@ -8836,7 +8836,7 @@ "13\n" "help.text" msgid "Specifies the category of the selected object." -msgstr "" +msgstr "Especifica la categoría del objeto seleccionado." #: 01041100.xhp msgctxt "" @@ -8854,7 +8854,7 @@ "18\n" "help.text" msgid "Specifies the type of numbering required." -msgstr "" +msgstr "Especifica el tipo de numeración requerido." #: 01041100.xhp msgctxt "" @@ -8872,7 +8872,7 @@ "17\n" "help.text" msgid "Defines the character to be displayed after the number of the heading or chapter level." -msgstr "" +msgstr "Define el carácter que se mostrará después del número del encabezado o nivel de capítulo." #: 01041100.xhp msgctxt "" @@ -8890,7 +8890,7 @@ "15\n" "help.text" msgid "Determines the position of the caption with respect to the object." -msgstr "" +msgstr "Determina la posición de la leyenda en relación al objeto." #: 01041100.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/smath/01.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/smath/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/smath/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/smath/01.po 2014-09-16 19:55:40.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: 2014-05-02 00:14+0200\n" -"PO-Revision-Date: 2014-07-29 02:46+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2014-08-30 11:49+0000\n" +"Last-Translator: Diego \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406601980.000000\n" +"X-POOTLE-MTIME: 1409399383.000000\n" #: 02080000.xhp msgctxt "" @@ -442,7 +442,7 @@ "2\n" "help.text" msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements window displays the individual operators. The context menu of the Commands window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements window, use the context menu or type it directly in the Commands window." -msgstr "Se pueden elegir varios operadores unarios y binarios para construir una fórmula de $[officename] Math. Unario se refiere a los operadores que afectan un marcador de posición. Binario se refiere a los operadores que conectan dos marcadores de posición. La zona baja de la ventana Elementos de Fórmula muestra los operadores individuales. El menú contextual de la ventana de Comandos también contiene una lista de estos operadores, así como también una lista de los operadores adicionales. Si se necesita un operador que no esta contenido en la ventana \\\"Elementos de las fórmulas\\\", se usa el menú contextual o se escribe directamente en la ventana de Comandos." +msgstr "Se pueden elegir varios operadores unarios y binarios para construir una fórmula de $[officename] Math. Unario se refiere a los operadores que afectan un marcador de posición. Binario se refiere a los operadores que conectan dos marcadores de posición. La zona baja de la ventana Elementos de Fórmula muestra los operadores individuales. El menú contextual de la ventana de Comandos también contiene una lista de estos operadores, así como también una lista de los operadores adicionales. Si se necesita un operador que no esta contenido en la ventana \"Elementos de las fórmulas\", se usa el menú contextual o se escribe directamente en la ventana de Comandos." #: 03090100.xhp msgctxt "" @@ -948,7 +948,7 @@ "43\n" "help.text" msgid "Type a widebslash b in the Commands window to produce two characters with a slash (from upper left to lower right) between them. The characters are set such that everything to the left of the slash is down, and everything to the right is up. This command is also available in the context menu of the Commands window." -msgstr "Escriba a widebslash b en la ventana Comandos para producir dos caracteres con una barra oblicua inversa (\\) entre ambos. El carácter que se encuentre a la izquierda de la barra se posicionará abajo; el que se encuentre a la derecha, arriba. Este comando también está disponible en el menú contextual de la ventana Comandos." +msgstr "Escriba a widebslash b en la ventana Comandos para producir dos caracteres con una barra oblicua inversa (desde la parte superior izquierda a la parte inferior derecha) entre ambos. El carácter que se encuentre a la izquierda de la barra se posicionará abajo; el que se encuentre a la derecha, arriba. Este comando también está disponible en el menú contextual de la ventana Comandos." #: 03090100.xhp msgctxt "" @@ -1009,7 +1009,7 @@ "2\n" "help.text" msgid "You can choose among various relations to structure your $[officename] Math formula. The relation functions are displayed in the lower part of the Elements window. The list is also in the context menu of the Commands window. All relations that are not contained in the Elements window or in the context menu can be typed manually in the Commands window." -msgstr "Puede elegir entre varias relaciones para estructurar la fórmula de $[officename] Math. Las funciones de relación se muestran en la parte inferior de la ventana \\\"Elementos de las fórmulas\\\". La lista también aparece en el menú contextual de la ventana Comandos. Todas las relaciones que no aparecen en la ventana \\\"Elementos de las fórmulas\\\" o en el menú contextual pueden escribirse manualmente en la ventana \\\"Comandos\\\"." +msgstr "Puede elegir entre varias relaciones para estructurar la fórmula de $[officename] Math. Las funciones de relación se muestran en la parte inferior de la ventana \"Elementos de las fórmulas\". La lista también aparece en el menú contextual de la ventana Comandos. Todas las relaciones que no aparecen en la ventana \"Elementos de las fórmulas\" o en el menú contextual pueden escribirse manualmente en la ventana \"Comandos\"." #: 03090200.xhp msgctxt "" @@ -1018,7 +1018,7 @@ "3\n" "help.text" msgid "The following is a complete list of the relations. The symbol next to the name of the relation indicates that it can be accessed through the Elements window (choose View - Elements) or through the context menu of the Commands window." -msgstr "La siguiente es una lista completa de las relaciones. El símbolo al lado del nombre de la relación indica que puede ser accedido a través de la ventana \\\"Elementos de las fórmulas\\\" (elegir Ver - Elementos de las fórmulas) o a través del menú contextual en la ventana de Comandos." +msgstr "La siguiente es una lista completa de las relaciones. El símbolo al lado del nombre de la relación indica que puede ser accedido a través de la ventana \"Elementos de las fórmulas\" (elegir Ver - Elementos de las fórmulas) o a través del menú contextual en la ventana de Comandos." #: 03090200.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/smath.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/smath.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/smath.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/smath.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408487079.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/swriter/01.po 2014-09-16 19:55:40.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: 2014-06-25 17:42+0200\n" -"PO-Revision-Date: 2014-06-22 19:14+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2014-08-28 02:19+0000\n" +"Last-Translator: Diego \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403464473.000000\n" +"X-POOTLE-MTIME: 1409192365.000000\n" #: 01120000.xhp msgctxt "" @@ -7549,7 +7549,7 @@ "44\n" "help.text" msgid "Enter a value for the selected field." -msgstr "Después de haber seleccionado el campo \"Combinar caracteres\" podrá introducir un valor." +msgstr "Escriba un valor para el campo seleccionado." #: 04090003.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2014-09-16 19:55:40.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: 2014-06-12 13:25+0200\n" -"PO-Revision-Date: 2014-08-14 23:34+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2014-08-28 02:14+0000\n" +"Last-Translator: Diego \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408059258.000000\n" +"X-POOTLE-MTIME: 1409192052.000000\n" #: anchor_object.xhp msgctxt "" @@ -790,7 +790,7 @@ "38\n" "help.text" msgid "Choose “None (Do not check spelling)”." -msgstr "Elija «Ninguno (no revisar la ortografía»." +msgstr "Elija «Ninguno (no revisar la ortografía)»." #: auto_spellcheck.xhp msgctxt "" @@ -17275,7 +17275,7 @@ "35\n" "help.text" msgid "In the Hyphenation area, select the Automatically check box." -msgstr "En el área \"Separación silábica\", seleccione la casilla de verificación \"Automáticamente\"." +msgstr "En el área División de palabras, seleccione la casilla de verificación «Automáticamente»." #: using_hyphen.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/swriter/librelogo.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/swriter/librelogo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/swriter/librelogo.po 2014-09-16 19:55:40.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: 2014-05-02 00:14+0200\n" -"PO-Revision-Date: 2014-07-10 19:39+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2014-09-02 11:22+0000\n" +"Last-Translator: Diego \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1405021156.000000\n" +"X-POOTLE-MTIME: 1409656974.000000\n" #: LibreLogo.xhp msgctxt "" @@ -406,7 +406,7 @@ "par_660\n" "help.text" msgid "TO star size color
              FILLCOLOR color
              REPEAT 5 [ LEFT 72 FORWARD size RIGHT 144 FORWARD size ]
              FILL
              END

              star 100 “red”
              star (100, “green”)
              star(100, “blue”)
              " -msgstr "" +msgstr "TO star size color
              FILLCOLOR color
              REPEAT 5 [ LEFT 72 FORWARD size RIGHT 144 FORWARD size ]
              FILL
              END

              star 100 “red”
              star (100, “green”)
              star(100, “blue”)
              " #: LibreLogo.xhp msgctxt "" @@ -518,7 +518,7 @@ "hd_800\n" "help.text" msgid "Break program lines to multiple paragraphs" -msgstr "" +msgstr "Rompe las líneas del programa en varios párrafos" #: LibreLogo.xhp msgctxt "" @@ -558,7 +558,7 @@ "par_850\n" "help.text" msgid "FORWARD 10 ; move forward 10pt (1pt = 1/72 inch)
              FORWARD 10pt ; see above
              FORWARD 0.5in ; move forward 0.5 inch (1 inch = 2.54 cm)
              FORWARD 1\" ; see above
              FD 1mm
              FD 1cm
              " -msgstr "" +msgstr "FORWARD 10 ; avanza 10pt (1pt = 1/72 pulgadas)
              FORWARD 10pt ; ver más arriba
              FORWARD 0.5in ; avanza 0,5 pulgadas (1 pulgada = 2,54 cm)
              FORWARD 1\" ; ver más arriba
              FD 1mm
              FD 1cm
              " #: LibreLogo.xhp msgctxt "" @@ -590,7 +590,7 @@ "par_890\n" "help.text" msgid "LEFT 90 ; turn counterclockwise 90 degrees
              LEFT 90° ; see above
              LT 3h ; see above (clock position)
              LT any ; turn to a random position
              " -msgstr "" +msgstr "LEFT 90 ; gira 90 grados en sentido antihorario
              LEFT 90° ; ver más arriba
              LT 3h ; ver más arriba (posición del reloj)
              LT any ; gira de forma aleatoria
              " #: LibreLogo.xhp msgctxt "" @@ -606,7 +606,7 @@ "par_910\n" "help.text" msgid "RIGHT 90 ; turn clockwise 90 degrees
              " -msgstr "" +msgstr "RIGHT 90 ; gira 90 grados en sentido horario
              " #: LibreLogo.xhp msgctxt "" @@ -614,7 +614,7 @@ "hd_920\n" "help.text" msgid "PENUP (pu)" -msgstr "" +msgstr "PENUP (pu)" #: LibreLogo.xhp msgctxt "" @@ -622,7 +622,7 @@ "par_930\n" "help.text" msgid "PENUP ; turtle will move without drawing
              " -msgstr "" +msgstr "PENUP ; la tortuga se moverá sin dibujar
              " #: LibreLogo.xhp msgctxt "" @@ -630,7 +630,7 @@ "hd_940\n" "help.text" msgid "PENDOWN (pd)" -msgstr "" +msgstr "PENDOWN (pd)" #: LibreLogo.xhp msgctxt "" @@ -638,7 +638,7 @@ "par_950\n" "help.text" msgid "PENDOWN ; turtle will move with drawing
              " -msgstr "" +msgstr "PENDOWN ; la tortuga se moverá dibujando
              " #: LibreLogo.xhp msgctxt "" @@ -654,7 +654,7 @@ "par_970\n" "help.text" msgid "POSITION [0, 0] ; turn and move to the top-left corner
              POSITION PAGESIZE ; turn and move to the bottom-right corner
              POSITION [PAGESIZE[0], 0] ; turn and move to the top-right corner
              POSITION ANY ; turn and move to a random position
              " -msgstr "" +msgstr "POSITION [0, 0] ; gira y se desplaza a la esquina superior izquierda
              POSITION PAGESIZE ; gira y se desplaza a la esquina inferior derecha
              POSITION [PAGESIZE[0], 0] ; gira y se desplaza a la esquina superior derecha
              POSITION ANY ; gira y se desplaza a una posición aleatoria
              " #: LibreLogo.xhp msgctxt "" @@ -662,7 +662,7 @@ "hd_980\n" "help.text" msgid "HEADING (seth)" -msgstr "" +msgstr "HEADING (seth)" #: LibreLogo.xhp msgctxt "" @@ -670,7 +670,7 @@ "par_990\n" "help.text" msgid "HEADING 0 ; turn north
              HEADING 12h ; see above
              HEADING [0, 0] ; turn to the top-left corner
              HEADING ANY ; turn to a random direction
              " -msgstr "" +msgstr "HEADING 0 ; gira hacia el norte
              HEADING 12h ; ver más arriba
              HEADING [0, 0] ; gira hacia la esquina superior izquierda
              HEADING ANY ; gira en una dirección aleatoria
              " #: LibreLogo.xhp msgctxt "" @@ -686,7 +686,7 @@ "hd_1010\n" "help.text" msgid "HIDETURTLE (ht)" -msgstr "" +msgstr "HIDETURTLE (ht)" #: LibreLogo.xhp msgctxt "" @@ -694,7 +694,7 @@ "par_1020\n" "help.text" msgid "HIDETURTLE ; hide turtle (until the showturtle command)
              " -msgstr "" +msgstr "HIDETURTLE ; oculta la tortuga (hasta que se utilice el comando showturtle)
              " #: LibreLogo.xhp msgctxt "" @@ -702,7 +702,7 @@ "hd_1030\n" "help.text" msgid "SHOWTURTLE (st)" -msgstr "" +msgstr "SHOWTURTLE (st)" #: LibreLogo.xhp msgctxt "" @@ -710,7 +710,7 @@ "par_1040\n" "help.text" msgid "SHOWTURTLE ; show turtle
              " -msgstr "" +msgstr "SHOWTURTLE ; muestra la tortuga
              " #: LibreLogo.xhp msgctxt "" @@ -718,7 +718,7 @@ "hd_1050\n" "help.text" msgid "HOME" -msgstr "" +msgstr "HOME" #: LibreLogo.xhp msgctxt "" @@ -726,7 +726,7 @@ "par_1060\n" "help.text" msgid "HOME ; reset initial turtle settings and position
              " -msgstr "" +msgstr "HOME ; reinicia la configuración y la posición inicial de la tortuga
              " #: LibreLogo.xhp msgctxt "" @@ -734,7 +734,7 @@ "hd_1070\n" "help.text" msgid "CLEARSCREEN (cs)" -msgstr "" +msgstr "CLEARSCREEN (cs)" #: LibreLogo.xhp msgctxt "" @@ -758,7 +758,7 @@ "par_1100\n" "help.text" msgid "FILL ; close and fill the actual line shape
              CLOSE ; close the actual line shape
              " -msgstr "" +msgstr "FILL ; cierra y rellena la forma de línea actual
              CLOSE ; cierra la forma de línea actual
              " #: LibreLogo.xhp msgctxt "" @@ -782,7 +782,7 @@ "par_1130\n" "help.text" msgid "PENSIZE 100 ; line width is 100 points
              PENSIZE ANY ; equivalent of PENSIZE RANDOM 10
              " -msgstr "" +msgstr "PENSIZE 100 ; el ancho de línea es 100 puntos
              PENSIZE ANY ; equivalente a PENSIZE RANDOM 10
              " #: LibreLogo.xhp msgctxt "" @@ -798,7 +798,7 @@ "par_1150\n" "help.text" msgid "PENCOLOR “red” ; set red pen color (by color name, see color constants)
              PENCOLOR [255, 255, 0] ; set yellow color (RGB list)
              PENCOLOR 0xffff00 ; set yellow color (hexa code)
              PENCOLOR 0 ; set black color (0x000000)
              PENCOLOR ANY ; random color
              PENCOLOR [5] ; set red color (by color identifier, see color constants)
              PENCOLOR “invisible” ; invisible pen color for shapes without visible outline
              PENCOLOR “~red” ; set random red color
              " -msgstr "" +msgstr "PENCOLOR “red” ; establece el color de la pluma en rojo (por nombre de color, ver constantes de colores)
              PENCOLOR [255, 255, 0] ; establece el color amarillo (lista RGB)
              PENCOLOR 0xffff00 ; establece el color amarillo (código hexadecimal)
              PENCOLOR 0 ; establece el color negro (0x000000)
              PENCOLOR ANY ; color aleatorio
              PENCOLOR [5] ; establece el color rojo (color por identificador, ver constantes de colores)
              PENCOLOR “invisible” ; establece el color invisible para formas sin contornos
              PENCOLOR “~red” ; establece un color rojo aleatorio
              " #: LibreLogo.xhp msgctxt "" @@ -814,7 +814,7 @@ "par_1152\n" "help.text" msgid "PENTRANSPARENCY 80 ; set the transparency of the actual pen color to 80%
              " -msgstr "" +msgstr "PENTRANSPARENCY 80 ; establece la transparencia del color de pluma actual en el 80%
              " #: LibreLogo.xhp msgctxt "" @@ -830,7 +830,7 @@ "par_1155\n" "help.text" msgid "PENCAP “none” ; without extra line end (default)
              PENCAP “round” ; rounded line end
              PENCAP “square” ; square line end
              " -msgstr "" +msgstr "PENCAP “none” ; sin final de línea (predeterminado)
              PENCAP “round” ; final de línea redondeado
              PENCAP “square” ; final de línea rectangular
              " #: LibreLogo.xhp msgctxt "" @@ -846,7 +846,7 @@ "par_1170\n" "help.text" msgid "PENJOINT “rounded” ; rounded line joint (default)
              PENJOINT “miter” ; sharp line joint
              PENJOINT “bevel” ; bevel line joint
              PENJOINT “none” ; without line joint
              " -msgstr "" +msgstr "PENJOINT “rounded” ; unión de línea redondeada (predeterminado)
              PENJOINT “miter” ; unión de línea afilada
              PENJOINT “bevel” ; unión de línea biselada
              PENJOINT “none” ; sin unión de línea
              " #: LibreLogo.xhp msgctxt "" @@ -862,7 +862,7 @@ "par_1190\n" "help.text" msgid "PENSTYLE “solid” ; solid line (default)
              PENSTYLE “dotted” ; dotted line
              PENSTYLE “dashed” ; dashed line

              ; custom dot–dash pattern specified by a list with the following arguments:
              ; – number of the neighbouring dots
              ; – length of a dot
              ; – number of the neighbouring dashes
              ; – length of a dash
              ; – distance of the dots/dashes
              ; – type (optional):
              ; 0 = dots are rectangles (default)
              ; 2 = dots are squares (lengths and distances are relative to the pensize)

              PENSTYLE [3, 1mm, 2, 4mm, 2mm, 2] ; ...––...––...––
              " -msgstr "" +msgstr "PENSTYLE “solid” ; línea solida (predeterminado)
              PENSTYLE “dotted” ; línea punteada
              PENSTYLE “dashed” ; línea a rayas

              ; patrón punto-raya personalizado especificado por una lista con los siguientes argumentos:
              ; – número de puntos consecutivos
              ; – tamaño del punto
              ; – número de rayas consecutivas
              ; – tamaño de las rayas
              ; – distancia entre los puntos/rayas
              ; – tipo (opcional):
              ; 0 = los puntos son rectángulos (predeterminado)
              ; 2 = los puntos son cuadrados (los tamaños y las distancias son relativos al tamaño de pluma)

              PENSTYLE [3, 1mm, 2, 4mm, 2mm, 2] ; ...––...––...––
              " #: LibreLogo.xhp msgctxt "" @@ -886,7 +886,7 @@ "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 "" +msgstr "FILLCOLOR “blue” ; rellena con color azul, ver también PENCOLOR
              FILLCOLOR “invisible” CIRCLE 10 ; círculo sin relleno
              FILLCOLOR [“blue”, “red”] ; degradado entre rojo y azul
              FILLCOLOR [[255, 255, 255], [255, 128, 0]] ; entre blanco y naranja
              FILLCOLOR [“blue”, “red”, 1, 0, 0] ; define un degradado axial (con la configuración de borde y rotación necesaria), posibles valores: 0-5 = degradado lineal, axial, radial, elíptico, cuadrado y rectangular
              FILLCOLOR [“red”, “blue”, 0, 90, 20] ; lineal con un borde de 20%, rotado un ángulo de 90 grados comenzando en la cabeza de la tortuga
              FILLCOLOR [“red”, 'blue”, 0, 90, 20, 0, 0, 200, 50] ; desde una intensidad 200% a 50%
              FILLCOLOR [ANY, ANY, 2, 0, 0, 50, 50] ; degradado radial con colores aleatorios y posicionado horizontal y verticalmente 50-50% desde el centro
              " #: LibreLogo.xhp msgctxt "" @@ -902,7 +902,7 @@ "par_1226\n" "help.text" msgid "FILLTRANSPARENCY 80 ; set the transparency of the actual fill color to 80%
              FILLTRANSPARENCY [80] ; set linear transparency gradient from 80% to 0%
              FILLTRANSPARENCY [80, 20] ; set linear transparency gradient from 80% to 20%
              FILLTRANSPARENCY [80, 20, 1, 90] ; set axial transparency gradient rotated with 90 degrees from the actual heading of the turtle
              FILLTRANSPARENCY [80, 20, 2, 0, 20, 50, 50] ; set radial transparency gradient from outer 80% to inner 20% transparency with 20% border and with 50-50% horizontal and vertical positions of the center
              " -msgstr "" +msgstr "FILLTRANSPARENCY 80 ; establece la transparencia del color de relleno actual en el 80%
              FILLTRANSPARENCY [80] ; establece la transparencia del degradado lineal desde el 80% hasta el 0%
              FILLTRANSPARENCY [80, 20] ; establece la transparencia del degradado lineal desde el 80% hasta el 20%
              FILLTRANSPARENCY [80, 20, 1, 90] ; establece la transparencia del degradado axial rotado un ángulo de 90 grados desde la cabeza de la tortuga
              FILLTRANSPARENCY [80, 20, 2, 0, 20, 50, 50] ; establece la transparencia del degradado axial desde el 80% de transparencia exterior al 20% de transparencia interior con un borde del 20% y posicionado horizontal y verticalmente 50-50% desde el centro
              " #: LibreLogo.xhp msgctxt "" @@ -918,7 +918,7 @@ "par_1240\n" "help.text" msgid "FILLSTYLE 0 ; fill without hatches (default)
              FILLSTYLE 1 ; black single hatches (horizontal)
              FILLSTYLE 2 ; black single hatches (45 degrees)
              FILLSTYLE 3 ; black single hatches (-45 degrees)
              FILLSTYLE 4 ; black single hatches (vertical)
              FILLSTYLE 5 ; red crossed hatches (45 degrees)
              FILLSTYLE 6 ; red crossed hatches (0 degrees)
              FILLSTYLE 7 ; blue crossed hatches (45 degrees)
              FILLSTYLE 8 ; blue crossed hatches (0 degrees)
              FILLSTYLE 9 ; blue triple crossed
              FILLSTYLE 10 ; black wide single hatches (45 degrees)

              ; custom hatches specified by a list with the following arguments:
              ; – style (1 = single, 2 = double, 3 = triple hatching)
              ; – color
              ; – distance
              ; – degree

              FILLSTYLE [2, “green”, 3pt, 15°] ; green crossed hatches (15 degrees)
              " -msgstr "" +msgstr "FILLSTYLE 0 ; rellena sin trazado (predeterminado)
              FILLSTYLE 1 ; trazado simple negro (horizontal)
              FILLSTYLE 2 ; trazado simple negro (45 grados)
              FILLSTYLE 3 ; trazado simple negro (-45 grados)
              FILLSTYLE 4 ; trazado simple negro (vertical)
              FILLSTYLE 5 ; trazado cruzado rojo (45 grados)
              FILLSTYLE 6 ; trazado cruzado rojo (0 grados)
              FILLSTYLE 7 ; trazado cruzado azul (45 grados)
              FILLSTYLE 8 ; trazado cruzado azul (0 grados)
              FILLSTYLE 9 ; triple cruzado azul
              FILLSTYLE 10 ; trazado grueso negro (45 grados)

              ; trazado personalizado especificado por una lista con los siguientes argumentos:
              ; – estilo (1 = simple, 2 = doble, 3 = triple)
              ; – color
              ; – distancia
              ; – ángulo (grados)

              FILLSTYLE [2, “green”, 3pt, 15°] ; trazado cruzado verde (15 grados)
              " #: LibreLogo.xhp msgctxt "" @@ -958,7 +958,7 @@ "par_1290\n" "help.text" msgid "ELLIPSE [50, 100] ; draw an ellipse with 50 and 100 diameters
              ELLIPSE [50, 100, 2h, 12h] ; draw an elliptical sector (from 2h clock position to 12h)
              ELLIPSE [50, 100, 2h, 12h, 2] ; draw an elliptical segment
              ELLIPSE [50, 100, 2h, 12h, 3] ; draw an elliptical arc
              " -msgstr "" +msgstr "ELLIPSE [50, 100] ; dibuja una elipse con diámetros 50 y 100
              ELLIPSE [50, 100, 2h, 12h] ; dibuja un sector elíptico (en sentido horario desde las 2 hasta las 12 horas)
              ELLIPSE [50, 100, 2h, 12h, 2] ; dibuja un segmento elíptico
              ELLIPSE [50, 100, 2h, 12h, 3] ; dibuja un arco elíptico
              " #: LibreLogo.xhp msgctxt "" @@ -990,7 +990,7 @@ "par_1330\n" "help.text" msgid "RECTANGLE [50, 100] ; draw a rectange shape (50×100pt)
              RECTANGLE [50, 100, 50] ; draw a rectangle
              " -msgstr "" +msgstr "RECTANGLE [50, 100] ; dibuja una forma rectangular (50×100pt)
              RECTANGLE [50, 100, 50] ; dibuja un rectángulo
              " #: LibreLogo.xhp msgctxt "" @@ -1022,7 +1022,7 @@ "par_1370\n" "help.text" msgid "LABEL “text” ; print text in the turtle position
              LABEL 'text' ; see above
              LABEL \"text ; see above (only for single words)
              " -msgstr "" +msgstr "LABEL “texto” ; imprime el texto en la posición de la tortuga
              LABEL 'texto' ; ver más arriba
              LABEL \"texto ; ver más arriba (solo para una palabra)
              " #: LibreLogo.xhp msgctxt "" @@ -1078,7 +1078,7 @@ "par_1440\n" "help.text" msgid "FONTFAMILY “Linux Libertine G” ; set font (family)
              FONTFAMILY “Linux Libertine G:smcp=1” ; set also font feature (small caps)
              FONTFAMILY “Linux Libertine G:smcp=1&onum=1” ; small caps + old figures
              " -msgstr "" +msgstr "FONTFAMILY “Linux Libertine G” ; establece la fuente (familia)
              FONTFAMILY “Linux Libertine G:smcp=1” ; establece también el tipo de capitalización (minúsculas)
              FONTFAMILY “Linux Libertine G:smcp=1&onum=1” ; minúsculas + figuras antiguas
              " #: LibreLogo.xhp msgctxt "" @@ -1094,7 +1094,7 @@ "par_1460\n" "help.text" msgid "FONTSIZE 12 ; set 12pt
              " -msgstr "" +msgstr "FONTSIZE 12 ; establece 12pt
              " #: LibreLogo.xhp msgctxt "" @@ -1110,7 +1110,7 @@ "par_1480\n" "help.text" msgid "FONTWEIGHT “bold” ; set bold font
              FONTWEIGHT “normal” ; set normal weight
              " -msgstr "" +msgstr "FONTWEIGHT “bold” ; establece el tipo de letra en negrita
              FONTWEIGHT “normal” ; establece el ancho de letra en normal
              " #: LibreLogo.xhp msgctxt "" @@ -1126,7 +1126,7 @@ "par_1500\n" "help.text" msgid "FONTSTYLE “italic” ; set italic variant
              FONTSTYLE “normal” ; set normal variant
              " -msgstr "" +msgstr "FONTSTYLE “italic” ; establece la variante cursiva
              FONTSTYLE “normal” ; establece la variante normal
              " #: LibreLogo.xhp msgctxt "" @@ -1158,7 +1158,7 @@ "par_1540\n" "help.text" msgid "starting new line shapes;" -msgstr "Iniciar nuevas formas de línea" +msgstr "inicio de formas de línea nuevas;" #: LibreLogo.xhp msgctxt "" @@ -1190,7 +1190,7 @@ "par_1570\n" "help.text" msgid "; PICTURE [ LibreLogo_commands ]
              PICTURE [ FORWARD 100 CIRCLE 100 ] ; tree-like grouped shape
              " -msgstr "" +msgstr "; PICTURE [ Comandos LibreLogo ]
              PICTURE [ FORWARD 100 CIRCLE 100 ] ; agrupa en forma de árbol
              " #: LibreLogo.xhp msgctxt "" @@ -1206,7 +1206,7 @@ "par_1590\n" "help.text" msgid "TO tree location
              PENUP POSITION location HEADING 0 PENDOWN
              PICTURE [ FORWARD 100 CIRCLE 100 ] ; tree-like grouped shape
              END

              PICTURE [ tree [30, 50] tree [100, 50] ] ; grouped shapes in a grouped shape
              " -msgstr "" +msgstr "TO tree location
              PENUP POSITION location HEADING 0 PENDOWN
              PICTURE [ FORWARD 100 CIRCLE 100 ] ; agrupación en forma de árbol
              END

              PICTURE [ tree [30, 50] tree [100, 50] ] ; formas agrupadas en una forma de grupo
              " #: LibreLogo.xhp msgctxt "" @@ -1222,7 +1222,7 @@ "par_1610\n" "help.text" msgid "PICTURE ; start a new line shape
              FORWARD 10 PICTURE FORWARD 10 ; two line shapes
              " -msgstr "" +msgstr "PICTURE ; empieza una nueva forma de línea
              FORWARD 10 PICTURE FORWARD 10 ; dos formas de línea
              " #: LibreLogo.xhp msgctxt "" @@ -1238,7 +1238,7 @@ "par_1617\n" "help.text" msgid "PICTURE “example.svg” [ CIRCLE 5 ] ; save the picture as an SVG image file in the user folder
              PICTURE “Desktop/example.svg” [ FORWARD 100 CIRCLE 5 ] ; as above, with a relative path
              PICTURE “/home/user/example.svg” [ CIRCLE 5 ] ; absolute path for Unix/Linux
              PICTURE “C:\\example.svg” [ CIRCLE 5 ] ; absolute path for Windows
              " -msgstr "" +msgstr "PICTURE “example.svg” [ CIRCLE 5 ] ; guarda el dibujo como una imagen SVG en la carpeta del usuario
              PICTURE “Desktop/example.svg” [ FORWARD 100 CIRCLE 5 ] ; como arriba, pero con una ruta relativa
              PICTURE “/home/user/example.svg” [ CIRCLE 5 ] ; ruta absoluta en Unix/Linux
              PICTURE “C:\\example.svg” [ CIRCLE 5 ] ; ruta absoluta en Windows
              " #: LibreLogo.xhp msgctxt "" @@ -1246,7 +1246,7 @@ "hd_1618\n" "help.text" msgid "Saving SVG/SMIL animations (drawings with SLEEP commands)" -msgstr "" +msgstr "Guardar animaciones SVG/SMIL (dibujos con el comando SLEEP)" #: LibreLogo.xhp msgctxt "" @@ -1254,7 +1254,7 @@ "par_1619\n" "help.text" msgid "PICTURE “animation.svg” [ CIRCLE 5 SLEEP 1000 CIRCLE 99 ] ; save as an SVG/SMIL animation (see also SLEEP)
              PICTURE “animation2.svg” [ CIRCLE 5 SLEEP 1000 CIRCLE 99 SLEEP 2000 ] ; as above, but using SLEEP after the last object will result looping: after 2 seconds the SVG animation restarts in SMIL-conformant browsers" -msgstr "" +msgstr "PICTURE “animation.svg” [ CIRCLE 5 SLEEP 1000 CIRCLE 99 ] ; guarda como una animación SVG/SMIL (vea también SLEEP)
              PICTURE “animation2.svg” [ CIRCLE 5 SLEEP 1000 CIRCLE 99 SLEEP 2000 ] ; como arriba, pero usando SLEEP después del último objeto resultará en un bucle: después de 2 segundos la animación SVG vuelve a empezar en los navegadores compatibles con SMIL" #: LibreLogo.xhp msgctxt "" @@ -1270,7 +1270,7 @@ "par_1630\n" "help.text" msgid "Use picture to keep the consistency of positions and line shapes at the left border of Writer:" -msgstr "" +msgstr "Utilice la imagen para mantener la coherencia de las posiciones y formas de línea en el borde izquierdo de Writer:" #: LibreLogo.xhp msgctxt "" @@ -1326,7 +1326,7 @@ "par_1700\n" "help.text" msgid "Loop variable (also in the FOR and WHILE loops)." -msgstr "" +msgstr "variable del bucle (también en los bucles FOR y WHILE)." #: LibreLogo.xhp msgctxt "" @@ -1438,7 +1438,7 @@ "par_1840\n" "help.text" msgid "REPEAT 100 [
              POSITION ANY
              IF REPCOUNT % 2 = 0 [ CONTINUE ]
              CIRCLE 10 ; draw circles on every 2nd positions
              ]
              " -msgstr "" +msgstr "REPEAT 100 [
              POSITION ANY
              IF REPCOUNT % 2 = 0 [ CONTINUE ]
              CIRCLE 10 ; dibuja círculos en todas las segundas posiciones
              ]
              " #: LibreLogo.xhp msgctxt "" @@ -1462,7 +1462,7 @@ "par_1870\n" "help.text" msgid "; IF condition [ true block ]
              ; IF condition [ true block ] [ false block ]

              IF a < 10 [ PRINT “Small” ]
              IF a < 10 [ PRINT “Small” ] [ PRINT “Big” ]
              " -msgstr "" +msgstr "; IF condition [ true block ]
              ; SI condición [ bloque verdadero ] [ bloque falso ]

              IF a < 10 [ PRINT “Small” ]
              IF a < 10 [ PRINT “Small” ] [ PRINT “Big” ]
              " #: LibreLogo.xhp msgctxt "" @@ -1518,7 +1518,7 @@ "par_1940\n" "help.text" msgid "TO triangle
              REPEAT [ FORWARD 100 RIGHT 120 ] FILL
              END

              REPEAT 10 [ triangle PENUP POSITION ANY PENDOWN ]
              " -msgstr "" +msgstr "TO triangle
              REPEAT [ FORWARD 100 RIGHT 120 ] FILL
              END

              REPEAT 10 [ triangle PENUP POSITION ANY PENDOWN ]
              " #: LibreLogo.xhp msgctxt "" @@ -1542,7 +1542,7 @@ "par_1970\n" "help.text" msgid "TO randomletter
              OUTPUT RANDOM “qwertzuiopasdfghjklyxcvbnm”
              END

              PRINT randomletter + randomletter + randomletter ; print 3-letter random character sequence
              " -msgstr "" +msgstr "TO randomletter
              OUTPUT RANDOM “qwertzuiopasdfghjklyxcvbnm”
              END

              PRINT randomletter + randomletter + randomletter ; imprime una secuencia de 3 caracteres aleatorios
              " #: LibreLogo.xhp msgctxt "" @@ -1566,7 +1566,7 @@ "par_2000\n" "help.text" msgid "TO example number
              IF number < 0 [ STOP ]
              PRINT SQRT number ; print square root
              ]

              example 100
              example -1 ; without output and error
              example 25
              " -msgstr "" +msgstr "TO example number
              IF number < 0 [ STOP ]
              PRINT SQRT number ; imprime la raíz cuadrada
              ]

              example 100
              example -1 ; sin salida ni error
              example 25
              " #: LibreLogo.xhp msgctxt "" @@ -1598,7 +1598,7 @@ "par_2040\n" "help.text" msgid "PENCOLOR ANY ; random pen color
              " -msgstr "" +msgstr "PENCOLOR ANY ; color de pluma aleatorio
              " #: LibreLogo.xhp msgctxt "" @@ -1646,7 +1646,7 @@ "par_2100\n" "help.text" msgid "WHILE NOT FALSE [ POSITION ANY ] ; endless loop
              PRINT FALSE ; print false
              " -msgstr "" +msgstr "WHILE NOT FALSE [ POSITION ANY ] ; bucle infinito
              PRINT FALSE ; imprime falso
              " #: LibreLogo.xhp msgctxt "" @@ -1662,7 +1662,7 @@ "par_2120\n" "help.text" msgid "PRINT PAGESIZE ; print list of the page sizes in points, eg. [595.30, 841.89]
              " -msgstr "" +msgstr "PRINT PAGESIZE ; imprime la lista de tamaños de página en puntos, p.e. [595.30, 841.89]
              " #: LibreLogo.xhp msgctxt "" @@ -1718,7 +1718,7 @@ "par_2190\n" "help.text" msgid "PRINT INPUT “Input value?” ; ask and print a string by a query dialog box
              PRINT FLOAT (INPUT “First number?”) + FLOAT (INPUT “Second number?”) ; simple calculator
              " -msgstr "" +msgstr "PRINT INPUT “¿Valor de entrada?” ; pregunta e imprime una cadena de texto requerida por un cuadro de diálogo
              PRINT FLOAT (INPUT “¿Primer número?”) + FLOAT (INPUT “¿Segundo número?”) ; calculadora simple
              " #: LibreLogo.xhp msgctxt "" @@ -1758,7 +1758,7 @@ "par_2240\n" "help.text" msgid "GLOBAL about
              about = “LibreLogo”

              TO example
              PRINT about
              GLOBAL about ; when we want to add a new value
              about = “new value for the global variable”
              END

              example
              PRINT about
              " -msgstr "" +msgstr "GLOBAL about
              about = “LibreLogo”

              TO example
              PRINT about
              GLOBAL about ; cuando queremos añadir un nuevo valor
              about = “nuevo valor para la variable global”
              END

              example
              PRINT about
              " #: LibreLogo.xhp msgctxt "" @@ -1782,7 +1782,7 @@ "par_2270\n" "help.text" msgid "PRINT RANDOM 100 ; random float number (0 <= x < 100)
              PRINT RANDOM “text” ; random letter of the “text”
              PRINT RANDOM [1, 2] ; random list element (1 or 2)
              " -msgstr "" +msgstr "PRINT RANDOM 100 ; número decimal aleatorio (0 <= x < 100)
              PRINT RANDOM “texto” ; letra aleatoria de la palabra “texto”
              PRINT RANDOM [1, 2] ; elemento aleatorio de la lista (1 o 2)
              " #: LibreLogo.xhp msgctxt "" @@ -1798,7 +1798,7 @@ "par_2290\n" "help.text" msgid "PRINT INT 3.8 ; print 3 (integer part of 3.8)
              PRINT INT RANDOM 100 ; random integer number (0 <= x < 100)
              PRINT INT “7” ; convert the string parameter to integer
              " -msgstr "" +msgstr "PRINT INT 3.8 ; imprime 3 (la parte entera de 3,8)
              PRINT INT RANDOM 100 ; número aleatorio entero (0 <= x < 100)
              PRINT INT “7” ; convierte la cadena de texto en un número entero
              " #: LibreLogo.xhp msgctxt "" @@ -1814,7 +1814,7 @@ "par_2310\n" "help.text" msgid "; convert the string parameter to float number
              PRINT 2 * FLOAT “5.5” ; print 11.0
              " -msgstr "" +msgstr "; convierte la cadena de texto en un número decimal
              PRINT 2 * FLOAT “5.5” ; imprime 11,0
              " #: LibreLogo.xhp msgctxt "" @@ -1830,7 +1830,7 @@ "par_2330\n" "help.text" msgid "; convert the number parameter to string
              PRINT “Result: ” + STR 5 ; print “Result: 5”
              PRINT 10 * STR 5 ; print 5555555555
              " -msgstr "" +msgstr "; convierte el número en una cadena de texto
              PRINT “Resultado: ” + STR 5 ; imprime “Resultado: 5”
              PRINT 10 * STR 5 ; imprime 5555555555
              " #: LibreLogo.xhp msgctxt "" @@ -1958,7 +1958,7 @@ "par_2470\n" "help.text" msgid "; Convert list to Python set
              PRINT SET [4, 5, 6, 6] ; print {4, 5, 6}
              PRINT SET [4, 5, 6, 6] | SET [4, 1, 9] ; print {1, 4, 5, 6, 9}, union
              PRINT SET [4, 5, 6, 6] & SET [4, 1, 9] ; print {4}, intersection
              PRINT SET ([4, 5, 6, 6]) - SET [4, 1, 9] ; print {5, 6}, difference
              PRINT SET [4, 5, 6, 6] ^ SET [4, 1, 9] ; print {1, 5, 6, 9}, symmetric difference
              " -msgstr "" +msgstr "; Convierte la lista en un conjunto de Python
              PRINT SET [4, 5, 6, 6] ; imprime {4, 5, 6}
              PRINT SET [4, 5, 6, 6] | SET [4, 1, 9] ; imprime {1, 4, 5, 6, 9}, unión
              PRINT SET [4, 5, 6, 6] & SET [4, 1, 9] ; imprime {4}, intersección
              PRINT SET ([4, 5, 6, 6]) - SET [4, 1, 9] ; imprime {5, 6}, diferencia
              PRINT SET [4, 5, 6, 6] ^ SET [4, 1, 9] ; imprime {1, 5, 6, 9}, diferencia simétrica
              " #: LibreLogo.xhp msgctxt "" @@ -1974,7 +1974,7 @@ "par_2490\n" "help.text" msgid "; Python-like list generation
              PRINT RANGE 10 ; print [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
              PRINT RANGE 3 10 ; print [3, 4, 5, 6, 7, 8, 9]
              PRINT RANGE 3 10 3 ; print [3, 6, 9]

              FOR i IN RANGE 10 50 10 [ ; loop for [10, 20, 30, 40]
              FORWARD i
              LEFT 90
              ]
              " -msgstr "" +msgstr "; generación de listas Python
              PRINT RANGE 10 ; imprime [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
              PRINT RANGE 3 10 ; imprime [3, 4, 5, 6, 7, 8, 9]
              PRINT RANGE 3 10 3 ; imprime [3, 6, 9]

              FOR i IN RANGE 10 50 10 [ ; bucle para [10, 20, 30, 40]
              FORWARD i
              LEFT 90
              ]
              " #: LibreLogo.xhp msgctxt "" @@ -1990,7 +1990,7 @@ "par_2510\n" "help.text" msgid "; remove the repeating elements of a list using set and list conversion
              PRINT LIST (SET [1, 3, 5, 5, 2, 1]) ; print [1, 3, 5, 2]
              " -msgstr "" +msgstr "; elimina los elementos repetidos en una lista utilizando SET y LIST
              PRINT LIST (SET [1, 3, 5, 5, 2, 1]) ; imprime [1, 3, 5, 2]
              " #: LibreLogo.xhp msgctxt "" @@ -2062,7 +2062,7 @@ "par_2600\n" "help.text" msgid "PRINT SUB (“t”, “T”, “text”) ; print “Text”, replacing “t” with “T”
              PRINT SUB (“(.)”, “\\\\1\\\\1”, “text”) ; print “tteexxtt”, doubling every characters
              " -msgstr "" +msgstr "PRINT SUB (“t”, “T”, “texto”) ; imprime “Texto”, reemplazando la “t” con “T”
              PRINT SUB (“(.)”, “\\\\1\\\\1”, “texto”) ; imprime “tteexxttoo”, duplicando cada carácter
              " #: LibreLogo.xhp msgctxt "" @@ -2086,7 +2086,7 @@ "par_2630\n" "help.text" msgid "IF SEARCH (“\\w”, word) [ PRINT “Letter in the word.” ]
              " -msgstr "" +msgstr "IF SEARCH (“\\p”, palabra) [ PRINT “Letra en la palabra.” ]
              " #: LibreLogo.xhp msgctxt "" @@ -2158,7 +2158,7 @@ "par_2720\n" "help.text" msgid "PENCOLOR “SILVER” ; set by name
              PENCOLOR [1] ; set by identifiers
              PENCOLOR “~SILVER” ; random silver color

              " -msgstr "" +msgstr "PENCOLOR “SILVER” ; definido por nombre
              PENCOLOR [1] ; definido por identificador
              PENCOLOR “~SILVER” ; color plateado aleatorio

              " #: LibreLogo.xhp msgctxt "" @@ -2254,7 +2254,7 @@ "par_2900\n" "help.text" msgid "MAROON" -msgstr "" +msgstr "MAROON" #: LibreLogo.xhp msgctxt "" @@ -2286,7 +2286,7 @@ "par_2960\n" "help.text" msgid "PURPLE" -msgstr "" +msgstr "PURPLE" #: LibreLogo.xhp msgctxt "" @@ -2382,7 +2382,7 @@ "par_3140\n" "help.text" msgid "NAVY" -msgstr "" +msgstr "NAVY" #: LibreLogo.xhp msgctxt "" @@ -2414,7 +2414,7 @@ "par_3200\n" "help.text" msgid "TEAL" -msgstr "" +msgstr "TEAL" #: LibreLogo.xhp msgctxt "" @@ -2430,7 +2430,7 @@ "par_3230\n" "help.text" msgid "AQUA" -msgstr "" +msgstr "AQUA" #: LibreLogo.xhp msgctxt "" @@ -2526,7 +2526,7 @@ "par_3410\n" "help.text" msgid "SKYBLUE" -msgstr "" +msgstr "SKYBLUE" #: LibreLogo.xhp msgctxt "" @@ -2558,7 +2558,7 @@ "par_3470\n" "help.text" msgid "BROWN" -msgstr "" +msgstr "BROWN" #: LibreLogo.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/swriter.po libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/swriter.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/helpcontent2/source/text/swriter.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/helpcontent2/source/text/swriter.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407511666.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-4.3.2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-08-15 08:06+0000\n" +"PO-Revision-Date: 2014-08-30 22:26+0000\n" "Last-Translator: Adolfo \n" "Language-Team: LANGUAGE \n" "Language: es\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408089975.000000\n" +"X-POOTLE-MTIME: 1409437606.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -22543,7 +22543,7 @@ "Label\n" "value.text" msgid "T~able to Text..." -msgstr "T~abla a texto..." +msgstr "~Tabla en texto…" #: WriterCommands.xcu msgctxt "" @@ -22552,7 +22552,7 @@ "Label\n" "value.text" msgid "~Text to Table..." -msgstr "Te~xto en tabla..." +msgstr "Te~xto en tabla…" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/reportdesign/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/es/reportdesign/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/reportdesign/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/reportdesign/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407837517.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/sc/source/ui/navipi.po libreoffice-l10n-4.3.2/translations/source/es/sc/source/ui/navipi.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/sc/source/ui/navipi.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/sc/source/ui/navipi.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407511208.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/sc/uiconfig/scalc/ui.po libreoffice-l10n-4.3.2/translations/source/es/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/sc/uiconfig/scalc/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/sc/uiconfig/scalc/ui.po 2014-09-16 19:55:40.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: 2014-06-25 17:39+0200\n" -"PO-Revision-Date: 2014-07-12 00:12+0000\n" +"PO-Revision-Date: 2014-08-30 20:17+0000\n" "Last-Translator: Adolfo \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1405123966.000000\n" +"X-POOTLE-MTIME: 1409429852.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -3251,7 +3251,7 @@ "label\n" "string.text" msgid "Custom header" -msgstr "Encabezado personalizado" +msgstr "Encabezamiento personalizado" #: headerfootercontent.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/scp2/source/ooo.po libreoffice-l10n-4.3.2/translations/source/es/scp2/source/ooo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/scp2/source/ooo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/scp2/source/ooo.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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 14:53+0000\n" +"PO-Revision-Date: 2014-08-28 01:51+0000\n" "Last-Translator: Adolfo \n" "Language-Team: LANGUAGE \n" "Language: es\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407509601.000000\n" +"X-POOTLE-MTIME: 1409190676.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -4342,7 +4342,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_SR\n" "LngText.text" msgid "Serbian (Cyrillic and Latin) spelling dictionary, and hyphenation rules" -msgstr "Serbio (cirílico y latino): correcto ortográfico y reglas de división de palabras" +msgstr "Serbio (cirílico y latino): corrector ortográfico y reglas de división de palabras" #: module_ooo.ulf msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/sd/source/ui/view.po libreoffice-l10n-4.3.2/translations/source/es/sd/source/ui/view.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/sd/source/ui/view.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/sd/source/ui/view.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407511218.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/sd/uiconfig/sdraw/ui.po libreoffice-l10n-4.3.2/translations/source/es/sd/uiconfig/sdraw/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/sd/uiconfig/sdraw/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/sd/uiconfig/sdraw/ui.po 2014-09-16 19:55:40.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: 2014-05-02 00:04+0200\n" -"PO-Revision-Date: 2014-06-28 03:40+0000\n" +"PO-Revision-Date: 2014-08-31 00:28+0000\n" "Last-Translator: Adolfo \n" "Language-Team: none\n" "Language: es\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403926828.000000\n" +"X-POOTLE-MTIME: 1409444906.000000\n" #: breakdialog.ui msgctxt "" @@ -374,7 +374,7 @@ "label\n" "string.text" msgid "Fonts" -msgstr "Fuentes" +msgstr "Tipos de letra" #: drawchardialog.ui msgctxt "" @@ -527,7 +527,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Fuente" +msgstr "Tipo de letra" #: drawprtldialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/sd/uiconfig/simpress/ui.po libreoffice-l10n-4.3.2/translations/source/es/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/sd/uiconfig/simpress/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/sd/uiconfig/simpress/ui.po 2014-09-16 19:55:40.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: 2014-05-02 00:04+0200\n" -"PO-Revision-Date: 2014-08-12 09:57+0000\n" +"PO-Revision-Date: 2014-08-31 00:27+0000\n" "Last-Translator: Adolfo \n" "Language-Team: none\n" "Language: es\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407837444.000000\n" +"X-POOTLE-MTIME: 1409444844.000000\n" #: customanimationcreatedialog.ui msgctxt "" @@ -2327,7 +2327,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Fuente" +msgstr "Tipo de letra" #: templatedialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/setup_native/source/mac.po libreoffice-l10n-4.3.2/translations/source/es/setup_native/source/mac.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/setup_native/source/mac.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/setup_native/source/mac.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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:05+0200\n" -"PO-Revision-Date: 2013-11-10 01:17+0000\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-09-03 07:25+0000\n" "Last-Translator: Adolfo \n" "Language-Team: LANGUAGE \n" "Language: es\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: Pootle 2.5.0\n" +"X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1384046252.0\n" +"X-POOTLE-MTIME: 1409729158.000000\n" #: macinstall.ulf msgctxt "" @@ -110,7 +110,7 @@ "AppInvalidText1\n" "LngText.text" msgid "This is not a valid [PRODUCTNAME] [PRODUCTVERSION] installation." -msgstr "Ésta no es una instalación válida de [PRODUCTNAME] [PRODUCTVERSION]." +msgstr "Esta no es una instalación válida de [PRODUCTNAME] [PRODUCTVERSION]." #: macinstall.ulf msgctxt "" @@ -126,7 +126,7 @@ "StartInstallText1\n" "LngText.text" msgid "Click Install to start the installation" -msgstr "Pulse Instalar para comenzar la instalación" +msgstr "Pulse en Instalar para comenzar la instalación" #: macinstall.ulf msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/sfx2/source/appl.po libreoffice-l10n-4.3.2/translations/source/es/sfx2/source/appl.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/sfx2/source/appl.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/sfx2/source/appl.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408045591.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/sfx2/source/dialog.po libreoffice-l10n-4.3.2/translations/source/es/sfx2/source/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/sfx2/source/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/sfx2/source/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408055304.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/starmath/source.po libreoffice-l10n-4.3.2/translations/source/es/starmath/source.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/starmath/source.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/starmath/source.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407348774.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/svtools/source/misc.po libreoffice-l10n-4.3.2/translations/source/es/svtools/source/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/svtools/source/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/svtools/source/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407348176.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/svx/inc.po libreoffice-l10n-4.3.2/translations/source/es/svx/inc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/svx/inc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/svx/inc.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-03 07:56+0000\n" +"PO-Revision-Date: 2014-08-31 00:27+0000\n" "Last-Translator: Adolfo \n" "Language-Team: LANGUAGE \n" "Language: es\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401782197.000000\n" +"X-POOTLE-MTIME: 1409444859.000000\n" #: globlmn_tmpl.hrc msgctxt "" @@ -94,7 +94,7 @@ "ITEM_FORMAT_ATTR_CHAR_FONT\n" "#define.text" msgid "Font" -msgstr "Fuente" +msgstr "Tipo de letra" #: globlmn_tmpl.hrc msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/svx/source/dialog.po libreoffice-l10n-4.3.2/translations/source/es/svx/source/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/svx/source/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/svx/source/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-10 19:33+0200\n" -"PO-Revision-Date: 2014-08-08 03:35+0000\n" +"PO-Revision-Date: 2014-08-30 22:12+0000\n" "Last-Translator: Adolfo \n" "Language-Team: LANGUAGE \n" "Language: es\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407468936.000000\n" +"X-POOTLE-MTIME: 1409436769.000000\n" #: bmpmask.src msgctxt "" @@ -6207,7 +6207,7 @@ "RID_SUBSETSTR_CYRILLIC_EXTENDED_A\n" "string.text" msgid "Cyrillic Extended-A" -msgstr "Cirílico ampliado A" +msgstr "Cirílico, ampliación A" #: ucsubset.src msgctxt "" @@ -6225,7 +6225,7 @@ "RID_SUBSETSTR_CYRILLIC_EXTENDED_B\n" "string.text" msgid "Cyrillic Extended-B" -msgstr "Cirílico ampliado B" +msgstr "Cirílico, ampliación B" #: ucsubset.src msgctxt "" @@ -6405,7 +6405,7 @@ "RID_SUBSETSTR_HANGUL_JAMO_EXTENDED_A\n" "string.text" msgid "Hangul Jamo Extended-A" -msgstr "Hangul Jamo ampliado A" +msgstr "Hangul jamo, ampliación A" #: ucsubset.src msgctxt "" @@ -6423,7 +6423,7 @@ "RID_SUBSETSTR_MYANMAR_EXTENDED_A\n" "string.text" msgid "Myanmar Extended-A" -msgstr "Birmano ampliado A" +msgstr "Birmano, ampliación A" #: ucsubset.src msgctxt "" @@ -6450,7 +6450,7 @@ "RID_SUBSETSTR_HANGUL_JAMO_EXTENDED_B\n" "string.text" msgid "Hangul Jamo Extended-B" -msgstr "Hangul Jamo ampliado B" +msgstr "Hangul jamo, ampliación B" #: ucsubset.src msgctxt "" @@ -6576,7 +6576,7 @@ "RID_SUBSETSTR_ETHIOPIC_EXTENDED_A\n" "string.text" msgid "Ethiopic Extended-A" -msgstr "Etiópico ampliado A" +msgstr "Etiópico, ampliación A" #: ucsubset.src msgctxt "" @@ -6657,7 +6657,7 @@ "RID_SUBSETSTR_ARABIC_EXTENDED_A\n" "string.text" msgid "Arabic Extended-A" -msgstr "Árabe ampliado A" +msgstr "Árabe, ampliación A" #: ucsubset.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/svx/source/svdraw.po libreoffice-l10n-4.3.2/translations/source/es/svx/source/svdraw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/svx/source/svdraw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/svx/source/svdraw.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407508794.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/sw/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/es/sw/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/sw/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/sw/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408078870.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/sw/source/ui/utlui.po libreoffice-l10n-4.3.2/translations/source/es/sw/source/ui/utlui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/sw/source/ui/utlui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/sw/source/ui/utlui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407508835.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/es/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407837417.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/vcl/source/src.po libreoffice-l10n-4.3.2/translations/source/es/vcl/source/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/vcl/source/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/vcl/source/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408078236.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/vcl/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/es/vcl/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/vcl/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/vcl/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408078530.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/es/wizards/source/formwizard.po libreoffice-l10n-4.3.2/translations/source/es/wizards/source/formwizard.po --- libreoffice-l10n-4.3.1~rc2/translations/source/es/wizards/source/formwizard.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/es/wizards/source/formwizard.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407837423.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/et/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/et/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/et/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/et/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-05 21:18+0300\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokument" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokument" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokument" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorksi/AppleWorksi dokument" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorksi/AppleWorksi dokument" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorksi/AppleWorksi dokument" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorksi dokument" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorksi dokument" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorksi dokument" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac (v1 - v4) dokument" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac (v1 - v4) dokument" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac (v1 - v4) dokument" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/et/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/et/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/et/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/et/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.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: 2014-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-06-09 00:21+0300\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" @@ -13153,14 +13153,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programmeerimine %PRODUCTNAME'is" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Makrode salvestamine on võimalik ainult %PRODUCTNAME Writeri tekstidokumentides ja %PRODUCTNAME Calc'i arvutustabelites." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/et/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/et/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/et/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/et/sd/source/ui/app.po 2014-09-16 19:55:40.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: 2014-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-06-06 00:25+0300\n" +"PO-Revision-Date: 2014-08-30 14:30+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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1390196574.0\n" +"X-POOTLE-MTIME: 1409409028.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -1732,7 +1732,7 @@ "SfxStyleFamiliesRes1\n" "#define.text" msgid "Drawing Object Styles" -msgstr "" +msgstr "Joonistusobjektide stiilid" #: res_bmp.src msgctxt "" @@ -4010,7 +4010,7 @@ "STR_GRAPHICS_STYLE_FAMILY\n" "string.text" msgid "Drawing Object Styles" -msgstr "" +msgstr "Joonistusobjektide stiilid" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/et/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/et/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/et/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/et/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-06-06 23:00+0300\n" +"PO-Revision-Date: 2014-08-30 14:30+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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1390196633.0\n" +"X-POOTLE-MTIME: 1409409047.000000\n" #: alignmentdialog.ui msgctxt "" @@ -599,7 +599,7 @@ "label\n" "string.text" msgid "Ig_nore ~~ and ' at the end of the line" -msgstr "" +msgstr "Märke ~~ ja ' eiratakse rea _lõpus" #: smathsettings.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/et/svx/source/items.po libreoffice-l10n-4.3.2/translations/source/et/svx/source/items.po --- libreoffice-l10n-4.3.1~rc2/translations/source/et/svx/source/items.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/et/svx/source/items.po 2014-09-16 19:55:40.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: 2014-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-05-18 03:43+0300\n" +"PO-Revision-Date: 2014-08-30 14:47+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1409410028.000000\n" #: svxerr.src msgctxt "" @@ -270,7 +271,7 @@ "Scale\n" "itemlist.text" msgid "Scale" -msgstr "" +msgstr "Mõõtkava" #: svxitems.src msgctxt "" @@ -279,7 +280,7 @@ "Brush\n" "itemlist.text" msgid "Brush" -msgstr "" +msgstr "Pintsel" #: svxitems.src msgctxt "" @@ -288,7 +289,7 @@ "Tab stops\n" "itemlist.text" msgid "Tab stops" -msgstr "" +msgstr "Tabelduskohad" #: svxitems.src msgctxt "" @@ -297,7 +298,7 @@ "Character\n" "itemlist.text" msgid "Character" -msgstr "" +msgstr "Märk" #: svxitems.src msgctxt "" @@ -306,7 +307,7 @@ "Font\n" "itemlist.text" msgid "Font" -msgstr "" +msgstr "Font" #: svxitems.src msgctxt "" @@ -315,7 +316,7 @@ "Font posture\n" "itemlist.text" msgid "Font posture" -msgstr "" +msgstr "Fontide asend" #: svxitems.src msgctxt "" @@ -324,7 +325,7 @@ "Font weight\n" "itemlist.text" msgid "Font weight" -msgstr "" +msgstr "Fondi paksus" #: svxitems.src msgctxt "" @@ -333,7 +334,7 @@ "Shadowed\n" "itemlist.text" msgid "Shadowed" -msgstr "" +msgstr "Varjutatud" #: svxitems.src msgctxt "" @@ -342,7 +343,7 @@ "Individual words\n" "itemlist.text" msgid "Individual words" -msgstr "" +msgstr "Üksikud sõnad" #: svxitems.src msgctxt "" @@ -351,7 +352,7 @@ "Outline\n" "itemlist.text" msgid "Outline" -msgstr "" +msgstr "Kontuur" #: svxitems.src msgctxt "" @@ -360,7 +361,7 @@ "Strikethrough\n" "itemlist.text" msgid "Strikethrough" -msgstr "" +msgstr "Läbikriipsutus" #: svxitems.src msgctxt "" @@ -369,7 +370,7 @@ "Underline\n" "itemlist.text" msgid "Underline" -msgstr "" +msgstr "Allakriipsutus" #: svxitems.src msgctxt "" @@ -378,7 +379,7 @@ "Font size\n" "itemlist.text" msgid "Font size" -msgstr "" +msgstr "Fondi suurus" #: svxitems.src msgctxt "" @@ -387,7 +388,7 @@ "Rel. Font size\n" "itemlist.text" msgid "Rel. Font size" -msgstr "" +msgstr "Suhteline fondi suurus" #: svxitems.src msgctxt "" @@ -396,7 +397,7 @@ "Font color\n" "itemlist.text" msgid "Font color" -msgstr "" +msgstr "Fondi värv" #: svxitems.src msgctxt "" @@ -405,7 +406,7 @@ "Kerning\n" "itemlist.text" msgid "Kerning" -msgstr "" +msgstr "Märkide koondamine" #: svxitems.src msgctxt "" @@ -414,7 +415,7 @@ "Effects\n" "itemlist.text" msgid "Effects" -msgstr "" +msgstr "Efektid" #: svxitems.src msgctxt "" @@ -423,7 +424,7 @@ "Language\n" "itemlist.text" msgid "Language" -msgstr "" +msgstr "Keel" #: svxitems.src msgctxt "" @@ -432,7 +433,7 @@ "Position\n" "itemlist.text" msgid "Position" -msgstr "" +msgstr "Paigutus" #: svxitems.src msgctxt "" @@ -441,7 +442,7 @@ "Blinking\n" "itemlist.text" msgid "Blinking" -msgstr "" +msgstr "Vilkumine" #: svxitems.src msgctxt "" @@ -450,7 +451,7 @@ "Character set color\n" "itemlist.text" msgid "Character set color" -msgstr "" +msgstr "Märgistiku värv" #: svxitems.src msgctxt "" @@ -459,7 +460,7 @@ "Overline\n" "itemlist.text" msgid "Overline" -msgstr "" +msgstr "Ülakriipsutus" #: svxitems.src msgctxt "" @@ -468,7 +469,7 @@ "Paragraph\n" "itemlist.text" msgid "Paragraph" -msgstr "" +msgstr "Lõik" #: svxitems.src msgctxt "" @@ -477,7 +478,7 @@ "Alignment\n" "itemlist.text" msgid "Alignment" -msgstr "" +msgstr "Joondus" #: svxitems.src msgctxt "" @@ -486,7 +487,7 @@ "Line spacing\n" "itemlist.text" msgid "Line spacing" -msgstr "" +msgstr "Reavahe" #: svxitems.src msgctxt "" @@ -495,7 +496,7 @@ "Page Break\n" "itemlist.text" msgid "Page Break" -msgstr "" +msgstr "Leheküljepiir" #: svxitems.src msgctxt "" @@ -504,7 +505,7 @@ "Hyphenation\n" "itemlist.text" msgid "Hyphenation" -msgstr "" +msgstr "Poolitus" #: svxitems.src msgctxt "" @@ -513,7 +514,7 @@ "Do not split paragraph\n" "itemlist.text" msgid "Do not split paragraph" -msgstr "" +msgstr "Lõiku ei tükeldata" #: svxitems.src msgctxt "" @@ -522,7 +523,7 @@ "Orphans\n" "itemlist.text" msgid "Orphans" -msgstr "" +msgstr "Orvud" #: svxitems.src msgctxt "" @@ -531,7 +532,7 @@ "Widows\n" "itemlist.text" msgid "Widows" -msgstr "" +msgstr "Lesed" #: svxitems.src msgctxt "" @@ -540,7 +541,7 @@ "Spacing\n" "itemlist.text" msgid "Spacing" -msgstr "" +msgstr "Vahed" #: svxitems.src msgctxt "" @@ -549,7 +550,7 @@ "Indent\n" "itemlist.text" msgid "Indent" -msgstr "" +msgstr "Taane" #: svxitems.src msgctxt "" @@ -558,7 +559,7 @@ "Page\n" "itemlist.text" msgid "Page" -msgstr "" +msgstr "Lehekülg" #: svxitems.src msgctxt "" @@ -567,7 +568,7 @@ "Page Style\n" "itemlist.text" msgid "Page Style" -msgstr "" +msgstr "Leheküljestiil" #: svxitems.src msgctxt "" @@ -576,7 +577,7 @@ "Keep with next paragraph\n" "itemlist.text" msgid "Keep with next paragraph" -msgstr "" +msgstr "Hoitakse koos järgmise lõiguga" #: svxitems.src msgctxt "" @@ -585,7 +586,7 @@ "Register-true\n" "itemlist.text" msgid "Register-true" -msgstr "" +msgstr "Range paigutus" #: svxitems.src msgctxt "" @@ -594,7 +595,7 @@ "Character background\n" "itemlist.text" msgid "Character background" -msgstr "" +msgstr "Märgi taust" #: svxitems.src msgctxt "" @@ -603,7 +604,7 @@ "Asian font\n" "itemlist.text" msgid "Asian font" -msgstr "" +msgstr "Aasia font" #: svxitems.src msgctxt "" @@ -612,7 +613,7 @@ "Size of Asian font\n" "itemlist.text" msgid "Size of Asian font" -msgstr "" +msgstr "Aasia fondi suurus" #: svxitems.src msgctxt "" @@ -621,7 +622,7 @@ "Language of Asian font\n" "itemlist.text" msgid "Language of Asian font" -msgstr "" +msgstr "Aasia fondi keel" #: svxitems.src msgctxt "" @@ -630,7 +631,7 @@ "Posture of Asian font\n" "itemlist.text" msgid "Posture of Asian font" -msgstr "" +msgstr "Aasia fondi asend" #: svxitems.src msgctxt "" @@ -639,7 +640,7 @@ "Weight of Asian font\n" "itemlist.text" msgid "Weight of Asian font" -msgstr "" +msgstr "Aasia fondi kaal" #: svxitems.src msgctxt "" @@ -648,7 +649,7 @@ "CTL\n" "itemlist.text" msgid "CTL" -msgstr "" +msgstr "Keerukad kirjasüsteemid" #: svxitems.src msgctxt "" @@ -657,7 +658,7 @@ "Size of complex scripts\n" "itemlist.text" msgid "Size of complex scripts" -msgstr "" +msgstr "Keerukate kirjasüsteemide suurus" #: svxitems.src msgctxt "" @@ -666,7 +667,7 @@ "Language of complex scripts\n" "itemlist.text" msgid "Language of complex scripts" -msgstr "" +msgstr "Keerukate kirjasüsteemide keel" #: svxitems.src msgctxt "" @@ -675,7 +676,7 @@ "Posture of complex scripts\n" "itemlist.text" msgid "Posture of complex scripts" -msgstr "" +msgstr "Keerukate kirjasüsteemide asend" #: svxitems.src msgctxt "" @@ -684,7 +685,7 @@ "Weight of complex scripts\n" "itemlist.text" msgid "Weight of complex scripts" -msgstr "" +msgstr "Keerukate kirjasüsteemide kaal" #: svxitems.src msgctxt "" @@ -693,7 +694,7 @@ "Double-lined\n" "itemlist.text" msgid "Double-lined" -msgstr "" +msgstr "Kaherealine" #: svxitems.src msgctxt "" @@ -702,7 +703,7 @@ "Emphasis mark\n" "itemlist.text" msgid "Emphasis mark" -msgstr "" +msgstr "Rõhumärk" #: svxitems.src msgctxt "" @@ -711,7 +712,7 @@ "Text spacing\n" "itemlist.text" msgid "Text spacing" -msgstr "" +msgstr "Teksti vahe" #: svxitems.src msgctxt "" @@ -720,7 +721,7 @@ "Hanging punctuation\n" "itemlist.text" msgid "Hanging punctuation" -msgstr "" +msgstr "Kirjavahemärkide väljumine tekstialast" #: svxitems.src msgctxt "" @@ -729,7 +730,7 @@ "Forbidden characters\n" "itemlist.text" msgid "Forbidden characters" -msgstr "" +msgstr "Keelatud märgid" #: svxitems.src msgctxt "" @@ -738,7 +739,7 @@ "Rotation\n" "itemlist.text" msgid "Rotation" -msgstr "" +msgstr "Pöördenurk" #: svxitems.src msgctxt "" @@ -747,7 +748,7 @@ "Relief\n" "itemlist.text" msgid "Relief" -msgstr "" +msgstr "Reljeef" #: svxitems.src msgctxt "" @@ -756,7 +757,7 @@ "Vertical text alignment\n" "itemlist.text" msgid "Vertical text alignment" -msgstr "" +msgstr "Vertikaalne tekstijoondus" #: svxitems.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/eu/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/eu/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/eu/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/eu/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-21 08:51+0000\n" "Last-Translator: Asier \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokumentua" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokumentua" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokumentua" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks dokumentua" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks dokumentua" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks dokumentua" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks dokumentua" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks dokumentua" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks dokumentua" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac dokumentua (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac dokumentua (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac dokumentua (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/eu/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/eu/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/eu/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/eu/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2013-09-26 07:06+0000\n" "Last-Translator: Asier \n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "%PRODUCTNAME aplikazioan programatzea" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Makroa grabatzeko funtzionalitatea %PRODUCTNAME Writer testu-dokumentuetan eta %PRODUCTNAME Calc kalkulu-orrietan bakarrik dago erabilgarri." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/fa/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/fa/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/fa/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/fa/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 10:19+0200\n" "Last-Translator: Hossein \n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -661,7 +661,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -670,7 +670,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -679,7 +679,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/fi/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/fi/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/fi/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/fi/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-23 15:27+0300\n" "Last-Translator: Harri Pitkänen \n" "Language-Team: Finnish \n" @@ -48,8 +48,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 -asiakirja" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -57,8 +57,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 -asiakirja" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -66,8 +66,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 -asiakirja" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -93,8 +93,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-asiakirja" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -102,8 +102,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-asiakirja" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -111,8 +111,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-asiakirja" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -228,8 +228,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-asiakirja" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -237,8 +237,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-asiakirja" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -246,8 +246,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-asiakirja" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -660,8 +660,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac -asiakirja (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -669,8 +669,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac -asiakirja (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -678,8 +678,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac -asiakirja (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/fi/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/fi/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/fi/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/fi/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.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: 2014-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-07-12 12:33+0300\n" "Last-Translator: Harri Pitkänen \n" "Language-Team: Finnish \n" @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 1.4\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1373703932.0\n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Ohjelmointi %PRODUCTNAMEssa" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Makrojen nauhoitustoiminto on käytettävissä vain %PRODUCTNAME Writerin tekstiasiakirjoissa ja %PRODUCTNAME Calcin laskentataulukoissa." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/fi/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/fi/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/fi/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/fi/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407684686.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/fi/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/fi/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/fi/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/fi/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407684730.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/fi/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/fi/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/fi/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/fi/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407684763.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/fr/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/fr/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/fr/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/fr/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-01 15:45+0200\n" "Last-Translator: sophie \n" "Language-Team: ll.org\n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Document BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Document BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Document BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Document ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Document ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Document ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Document GreatWorks" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Document GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Document GreatWorks" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works pour document Mac (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Document Microsoft Works pour Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Document Microsoft Works pour Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/fr/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/fr/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/fr/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/fr/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-06-15 12:36+0200\n" "Last-Translator: sophie \n" "Language-Team: ll.org\n" @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Virtaal 0.7.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1367425422.0\n" @@ -13056,14 +13056,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programmation dans %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "La fonctionnalité d'enregistrement de macros n'est disponible que pour les documents texte dans %PRODUCTNAME Writer et pour les feuilles de calcul dans %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ga/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ga/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ga/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ga/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-11-19 16:30-0000\n" "Last-Translator: Kevin Scannell \n" "Language-Team: \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -659,7 +659,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -668,7 +668,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -677,7 +677,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/gd/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/gd/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/gd/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/gd/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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:08+0200\n" -"PO-Revision-Date: 2014-06-16 12:37+0000\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" +"PO-Revision-Date: 2014-09-03 20:37+0000\n" "Last-Translator: Michael \n" "Language-Team: Akerbeltz\n" "Language: gd\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1402922225.000000\n" +"X-POOTLE-MTIME: 1409776678.000000\n" #: AbiWord.xcu msgctxt "" @@ -50,8 +50,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Sgrìobhainn BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "Sgrìobhainn teacsa BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Calc.xcu msgctxt "" @@ -59,8 +59,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Sgrìobhainn BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "Cliath-dhuilleag BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Draw.xcu msgctxt "" @@ -68,8 +68,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Sgrìobhainn BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "Tarraing BeagleWorks/WordPerfect Works v1" #: BroadBand_eBook.xcu msgctxt "" @@ -95,8 +95,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Sgrìobhainn ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "Sgrìobhainn teacsa ClarisWorks/AppleWorks" #: ClarisWorks_Calc.xcu msgctxt "" @@ -104,8 +104,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Sgrìobhainn ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "Cliath-dhuilleag ClarisWorks/AppleWorks" #: ClarisWorks_Draw.xcu msgctxt "" @@ -113,8 +113,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Sgrìobhainn ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "Tarraing ClarisWorks/AppleWorks" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -230,8 +230,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Sgrìobhainn GreatWorks" +msgid "GreatWorks Text Document" +msgstr "Sgrìobhainn teacsa GreatWorks" #: Great_Works_Calc.xcu msgctxt "" @@ -239,8 +239,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Sgrìobhainn GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "Cliath-dhuilleag GreatWorks" #: Great_Works_Draw.xcu msgctxt "" @@ -248,8 +248,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Sgrìobhainn GreatWorks" +msgid "GreatWorks Drawing" +msgstr "Tarraing GreatWorks" #: HTML_MasterDoc.xcu msgctxt "" @@ -662,8 +662,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Sgrìobhainn Microsoft Works airson Mac (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "Sgrìobhainn teacsa Microsoft Works airson Mac (v1 - v4)" #: Mac_Works_Calc.xcu msgctxt "" @@ -671,8 +671,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Sgrìobhainn Microsoft Works airson Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "Cliath-dhuilleag Microsoft Works airson Mac (v1 - v4)" #: Mac_Works_Draw.xcu msgctxt "" @@ -680,8 +680,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Sgrìobhainn Microsoft Works airson Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "Tarraing Microsoft Works airson Mac (v1 - v4)" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/gd/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/gd/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/gd/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/gd/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1407848024.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/gd/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/gd/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/gd/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/gd/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407848041.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/gd/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/gd/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/gd/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/gd/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407848054.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/gl/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/gl/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/gl/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/gl/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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:08+0200\n" -"PO-Revision-Date: 2014-07-10 09:44+0000\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" +"PO-Revision-Date: 2014-09-04 10:20+0000\n" "Last-Translator: Antón \n" "Language-Team: LANGUAGE \n" "Language: gl\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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404985479.000000\n" +"X-POOTLE-MTIME: 1409826022.000000\n" #: AbiWord.xcu msgctxt "" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "Documento de texto de BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "Folla de cálculo de BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "Debuxo de BeagleWorks/WordPerfect Works v1" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento de ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "Documento de texto de ClarisWorks/AppleWorks" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento de ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "Folla de cálculo de ClarisWorks/AppleWorks" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento de ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "Debuxo de ClarisWorks/AppleWorks" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento GreatWorks" +msgid "GreatWorks Text Document" +msgstr "Documento de texto de GreatWorks" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "Folla de cálculo de GreatWorks" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento GreatWorks" +msgid "GreatWorks Drawing" +msgstr "Debuxo de GreatWorks" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works de documento Mac (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "Documento de texto de Microsoft Works para Mac (v. 1-4)" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works de documento Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "Folla de cálculo de Microsoft Works para Mac (v. 1-4)" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works de documento Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "Debuxo de Microsoft Works para Mac (v. 1-4)" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/gl/formula/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/gl/formula/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/gl/formula/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/gl/formula/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1409002756.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/gl/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/gl/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/gl/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/gl/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.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: 2014-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2013-09-27 22:07+0200\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programar en %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "A función de gravación de macros só está dispoñíbel para documentos de texto en %PRODUCTNAME Writer e para follas de cálculo en %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/gl/starmath/source.po libreoffice-l10n-4.3.2/translations/source/gl/starmath/source.po --- libreoffice-l10n-4.3.1~rc2/translations/source/gl/starmath/source.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/gl/starmath/source.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1409002761.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/gl/sw/source/ui/docvw.po libreoffice-l10n-4.3.2/translations/source/gl/sw/source/ui/docvw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/gl/sw/source/ui/docvw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/gl/sw/source/ui/docvw.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1409002767.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/gl/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/gl/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/gl/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/gl/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1409002776.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/gu/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/gu/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/gu/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/gu/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-07-24 15:35+0530\n" "Last-Translator: \n" "Language-Team: gu_IN \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/gu/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/gu/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/gu/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/gu/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-12-01 12:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programming in %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/he/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/he/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/he/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/he/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-10-09 16:32+0200\n" "Last-Translator: Lior \n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/he/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/he/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/he/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/he/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-12-01 12:47+0000\n" "Last-Translator: Yaron \n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/hi/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/hi/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/hi/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/hi/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-08-22 10:18+0200\n" "Last-Translator: Rajesh \n" "Language-Team: Hindi \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/hi/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/hi/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/hi/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/hi/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-12-01 13:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/hr/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/hr/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/hr/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/hr/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-08-02 08:32+0000\n" "Last-Translator: Krunoslav \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1406968347.000000\n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokument" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokument" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokument" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks dokument" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks dokument" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks dokument" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks dokument" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks dokument" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks dokument" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works za Mac dokument (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works za Mac dokument (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works za Mac dokument (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/hr/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/hr/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/hr/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/hr/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2013-07-21 13:15+0100\n" "Last-Translator: Krunoslav Šebetić \n" "Language-Team: LANGUAGE \n" @@ -13054,14 +13054,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/hr/sc/source/ui/src.po libreoffice-l10n-4.3.2/translations/source/hr/sc/source/ui/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/hr/sc/source/ui/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/hr/sc/source/ui/src.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-08-05 11:33+0000\n" -"Last-Translator: Mihovil \n" +"PO-Revision-Date: 2014-09-01 19:31+0000\n" +"Last-Translator: Mihovil \n" "Language-Team: LANGUAGE \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407238403.000000\n" +"X-POOTLE-MTIME: 1409599870.000000\n" #: condformatdlg.src msgctxt "" @@ -14835,14 +14835,13 @@ msgstr "Postotak rate kvantila između 0 i 1." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PERCENTILE_EXC\n" "1\n" "string.text" msgid "Returns the alpha percentile of a sample." -msgstr "Vraća alfa kvantil uzorka." +msgstr "Vraća alfa percentil uzorka." #: scfuncs.src msgctxt "" @@ -14878,17 +14877,16 @@ "5\n" "string.text" msgid "The percentile value, range 0...1, exclusive." -msgstr "" +msgstr "Vrijednost percentila, u rasponu od 0...1, isključujući obje vrijednosti." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PERCENTILE_INC\n" "1\n" "string.text" msgid "Returns the alpha percentile of a sample." -msgstr "Vraća alfa kvantil uzorka." +msgstr "Vraća alfa percentil uzorka." #: scfuncs.src msgctxt "" @@ -14924,7 +14922,7 @@ "5\n" "string.text" msgid "The percentile value, range 0...1, inclusive." -msgstr "" +msgstr "Vrijednost percentila, u rasponu od 0...1, uključujući obje vrijednosti." #: scfuncs.src msgctxt "" @@ -14969,7 +14967,7 @@ "5\n" "string.text" msgid "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)." -msgstr "" +msgstr "Tip kvartila (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAKS)." #: scfuncs.src msgctxt "" @@ -15014,7 +15012,7 @@ "5\n" "string.text" msgid "The type of the quartile (1 = 25%, 2 = 50%, 3 = 75%)." -msgstr "" +msgstr "Tip kvartila (1 = 25%, 2 = 50%, 3 = 75%)." #: scfuncs.src msgctxt "" @@ -15059,7 +15057,7 @@ "5\n" "string.text" msgid "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)." -msgstr "" +msgstr "Tip kvartila (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAKS)." #: scfuncs.src msgctxt "" @@ -15197,14 +15195,13 @@ msgstr "Vrijednost za koju se određuje postotni rang." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PERCENT_RANK\n" "6\n" "string.text" msgid "significance" -msgstr "Važnost" +msgstr "važnost" #: scfuncs.src msgctxt "" @@ -15213,7 +15210,7 @@ "7\n" "string.text" msgid "The number of significant digits for the returned percentage: if omitted, a value of 3 is used." -msgstr "" +msgstr "Broj važnih znamenki za vraćeni postotak. Ukoliko je izostavljeno, koristi se vrijednost 3." #: scfuncs.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/hu/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/hu/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/hu/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/hu/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-07-10 00:21+0000\n" "Last-Translator: Gábor \n" "Language-Team: Magyar \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokumentum" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokumentum" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokumentum" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks dokumentum" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks dokumentum" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks dokumentum" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks dokumentum" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks dokumentum" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks dokumentum" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac dokumentum (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac dokumentum (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac dokumentum (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/hu/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/hu/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/hu/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/hu/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.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: 2014-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-07-14 17:45+0000\n" "Last-Translator: Gábor \n" "Language-Team: Hungarian \n" @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1405359901.000000\n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programozás a %PRODUCTNAME-ban" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "A makrórögzítés lehetősége csak a %PRODUCTNAME Writer szöveges dokumentumainál és a %PRODUCTNAME Calc munkafüzeteinél áll rendelkezésre." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/hu/sw/source/ui/utlui.po libreoffice-l10n-4.3.2/translations/source/hu/sw/source/ui/utlui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/hu/sw/source/ui/utlui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/hu/sw/source/ui/utlui.po 2014-09-16 19:55:40.000000000 +0000 @@ -1,17 +1,20 @@ #. extracted from sw/source/ui/utlui msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"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-07-31 22:14+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2014-05-02 00:02+0200\n" +"PO-Revision-Date: 2014-08-29 12:50+0000\n" +"Last-Translator: Andras \n" +"Language-Team: Hungarian \n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1409316637.000000\n" #: poolfmt.src msgctxt "" @@ -1216,6 +1219,14 @@ #: poolfmt.src msgctxt "" +"poolfmt.src\n" +"STR_POOLCOLL_HTML_BLOCKQUOTE\n" +"string.text" +msgid "Quotations" +msgstr "Idézetblokk" + +#: poolfmt.src +msgctxt "" "poolfmt.src\n" "STR_POOLCOLL_HTML_PRE\n" "string.text" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/id/chart2/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/id/chart2/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/id/chart2/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/id/chart2/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-30 10:57+0200\n" -"PO-Revision-Date: 2014-08-02 07:42+0000\n" +"PO-Revision-Date: 2014-09-03 11:18+0000\n" "Last-Translator: Andika \n" "Language-Team: LANGUAGE \n" "Language: id\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406965336.000000\n" +"X-POOTLE-MTIME: 1409743115.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -1178,14 +1178,13 @@ msgstr "Ske_ma" #: tp_3D_SceneAppearance.ui -#, fuzzy msgctxt "" "tp_3D_SceneAppearance.ui\n" "CB_SHADING\n" "label\n" "string.text" msgid "_Shading" -msgstr "_Berbayang" +msgstr "_Bayang-bayang" #: tp_3D_SceneAppearance.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/id/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/id/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/id/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/id/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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:08+0200\n" -"PO-Revision-Date: 2014-06-06 11:12+0000\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" +"PO-Revision-Date: 2014-09-03 11:18+0000\n" "Last-Translator: Andika \n" "Language-Team: Indonesian <>\n" "Language: id\n" @@ -12,9 +12,9 @@ "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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402053127.000000\n" +"X-POOTLE-MTIME: 1409743134.000000\n" #: AbiWord.xcu msgctxt "" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokumen BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "Dokumen Teks BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokumen BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "Lembar Kerja BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokumen BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "Gambar BeagleWorks/WordPerfect Works v1" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokumen ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "Dokumen Teks ClarisWorks/AppleWorks" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokumen ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "Lembar Kerja ClarisWorks/AppleWorks" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokumen ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "Gambar ClarisWorks/AppleWorks" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokumen GreatWorks" +msgid "GreatWorks Text Document" +msgstr "Dokumen Teks GreatWorks" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokumen GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "Lembar Kerja GreatWorks" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokumen GreatWorks" +msgid "GreatWorks Drawing" +msgstr "Gambar GreatWorks" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokumen Microsoft Works untuk Mac (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "Dokumen Teks Microsoft Works for Mac (v1 - v4)" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokumen Microsoft Works untuk Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "Lembar Kerja Microsoft Works for Mac (v1 - v4)" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokumen Microsoft Works untuk Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "Gambar Microsoft Works for Mac (v1 - v4)" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/id/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-4.3.2/translations/source/id/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-4.3.1~rc2/translations/source/id/helpcontent2/source/text/shared/explorer/database.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/id/helpcontent2/source/text/shared/explorer/database.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408097789.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/id/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/id/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/id/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/id/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-01-11 17:18+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13054,14 +13054,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/id/helpcontent2/source/text/simpress/01.po libreoffice-l10n-4.3.2/translations/source/id/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/id/helpcontent2/source/text/simpress/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/id/helpcontent2/source/text/simpress/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -1,9 +1,10 @@ +#. extracted from helpcontent2/source/text/simpress/01 msgid "" msgstr "" "Project-Id-Version: libo_help simpress 4.3\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2014-06-25 17:41+0200\n" -"PO-Revision-Date: 2014-08-21 11:37+0000\n" +"PO-Revision-Date: 2014-08-31 13:03+0000\n" "Last-Translator: Andika \n" "Language-Team: ID \n" "Language: id\n" @@ -11,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408621053.000000\n" +"X-POOTLE-MTIME: 1409490203.000000\n" #: 01170000.xhp msgctxt "" @@ -2175,7 +2176,7 @@ "par_idN106A5\n" "help.text" msgid "Notes and Handouts tab page where you can specify options for the notes pages and the handout pages." -msgstr "" +msgstr "Halaman tab Catatan dan Handoutdimana Anda dapat menyatakan opsi bagi halaman catatan dan halaman handout." #: 03152000.xhp msgctxt "" @@ -3567,7 +3568,7 @@ "bm_id3154319\n" "help.text" msgid "fields; page numberspage number fieldslide numberspresentations; numbering slides in" -msgstr "" +msgstr "ruas; nomor halamanruas nomor halamannomor halamanpresentasi; menomori salindia dalam" #: 04990500.xhp msgctxt "" @@ -5958,7 +5959,7 @@ "bm_id3148837\n" "help.text" msgid "sounds; for effectseffects; soundssounds; formatspresentations; ordering of effectslists;animationsanimations;list of" -msgstr "" +msgstr "suara; untuk efekefek; suarasuara; formatpresentasi; pengurutan efekdaftar; animasianimasi; daftar" #: 06060000.xhp msgctxt "" @@ -6176,7 +6177,7 @@ "par_idN10824\n" "help.text" msgid "Specifies the speed or duration of the selected animation effect." -msgstr "" +msgstr "Menyatakan kecepatan atau durasi dari efek animasi yang dipilih." #: 06060000.xhp msgctxt "" @@ -6208,7 +6209,7 @@ "par_idN10832\n" "help.text" msgid "Plays the selected animation effect in the preview." -msgstr "" +msgstr "Memutar efek animasi yang dipilih dalam pratinjau." #: 06060000.xhp msgctxt "" @@ -6224,7 +6225,7 @@ "par_idN10839\n" "help.text" msgid "Starts the slide show from the current slide." -msgstr "" +msgstr "Memulai pertunjukan salindia dari salindia saat ini." #: 06060000.xhp msgctxt "" @@ -6240,7 +6241,7 @@ "par_idN10840\n" "help.text" msgid "Select to preview new or edited effects on the slide while you assign them." -msgstr "" +msgstr "Pilih untuk mempratinjau efek baru atau yang disunting pada salindia ketika Anda menugaskan mereka." #: 06070000.xhp msgctxt "" @@ -6256,7 +6257,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 "interaksi; objek dalam presentasi interaktifprogram yang dijalankan oleh klik tetikus dalam presentasimenjalankan makro/program dalam presentasimakro; menjalankan dalam presentasipresentasis;keluar dengan interaksikeluar;dengan menklik objek" #: 06070000.xhp msgctxt "" @@ -6274,7 +6275,7 @@ "2\n" "help.text" msgid "Defines how the selected object behaves when you click on it during a slide show." -msgstr "" +msgstr "Menentukan bagaimana objek yang dipilih berperilaku ketika Anda mengkliknya dalam pertunjukan salindia." #: 06070000.xhp msgctxt "" @@ -6292,7 +6293,7 @@ "44\n" "help.text" msgid "Specifies the action that will run when you click the selected object during a slide show. You can also assign actions to grouped objects." -msgstr "" +msgstr "Menyatakan aksi yang akan dijalankan ketika Anda mengklik objek yang dipilih dalam suatu pertunjukan salindia. Anda juga dapat menugaskan aksi ke objek yang dikelompokkan." #: 06070000.xhp msgctxt "" @@ -6328,7 +6329,7 @@ "46\n" "help.text" msgid "Moves back one slide in the slide show." -msgstr "" +msgstr "Mundur satu salindia dalam pertunjukan salindia." #: 06070000.xhp msgctxt "" @@ -6346,7 +6347,7 @@ "47\n" "help.text" msgid "Moves forward one slide in the slide show." -msgstr "" +msgstr "Maju satu salindia dalam pertunjukan salindia." #: 06070000.xhp msgctxt "" @@ -6364,7 +6365,7 @@ "48\n" "help.text" msgid "Jumps to the first slide in the slide show." -msgstr "" +msgstr "Melompat ke salindia pertama pada pertunjukan salindia." #: 06070000.xhp msgctxt "" @@ -6382,7 +6383,7 @@ "49\n" "help.text" msgid "Jumps to the last slide in the slide show." -msgstr "" +msgstr "Melompat ke salindia terakhir pada pertunjukan salindia." #: 06070000.xhp msgctxt "" @@ -6418,7 +6419,7 @@ "51\n" "help.text" msgid "Lists the slides and the objects that you can target." -msgstr "" +msgstr "Menampilkan daftar salindia dan objek yang dapat Anda target." #: 06070000.xhp msgctxt "" @@ -6427,7 +6428,7 @@ "11\n" "help.text" msgid "Slide / Object" -msgstr "" +msgstr "Salindia / Objek" #: 06070000.xhp msgctxt "" @@ -6436,7 +6437,7 @@ "53\n" "help.text" msgid "Enter the name of the slide or the object that you want to look for." -msgstr "" +msgstr "Masukkan nama salindia atau objek yang ingin Anda cari." #: 06070000.xhp msgctxt "" @@ -6454,7 +6455,7 @@ "54\n" "help.text" msgid "Searches for the specified slide or object." -msgstr "" +msgstr "Mencari salindia atau objek yang dinyatakan." #: 06070000.xhp msgctxt "" @@ -6472,7 +6473,7 @@ "55\n" "help.text" msgid "Opens and displays a file during a slide show. If you select a $[officename] file as the target document, you can also specify the page that will open." -msgstr "" +msgstr "Membuka dan menampilkan suatu berkas dalam sebuah pertunjukan salindia. Bila Anda memilih suatu berkas $[officename] sebagai dokumen target, Anda juga dapat menyatakan halaman yang akan dibuka." #: 06070000.xhp msgctxt "" @@ -6508,7 +6509,7 @@ "57\n" "help.text" msgid "Enter a path to the file you want to open, or click Browse to locate the file." -msgstr "" +msgstr "Masukkan suatu path berkas yang ingin Anda buka, atau klik Ramban untuk menentukan lokasi berkas." #: 06070000.xhp msgctxt "" @@ -6526,7 +6527,7 @@ "58\n" "help.text" msgid "Locate the file you want to open." -msgstr "" +msgstr "Tentukan lokasi berkas yang ingin Anda buka." #: 06070000.xhp msgctxt "" @@ -6580,7 +6581,7 @@ "62\n" "help.text" msgid "Enter a path to the sound file you want to open, or click Browse to locate the file." -msgstr "" +msgstr "Masukkan path ke berkas suara yang ingin Anda buka, atau klik Ramban untum menentukan lokasi berkas." #: 06070000.xhp msgctxt "" @@ -6598,7 +6599,7 @@ "63\n" "help.text" msgid "Locate the sound file you want to play." -msgstr "" +msgstr "Tentukan lokasi berkas suara yang ingin Anda putar." #: 06070000.xhp msgctxt "" @@ -6670,7 +6671,7 @@ "81\n" "help.text" msgid "Enter a path to the program you want to start, or click Browse to locate the program." -msgstr "" +msgstr "Masukkan suatu path ke program yang ingin Anda mulai, atau klik Ramban untuk menentukan lokasi program." #: 06070000.xhp msgctxt "" @@ -6688,7 +6689,7 @@ "82\n" "help.text" msgid "Locate the program you want to start." -msgstr "" +msgstr "Tentukan lokasi program yang ingin Anda mulai." #: 06070000.xhp msgctxt "" @@ -6733,7 +6734,7 @@ "85\n" "help.text" msgid "Enter a path to the macro you want to run, or click Browse to locate the macro." -msgstr "" +msgstr "Masukkan suatu path ke makro yang ingin Anda jalankan, atau klik Ramban untuk menentukan lokasi makro." #: 06070000.xhp msgctxt "" @@ -6751,7 +6752,7 @@ "86\n" "help.text" msgid "Locate the macro you want to run." -msgstr "" +msgstr "Tentukan lokasi makro yang ingin Anda jalankan." #: 06070000.xhp msgctxt "" @@ -6785,7 +6786,7 @@ "par_idN10AE6\n" "help.text" msgid "You can choose the \"Start object action\" entry for inserted OLE objects." -msgstr "" +msgstr "Anda dapat memilih entri \"Mulai aksi objek\" bagi objek OLE yang disisipkan." #: 06070000.xhp msgctxt "" @@ -7233,7 +7234,7 @@ "2\n" "help.text" msgid "Defines a custom slide show using slides within the current presentation. You can then pick slides to meet the needs of your audience. You can create as many custom slide shows as you want." -msgstr "" +msgstr "Menentukan suatu pertunjukan salindia gubahan memakai salindi dari dalam presentasi saat ini. Anda lalu dapat memilih salindi yang memenuhi keperluan audiens Anda. Anda dapat membuat sebanyak mungkin pertunjukan salindia yang Anda inginkan." #: 06100000.xhp msgctxt "" @@ -7251,7 +7252,7 @@ "4\n" "help.text" msgid "Lists the custom slide shows that are available." -msgstr "" +msgstr "Menampilkan daftar pertunjukan salindia gubahan yang tersedia." #: 06100000.xhp msgctxt "" @@ -7260,7 +7261,7 @@ "5\n" "help.text" msgid "To create a custom slide show, click New." -msgstr "" +msgstr "Untuk membuat suatu pertunjukan salindia gubahan, klik Baru." #: 06100000.xhp msgctxt "" @@ -7278,7 +7279,7 @@ "10\n" "help.text" msgid "Runs the custom slide show you selected when you click Start. Otherwise, the entire presentation is shown." -msgstr "" +msgstr "Menjalankan pertunjukan salindia gubahan yang Anda pilih ketika Anda mengklik Mulai. Bila tidak, seluruh presentasi ditampilkan." #: 06100000.xhp msgctxt "" @@ -7296,7 +7297,7 @@ "7\n" "help.text" msgid "Click the show in the list and then select Use Custom Slide Show." -msgstr "" +msgstr "Klik pada pertunjukan dalam daftar lalu pilih Pakai Pertunjukan Salindia Gubahan." #: 06100000.xhp msgctxt "" @@ -7332,7 +7333,7 @@ "13\n" "help.text" msgid "Add, remove or reorder slides as well as change the name of the selected custom slide show." -msgstr "" +msgstr "Menambah, membuang, atau mengatur ulang salindia maupun mengubah nama pertunjukan salindia gubahan yang dipilih." #: 06100000.xhp msgctxt "" @@ -7350,7 +7351,7 @@ "15\n" "help.text" msgid "Creates a copy of the selected custom slide show. You can modify the name of the show by clicking Edit." -msgstr "" +msgstr "Membuat sebuah salinan dari pertunjukan salindia gubahan yang dipilih. Anda dapat mengubah nama pertunjukan dengan mengklik Sunting." #: 06100000.xhp msgctxt "" @@ -7368,7 +7369,7 @@ "17\n" "help.text" msgid "Runs the slide show. Ensure that Use Custom Slide Show is selected if you want to run a custom presentation." -msgstr "" +msgstr "Menjalankan pertunjukan salindia. Pastikan bahwa Pakai Pertunjukan Salindia Gubahan dipilih bila Anda ingin memutar suatu presentasi gubahan." #: 06100100.xhp msgctxt "" @@ -7412,7 +7413,7 @@ "4\n" "help.text" msgid "Adds an existing slide to the bottom of the Selected slides list. You need to select a slide in the Existing slides list before you can use this button." -msgstr "" +msgstr "Menambahkan salindia yang ada ke bagian akhir dari daftar Salindi yang dipilih. Anda perlu memilih suatu salindia dalam daftar Salindia yang ada sebelum Anda dapat memakai tombol ini." #: 06100100.xhp msgctxt "" @@ -7421,7 +7422,7 @@ "5\n" "help.text" msgid "Removes a slide from the Selected slides list. You need to choose a slide in the Selected slides list before you can use this button." -msgstr "" +msgstr "Membuang suatu salindia dari daftar Salindia yang dipilih. Anda perlu memilih suatu salindia dalam daftar Salindia yang dipilih sebelum Anda dapat memakai tombol ini." #: 06100100.xhp msgctxt "" @@ -7527,7 +7528,7 @@ "2\n" "help.text" msgid "Converts the selected object to a Bézier curve." -msgstr "" +msgstr "Mengonversi objek-objek yang dipilih menjadi suatu kurva Bézier." #: 13050200.xhp msgctxt "" @@ -7670,7 +7671,7 @@ "16\n" "help.text" msgid "Source image:" -msgstr "" +msgstr "Citra sumber:" #: 13050200.xhp msgctxt "" @@ -7759,7 +7760,7 @@ "2\n" "help.text" msgid "Converts the selected object to a three-dimensional (3D) object." -msgstr "" +msgstr "Mengonversi objek-objek yang dipilih menjadi objek tiga dimensi (3D)." #: 13050300.xhp msgctxt "" @@ -7768,7 +7769,7 @@ "8\n" "help.text" msgid "The selected object is first converted to a contour, and then to a 3D object." -msgstr "" +msgstr "Objek-objek yang dipilih pertama dikonversi ke suatu kontur, lalu ke sebuah objek 3D." #: 13050300.xhp msgctxt "" @@ -7777,7 +7778,7 @@ "3\n" "help.text" msgid "If you select two or more objects and convert them to 3D, the result is a 3D group that acts as a single object. You can edit the individual objects in the group by choosing Modify - Enter GroupFormat - Group - Enter Group. Choose Modify – Exit GroupFormat – Group – Exit Group when you are finished." -msgstr "" +msgstr "Bila Anda memilih dua objek atau lebih dan mengonversi mereka ke 3D, hasilnya adalah suatu grup 3D yang beraksi sebagai sebuah objek tunggal. Anda dapat menyunting objek individu dalam grup dengan memilih Ubah - Masuk GrupFormat - Grup - Masuk Grup. Pilih Ubah – Keluar GrupFormat – Grup – Keluar Grup setelah Anda selesai." #: 13050300.xhp msgctxt "" @@ -7813,7 +7814,7 @@ "6\n" "help.text" msgid "Even drawing objects that contain text can be converted." -msgstr "" +msgstr "Bahkan objek menggambar yang memuat teks dapat dikonversi." #: 13050300.xhp msgctxt "" @@ -7822,7 +7823,7 @@ "7\n" "help.text" msgid "If you want, you can also apply a 3D Effect to the converted object." -msgstr "" +msgstr "Bila Anda ingin, Anda juga dapat menerapkan suatu Efek 3D ke objek yang dikonversi." #: 13050400.xhp msgctxt "" @@ -7882,7 +7883,7 @@ "2\n" "help.text" msgid "Converts the selected object to a bitmap (a grid of pixels that represents an image)." -msgstr "" +msgstr "Mengonversi objek yang dipilih ke sebuah bitmap (suatu kisi piksel-piksel yang merepresentasikan sebuah citra)." #: 13050500.xhp msgctxt "" @@ -7891,7 +7892,7 @@ "4\n" "help.text" msgid "For more information, see the Glossary." -msgstr "" +msgstr "Untuk informasi lebih lanjut, lihat Glosarium." #: 13050500.xhp msgctxt "" @@ -7900,7 +7901,7 @@ "3\n" "help.text" msgid "You can also copy the selected object and choose Edit - Paste Special and select the bitmap format from the list." -msgstr "" +msgstr "Anda juga dapat menyalin objek yang dipilih dan memilih Sunting - Tempel Khusus dan memilih format bitmap dari daftar." #: 13050600.xhp msgctxt "" @@ -7934,7 +7935,7 @@ "2\n" "help.text" msgid "Converts the selected object to Windows Metafile Format (WMF), containing both bitmap and vector graphic data." -msgstr "" +msgstr "Mengonversi objek yang dipilih ke Windows Metafile Format (WMF), yang memuat data bitmap dan grafik vektor sekaligus." #: 13050600.xhp msgctxt "" @@ -7943,7 +7944,7 @@ "4\n" "help.text" msgid "For more information on WMF, see the Glossary." -msgstr "" +msgstr "Untuk informasi lebih lanjut tentang WMF, lihat Glosarium." #: 13050600.xhp msgctxt "" @@ -7952,7 +7953,7 @@ "3\n" "help.text" msgid "You can also copy the selected object and choose Edit - Paste Special and select MetaFile from the list." -msgstr "" +msgstr "Anda juga dapat menyalin objek-objek yang dipilih dam memilih Sunting - Tempel Khusus dan memilih MetaFile dari daftar." #: 13050700.xhp msgctxt "" @@ -8021,7 +8022,7 @@ "2\n" "help.text" msgid "Combines two or more selected objects into a single shape. Unlike grouping, a combined object takes on the properties of the lowermost object in the stacking order. You can split apart combined objects, but the original object properties are lost." -msgstr "" +msgstr "Mengombinasikan dua atau lebih objek yang dipilih menjadi suatu bentuk tunggal. Tak seperti pengelompokan, suatu objek tergabung mengambil properti dari objek paling bawah dalam urutan penumpukan. Anda dapat memecah objek tergabung, tapi properti objek asli hilang." #: 13140000.xhp msgctxt "" @@ -8030,7 +8031,7 @@ "3\n" "help.text" msgid "When you combine objects, the drawing elements are replaced by Bézier curves and holes appear where the objects overlap." -msgstr "" +msgstr "Ketika Anda menggabung objek, elemen-elemen gambar digantikan oleh kurva Bézier dan lubang muncul dimana objek bertumpangan." #: 13150000.xhp msgctxt "" @@ -8159,7 +8160,7 @@ "2\n" "help.text" msgid "Creates a shape from two or more selected objects." -msgstr "" +msgstr "Membuat suatu bentuk dari dua atau lebih objek yang dipilih." #: 13180000.xhp msgctxt "" @@ -8168,7 +8169,7 @@ "3\n" "help.text" msgid "Shapes take on the properties of the lowermost object in the stacking order." -msgstr "" +msgstr "Bentuk mengambil properti dari objek paling bawah dalam urutan penumpukan." #: 13180100.xhp msgctxt "" @@ -8194,7 +8195,7 @@ "2\n" "help.text" msgid "Adds the area of the selected objects to the area of the lowermost object in the selection. This command is best used with overlapping objects." -msgstr "" +msgstr "Menambahkan area dari objek yang dipilih ke area dari objek paling bawah dalam pilihan. Perintah ini terbaik dipakai dengan objek yang bertumpangan." #: 13180100.xhp msgctxt "" @@ -8203,7 +8204,7 @@ "3\n" "help.text" msgid "Any spaces that are visible between the objects are preserved." -msgstr "" +msgstr "Sebarang ruang yang nampak antara objek-objek dipertahankan." #: 13180200.xhp msgctxt "" @@ -8229,7 +8230,7 @@ "2\n" "help.text" msgid "Subtracts the area of the selected objects from the area of the lowermost object." -msgstr "" +msgstr "Mengurangkan area dari objek yang dipilih dari area objek paling bawah." #: 13180200.xhp msgctxt "" @@ -8238,7 +8239,7 @@ "3\n" "help.text" msgid "Any spaces between the objects are preserved." -msgstr "" +msgstr "Sebarang ruang antara objek-objek dipertahankan." #: 13180300.xhp msgctxt "" @@ -8264,7 +8265,7 @@ "2\n" "help.text" msgid "Creates a shape from the overlapping area of the selected objects." -msgstr "" +msgstr "Membuat suatu bentuk dari area yang bertumpangan dari objek-objek yang dipilih." #: animationeffect.xhp msgctxt "" @@ -8288,7 +8289,7 @@ "par_idN105C7\n" "help.text" msgid "Select an effect and click OK to assign it." -msgstr "" +msgstr "Pilih suatu efek dan klik OK untuk menugaskannya." #: animationeffect.xhp msgctxt "" @@ -8296,7 +8297,7 @@ "par_idN1055D\n" "help.text" msgid "Adds a new animation effect to the object selected in the slide, or changes the animation of the selected element in the Custom Animations Pane." -msgstr "" +msgstr "Menambahkan suatu efek animasi baru ke objek yang dipilih dalam salindia, atau mengubah animasi dari elemen yang dipilih dalam Panel Animasi Gubahan." #: animationeffect.xhp msgctxt "" @@ -8312,7 +8313,7 @@ "par_idN10571\n" "help.text" msgid "Entrance" -msgstr "" +msgstr "Tempat Masuk" #: animationeffect.xhp msgctxt "" @@ -8560,7 +8561,7 @@ "par_idN10707\n" "help.text" msgid "Enhancements" -msgstr "" +msgstr "Peningkatan" #: effectoptionseffect.xhp msgctxt "" @@ -8568,7 +8569,7 @@ "par_idN1070B\n" "help.text" msgid "Specifies the enhancements for the current effect." -msgstr "" +msgstr "Menyatakan peningkatan bagi efek saat ini." #: effectoptionseffect.xhp msgctxt "" @@ -8584,7 +8585,7 @@ "par_idN10712\n" "help.text" msgid "Select a sound from the Gallery or select one of the special entries." -msgstr "" +msgstr "Memilih suatu suara dari Galeri atau memilih satu dari entri khusus." #: effectoptionseffect.xhp msgctxt "" @@ -8592,7 +8593,7 @@ "par_idN10718\n" "help.text" msgid "No sound - no sound is played during animation of the effect." -msgstr "" +msgstr "Tanpa suara - tak ada suara yang dibunyikan selama efek animasi." #: effectoptionseffect.xhp msgctxt "" @@ -8600,7 +8601,7 @@ "par_idN1071F\n" "help.text" msgid "Stop previous sound - the sound of the previous effect is stopped as soon as the current effect runs." -msgstr "" +msgstr "Hentikan suara sebelumnya - suara dari efek sebelumnya dihentikan ketika efek saat ini dijalankan." #: effectoptionseffect.xhp msgctxt "" @@ -8648,7 +8649,7 @@ "par_idN10752\n" "help.text" msgid "Dim with color - after the animation a dim color fills the shape." -msgstr "" +msgstr "Redupkan dengan warna- setelah animasi suatu warna redup memenuhi bentuk." #: effectoptionseffect.xhp msgctxt "" @@ -8656,7 +8657,7 @@ "par_idN1073D\n" "help.text" msgid "Don't dim - no after-effect runs." -msgstr "" +msgstr "Jangan redupkan - tak ada pasca efek." #: effectoptionseffect.xhp msgctxt "" @@ -8664,7 +8665,7 @@ "par_idN10744\n" "help.text" msgid "Hide after animation - hides the shape after the animation ends." -msgstr "" +msgstr "Sembunyikan setelah animasih - menyembunyikan bentuk setelah animasi berakhir." #: effectoptionseffect.xhp msgctxt "" @@ -8672,7 +8673,7 @@ "par_idN1074B\n" "help.text" msgid "Hide on next animation - hides the shape on the next animation." -msgstr "" +msgstr "Sembunyikan pada animasi selanjutnya - menyembunyikan bentuk pada animasi selanjutnya." #: effectoptionseffect.xhp msgctxt "" @@ -8688,7 +8689,7 @@ "par_idN1087B\n" "help.text" msgid "Select the dim color." -msgstr "" +msgstr "Pilih warna peredupan." #: effectoptionseffect.xhp msgctxt "" @@ -8704,7 +8705,7 @@ "par_idN1075C\n" "help.text" msgid "Select the animation mode for the text of the current shape:" -msgstr "" +msgstr "Pilih mode animasi bagi teks dari bentuk saat ini.:" #: effectoptionseffect.xhp msgctxt "" @@ -8712,7 +8713,7 @@ "par_idN10762\n" "help.text" msgid "All at once - animates the text all at once." -msgstr "" +msgstr "Semua sekaligus - animasikan seluruh teks sekaligus." #: effectoptionseffect.xhp msgctxt "" @@ -8728,7 +8729,7 @@ "par_idN10770\n" "help.text" msgid "Letter by letter - animates the text letter by letter." -msgstr "" +msgstr "Huruf demi huruf - animasikan teks huruf demi huruf." #: effectoptionseffect.xhp msgctxt "" @@ -8744,7 +8745,7 @@ "par_idN1077A\n" "help.text" msgid "Specifies the percentage of delay between animations of words or letters." -msgstr "" +msgstr "Menyatakan persentase tundaan antara animasi kata atau huruf." #: effectoptionstext.xhp msgctxt "" @@ -8784,7 +8785,7 @@ "par_idN105E1\n" "help.text" msgid "Specifies how multiple paragraphs are animated:" -msgstr "" +msgstr "Menyatakan bagaimana paragraf berganda dianimasikan:" #: effectoptionstext.xhp msgctxt "" @@ -8792,7 +8793,7 @@ "par_idN105E7\n" "help.text" msgid "As one object - all paragraphs are animated as one object." -msgstr "" +msgstr "Sebagai sebuah objek - semua paragraf dianimasikan sebagai sebuah objek." #: effectoptionstext.xhp msgctxt "" @@ -8800,7 +8801,7 @@ "par_idN105EE\n" "help.text" msgid "All paragraphs at once - all paragraphs are animated at once, but can have different effects." -msgstr "" +msgstr "Semua paragraf sekaligus - semua paragraf dianimasikan sekaligus, tapi bisa memiliki efek yang berbeda." #: effectoptionstext.xhp msgctxt "" @@ -8808,7 +8809,7 @@ "par_idN105F5\n" "help.text" msgid "By 1st level paragraphs - the first level paragraphs, including sub-level paragraphs, are animated one after another." -msgstr "" +msgstr "Menurut paragraf aras ke-1 - paragraf aras pertama, termasuk paragraf sub aras, dianimasikan satu demi satu." #: effectoptionstext.xhp msgctxt "" @@ -8824,7 +8825,7 @@ "par_idN105FF\n" "help.text" msgid "If \"Group text - By 1st level paragraphs\" is selected, the paragraphs are animated one after the other." -msgstr "" +msgstr "Bila \"Kelompokkan teks - Menurut paragraf aras ke-1\" dipilih, paragraf dianimasikan satu demi satu." #: effectoptionstext.xhp msgctxt "" @@ -8832,7 +8833,7 @@ "par_idN1067F\n" "help.text" msgid "Enter an additional delay in seconds to animate subsequent paragraphs." -msgstr "" +msgstr "Masukkan suatu tundaan tambahan dalam detik untuk menganimasikan paragraf-paragraf berikutnya." #: effectoptionstext.xhp msgctxt "" @@ -8848,7 +8849,7 @@ "par_idN10606\n" "help.text" msgid "Deselect this box to animate only the text, not the shape." -msgstr "" +msgstr "Keluarkan kotak ini dari pilihan untuk menganimasikan hanya teks, bukan bentuknya." #: effectoptionstext.xhp msgctxt "" @@ -9072,7 +9073,7 @@ "par_idN10544\n" "help.text" msgid "Page Slide Pane" -msgstr "" +msgstr "Panel HalamanSalindia" #: slidesorter.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/id/helpcontent2/source/text/swriter/01.po libreoffice-l10n-4.3.2/translations/source/id/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/id/helpcontent2/source/text/swriter/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/id/helpcontent2/source/text/swriter/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: swriter 3.6\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2014-06-25 17:42+0200\n" -"PO-Revision-Date: 2014-07-22 19:49+0000\n" +"PO-Revision-Date: 2014-09-03 04:23+0000\n" "Last-Translator: Andika \n" "Language-Team: Indonesia \n" "Language: id\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406058571.000000\n" +"X-POOTLE-MTIME: 1409718193.000000\n" #: 01120000.xhp msgctxt "" @@ -3733,7 +3733,7 @@ "4\n" "help.text" msgid "To change the default field display to field names instead of the field contents, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - View, and then select the Field codes checkbox in the Display area." -msgstr "" +msgstr "Untuk mengubah tampilan ruas baku ke nama ruas bukan isi ruas, pilih %PRODUCTNAME - PreferensiAlat - Opsi - %PRODUCTNAME Writer - Tilik, lalu pilih kotak contreng Kode ruas dalam area Tampilan." #: 03090000.xhp msgctxt "" @@ -3795,7 +3795,7 @@ "6\n" "help.text" msgid "To specify which nonprinting characters are displayed, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids, and then select the options that you want in the Display of area." -msgstr "" +msgstr "Untuk menyatakan karakter non cetak mana yang ditampilkan, pilih %PRODUCTNAME - PreferensiAlat - Opsi - %PRODUCTNAME Writer - Bantuan Pemformatan, lalu pilih opsi yang Anda inginkan dalam area Tampilan dari." #: 03120000.xhp msgctxt "" @@ -3882,7 +3882,7 @@ "3\n" "help.text" msgid "To enable this feature, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids, and ensure that the Hidden paragraphs check box in the Display of area is selected." -msgstr "" +msgstr "Untuk memfungsikan fitur ini, pilih %PRODUCTNAME - PreferensiAlat - Opsi - %PRODUCTNAME Writer - Bantuan Pemformatan, dan pastikan bahwa kontak contreng Paragraf tersembunyi dalam area Tampilan dari dipilih." #: 03140000.xhp msgctxt "" @@ -4034,7 +4034,7 @@ "15\n" "help.text" msgid "Select the page style for the page that follows the manual page break." -msgstr "" +msgstr "Pilih gaya halaman bagi halaman yang mengikuti putus halaman manual." #: 04010000.xhp msgctxt "" @@ -4070,7 +4070,7 @@ "21\n" "help.text" msgid "Enter the new page number for the page that follows the manual page break." -msgstr "" +msgstr "Masukkan nomor halaman baru bagi halaman yang mengikuti putus halaman manual." #: 04010000.xhp msgctxt "" @@ -4166,7 +4166,7 @@ "bm_id5941038\n" "help.text" msgid "sections;inserting sections by DDEDDE; command for inserting sections" -msgstr "" +msgstr "seksi;menyisipkan seksi dengan DDEDDE; perintah untuk menyisipkan seksi" #: 04020100.xhp msgctxt "" @@ -4202,7 +4202,7 @@ "7\n" "help.text" msgid "Type a name for the new section. By default, $[officename] automatically assigns the name \"Section X\" to new sections, where X is a consecutive number." -msgstr "" +msgstr "Ketikkan suatu nama bagi seksi baru. Secara baku, $[officename] secara otomatis menugaskan nama \"Seksi X\" ke seksi baru, dimana X adalah suatu nomor yang berurutan." #: 04020100.xhp msgctxt "" @@ -4229,7 +4229,7 @@ "21\n" "help.text" msgid "Inserts the contents of another document or section from another document in the current section." -msgstr "" +msgstr "Sisipkan isi dari dokumen atau seksi lain dari dokumen lain dalam seksi saat ini." #: 04020100.xhp msgctxt "" @@ -4247,7 +4247,7 @@ "27\n" "help.text" msgid "Creates a DDE link. Select this check box, and then enter the DDE command that you want to use. The DDE option is only available if the Link check box is selected." -msgstr "" +msgstr "Membuat sebuah taut DDE. Pilih kotak contreng ini, lalu masukkan perintah DDE yang ingin Anda pakai. Opsi DDE hanya tersedia bila kotak contreng Taut dipilih." #: 04020100.xhp msgctxt "" @@ -4256,7 +4256,7 @@ "34\n" "help.text" msgid "The general syntax for a DDE command is: \" \", where server is the DDE name for the application that contains the data. Topic refers to the location of the Item (usually the file name), and Item represents the actual object." -msgstr "" +msgstr "Sintaks umum bagi suatu perintah DDE adalah: \" \", dimana server adalah nama DDE bagi aplikasi yang memuat data. Topik mengacu ke lokasi Butir (biasanya nama berkas), dan Butir merepresentasikan objek sebenarnya." #: 04020100.xhp msgctxt "" @@ -4265,7 +4265,7 @@ "35\n" "help.text" msgid "For example, to insert a section named \"Section1\" from a $[officename] text document abc.sxw as a DDE link, use the command: \"soffice x:\\abc.sxw Section1\". To insert the contents of the first cell from a MS Excel spreadsheet file called \"abc.xls\", use the command: \"excel x:\\[abc.xls]Sheet1 z1s1\". You can also copy the elements that you want to insert as a DDE link, and then Edit - Paste Special. You can then view the DDE command for the link, by selecting the contents and choosing Edit - Fields." -msgstr "" +msgstr "Sebagai contoh, untuk menyisipkan suatu seksi bernama \"Seksi1\" dari suatu dokumen teks $[officename] abc.sxw sebagai sebuah taut DDE, gunakan perintah: \"soffice x:\\abc.sxw Seksi1\". Untuk menyisipkan isi dari sel pertama dari suatu berkas lembar kerja MS Excel bernama \"abc.xls\", gunakan perintah: \"excel x:\\[abc.xls]Sheet1 z1s1\". Anda juga dapat menyalin elemen yang ingin Anda sisipka sebagai suatu taut DDE, lalu Sunting - Tempel Khusus. Lalu Anda dapat menilik perintah DDE bagi taut, dengan memilih isi dan memilih Sunting - Ruas." #: 04020100.xhp msgctxt "" @@ -4274,7 +4274,7 @@ "28\n" "help.text" msgid "File name / DDE command " -msgstr "" +msgstr "Nama berkas / DDE perintah" #: 04020100.xhp msgctxt "" @@ -4283,7 +4283,7 @@ "29\n" "help.text" msgid "Enter the path and the filename for the file that you want to insert, or click the browse button (...) to locate the file.If the DDE check box is selected, enter the DDE command that you want to use. " -msgstr "" +msgstr "Masukkan path dan nama berkas bagi berkas yang ingin Anda sisipkan, atau klik tombol ramban (...) untuk menentukan lokasi berkas.Bila kotak contreng DDE dipilih, masukkan perintah DDE yang ingin Anda pakai." #: 04020100.xhp msgctxt "" @@ -4301,7 +4301,7 @@ "40\n" "help.text" msgid "Locate the file that you want to insert as a link, and then click Insert." -msgstr "" +msgstr "Tentukan lokasi berkas yang ingin Anda sisipkan sebagai suatu taut, lalu klik Sisip." #: 04020100.xhp msgctxt "" @@ -4319,7 +4319,7 @@ "24\n" "help.text" msgid "Select the section in the file that you want to insert as a link." -msgstr "" +msgstr "Pilih seksi dalam suatu berkas yang ingin Anda sisipkan sebagai suatu taut." #: 04020100.xhp msgctxt "" @@ -4328,7 +4328,7 @@ "25\n" "help.text" msgid "When you open a document that contains linked sections, you are prompted to update the links." -msgstr "" +msgstr "Ketika Anda membuka suatu dokumen yang memuat seksi tertaut, Anda ditanya apakah akan memutakhirkan taut." #: 04020100.xhp msgctxt "" @@ -4355,7 +4355,7 @@ "11\n" "help.text" msgid "Prevents the selected section from being edited." -msgstr "" +msgstr "Mencegah seksi yang dipilih disunting." #: 04020100.xhp msgctxt "" @@ -4373,7 +4373,7 @@ "45\n" "help.text" msgid "Protects the selected section with a password. The password must have a minimum of 5 characters." -msgstr "" +msgstr "Melindungi seksi yang dipilih dengan sandi. Sandi mesti minimum 5 karakter." #: 04020100.xhp msgctxt "" @@ -4391,7 +4391,7 @@ "47\n" "help.text" msgid "Opens a dialog where you can change the current password." -msgstr "" +msgstr "Membuka suatu dialog dimana Anda dapat mengubah sandi saat ini." #: 04020100.xhp msgctxt "" @@ -4418,7 +4418,7 @@ "13\n" "help.text" msgid "Hides and prevents the selected section from being printed. The components of a hidden sections appear gray in the Navigator. When you rest your mouse pointer over a hidden component in the Navigator, the Help tip \"hidden\" is displayed." -msgstr "" +msgstr "Menyembunyikan dan mencegah seksi yang dipilih untuk dicetak. Komponen dari suatu seksi tersembunyi nampak abu-abu dalam Navigator. Ketika Anda mengistirahatkan penunjuk tetikus di atas suatu komponen tersembunyi dalam Navigator, tip Bantuan \"tersembunyi\" ditampilkan." #: 04020100.xhp msgctxt "" @@ -4427,7 +4427,7 @@ "50\n" "help.text" msgid "You cannot hide a section if it is the only content on a page, or in a header, footer, footnote, frame, or table cell." -msgstr "" +msgstr "Anda tak dapat menyembunyikan suatu seksi bila itu satu-satunya isi dalam sebuah halaman, atau dalam suatu kepala, kaki, catatan kaki, kerangka, atau sel tabel." #: 04020100.xhp msgctxt "" @@ -4445,7 +4445,7 @@ "17\n" "help.text" msgid "Enter the condition that must be met to hide the section. A condition is a logical expression, such as \"SALUTATION EQ Mr.\". For example, if you use the mail merge form letter feature to define a database field called \"Salutation\" that contains \"Mr.\", \"Ms.\", or \"Sir or Madam\", you can then specify that a section will only be printed if the salutation is \"Mr.\"." -msgstr "" +msgstr "Masukkan kondisi yang mesti dipenuhi untuk menyembunyikan seksi. Suatu kondisi adalah sebuah ekspresi lojik, seperti misalnya \"SALUTATION EQ Mr.\". Sebagai contoh, bila Anda memakai fitur surat formulir surat masal untuk mendefinisikan suatu ruas basis data bernama \"Salutation\" yang memuat \"Mr.\", \"Ms.\", atau \"Sir or Madam\", Anda lalu dapat menyatakan bahwa suatu seksi hanya akan dicetak bilah salutasi adalah \"Mr.\"." #: 04020100.xhp msgctxt "" @@ -4673,7 +4673,7 @@ "18\n" "help.text" msgid "Choose this option to define a character or symbol for the current footnote. This can be either a letter or number. To assign a special character, click the button at the bottom. " -msgstr "" +msgstr "Pilih opsi ini untuk mendefinisikan sebuah karakter atau simbol bagi catatan kaki saat ini. Ini bisa berupa suatu huruf atau angka. Untuk menugaskan sebuah karakter khusus, klik tombol di dasar." #: 04030000.xhp msgctxt "" @@ -4691,7 +4691,7 @@ "19\n" "help.text" msgid "Inserts a special character as a footnote or endnote anchor." -msgstr "" +msgstr "Sisipkan sebuah karakter khusus sebagai suatu jangkar catatan akhir atau catatan kaki." #: 04030000.xhp msgctxt "" @@ -4709,7 +4709,7 @@ "20\n" "help.text" msgid "Select whether to insert a footnote or an endnote. Endnote numbering is separate from the footnote numbering." -msgstr "" +msgstr "Pilih apakah akan menyisipkan sebuah catatan kaki atau catatan akhir. Penomoran catatan akhir terpisah dari penomoran catatan kaki." #: 04030000.xhp msgctxt "" @@ -4727,7 +4727,7 @@ "21\n" "help.text" msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page." -msgstr "" +msgstr "Menyisipkan suatu jangkar catatan kaki pada posisi kursor saat ini dalam dokumen, dan menambahkan suatu catatan kaki ke bagian dasar halaman." #: 04030000.xhp msgctxt "" @@ -16594,7 +16594,7 @@ "tit\n" "help.text" msgid "Picture" -msgstr "" +msgstr "Gambar" #: 05060000.xhp msgctxt "" @@ -16603,7 +16603,7 @@ "1\n" "help.text" msgid "Picture" -msgstr "" +msgstr "Gambar" #: 05060000.xhp msgctxt "" @@ -16624,13 +16624,14 @@ msgstr "" #: 05060000.xhp +#, fuzzy msgctxt "" "05060000.xhp\n" "par_id3150759\n" "3\n" "help.text" msgid "The Picture dialog contains the following tab pages:" -msgstr "" +msgstr "Dialog Sisip Seksi memuat tab-tab berikut:" #: 05060000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/id/sw/source/ui/docvw.po libreoffice-l10n-4.3.2/translations/source/id/sw/source/ui/docvw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/id/sw/source/ui/docvw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/id/sw/source/ui/docvw.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:02+0200\n" -"PO-Revision-Date: 2013-12-14 11:24+0000\n" +"PO-Revision-Date: 2014-09-03 11:17+0000\n" "Last-Translator: Andika \n" "Language-Team: LANGUAGE \n" "Language: id\n" @@ -12,9 +12,9 @@ "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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1387020250.0\n" +"X-POOTLE-MTIME: 1409743024.000000\n" #: access.src msgctxt "" @@ -222,7 +222,7 @@ "STR_FORMAT_ALL_NOTES\n" "string.text" msgid "All Comments" -msgstr "" +msgstr "Semua Komentar" #: annotation.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/id/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/id/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/id/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/id/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 4.2\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2014-07-30 10:57+0200\n" -"PO-Revision-Date: 2014-06-29 16:56+0000\n" +"PO-Revision-Date: 2014-09-03 11:17+0000\n" "Last-Translator: Andika \n" "Language-Team: Indonesian <>\n" "Language: id\n" @@ -12,9 +12,9 @@ "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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404060967.000000\n" +"X-POOTLE-MTIME: 1409743047.000000\n" #: abstractdialog.ui msgctxt "" @@ -5049,7 +5049,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Latar Belakang" #: framedialog.ui msgctxt "" @@ -8646,7 +8646,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Latar Belakang" #: objectdialog.ui msgctxt "" @@ -10495,7 +10495,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Latar Belakang" #: picturedialog.ui msgctxt "" @@ -13087,7 +13087,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Latar Belakang" #: templatedialog4.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/is/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/is/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/is/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/is/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: filters\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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-03-19 08:15+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -48,8 +48,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 skjal" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,8 +93,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks skjal" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,8 +228,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks skjal" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,8 +660,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works fyrir Mac skjal (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/is/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/is/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/is/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/is/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-01-11 17:21+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13054,14 +13054,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/dbaccess/source/ext/macromigration.po libreoffice-l10n-4.3.2/translations/source/it/dbaccess/source/ext/macromigration.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/dbaccess/source/ext/macromigration.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/dbaccess/source/ext/macromigration.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408462556.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/dbaccess/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/it/dbaccess/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/dbaccess/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/dbaccess/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408462634.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/extensions/source/bibliography.po libreoffice-l10n-4.3.2/translations/source/it/extensions/source/bibliography.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/extensions/source/bibliography.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/extensions/source/bibliography.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408028641.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/extensions/source/propctrlr.po libreoffice-l10n-4.3.2/translations/source/it/extensions/source/propctrlr.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/extensions/source/propctrlr.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/extensions/source/propctrlr.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408029642.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/it/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-08-19 15:38+0000\n" "Last-Translator: Valter \n" "Language-Team: Italian \n" @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408462728.000000\n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento GreatWorks" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento GreatWorks" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Documento Microsoft Works per Mac (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Documento Microsoft Works per Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Documento Microsoft Works per Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/filter/source/config/fragments/types.po libreoffice-l10n-4.3.2/translations/source/it/filter/source/config/fragments/types.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/filter/source/config/fragments/types.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/filter/source/config/fragments/types.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408452196.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/filter/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/it/filter/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/filter/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/filter/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408462822.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/sdraw.po libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/sdraw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/sdraw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/sdraw.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408456211.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/shared/01.po libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/shared/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/shared/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408456740.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/shared/02.po libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/shared/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/shared/02.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408456955.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.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: 2014-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-08-19 14:04+0000\n" "Last-Translator: Valter \n" "Language-Team: Italian \n" @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408457055.000000\n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programmazione in %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "La funzionalità di registrazione macro è disponibile solo per documenti di testo in %PRODUCTNAME Writer e per fogli elettronici in %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/shared/optionen.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/shared/optionen.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408457214.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/simpress/00.po libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/simpress/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/simpress/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/simpress/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408457332.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/simpress/01.po libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/simpress/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/simpress/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408459408.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/simpress/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/simpress/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408460684.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/swriter/01.po libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/swriter/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/swriter/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1408460842.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/helpcontent2/source/text/swriter/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/helpcontent2/source/text/swriter/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1408462179.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-4.3.2/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po 2014-09-16 19:55:40.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: 2014-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-08-19 15:44+0000\n" +"PO-Revision-Date: 2014-08-31 15:29+0000\n" "Last-Translator: Valter \n" "Language-Team: Italian \n" "Language: it\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408463075.000000\n" +"X-POOTLE-MTIME: 1409498942.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -7646,7 +7646,7 @@ "Label\n" "value.text" msgid "New Master" -msgstr "Nuovo documento master" +msgstr "Nuovo schema" #: DrawImpressCommands.xcu msgctxt "" @@ -7655,7 +7655,7 @@ "Label\n" "value.text" msgid "Delete Master" -msgstr "Elimina documento master" +msgstr "Elimina schema" #: DrawImpressCommands.xcu msgctxt "" @@ -7664,7 +7664,7 @@ "Label\n" "value.text" msgid "Rename Master" -msgstr "Rinomina documento master" +msgstr "Rinomina schema" #: DrawImpressCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/sc/source/ui/src.po libreoffice-l10n-4.3.2/translations/source/it/sc/source/ui/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/sc/source/ui/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/sc/source/ui/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408463456.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/scp2/source/accessories.po libreoffice-l10n-4.3.2/translations/source/it/scp2/source/accessories.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/scp2/source/accessories.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/scp2/source/accessories.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408463568.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/scp2/source/draw.po libreoffice-l10n-4.3.2/translations/source/it/scp2/source/draw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/scp2/source/draw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/scp2/source/draw.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408463595.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/scp2/source/ooo.po libreoffice-l10n-4.3.2/translations/source/it/scp2/source/ooo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/scp2/source/ooo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/scp2/source/ooo.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408463612.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/scp2/source/writer.po libreoffice-l10n-4.3.2/translations/source/it/scp2/source/writer.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/scp2/source/writer.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/scp2/source/writer.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408453921.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/it/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: libreoffice\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2014-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-08-19 13:14+0000\n" +"PO-Revision-Date: 2014-08-31 15:34+0000\n" "Last-Translator: Valter \n" "Language-Team: Italian \n" "Language: it\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408454064.000000\n" +"X-POOTLE-MTIME: 1409499293.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -284,7 +284,7 @@ "SID_DISPLAY_MASTER_BACKGROUND\n" "menuitem.text" msgid "Display Background of Master" -msgstr "Visualizza sfondo master" +msgstr "Visualizza sfondo dello schema" #: menuids_tmpl.src msgctxt "" @@ -293,7 +293,7 @@ "SID_DISPLAY_MASTER_OBJECTS\n" "menuitem.text" msgid "Display Objects from Master" -msgstr "Visualizza oggetti dal master" +msgstr "Visualizza oggetti dallo schema" #: menuids_tmpl.src msgctxt "" @@ -338,7 +338,7 @@ "SID_DELETE_MASTER_PAGE\n" "menuitem.text" msgid "D~elete Master" -msgstr "~Elimina documento master" +msgstr "~Elimina schema" #: menuids_tmpl.src msgctxt "" @@ -365,7 +365,7 @@ "SID_RENAME_MASTER_PAGE\n" "menuitem.text" msgid "~Rename Master" -msgstr "~Rinomina documento master" +msgstr "~Rinomina schema" #: menuids_tmpl.src msgctxt "" @@ -1535,7 +1535,7 @@ "SID_TP_EDIT_MASTER\n" "menuitem.text" msgid "~Edit Master..." -msgstr "Modifica Master..." +msgstr "~Modifica schema..." #: popup.src msgctxt "" @@ -3930,7 +3930,7 @@ "STR_TASKPANEL_MASTER_PAGE_TITLE\n" "string.text" msgid "Master Pages" -msgstr "Pagine master" +msgstr "Pagine schema" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/sd/uiconfig/simpress/ui.po libreoffice-l10n-4.3.2/translations/source/it/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/sd/uiconfig/simpress/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/sd/uiconfig/simpress/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408454245.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/svtools/source/contnr.po libreoffice-l10n-4.3.2/translations/source/it/svtools/source/contnr.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/svtools/source/contnr.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/svtools/source/contnr.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408463886.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/svtools/source/misc.po libreoffice-l10n-4.3.2/translations/source/it/svtools/source/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/svtools/source/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/svtools/source/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408463966.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/sw/source/core/undo.po libreoffice-l10n-4.3.2/translations/source/it/sw/source/core/undo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/sw/source/core/undo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/sw/source/core/undo.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408464212.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/sw/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/it/sw/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/sw/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/sw/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408465307.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/sw/source/ui/globdoc.po libreoffice-l10n-4.3.2/translations/source/it/sw/source/ui/globdoc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/sw/source/ui/globdoc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/sw/source/ui/globdoc.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,10 +2,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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:05+0200\n" -"PO-Revision-Date: 2011-04-05 23:01+0200\n" -"Last-Translator: Andras \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:02+0200\n" +"PO-Revision-Date: 2014-08-31 15:36+0000\n" +"Last-Translator: Valter \n" "Language-Team: LANGUAGE \n" "Language: it\n" "MIME-Version: 1.0\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1409499373.000000\n" #: globdoc.src msgctxt "" @@ -29,4 +30,4 @@ "STR_WRITER_GLOBALDOC_FULLTYPE\n" "string.text" msgid "%PRODUCTNAME %PRODUCTVERSION Master Document" -msgstr "%PRODUCTNAME %PRODUCTVERSION - Documento master" +msgstr "Documento master %PRODUCTNAME %PRODUCTVERSION" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/it/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408464430.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/sysui/desktop/share.po libreoffice-l10n-4.3.2/translations/source/it/sysui/desktop/share.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/sysui/desktop/share.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/sysui/desktop/share.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1408464939.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/uui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/it/uui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/uui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/uui/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408454965.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/wizards/source/euro.po libreoffice-l10n-4.3.2/translations/source/it/wizards/source/euro.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/wizards/source/euro.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/wizards/source/euro.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408465020.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/wizards/source/formwizard.po libreoffice-l10n-4.3.2/translations/source/it/wizards/source/formwizard.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/wizards/source/formwizard.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/wizards/source/formwizard.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408027710.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/wizards/source/importwizard.po libreoffice-l10n-4.3.2/translations/source/it/wizards/source/importwizard.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/wizards/source/importwizard.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/wizards/source/importwizard.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408025487.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/wizards/source/template.po libreoffice-l10n-4.3.2/translations/source/it/wizards/source/template.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/wizards/source/template.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/wizards/source/template.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408465152.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/it/xmlsecurity/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/it/xmlsecurity/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/it/xmlsecurity/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/it/xmlsecurity/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408465198.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ja/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ja/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ja/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ja/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-19 09:16+0000\n" "Last-Translator: matuaki \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 ドキュメント" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 ドキュメント" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 ドキュメント" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks ドキュメント" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks ドキュメント" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks ドキュメント" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks ドキュメント" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks ドキュメント" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks ドキュメント" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac ドキュメント (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac ドキュメント (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac ドキュメント (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ja/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/ja/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ja/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ja/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-06-03 10:43+0000\n" "Last-Translator: baffclan \n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "%PRODUCTNAME 中でのプログラミング" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "マクロの記録機能は、%PRODUCTNAME Writer のドキュメントおよび %PRODUCTNAME Calc の表計算ドキュメントでのみ使用可能です。" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ja/sc/uiconfig/scalc/ui.po libreoffice-l10n-4.3.2/translations/source/ja/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ja/sc/uiconfig/scalc/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ja/sc/uiconfig/scalc/ui.po 2014-09-16 19:55:40.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: 2014-06-25 17:39+0200\n" -"PO-Revision-Date: 2014-08-09 23:05+0000\n" -"Last-Translator: baffclan \n" +"PO-Revision-Date: 2014-09-04 06:00+0000\n" +"Last-Translator: matuaki \n" "Language-Team: none\n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407625507.000000\n" +"X-POOTLE-MTIME: 1409810445.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -1204,14 +1204,13 @@ msgstr "" #: datafielddialog.ui -#, fuzzy msgctxt "" "datafielddialog.ui\n" "DataFieldDialog\n" "title\n" "string.text" msgid "Data Field" -msgstr "データフィールド:" +msgstr "データフィールド" #: datafielddialog.ui #, fuzzy @@ -4753,14 +4752,13 @@ msgstr "最適な列の幅" #: optimalcolwidthdialog.ui -#, fuzzy msgctxt "" "optimalcolwidthdialog.ui\n" "label1\n" "label\n" "string.text" msgid "Add" -msgstr "追加(_A)" +msgstr "追加" #: optimalcolwidthdialog.ui msgctxt "" @@ -4781,14 +4779,13 @@ msgstr "最適な行の高さ" #: optimalrowheightdialog.ui -#, fuzzy msgctxt "" "optimalrowheightdialog.ui\n" "label1\n" "label\n" "string.text" msgid "Add" -msgstr "追加(_A)" +msgstr "追加" #: optimalrowheightdialog.ui msgctxt "" @@ -5106,14 +5103,13 @@ msgstr "形式を選択して貼り付け" #: pastespecial.ui -#, fuzzy msgctxt "" "pastespecial.ui\n" "paste_all\n" "label\n" "string.text" msgid "_Paste all" -msgstr "すべて貼り付け(_P)" +msgstr "すべて貼り付け" #: pastespecial.ui #, fuzzy @@ -5318,24 +5314,22 @@ msgstr "" #: pivotfielddialog.ui -#, fuzzy msgctxt "" "pivotfielddialog.ui\n" "PivotFieldDialog\n" "title\n" "string.text" msgid "Data Field" -msgstr "データフィールド:" +msgstr "データフィールド" #: pivotfielddialog.ui -#, fuzzy msgctxt "" "pivotfielddialog.ui\n" "options\n" "label\n" "string.text" msgid "_Options..." -msgstr "オプション(_P)..." +msgstr "オプション(_O)..." #: pivotfielddialog.ui #, fuzzy @@ -5395,14 +5389,13 @@ msgstr "名前(_M):" #: pivotfilterdialog.ui -#, fuzzy msgctxt "" "pivotfilterdialog.ui\n" "PivotFilterDialog\n" "title\n" "string.text" msgid "Filter" -msgstr "フィルター(_F)" +msgstr "フィルター" #: pivotfilterdialog.ui msgctxt "" @@ -6140,24 +6133,22 @@ msgstr "パスワードを再入力" #: retypepassworddialog.ui -#, fuzzy msgctxt "" "retypepassworddialog.ui\n" "label4\n" "label\n" "string.text" msgid "Pa_ssword" -msgstr "パスワード(_P)" +msgstr "パスワード(_S)" #: retypepassworddialog.ui -#, fuzzy msgctxt "" "retypepassworddialog.ui\n" "label5\n" "label\n" "string.text" msgid "Confi_rm" -msgstr "確認(_C)" +msgstr "確認(_R)" #: retypepassworddialog.ui msgctxt "" @@ -6331,14 +6322,13 @@ msgstr "シナリオ名" #: scenariodialog.ui -#, fuzzy msgctxt "" "scenariodialog.ui\n" "label2\n" "label\n" "string.text" msgid "Comment" -msgstr "コメント(_C)" +msgstr "コメント" #: scenariodialog.ui msgctxt "" @@ -9059,14 +9049,13 @@ msgstr "オプション" #: subtotalgrppage.ui -#, fuzzy msgctxt "" "subtotalgrppage.ui\n" "label1\n" "label\n" "string.text" msgid "Group by:" -msgstr "グループ化" +msgstr "グループの基準" #: subtotalgrppage.ui msgctxt "" @@ -9102,7 +9091,7 @@ "1\n" "stringlist.text" msgid "Count" -msgstr "" +msgstr "総数" #: subtotalgrppage.ui msgctxt "" @@ -9141,17 +9130,15 @@ msgstr "総数(数値のみ)" #: subtotalgrppage.ui -#, fuzzy msgctxt "" "subtotalgrppage.ui\n" "liststore1\n" "6\n" "stringlist.text" msgid "StDev (Sample)" -msgstr "標準偏差(標本)" +msgstr "標準偏差(標本調査)" #: subtotalgrppage.ui -#, fuzzy msgctxt "" "subtotalgrppage.ui\n" "liststore1\n" @@ -9161,17 +9148,15 @@ msgstr "標準偏差(母集団)" #: subtotalgrppage.ui -#, fuzzy msgctxt "" "subtotalgrppage.ui\n" "liststore1\n" "8\n" "stringlist.text" msgid "Var (Sample)" -msgstr "分散(標本)" +msgstr "分散(標本調査)" #: subtotalgrppage.ui -#, fuzzy msgctxt "" "subtotalgrppage.ui\n" "liststore1\n" @@ -9907,7 +9892,7 @@ "label\n" "string.text" msgid "_Allow" -msgstr "許可する(_A)" +msgstr "入力値の種類(_A)" #: validationcriteriapage.ui msgctxt "" @@ -9919,24 +9904,22 @@ msgstr "データ(_D)" #: validationcriteriapage.ui -#, fuzzy msgctxt "" "validationcriteriapage.ui\n" "minft\n" "label\n" "string.text" msgid "_Minimum" -msgstr "最小値" +msgstr "最小値(_M)" #: validationcriteriapage.ui -#, fuzzy msgctxt "" "validationcriteriapage.ui\n" "maxft\n" "label\n" "string.text" msgid "Ma_ximum" -msgstr "最大値" +msgstr "最大値(_X)" #: validationcriteriapage.ui msgctxt "" @@ -9999,7 +9982,7 @@ "2\n" "stringlist.text" msgid "Decimal" -msgstr "" +msgstr "小数" #: validationcriteriapage.ui msgctxt "" @@ -10020,14 +10003,13 @@ msgstr "時刻" #: validationcriteriapage.ui -#, fuzzy msgctxt "" "validationcriteriapage.ui\n" "liststore1\n" "5\n" "stringlist.text" msgid "Cell range" -msgstr "セル範囲" +msgstr "セルの範囲" #: validationcriteriapage.ui msgctxt "" @@ -10036,7 +10018,7 @@ "6\n" "stringlist.text" msgid "List" -msgstr "" +msgstr "リスト" #: validationcriteriapage.ui msgctxt "" @@ -10045,7 +10027,7 @@ "7\n" "stringlist.text" msgid "Text length" -msgstr "" +msgstr "テキストの長さ" #: validationcriteriapage.ui msgctxt "" @@ -10054,7 +10036,7 @@ "0\n" "stringlist.text" msgid "equal" -msgstr "" +msgstr "次の値に等しい" #: validationcriteriapage.ui msgctxt "" @@ -10063,7 +10045,7 @@ "1\n" "stringlist.text" msgid "less than" -msgstr "" +msgstr "次の値より小さい" #: validationcriteriapage.ui msgctxt "" @@ -10072,7 +10054,7 @@ "2\n" "stringlist.text" msgid "greater than" -msgstr "" +msgstr "次の値より大きい" #: validationcriteriapage.ui msgctxt "" @@ -10081,7 +10063,7 @@ "3\n" "stringlist.text" msgid "less than or equal" -msgstr "" +msgstr "次の値以下" #: validationcriteriapage.ui msgctxt "" @@ -10102,24 +10084,22 @@ msgstr "等しくない" #: validationcriteriapage.ui -#, fuzzy msgctxt "" "validationcriteriapage.ui\n" "liststore2\n" "6\n" "stringlist.text" msgid "valid range" -msgstr "範囲に問題があります" +msgstr "有効な範囲" #: validationcriteriapage.ui -#, fuzzy msgctxt "" "validationcriteriapage.ui\n" "liststore2\n" "7\n" "stringlist.text" msgid "invalid range" -msgstr "範囲に問題があります" +msgstr "無効な範囲" #: validationdialog.ui msgctxt "" @@ -10128,7 +10108,7 @@ "title\n" "string.text" msgid "Validity" -msgstr "" +msgstr "データの入力規則" #: validationdialog.ui msgctxt "" @@ -10137,17 +10117,16 @@ "label\n" "string.text" msgid "Criteria" -msgstr "" +msgstr "条件" #: validationdialog.ui -#, fuzzy msgctxt "" "validationdialog.ui\n" "inputhelp\n" "label\n" "string.text" msgid "Input Help" -msgstr "入力時メッセージ(_I):" +msgstr "入力時メッセージ" #: validationdialog.ui msgctxt "" @@ -10249,11 +10228,10 @@ msgstr "ドキュメントに割り当て" #: xmlsourcedialog.ui -#, fuzzy msgctxt "" "xmlsourcedialog.ui\n" "ok\n" "label\n" "string.text" msgid "_Import" -msgstr "インポート" +msgstr "インポート(_I)" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ja/svtools/source/misc.po libreoffice-l10n-4.3.2/translations/source/ja/svtools/source/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ja/svtools/source/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ja/svtools/source/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407717284.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ja/svx/source/dialog.po libreoffice-l10n-4.3.2/translations/source/ja/svx/source/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ja/svx/source/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ja/svx/source/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407732373.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ja/svx/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ja/svx/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ja/svx/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ja/svx/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408017680.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ja/vcl/source/src.po libreoffice-l10n-4.3.2/translations/source/ja/vcl/source/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ja/vcl/source/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ja/vcl/source/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407633848.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ka/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ka/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ka/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ka/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-16 14:28+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ka/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/ka/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ka/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ka/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2011-10-31 23:59+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13056,14 +13056,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/desktop/source/deployment/gui.po libreoffice-l10n-4.3.2/translations/source/kk/desktop/source/deployment/gui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/desktop/source/deployment/gui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/desktop/source/deployment/gui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-12 02:55+0000\n" +"PO-Revision-Date: 2014-09-03 11:15+0000\n" "Last-Translator: Baurzhan \n" "Language-Team: LANGUAGE \n" "Language: kk\n" @@ -12,9 +12,9 @@ "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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407812133.000000\n" +"X-POOTLE-MTIME: 1409742913.000000\n" #: dp_gui_dependencydialog.src msgctxt "" @@ -401,7 +401,7 @@ "RID_DLG_UPDATE_NODEPENDENCY\n" "string.text" msgid "Required %PRODUCTNAME version doesn't match:" -msgstr "" +msgstr "Керек болған %PRODUCTNAME нұсқасы сәйкес келмейді:" #: dp_gui_updatedialog.src msgctxt "" @@ -457,7 +457,7 @@ "RID_DLG_UPDATE_IGNORED_UPDATE\n" "string.text" msgid "This update will be ignored.\n" -msgstr "" +msgstr "Бұл жаңартуды аттап кетеміз.\n" #: dp_gui_updatedialog.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/desktop/source/deployment/misc.po libreoffice-l10n-4.3.2/translations/source/kk/desktop/source/deployment/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/desktop/source/deployment/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/desktop/source/deployment/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407813301.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/desktop/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/kk/desktop/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/desktop/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/desktop/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407813345.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/kk/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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:08+0200\n" -"PO-Revision-Date: 2014-08-12 03:14+0000\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" +"PO-Revision-Date: 2014-09-03 01:23+0000\n" "Last-Translator: Baurzhan \n" "Language-Team: LANGUAGE \n" "Language: kk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407813278.000000\n" +"X-POOTLE-MTIME: 1409707418.000000\n" #: AbiWord.xcu msgctxt "" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 құжаты" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "BeagleWorks/WordPerfect Works v1 мәтіндік құжаты" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 құжаты" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "BeagleWorks/WordPerfect Works v1 эл. кестесі" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 құжаты" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "BeagleWorks/WordPerfect Works v1 суреті" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks құжаты" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "ClarisWorks/AppleWorks мәтіндік құжаты" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks құжаты" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "ClarisWorks/AppleWorks эл. кестесі" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks құжаты" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "ClarisWorks/AppleWorks суреті" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks құжаты" +msgid "GreatWorks Text Document" +msgstr "GreatWorks мәтіндік құжаты" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks құжаты" +msgid "GreatWorks Spreadsheet" +msgstr "GreatWorks эл. кестесі" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks құжаты" +msgid "GreatWorks Drawing" +msgstr "GreatWorks суреті" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Mac үшін Microsoft Works құжаты (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "Microsoft Works for Mac мәтіндік құжаты (v1 - v4)" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Mac үшін Microsoft Works құжаты (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "Microsoft Works for Mac эл. кестесі (v1 - v4)" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Mac үшін Microsoft Works құжаты (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "Microsoft Works for Mac суреті (v1 - v4)" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/formula/source/core/resource.po libreoffice-l10n-4.3.2/translations/source/kk/formula/source/core/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/formula/source/core/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/formula/source/core/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-08-26 04:30+0200\n" +"POT-Creation-Date: 2014-09-04 14:52+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-4.3.2/translations/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407813234.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/sc/source/ui/src.po libreoffice-l10n-4.3.2/translations/source/kk/sc/source/ui/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/sc/source/ui/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/sc/source/ui/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407903908.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/sc/source/ui/StatisticsDialogs.po libreoffice-l10n-4.3.2/translations/source/kk/sc/source/ui/StatisticsDialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/sc/source/ui/StatisticsDialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/sc/source/ui/StatisticsDialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407903543.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/sc/uiconfig/scalc/ui.po libreoffice-l10n-4.3.2/translations/source/kk/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/sc/uiconfig/scalc/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/sc/uiconfig/scalc/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407903514.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/scp2/source/ooo.po libreoffice-l10n-4.3.2/translations/source/kk/scp2/source/ooo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/scp2/source/ooo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/scp2/source/ooo.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407813013.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/kk/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407812932.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/sfx2/source/appl.po libreoffice-l10n-4.3.2/translations/source/kk/sfx2/source/appl.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/sfx2/source/appl.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/sfx2/source/appl.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407812919.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/kk/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407812972.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/svtools/source/misc.po libreoffice-l10n-4.3.2/translations/source/kk/svtools/source/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/svtools/source/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/svtools/source/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407813195.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/svtools/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/kk/svtools/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/svtools/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/svtools/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407813203.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/svx/source/dialog.po libreoffice-l10n-4.3.2/translations/source/kk/svx/source/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/svx/source/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/svx/source/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407844484.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/svx/source/gallery2.po libreoffice-l10n-4.3.2/translations/source/kk/svx/source/gallery2.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/svx/source/gallery2.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/svx/source/gallery2.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407844409.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/svx/source/stbctrls.po libreoffice-l10n-4.3.2/translations/source/kk/svx/source/stbctrls.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/svx/source/stbctrls.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/svx/source/stbctrls.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407844496.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/sw/source/core/uibase/inc.po libreoffice-l10n-4.3.2/translations/source/kk/sw/source/core/uibase/inc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/sw/source/core/uibase/inc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/sw/source/core/uibase/inc.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407813125.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/sw/source/ui/config.po libreoffice-l10n-4.3.2/translations/source/kk/sw/source/ui/config.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/sw/source/ui/config.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/sw/source/ui/config.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-05-24 16:54+0000\n" +"PO-Revision-Date: 2014-09-03 11:15+0000\n" "Last-Translator: Baurzhan \n" "Language-Team: LANGUAGE \n" "Language: kk\n" @@ -12,9 +12,9 @@ "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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1400950471.000000\n" +"X-POOTLE-MTIME: 1409742925.000000\n" #: optdlg.src msgctxt "" @@ -317,7 +317,7 @@ "Place in margins\n" "itemlist.text" msgid "Place in margins" -msgstr "" +msgstr "Өрістерде орналастыру" #: optload.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/kk/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407813150.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/vcl/source/src.po libreoffice-l10n-4.3.2/translations/source/kk/vcl/source/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/vcl/source/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/vcl/source/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407844501.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kk/wizards/source/formwizard.po libreoffice-l10n-4.3.2/translations/source/kk/wizards/source/formwizard.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kk/wizards/source/formwizard.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kk/wizards/source/formwizard.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407813398.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kl/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/kl/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kl/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kl/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-05-11 16:47+0200\n" "Last-Translator: David \n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/km/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/km/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/km/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/km/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: filters\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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-26 08:27+0000\n" "Last-Translator: Sutha \n" "Language-Team: Khmer \n" @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-Language: km-KH\n" "X-POOTLE-MTIME: 1403771220.000000\n" @@ -50,8 +50,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "ឯកសារ BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -59,8 +59,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "ឯកសារ BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -68,8 +68,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "ឯកសារ BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -95,8 +95,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ឯកសារ ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -104,8 +104,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ឯកសារ ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -113,8 +113,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ឯកសារ ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -230,8 +230,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "ឯកសារ GreatWorks" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -239,8 +239,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "ឯកសារ GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -248,8 +248,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "ឯកសារ GreatWorks" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -662,8 +662,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works សម្រាប់​ឯកសារ Mac (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -671,8 +671,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works សម្រាប់​ឯកសារ Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -680,8 +680,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works សម្រាប់​ឯកសារ Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/km/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/km/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/km/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/km/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: guide\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-07-14 02:04+0000\n" "Last-Translator: Sutha \n" "Language-Team: Khmer \n" @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-Language: km-KH\n" "X-POOTLE-MTIME: 1405303486.000000\n" @@ -13056,14 +13056,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "កម្មវិធី​ក្នុង​ %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "មុខងារ​កត់ត្រា​ម៉ាក្រូ ​អាច​ប្រើ​បាន​សម្រាប់​តែ​ឯកសារ​អត្ថបទ​ក្នុង​ %PRODUCTNAME Writer និង​ សម្រាប់​តែ​​សៀវភៅ​បញ្ជីក្នុង​ %PRODUCTNAME Calc ប៉ុណ្ណោះ ។" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kmr-Latn/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/kmr-Latn/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kmr-Latn/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kmr-Latn/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-04-14 23:07+0200\n" "Last-Translator: Erdal \n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -663,7 +663,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -672,7 +672,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -681,7 +681,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kn/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/kn/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kn/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kn/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-07-27 16:47+0530\n" "Last-Translator: Shankar Prasad \n" "Language-Team: American English \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ko/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ko/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ko/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ko/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-02-17 05:41+0000\n" "Last-Translator: keysuck \n" "Language-Team: LANGUAGE \n" @@ -49,7 +49,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,7 +94,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -229,7 +229,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -667,7 +667,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -676,7 +676,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -685,7 +685,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ko/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/ko/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ko/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ko/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-12-01 16:29+0000\n" "Last-Translator: kentarch \n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "%PRODUCTNAME에서의 프로그래밍" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "매크로 기록 기능은 %PRODUCTNAME Writer의 텍스트 문서와 %PRODUCTNAME Calc의 스프레드시트에만 사용할 수 있습니다." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/kok/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/kok/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/kok/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/kok/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-16 14:38+0200\n" "Last-Translator: Andras \n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -662,7 +662,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -671,7 +671,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -680,7 +680,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ks/accessibility/source/helper.po libreoffice-l10n-4.3.2/translations/source/ks/accessibility/source/helper.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ks/accessibility/source/helper.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ks/accessibility/source/helper.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407924039.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ks/avmedia/source/viewer.po libreoffice-l10n-4.3.2/translations/source/ks/avmedia/source/viewer.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ks/avmedia/source/viewer.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ks/avmedia/source/viewer.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407924183.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ks/basctl/source/basicide.po libreoffice-l10n-4.3.2/translations/source/ks/basctl/source/basicide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ks/basctl/source/basicide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ks/basctl/source/basicide.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407924232.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ks/basctl/source/dlged.po libreoffice-l10n-4.3.2/translations/source/ks/basctl/source/dlged.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ks/basctl/source/dlged.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ks/basctl/source/dlged.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407924288.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ks/basctl/uiconfig/basicide/ui.po libreoffice-l10n-4.3.2/translations/source/ks/basctl/uiconfig/basicide/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ks/basctl/uiconfig/basicide/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ks/basctl/uiconfig/basicide/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407924322.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ks/basic/source/classes.po libreoffice-l10n-4.3.2/translations/source/ks/basic/source/classes.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ks/basic/source/classes.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ks/basic/source/classes.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407924368.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ks/chart2/source/controller/dialogs.po libreoffice-l10n-4.3.2/translations/source/ks/chart2/source/controller/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ks/chart2/source/controller/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ks/chart2/source/controller/dialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407924615.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ks/chart2/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ks/chart2/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ks/chart2/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ks/chart2/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407924659.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ks/connectivity/registry/calc/org/openoffice/Office/DataAccess.po libreoffice-l10n-4.3.2/translations/source/ks/connectivity/registry/calc/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ks/connectivity/registry/calc/org/openoffice/Office/DataAccess.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ks/connectivity/registry/calc/org/openoffice/Office/DataAccess.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407924914.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ks/connectivity/registry/kab/org/openoffice/Office/DataAccess.po libreoffice-l10n-4.3.2/translations/source/ks/connectivity/registry/kab/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ks/connectivity/registry/kab/org/openoffice/Office/DataAccess.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ks/connectivity/registry/kab/org/openoffice/Office/DataAccess.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407925743.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ks/connectivity/registry/macab/org/openoffice/Office/DataAccess.po libreoffice-l10n-4.3.2/translations/source/ks/connectivity/registry/macab/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ks/connectivity/registry/macab/org/openoffice/Office/DataAccess.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ks/connectivity/registry/macab/org/openoffice/Office/DataAccess.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407925809.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ks/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ks/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ks/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ks/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-16 14:40+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -662,7 +662,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -671,7 +671,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -680,7 +680,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ky/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ky/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ky/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ky/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -659,7 +659,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -668,7 +668,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -677,7 +677,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/lb/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/lb/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/lb/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/lb/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2011-12-23 08:58+0200\n" "Last-Translator: Edson \n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -663,7 +663,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -672,7 +672,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -681,7 +681,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/lo/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/lo/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/lo/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/lo/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-16 14:47+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -663,7 +663,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -672,7 +672,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -681,7 +681,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/lt/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/lt/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/lt/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/lt/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-08-17 12:17+0200\n" "Last-Translator: Modestas \n" "Language-Team: Lithuanian \n" @@ -49,7 +49,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,7 +94,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -229,7 +229,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -661,7 +661,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -670,7 +670,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -679,7 +679,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/lv/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/lv/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/lv/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/lv/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-07-31 11:24+0300\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian \n" @@ -12,7 +12,7 @@ "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 != 0 ? 1 : 2);\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" #: AbiWord.xcu @@ -48,8 +48,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokuments" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -57,8 +57,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokuments" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -66,8 +66,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 dokuments" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -93,8 +93,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks dokuments" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -102,8 +102,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks dokuments" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -111,8 +111,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks dokuments" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -228,8 +228,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks dokuments" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -237,8 +237,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks dokuments" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -246,8 +246,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks dokuments" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -660,8 +660,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works sistēmai Mac dokuments (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -669,8 +669,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works sistēmai Mac dokuments (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -678,8 +678,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works sistēmai Mac dokuments (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/lv/sc/source/ui/src.po libreoffice-l10n-4.3.2/translations/source/lv/sc/source/ui/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/lv/sc/source/ui/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/lv/sc/source/ui/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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 != 0 ? 1 : 2);\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1358847961.0\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/lv/sc/source/ui/StatisticsDialogs.po libreoffice-l10n-4.3.2/translations/source/lv/sc/source/ui/StatisticsDialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/lv/sc/source/ui/StatisticsDialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/lv/sc/source/ui/StatisticsDialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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 != 0 ? 1 : 2);\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" #: StatisticsDialogs.src diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/mai/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/mai/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/mai/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/mai/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-16 14:52+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -662,7 +662,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -671,7 +671,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -680,7 +680,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/mk/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/mk/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/mk/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/mk/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-16 14:53+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -664,7 +664,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -673,7 +673,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -682,7 +682,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/mk/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/mk/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/mk/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/mk/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-12-01 17:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13061,14 +13061,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programming in %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ml/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ml/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ml/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ml/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-07-26 13:49+0200\n" "Last-Translator: anipeter \n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/mn/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/mn/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/mn/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/mn/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-16 14:57+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -663,7 +663,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -672,7 +672,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -681,7 +681,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/mni/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/mni/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/mni/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/mni/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-16 14:58+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -662,7 +662,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -671,7 +671,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -680,7 +680,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/mr/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/mr/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/mr/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/mr/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-08-22 09:55+0200\n" "Last-Translator: Sandeep \n" "Language-Team: Marathi \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/my/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/my/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/my/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/my/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 11:03+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -659,7 +659,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -668,7 +668,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -677,7 +677,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nb/basctl/uiconfig/basicide/ui.po libreoffice-l10n-4.3.2/translations/source/nb/basctl/uiconfig/basicide/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nb/basctl/uiconfig/basicide/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nb/basctl/uiconfig/basicide/ui.po 2014-09-16 19:55:40.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: 2014-05-02 00:02+0200\n" -"PO-Revision-Date: 2014-07-26 01:26+0000\n" +"PO-Revision-Date: 2014-08-31 16:45+0000\n" "Last-Translator: Olav \n" "Language-Team: none\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406338003.000000\n" +"X-POOTLE-MTIME: 1409503543.000000\n" #: basicmacrodialog.ui msgctxt "" @@ -419,7 +419,7 @@ "label\n" "string.text" msgid "The default language is used if no localization for a user interface locale is present. Furthermore all strings from the default language are copied to resources of newly added languages." -msgstr "" +msgstr "Hvis brukergrensesnittet ikke er oversatt blir standardspråket brukt. I tillegg blir alle strengene fra standardspråket kopiert inn når nye språk blir lagt til." #: managelanguages.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nb/chart2/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/nb/chart2/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nb/chart2/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nb/chart2/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:57+0200\n" -"PO-Revision-Date: 2014-01-16 23:02+0000\n" +"PO-Revision-Date: 2014-08-31 17:03+0000\n" "Last-Translator: Olav \n" "Language-Team: Norwegian Bokmål <>\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1389913371.0\n" +"X-POOTLE-MTIME: 1409504639.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -23,7 +23,7 @@ "title\n" "string.text" msgid "3D View" -msgstr "" +msgstr "3D-visning" #: chardialog.ui msgctxt "" @@ -32,7 +32,7 @@ "title\n" "string.text" msgid "Character" -msgstr "" +msgstr "Tegn" #: chardialog.ui msgctxt "" @@ -41,7 +41,7 @@ "label\n" "string.text" msgid "Font" -msgstr "" +msgstr "Skrift" #: chardialog.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "Font Effects" -msgstr "" +msgstr "Skrifteffekter" #: chardialog.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "Position" -msgstr "" +msgstr "Posisjon" #: chartdatadialog.ui msgctxt "" @@ -68,7 +68,7 @@ "title\n" "string.text" msgid "Data Table" -msgstr "" +msgstr "Datatabell" #: chartdatadialog.ui msgctxt "" @@ -77,7 +77,7 @@ "label\n" "string.text" msgid "Insert Row" -msgstr "" +msgstr "Sett inn rad" #: chartdatadialog.ui msgctxt "" @@ -86,7 +86,7 @@ "label\n" "string.text" msgid "Insert Series" -msgstr "" +msgstr "Sett inn serie" #: chartdatadialog.ui msgctxt "" @@ -95,7 +95,7 @@ "label\n" "string.text" msgid "Insert Text Column" -msgstr "" +msgstr "Sett inn tekstkolonne" #: chartdatadialog.ui msgctxt "" @@ -104,7 +104,7 @@ "label\n" "string.text" msgid "Delete Row" -msgstr "" +msgstr "Slett rad" #: chartdatadialog.ui msgctxt "" @@ -113,7 +113,7 @@ "label\n" "string.text" msgid "Delete Series" -msgstr "" +msgstr "Slett serie" #: chartdatadialog.ui msgctxt "" @@ -122,7 +122,7 @@ "label\n" "string.text" msgid "Move Series Right" -msgstr "" +msgstr "Flytt serien til høyre" #: chartdatadialog.ui msgctxt "" @@ -131,7 +131,7 @@ "label\n" "string.text" msgid "Move Row Down" -msgstr "" +msgstr "Flytt rad ned" #: charttypedialog.ui msgctxt "" @@ -140,7 +140,7 @@ "title\n" "string.text" msgid "Chart Type" -msgstr "" +msgstr "Diagramtype" #: datarangedialog.ui msgctxt "" @@ -149,7 +149,7 @@ "title\n" "string.text" msgid "Data Ranges" -msgstr "" +msgstr "Dataområder" #: dlg_DataLabel.ui msgctxt "" @@ -248,7 +248,7 @@ "label\n" "string.text" msgid "Number Format for Percentage Value" -msgstr "" +msgstr "Tallformat for prosentverdi" #: dlg_DataLabel.ui msgctxt "" @@ -257,7 +257,7 @@ "label\n" "string.text" msgid "Text Attributes" -msgstr "" +msgstr "Tekstattributter" #: dlg_DataLabel.ui msgctxt "" @@ -266,7 +266,7 @@ "label\n" "string.text" msgid "_Degrees" -msgstr "" +msgstr "_Grader" #: dlg_DataLabel.ui msgctxt "" @@ -275,7 +275,7 @@ "label\n" "string.text" msgid "Te_xt direction" -msgstr "" +msgstr "_Tekstretning" #: dlg_DataLabel.ui msgctxt "" @@ -284,7 +284,7 @@ "label\n" "string.text" msgid "Rotate Text" -msgstr "" +msgstr "Roter tekst" #: dlg_DataLabel.ui msgctxt "" @@ -293,7 +293,7 @@ "0\n" "stringlist.text" msgid "Best fit" -msgstr "" +msgstr "Beste tilpasning" #: dlg_DataLabel.ui msgctxt "" @@ -302,7 +302,7 @@ "1\n" "stringlist.text" msgid "Center" -msgstr "" +msgstr "Sentrert" #: dlg_DataLabel.ui msgctxt "" @@ -311,7 +311,7 @@ "2\n" "stringlist.text" msgid "Above" -msgstr "" +msgstr "Over" #: dlg_DataLabel.ui msgctxt "" @@ -320,7 +320,7 @@ "3\n" "stringlist.text" msgid "Top left" -msgstr "" +msgstr "Øverst til venstre" #: dlg_DataLabel.ui msgctxt "" @@ -395,13 +395,14 @@ msgstr "" #: dlg_DataLabel.ui +#, fuzzy msgctxt "" "dlg_DataLabel.ui\n" "liststorePLACEMENT\n" "12\n" "stringlist.text" msgid "Near origin" -msgstr "" +msgstr "Nær origo" #: dlg_DataLabel.ui msgctxt "" @@ -410,7 +411,7 @@ "0\n" "stringlist.text" msgid "Space" -msgstr "" +msgstr "Mellomrom" #: dlg_DataLabel.ui msgctxt "" @@ -419,7 +420,7 @@ "1\n" "stringlist.text" msgid "Comma" -msgstr "" +msgstr "Komma" #: dlg_DataLabel.ui msgctxt "" @@ -428,7 +429,7 @@ "2\n" "stringlist.text" msgid "Semicolon" -msgstr "" +msgstr "Semikolon" #: dlg_DataLabel.ui msgctxt "" @@ -437,7 +438,7 @@ "3\n" "stringlist.text" msgid "New line" -msgstr "" +msgstr "Ny linje" #: dlg_InsertErrorBars.ui msgctxt "" @@ -446,7 +447,7 @@ "title\n" "string.text" msgid "Legend" -msgstr "" +msgstr "Forklaring" #: dlg_InsertErrorBars.ui msgctxt "" @@ -455,7 +456,7 @@ "label\n" "string.text" msgid "_None" -msgstr "" +msgstr "I_ngen" #: dlg_InsertErrorBars.ui msgctxt "" @@ -464,7 +465,7 @@ "label\n" "string.text" msgid "_Constant Value" -msgstr "" +msgstr "_Konstantverdi" #: dlg_InsertErrorBars.ui msgctxt "" @@ -473,7 +474,7 @@ "label\n" "string.text" msgid "_Percentage" -msgstr "" +msgstr "_Prosent" #: dlg_InsertErrorBars.ui msgctxt "" @@ -563,7 +564,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Velg dataområde" #: dlg_InsertErrorBars.ui msgctxt "" @@ -572,7 +573,7 @@ "label\n" "string.text" msgid "Same value for both" -msgstr "" +msgstr "Samme verdi for begge" #: dlg_InsertErrorBars.ui msgctxt "" @@ -581,7 +582,7 @@ "label\n" "string.text" msgid "Parameters" -msgstr "" +msgstr "Parametre" #: dlg_InsertErrorBars.ui msgctxt "" @@ -590,7 +591,7 @@ "label\n" "string.text" msgid "Select Range for Positive Error Bars" -msgstr "" +msgstr "Velg et område for positive feilinjer" #: dlg_InsertErrorBars.ui msgctxt "" @@ -599,7 +600,7 @@ "label\n" "string.text" msgid "Select Range for Negative Error Bars" -msgstr "" +msgstr "Velg et område for negative feilinjer" #: dlg_InsertErrorBars.ui msgctxt "" @@ -608,7 +609,7 @@ "label\n" "string.text" msgid "From Data Table" -msgstr "" +msgstr "Fra datatabell" #: dlg_InsertErrorBars.ui msgctxt "" @@ -617,7 +618,7 @@ "0\n" "stringlist.text" msgid "Standard Error" -msgstr "" +msgstr "Standardfeil" #: dlg_InsertErrorBars.ui msgctxt "" @@ -626,7 +627,7 @@ "1\n" "stringlist.text" msgid "Standard Deviation" -msgstr "" +msgstr "Standardavvik" #: dlg_InsertErrorBars.ui msgctxt "" @@ -635,7 +636,7 @@ "2\n" "stringlist.text" msgid "Variance" -msgstr "" +msgstr "Varians" #: dlg_InsertErrorBars.ui msgctxt "" @@ -878,7 +879,7 @@ "title\n" "string.text" msgid "Titles" -msgstr "" +msgstr "Titler" #: inserttitledlg.ui msgctxt "" @@ -887,7 +888,7 @@ "label\n" "string.text" msgid "_Title" -msgstr "" +msgstr "_Tittel" #: inserttitledlg.ui msgctxt "" @@ -896,7 +897,7 @@ "label\n" "string.text" msgid "_Subtitle" -msgstr "" +msgstr "_Undertittel" #: inserttitledlg.ui msgctxt "" @@ -905,7 +906,7 @@ "label\n" "string.text" msgid "_X axis" -msgstr "" +msgstr "_X-akse" #: inserttitledlg.ui msgctxt "" @@ -914,7 +915,7 @@ "label\n" "string.text" msgid "_Y axis" -msgstr "" +msgstr "_Y-akse" #: inserttitledlg.ui msgctxt "" @@ -923,7 +924,7 @@ "label\n" "string.text" msgid "_Z axis" -msgstr "" +msgstr "_Z-akse" #: inserttitledlg.ui msgctxt "" @@ -932,7 +933,7 @@ "label\n" "string.text" msgid "Axes" -msgstr "" +msgstr "Akser" #: inserttitledlg.ui msgctxt "" @@ -941,7 +942,7 @@ "label\n" "string.text" msgid "X _axis" -msgstr "" +msgstr "_X-akse" #: inserttitledlg.ui msgctxt "" @@ -950,7 +951,7 @@ "label\n" "string.text" msgid "Y ax_is" -msgstr "" +msgstr "_Y-akse" #: inserttitledlg.ui msgctxt "" @@ -1202,7 +1203,7 @@ "label\n" "string.text" msgid "_Rounded edges" -msgstr "" +msgstr "Av_rundede kanter" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1211,7 +1212,7 @@ "0\n" "stringlist.text" msgid "Simple" -msgstr "" +msgstr "Enkel" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1220,7 +1221,7 @@ "1\n" "stringlist.text" msgid "Realistic" -msgstr "" +msgstr "Realistisk" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1229,7 +1230,7 @@ "2\n" "stringlist.text" msgid "Custom" -msgstr "" +msgstr "Selvvalgt" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1238,7 +1239,7 @@ "label\n" "string.text" msgid "_Right-angled axes" -msgstr "" +msgstr "_Rettvinklede akser" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1247,7 +1248,7 @@ "label\n" "string.text" msgid "_X rotation" -msgstr "" +msgstr "_X-rotasjon" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1256,7 +1257,7 @@ "label\n" "string.text" msgid "_Y rotation" -msgstr "" +msgstr "_Y-rotasjon" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1265,7 +1266,7 @@ "label\n" "string.text" msgid "_Z rotation" -msgstr "" +msgstr "_Z-rotasjon" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1274,7 +1275,7 @@ "label\n" "string.text" msgid "_Perspective" -msgstr "" +msgstr "_Perspektiv" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1364,7 +1365,7 @@ "tooltip_text\n" "string.text" msgid "Light source 5" -msgstr "" +msgstr "Lyskilde 5" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1373,7 +1374,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 6" -msgstr "" +msgstr "Lyskilde 6" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1382,7 +1383,7 @@ "tooltip_text\n" "string.text" msgid "Light source 6" -msgstr "" +msgstr "Lyskilde 6" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1391,7 +1392,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 7" -msgstr "" +msgstr "Lyskilde 7" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1400,7 +1401,7 @@ "tooltip_text\n" "string.text" msgid "Light source 7" -msgstr "" +msgstr "Lyskilde 7" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1409,7 +1410,7 @@ "tooltip_markup\n" "string.text" msgid "Light source 8" -msgstr "" +msgstr "Lyskilde 8" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1418,7 +1419,7 @@ "tooltip_text\n" "string.text" msgid "Light source 8" -msgstr "" +msgstr "Lyskilde 8" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1427,7 +1428,7 @@ "tooltip_markup\n" "string.text" msgid "Select a color using the color dialog" -msgstr "" +msgstr "Velg en farge fra dialogvinduet" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1436,7 +1437,7 @@ "tooltip_text\n" "string.text" msgid "Select a color using the color dialog" -msgstr "" +msgstr "Velg en farge fra dialogvinduet" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1526,7 +1527,7 @@ "3\n" "stringlist.text" msgid "Category" -msgstr "" +msgstr "Kategori" #: tp_AxisPositions.ui msgctxt "" @@ -1535,7 +1536,7 @@ "label\n" "string.text" msgid "Axis _between categories" -msgstr "" +msgstr "Akse _mellom kategorier" #: tp_AxisPositions.ui msgctxt "" @@ -1544,7 +1545,7 @@ "label\n" "string.text" msgid "Axis line" -msgstr "" +msgstr "Akselinje" #: tp_AxisPositions.ui msgctxt "" @@ -1553,7 +1554,7 @@ "label\n" "string.text" msgid "_Place labels" -msgstr "" +msgstr "_Plasser overskrifter" #: tp_AxisPositions.ui msgctxt "" @@ -1562,7 +1563,7 @@ "0\n" "stringlist.text" msgid "Near axis" -msgstr "" +msgstr "Nær aksen" #: tp_AxisPositions.ui msgctxt "" @@ -1571,7 +1572,7 @@ "1\n" "stringlist.text" msgid "Near axis (other side)" -msgstr "" +msgstr "Nær aksen (andre siden)" #: tp_AxisPositions.ui msgctxt "" @@ -1598,7 +1599,7 @@ "label\n" "string.text" msgid "_Distance" -msgstr "" +msgstr "_Distanse" #: tp_AxisPositions.ui msgctxt "" @@ -1688,7 +1689,7 @@ "1\n" "stringlist.text" msgid "At axis" -msgstr "" +msgstr "Ved aksen" #: tp_AxisPositions.ui msgctxt "" @@ -1697,7 +1698,7 @@ "2\n" "stringlist.text" msgid "At axis and labels" -msgstr "" +msgstr "Ved aksen og ved overskriftene" #: tp_AxisPositions.ui msgctxt "" @@ -1706,7 +1707,7 @@ "label\n" "string.text" msgid "Interval marks" -msgstr "" +msgstr "Intervallmerker" #: tp_AxisPositions.ui msgctxt "" @@ -1715,7 +1716,7 @@ "label\n" "string.text" msgid "Show major _grid" -msgstr "" +msgstr "Vis _hovedrutenettet" #: tp_AxisPositions.ui msgctxt "" @@ -1724,7 +1725,7 @@ "label\n" "string.text" msgid "_Show minor grid" -msgstr "" +msgstr "Vis _støtterutenett" #: tp_AxisPositions.ui msgctxt "" @@ -1733,7 +1734,7 @@ "label\n" "string.text" msgid "Mo_re..." -msgstr "" +msgstr "Me_r …" #: tp_AxisPositions.ui msgctxt "" @@ -1742,7 +1743,7 @@ "label\n" "string.text" msgid "Mor_e..." -msgstr "" +msgstr "Me_r …" #: tp_AxisPositions.ui msgctxt "" @@ -1751,7 +1752,7 @@ "label\n" "string.text" msgid "Grids" -msgstr "" +msgstr "Rutenett" #: tp_ChartType.ui msgctxt "" @@ -1760,7 +1761,7 @@ "label\n" "string.text" msgid "Choose a chart type" -msgstr "" +msgstr "Velg en diagramtype" #: tp_ChartType.ui msgctxt "" @@ -1832,7 +1833,7 @@ "label\n" "string.text" msgid "Deep" -msgstr "" +msgstr "Dyp" #: tp_ChartType.ui msgctxt "" @@ -1841,7 +1842,7 @@ "label\n" "string.text" msgid "_Line type" -msgstr "" +msgstr "_Linjetype" #: tp_ChartType.ui msgctxt "" @@ -1850,7 +1851,7 @@ "0\n" "stringlist.text" msgid "Straight" -msgstr "" +msgstr "Rett" #: tp_ChartType.ui msgctxt "" @@ -1859,7 +1860,7 @@ "1\n" "stringlist.text" msgid "Smooth" -msgstr "" +msgstr "Jevn" #: tp_ChartType.ui msgctxt "" @@ -1877,7 +1878,7 @@ "label\n" "string.text" msgid "Properties..." -msgstr "" +msgstr "Egenskaper …" #: tp_ChartType.ui msgctxt "" @@ -1886,7 +1887,7 @@ "label\n" "string.text" msgid "_Sort by X values" -msgstr "" +msgstr "_Sorter etter X-verdier" #: tp_ChartType.ui msgctxt "" @@ -1895,7 +1896,7 @@ "label\n" "string.text" msgid "_Number of lines" -msgstr "" +msgstr "_Antall linjer" #: tp_ChartType.ui msgctxt "" @@ -1904,7 +1905,7 @@ "label\n" "string.text" msgid "Rounded edge" -msgstr "" +msgstr "Avrundet kant" #: tp_ChartType.ui msgctxt "" @@ -1994,7 +1995,7 @@ "label\n" "string.text" msgid "Percentage f_ormat..." -msgstr "" +msgstr "Prosentf_ormat …" #: tp_DataLabel.ui msgctxt "" @@ -2003,7 +2004,7 @@ "label\n" "string.text" msgid "ABCD" -msgstr "" +msgstr "ABCD" #: tp_DataLabel.ui msgctxt "" @@ -2012,7 +2013,7 @@ "label\n" "string.text" msgid "_Separator" -msgstr "" +msgstr "_Skilletegn" #: tp_DataLabel.ui msgctxt "" @@ -2021,7 +2022,7 @@ "label\n" "string.text" msgid "Place_ment" -msgstr "" +msgstr "Plass_ering" #: tp_DataLabel.ui msgctxt "" @@ -2030,7 +2031,7 @@ "label\n" "string.text" msgid "Number Format for Percentage Value" -msgstr "" +msgstr "Tallformat for prosentverdi" #: tp_DataLabel.ui msgctxt "" @@ -2039,7 +2040,7 @@ "label\n" "string.text" msgid "Text Attributes" -msgstr "" +msgstr "Tekstattributter" #: tp_DataLabel.ui msgctxt "" @@ -2048,7 +2049,7 @@ "label\n" "string.text" msgid "_Degrees" -msgstr "" +msgstr "_Grader" #: tp_DataLabel.ui msgctxt "" @@ -2057,7 +2058,7 @@ "label\n" "string.text" msgid "Te_xt direction" -msgstr "" +msgstr "_Tekstretning" #: tp_DataLabel.ui msgctxt "" @@ -2066,7 +2067,7 @@ "label\n" "string.text" msgid "Rotate Text" -msgstr "" +msgstr "Roter tekst" #: tp_DataLabel.ui msgctxt "" @@ -2147,7 +2148,7 @@ "8\n" "stringlist.text" msgid "Right" -msgstr "" +msgstr "Høyre" #: tp_DataLabel.ui msgctxt "" @@ -2156,7 +2157,7 @@ "9\n" "stringlist.text" msgid "Top right" -msgstr "" +msgstr "Øverst til høyre" #: tp_DataLabel.ui msgctxt "" @@ -2174,7 +2175,7 @@ "11\n" "stringlist.text" msgid "Outside" -msgstr "" +msgstr "Utenfor" #: tp_DataLabel.ui msgctxt "" @@ -2192,7 +2193,7 @@ "0\n" "stringlist.text" msgid "Space" -msgstr "" +msgstr "Mellomrom" #: tp_DataLabel.ui msgctxt "" @@ -2201,7 +2202,7 @@ "1\n" "stringlist.text" msgid "Comma" -msgstr "" +msgstr "Komma" #: tp_DataLabel.ui msgctxt "" @@ -2210,7 +2211,7 @@ "2\n" "stringlist.text" msgid "Semicolon" -msgstr "" +msgstr "Semikolon" #: tp_DataLabel.ui msgctxt "" @@ -2219,7 +2220,7 @@ "3\n" "stringlist.text" msgid "New line" -msgstr "" +msgstr "Ny linje" #: tp_DataSource.ui msgctxt "" @@ -2309,7 +2310,7 @@ "label\n" "string.text" msgid "Data _labels" -msgstr "" +msgstr "Data_overskrifter" #: tp_ErrorBars.ui msgctxt "" @@ -2318,7 +2319,7 @@ "label\n" "string.text" msgid "_None" -msgstr "" +msgstr "I_ngen" #: tp_ErrorBars.ui msgctxt "" @@ -2327,7 +2328,7 @@ "label\n" "string.text" msgid "_Constant Value" -msgstr "" +msgstr "_Konstantverdi" #: tp_ErrorBars.ui msgctxt "" @@ -2336,7 +2337,7 @@ "label\n" "string.text" msgid "_Percentage" -msgstr "" +msgstr "_Prosent" #: tp_ErrorBars.ui msgctxt "" @@ -2345,7 +2346,7 @@ "label\n" "string.text" msgid "Cell _Range" -msgstr "" +msgstr "_Celleområde" #: tp_ErrorBars.ui msgctxt "" @@ -2354,7 +2355,7 @@ "label\n" "string.text" msgid "Error Category" -msgstr "" +msgstr "Feilkategori" #: tp_ErrorBars.ui msgctxt "" @@ -2363,7 +2364,7 @@ "label\n" "string.text" msgid "Positive _and Negative" -msgstr "" +msgstr "Positiv _og negativ" #: tp_ErrorBars.ui msgctxt "" @@ -2453,7 +2454,7 @@ "label\n" "string.text" msgid "Select Range for Positive Error Bars" -msgstr "" +msgstr "Velg et område for positive feilinjer" #: tp_ErrorBars.ui msgctxt "" @@ -2462,7 +2463,7 @@ "label\n" "string.text" msgid "Select Range for Negative Error Bars" -msgstr "" +msgstr "Velg et område for negative feilinjer" #: tp_ErrorBars.ui msgctxt "" @@ -2471,7 +2472,7 @@ "label\n" "string.text" msgid "From Data Table" -msgstr "" +msgstr "Fra datatabell" #: tp_ErrorBars.ui msgctxt "" @@ -2480,7 +2481,7 @@ "0\n" "stringlist.text" msgid "Standard Error" -msgstr "" +msgstr "Standardfeil" #: tp_ErrorBars.ui msgctxt "" @@ -2489,7 +2490,7 @@ "1\n" "stringlist.text" msgid "Standard Deviation" -msgstr "" +msgstr "Standardavvik" #: tp_ErrorBars.ui msgctxt "" @@ -2498,7 +2499,7 @@ "2\n" "stringlist.text" msgid "Variance" -msgstr "" +msgstr "Varians" #: tp_ErrorBars.ui msgctxt "" @@ -2507,7 +2508,7 @@ "3\n" "stringlist.text" msgid "Error Margin" -msgstr "" +msgstr "Feilmargin" #: tp_LegendPosition.ui msgctxt "" @@ -2516,7 +2517,7 @@ "label\n" "string.text" msgid "_Left" -msgstr "" +msgstr "_Venstre" #: tp_LegendPosition.ui msgctxt "" @@ -2525,7 +2526,7 @@ "label\n" "string.text" msgid "_Right" -msgstr "" +msgstr "_Høyre" #: tp_LegendPosition.ui msgctxt "" @@ -2597,7 +2598,7 @@ "label\n" "string.text" msgid "_Degrees" -msgstr "" +msgstr "_Grader" #: tp_PolarOptions.ui msgctxt "" @@ -2606,7 +2607,7 @@ "label\n" "string.text" msgid "Starting angle" -msgstr "" +msgstr "Startvinkel" #: tp_PolarOptions.ui msgctxt "" @@ -2615,7 +2616,7 @@ "label\n" "string.text" msgid "Include _values from hidden cells" -msgstr "" +msgstr "Ta med _verdier fra skjulte celler" #: tp_PolarOptions.ui msgctxt "" @@ -2633,7 +2634,7 @@ "tooltip_markup\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Velg dataområde" #: tp_RangeChooser.ui msgctxt "" @@ -2642,7 +2643,7 @@ "label\n" "string.text" msgid "Choose a data range" -msgstr "" +msgstr "Velg et dataområde" #: tp_RangeChooser.ui msgctxt "" @@ -2651,7 +2652,7 @@ "label\n" "string.text" msgid "_Data range:" -msgstr "" +msgstr "_Dataområde:" #: tp_RangeChooser.ui msgctxt "" @@ -2660,7 +2661,7 @@ "tooltip_markup\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Velg dataområde" #: tp_RangeChooser.ui msgctxt "" @@ -2669,7 +2670,7 @@ "label\n" "string.text" msgid "Data series in _rows" -msgstr "" +msgstr "Dataserier i _rader" #: tp_RangeChooser.ui msgctxt "" @@ -3362,7 +3363,7 @@ "label\n" "string.text" msgid "_X axis" -msgstr "" +msgstr "_X-akse" #: wizelementspage.ui msgctxt "" @@ -3371,7 +3372,7 @@ "label\n" "string.text" msgid "_Y axis" -msgstr "" +msgstr "_Y-akse" #: wizelementspage.ui msgctxt "" @@ -3380,7 +3381,7 @@ "label\n" "string.text" msgid "_Z axis" -msgstr "" +msgstr "_Z-akse" #: wizelementspage.ui msgctxt "" @@ -3389,7 +3390,7 @@ "label\n" "string.text" msgid "_Title" -msgstr "" +msgstr "_Tittel" #: wizelementspage.ui msgctxt "" @@ -3398,7 +3399,7 @@ "label\n" "string.text" msgid "_Subtitle" -msgstr "" +msgstr "_Undertittel" #: wizelementspage.ui msgctxt "" @@ -3407,7 +3408,7 @@ "label\n" "string.text" msgid "X _axis" -msgstr "" +msgstr "X-akse" #: wizelementspage.ui msgctxt "" @@ -3416,7 +3417,7 @@ "label\n" "string.text" msgid "Y ax_is" -msgstr "" +msgstr "Y-akse" #: wizelementspage.ui msgctxt "" @@ -3425,7 +3426,7 @@ "label\n" "string.text" msgid "_Display legend" -msgstr "" +msgstr "_Vis forklaring" #: wizelementspage.ui msgctxt "" @@ -3434,7 +3435,7 @@ "label\n" "string.text" msgid "_Left" -msgstr "" +msgstr "_Venstre" #: wizelementspage.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nb/connectivity/source/resource.po libreoffice-l10n-4.3.2/translations/source/nb/connectivity/source/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nb/connectivity/source/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nb/connectivity/source/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-05-07 22:01+0000\n" +"PO-Revision-Date: 2014-08-31 17:05+0000\n" "Last-Translator: Olav \n" "Language-Team: LANGUAGE \n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1399500091.000000\n" +"X-POOTLE-MTIME: 1409504703.000000\n" #: conn_error_message.src msgctxt "" @@ -95,7 +95,7 @@ "STR_MOZILLA_ADDRESSBOOKS\n" "string.text" msgid "Mozilla/Seamonkey Address Book Directory" -msgstr "" +msgstr "Mappe for Mozilla/Seamonkey-adressebøker" #. This must be the term referring to address books in the user's Thunderbird profile in the system. #: conn_shared_res.src @@ -104,7 +104,7 @@ "STR_THUNDERBIRD_ADDRESSBOOKS\n" "string.text" msgid "Thunderbird Address Book Directory" -msgstr "" +msgstr "Mappe for Thunderbird-adressebøker" #: conn_shared_res.src msgctxt "" @@ -112,7 +112,7 @@ "STR_OE_ADDRESSBOOK\n" "string.text" msgid "Outlook Express Address Book" -msgstr "" +msgstr "Mappe for Outlook Express-adressebøker" #: conn_shared_res.src msgctxt "" @@ -120,7 +120,7 @@ "STR_OUTLOOK_MAPI_ADDRESSBOOK\n" "string.text" msgid "Outlook (MAPI) Address Book" -msgstr "" +msgstr "Outlook-adressebok (MAPI)-adressebok" #: conn_shared_res.src msgctxt "" @@ -176,7 +176,7 @@ "STR_MOZILLA_IS_RUNNIG_NO_CHANGES\n" "string.text" msgid "You can't make any changes to Mozilla Address Book when Mozilla is running." -msgstr "" +msgstr "Du kan ikke gjøre endringer i adresseboka når Mozilla kjører." #: conn_shared_res.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nb/cui/source/dialogs.po libreoffice-l10n-4.3.2/translations/source/nb/cui/source/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nb/cui/source/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nb/cui/source/dialogs.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-05-07 22:00+0000\n" +"PO-Revision-Date: 2014-08-31 17:07+0000\n" "Last-Translator: Olav \n" "Language-Team: Norwegian Bokmål <>\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1399500047.000000\n" +"X-POOTLE-MTIME: 1409504821.000000\n" #: colorpicker.src msgctxt "" @@ -860,7 +860,7 @@ "Text\n" "stringlist.text" msgid "Text" -msgstr "" +msgstr "Tekst" #: hyperdlg.src msgctxt "" @@ -869,7 +869,7 @@ "Button\n" "stringlist.text" msgid "Button" -msgstr "" +msgstr "Knapp" #: hyperdlg.src msgctxt "" @@ -1596,7 +1596,7 @@ "RID_SVXSTR_ONE_PASSWORD_MISMATCH\n" "string.text" msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes." -msgstr "" +msgstr "Passordene er ikke like. Oppgi passordet på nytt i tekstfeltene." #: passwdomdlg.src msgctxt "" @@ -1604,7 +1604,7 @@ "RID_SVXSTR_TWO_PASSWORDS_MISMATCH\n" "string.text" msgid "The confirmation passwords did not match the original passwords. Set the passwords again." -msgstr "" +msgstr "Passordene er ikke like. Oppgi passordet på nytt." #: passwdomdlg.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nb/cui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/nb/cui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nb/cui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nb/cui/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-05-07 22:00+0000\n" +"PO-Revision-Date: 2014-08-31 17:21+0000\n" "Last-Translator: Olav \n" "Language-Team: Norwegian Bokmål <>\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1399500047.000000\n" +"X-POOTLE-MTIME: 1409505674.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -1324,14 +1324,13 @@ msgstr "Mønsterredigering:" #: bitmaptabpage.ui -#, fuzzy msgctxt "" "bitmaptabpage.ui\n" "CTL_PIXEL-atkobject\n" "AtkObject::accessible-name\n" "string.text" msgid "Pattern Editor" -msgstr "Mønsterredigering:" +msgstr "Mønsterredigering" #: bitmaptabpage.ui msgctxt "" @@ -1439,17 +1438,16 @@ "title\n" "string.text" msgid "Border / Background" -msgstr "" +msgstr "Kantlinje/bakgrunn" #: borderbackgrounddialog.ui -#, fuzzy msgctxt "" "borderbackgrounddialog.ui\n" "borders\n" "label\n" "string.text" msgid "Borders" -msgstr "Kantlinje" +msgstr "Kantlinjer" #: borderbackgrounddialog.ui msgctxt "" @@ -1458,7 +1456,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Bakgrunn" #: borderpage.ui msgctxt "" @@ -1710,7 +1708,7 @@ "label\n" "string.text" msgid "Callout" -msgstr "" +msgstr "Snakkeboble" #: calloutpage.ui msgctxt "" @@ -1719,27 +1717,25 @@ "label\n" "string.text" msgid "_Extension" -msgstr "" +msgstr "_Utvidelse" #: calloutpage.ui -#, fuzzy msgctxt "" "calloutpage.ui\n" "lengthft\n" "label\n" "string.text" msgid "_Length" -msgstr "_Lengde:" +msgstr "_Lengde" #: calloutpage.ui -#, fuzzy msgctxt "" "calloutpage.ui\n" "optimal\n" "label\n" "string.text" msgid "_Optimal" -msgstr "Best mulig" +msgstr "_Best mulig" #: calloutpage.ui msgctxt "" @@ -1757,7 +1753,7 @@ "label\n" "string.text" msgid "_By" -msgstr "" +msgstr "_Ved" #: calloutpage.ui msgctxt "" @@ -2219,7 +2215,7 @@ "label\n" "string.text" msgid "Profile" -msgstr "" +msgstr "Profil" #: certdialog.ui msgctxt "" @@ -2228,7 +2224,7 @@ "label\n" "string.text" msgid "Directory" -msgstr "" +msgstr "Mappe" #: certdialog.ui msgctxt "" @@ -2237,7 +2233,7 @@ "label\n" "string.text" msgid "Select a Certificate directory" -msgstr "" +msgstr "Velg en sertifikatmappe" #: certdialog.ui msgctxt "" @@ -2939,7 +2935,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Old Color" -msgstr "" +msgstr "Gammel farge" #: colorpage.ui msgctxt "" @@ -2948,7 +2944,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "New Color" -msgstr "" +msgstr "Ny farge" #: colorpage.ui msgctxt "" @@ -3335,7 +3331,7 @@ "label\n" "string.text" msgid "Keep _scale" -msgstr "" +msgstr "Behold _størrelsesforhold" #: croppage.ui msgctxt "" @@ -3344,7 +3340,7 @@ "label\n" "string.text" msgid "Keep image si_ze" -msgstr "" +msgstr "Behold _bildestørrelse" #: croppage.ui msgctxt "" @@ -3389,7 +3385,7 @@ "label\n" "string.text" msgid "Crop" -msgstr "" +msgstr "Beskjær" #: croppage.ui msgctxt "" @@ -3401,14 +3397,13 @@ msgstr "B_redde" #: croppage.ui -#, fuzzy msgctxt "" "croppage.ui\n" "label7\n" "label\n" "string.text" msgid "_Height" -msgstr "_Høyde:" +msgstr "_Høyde" #: croppage.ui msgctxt "" @@ -3772,24 +3767,22 @@ msgstr "Automatisk" #: distributiondialog.ui -#, fuzzy msgctxt "" "distributiondialog.ui\n" "DistributionDialog\n" "title\n" "string.text" msgid "Distribution" -msgstr "Fordelt" +msgstr "Fordeling" #: distributionpage.ui -#, fuzzy msgctxt "" "distributionpage.ui\n" "hornone\n" "label\n" "string.text" msgid "_None" -msgstr "Ingen" +msgstr "I_ngen" #: distributionpage.ui msgctxt "" @@ -3828,14 +3821,13 @@ msgstr "_Avstand" #: distributionpage.ui -#, fuzzy msgctxt "" "distributionpage.ui\n" "label\n" "label\n" "string.text" msgid "Horizontal" -msgstr "_Vannrett" +msgstr "Vannrett" #: distributionpage.ui msgctxt "" @@ -3865,14 +3857,13 @@ msgstr "_Midtstill" #: distributionpage.ui -#, fuzzy msgctxt "" "distributionpage.ui\n" "verdistance\n" "label\n" "string.text" msgid "S_pacing" -msgstr "Avstand" +msgstr "A_vstand" #: distributionpage.ui msgctxt "" @@ -3884,14 +3875,13 @@ msgstr "_Nederst" #: distributionpage.ui -#, fuzzy msgctxt "" "distributionpage.ui\n" "label1\n" "label\n" "string.text" msgid "Vertical" -msgstr "_Loddrett" +msgstr "Loddrett" #: editdictionarydialog.ui msgctxt "" @@ -3963,7 +3953,7 @@ "title\n" "string.text" msgid "Edit Modules" -msgstr "" +msgstr "Rediger moduler" #: editmodulesdialog.ui msgctxt "" @@ -3990,7 +3980,7 @@ "label\n" "string.text" msgid "Move Up" -msgstr "" +msgstr "Flytt opp" #: editmodulesdialog.ui msgctxt "" @@ -3999,7 +3989,7 @@ "label\n" "string.text" msgid "Move Down" -msgstr "" +msgstr "Flytt ned" #: editmodulesdialog.ui msgctxt "" @@ -4008,7 +3998,7 @@ "label\n" "string.text" msgid "_Back" -msgstr "" +msgstr "Til_bake" #: editmodulesdialog.ui msgctxt "" @@ -4645,14 +4635,13 @@ msgstr "_Fjern" #: eventsconfigpage.ui -#, fuzzy msgctxt "" "eventsconfigpage.ui\n" "label2\n" "label\n" "string.text" msgid "Save In" -msgstr "_Lagre i" +msgstr "Lagre i" #: eventsconfigpage.ui msgctxt "" @@ -4688,7 +4677,7 @@ "label\n" "string.text" msgid "S_earch" -msgstr "" +msgstr "_Søk" #: fmsearchdialog.ui msgctxt "" @@ -4706,7 +4695,7 @@ "label\n" "string.text" msgid "Field content is _NULL" -msgstr "" +msgstr "Feltinnholdet er _NULL" #: fmsearchdialog.ui msgctxt "" @@ -4715,7 +4704,7 @@ "label\n" "string.text" msgid "Field content is not NU_LL" -msgstr "" +msgstr "Feltinnholdet er ikke _NULL" #: fmsearchdialog.ui msgctxt "" @@ -4724,7 +4713,7 @@ "label\n" "string.text" msgid "_Search for" -msgstr "" +msgstr "_Søk etter" #: fmsearchdialog.ui msgctxt "" @@ -4733,7 +4722,7 @@ "label\n" "string.text" msgid "_Single field" -msgstr "" +msgstr "_Enkeltfelt" #: fmsearchdialog.ui msgctxt "" @@ -4742,7 +4731,7 @@ "label\n" "string.text" msgid "_All fields" -msgstr "" +msgstr "_Alle felt" #: fmsearchdialog.ui msgctxt "" @@ -4751,7 +4740,7 @@ "label\n" "string.text" msgid "Form" -msgstr "" +msgstr "Skjema" #: fmsearchdialog.ui msgctxt "" @@ -4869,7 +4858,7 @@ "label\n" "string.text" msgid "_Wildcard expression" -msgstr "" +msgstr "_Uttrykk med jokertegn" #: fmsearchdialog.ui msgctxt "" @@ -4914,7 +4903,7 @@ "title\n" "string.text" msgid "Format Cells" -msgstr "" +msgstr "Formater celler" #: formatcellsdialog.ui msgctxt "" @@ -4932,17 +4921,16 @@ "label\n" "string.text" msgid "Font Effects" -msgstr "" +msgstr "Skrifteffekter" #: formatcellsdialog.ui -#, fuzzy msgctxt "" "formatcellsdialog.ui\n" "border\n" "label\n" "string.text" msgid "Borders" -msgstr "Kantlinje" +msgstr "Kantlinjer" #: formatcellsdialog.ui msgctxt "" @@ -4951,7 +4939,7 @@ "label\n" "string.text" msgid "Background" -msgstr "" +msgstr "Bakgrunn" #: formatnumberdialog.ui msgctxt "" @@ -4969,7 +4957,7 @@ "title\n" "string.text" msgid "Apply" -msgstr "" +msgstr "Bruk" #: galleryapplyprogress.ui msgctxt "" @@ -4981,14 +4969,13 @@ msgstr "Fil" #: galleryfilespage.ui -#, fuzzy msgctxt "" "galleryfilespage.ui\n" "label1\n" "label\n" "string.text" msgid "_File type" -msgstr "_Linjetype" +msgstr "_Filtype" #: galleryfilespage.ui msgctxt "" @@ -5082,7 +5069,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Theme Name" -msgstr "" +msgstr "Temanavn" #: gallerysearchprogress.ui msgctxt "" @@ -5091,7 +5078,7 @@ "title\n" "string.text" msgid "Find" -msgstr "" +msgstr "Finn" #: gallerysearchprogress.ui msgctxt "" @@ -5100,7 +5087,7 @@ "label\n" "string.text" msgid "File type" -msgstr "" +msgstr "Filtype" #: gallerysearchprogress.ui msgctxt "" @@ -5109,7 +5096,7 @@ "label\n" "string.text" msgid "Directory" -msgstr "" +msgstr "Mappe" #: gallerythemedialog.ui msgctxt "" @@ -5118,7 +5105,7 @@ "title\n" "string.text" msgid "Properties of " -msgstr "" +msgstr "Egenskapene til " #: gallerythemedialog.ui msgctxt "" @@ -5130,14 +5117,13 @@ msgstr "Generelt" #: gallerythemedialog.ui -#, fuzzy msgctxt "" "gallerythemedialog.ui\n" "files\n" "label\n" "string.text" msgid "Files" -msgstr "Fil" +msgstr "Filer" #: gallerythemeiddialog.ui msgctxt "" @@ -5146,7 +5132,7 @@ "title\n" "string.text" msgid "Theme ID" -msgstr "" +msgstr "Tema-ID" #: gallerythemeiddialog.ui msgctxt "" @@ -5155,7 +5141,7 @@ "label\n" "string.text" msgid "ID" -msgstr "" +msgstr "ID" #: gallerytitledialog.ui msgctxt "" @@ -5164,7 +5150,7 @@ "title\n" "string.text" msgid "Enter Title" -msgstr "" +msgstr "Skriv inn tittel" #: gallerytitledialog.ui msgctxt "" @@ -5458,13 +5444,14 @@ msgstr "" #: hangulhanjaoptdialog.ui +#, fuzzy msgctxt "" "hangulhanjaoptdialog.ui\n" "autoreplaceunique\n" "label\n" "string.text" msgid "Replace all unique entries automatically" -msgstr "" +msgstr "Erstatt alle unike elementer automatisk" #: hangulhanjaoptdialog.ui msgctxt "" @@ -6601,14 +6588,13 @@ msgstr "Avfasa" #: macroassigndialog.ui -#, fuzzy msgctxt "" "macroassigndialog.ui\n" "MacroAssignDialog\n" "title\n" "string.text" msgid "Assign action" -msgstr "Tildelt makro" +msgstr "Tilordne handling" #: macroassignpage.ui msgctxt "" @@ -6635,7 +6621,7 @@ "label\n" "string.text" msgid "Assignments" -msgstr "" +msgstr "Tilordninger" #: macroassignpage.ui msgctxt "" @@ -6665,14 +6651,13 @@ msgstr "Fjern" #: macroassignpage.ui -#, fuzzy msgctxt "" "macroassignpage.ui\n" "label1\n" "label\n" "string.text" msgid "Assign" -msgstr "Tildel:" +msgstr "Tildel" #: macroselectordialog.ui msgctxt "" @@ -6756,14 +6741,13 @@ msgstr "Beskrivelse" #: menuassignpage.ui -#, fuzzy msgctxt "" "menuassignpage.ui\n" "toplevelbutton\n" "label\n" "string.text" msgid "New..." -msgstr "_Ny …" +msgstr "Ny …" #: menuassignpage.ui msgctxt "" @@ -6790,17 +6774,16 @@ "label\n" "string.text" msgid "%PRODUCTNAME %MODULENAME Menus" -msgstr "" +msgstr "Menyer i %PRODUCTNAME %MODULENAME" #: menuassignpage.ui -#, fuzzy msgctxt "" "menuassignpage.ui\n" "add\n" "label\n" "string.text" msgid "Add..." -msgstr "_Legg til …" +msgstr "Legg til …" #: menuassignpage.ui msgctxt "" @@ -6821,14 +6804,13 @@ msgstr "_Lagre i" #: menuassignpage.ui -#, fuzzy msgctxt "" "menuassignpage.ui\n" "contentslabel\n" "label\n" "string.text" msgid "Entries" -msgstr "_Oppføringer" +msgstr "Oppføringer" #: menuassignpage.ui msgctxt "" @@ -7022,7 +7004,7 @@ "title\n" "string.text" msgid "Select Paths" -msgstr "" +msgstr "Velg stier" #: multipathdialog.ui msgctxt "" @@ -7040,7 +7022,7 @@ "label\n" "string.text" msgid "Path list" -msgstr "" +msgstr "Stiliste" #: multipathdialog.ui msgctxt "" @@ -7049,7 +7031,7 @@ "label\n" "string.text" msgid "Mark the default path for new files" -msgstr "" +msgstr "Marker standardstien for nye filer." #: namedialog.ui msgctxt "" @@ -7067,7 +7049,7 @@ "title\n" "string.text" msgid "Create Library" -msgstr "" +msgstr "Lag bibliotek" #: newlibdialog.ui msgctxt "" @@ -7076,7 +7058,7 @@ "label\n" "string.text" msgid "Enter the name for the new library." -msgstr "" +msgstr "Skriv inn navnet til det nye biblioteket." #: newlibdialog.ui msgctxt "" @@ -7085,7 +7067,7 @@ "label\n" "string.text" msgid "Enter the name for the new macro." -msgstr "" +msgstr "Skriv inn navnet til den nye makroen." #: newlibdialog.ui msgctxt "" @@ -7094,7 +7076,7 @@ "label\n" "string.text" msgid "Enter the new name for the selected object." -msgstr "" +msgstr "Skriv inn navnet til det valgte objektet." #: newlibdialog.ui msgctxt "" @@ -7103,17 +7085,16 @@ "label\n" "string.text" msgid "Create Macro" -msgstr "" +msgstr "Lag makro" #: newlibdialog.ui -#, fuzzy msgctxt "" "newlibdialog.ui\n" "altrenametitle\n" "label\n" "string.text" msgid "Rename" -msgstr "_Endre navn" +msgstr "Endre navn" #: newmenu.ui msgctxt "" @@ -12570,7 +12551,7 @@ "label\n" "string.text" msgid "File sharing password" -msgstr "" +msgstr "Passord for fildeling" #: password.ui msgctxt "" @@ -12588,7 +12569,7 @@ "label\n" "string.text" msgid "File encryption password" -msgstr "" +msgstr "Passord for filkryptering" #: pastespecial.ui msgctxt "" @@ -13101,7 +13082,7 @@ "title\n" "string.text" msgid "Posterize" -msgstr "" +msgstr "Plakateffekt" #: posterdialog.ui msgctxt "" @@ -13110,17 +13091,16 @@ "label\n" "string.text" msgid "Poster colors" -msgstr "" +msgstr "Plakatfarger" #: posterdialog.ui -#, fuzzy msgctxt "" "posterdialog.ui\n" "label1\n" "label\n" "string.text" msgid "Parameters" -msgstr "Parameter" +msgstr "Parametre" #: querychangelineenddialog.ui msgctxt "" @@ -13417,7 +13397,7 @@ "title\n" "string.text" msgid "Update the file list?" -msgstr "" +msgstr "Oppdatere fillista?" #: queryupdategalleryfilelistdialog.ui msgctxt "" @@ -13426,7 +13406,7 @@ "text\n" "string.text" msgid "Do you want to update the file list?" -msgstr "" +msgstr "Vil du oppdatere fillista?" #: recordnumberdialog.ui msgctxt "" @@ -13859,7 +13839,7 @@ "title\n" "string.text" msgid "Select Paths" -msgstr "" +msgstr "Velg stier" #: selectpathdialog.ui msgctxt "" @@ -13871,14 +13851,13 @@ msgstr "_Legg til …" #: selectpathdialog.ui -#, fuzzy msgctxt "" "selectpathdialog.ui\n" "label1\n" "label\n" "string.text" msgid "Paths" -msgstr "Sti" +msgstr "Stier" #: shadowtabpage.ui msgctxt "" @@ -13941,7 +13920,7 @@ "title\n" "string.text" msgid "Show columns" -msgstr "" +msgstr "Vis kolonner" #: showcoldialog.ui msgctxt "" @@ -13950,7 +13929,7 @@ "label\n" "string.text" msgid "The following columns are currently hidden. Please mark the fields you want to show and choose OK." -msgstr "" +msgstr "De følgende kolonnene er for øyeblikket skjult. Marker feltene som skal vises og trykk på OK." #: similaritysearchdialog.ui msgctxt "" @@ -14049,17 +14028,16 @@ "label\n" "string.text" msgid "Label text with smart tags" -msgstr "" +msgstr "Etiketttekst med smarte tagger" #: smarttagoptionspage.ui -#, fuzzy msgctxt "" "smarttagoptionspage.ui\n" "properties\n" "label\n" "string.text" msgid "Properties..." -msgstr "Egenskaper" +msgstr "Egenskaper …" #: smarttagoptionspage.ui msgctxt "" @@ -14068,7 +14046,7 @@ "label\n" "string.text" msgid "Currently installed smart tags" -msgstr "" +msgstr "Installerte smarte tagger" #: smoothdialog.ui msgctxt "" @@ -14077,7 +14055,7 @@ "title\n" "string.text" msgid "Smooth" -msgstr "" +msgstr "Jevn" #: smoothdialog.ui msgctxt "" @@ -14086,7 +14064,7 @@ "label\n" "string.text" msgid "Smooth Radius" -msgstr "" +msgstr "Jevn radius" #: smoothdialog.ui #, fuzzy @@ -15682,7 +15660,7 @@ "label\n" "string.text" msgid "Mi_n. word length" -msgstr "" +msgstr "_Minste ordlengde" #: wordcompletionpage.ui msgctxt "" @@ -15691,7 +15669,7 @@ "label\n" "string.text" msgid "_Append space" -msgstr "" +msgstr "_Legg til mellomrom" #: wordcompletionpage.ui msgctxt "" @@ -15700,17 +15678,16 @@ "label\n" "string.text" msgid "_Show as tip" -msgstr "" +msgstr "_Vis som tips" #: wordcompletionpage.ui -#, fuzzy msgctxt "" "wordcompletionpage.ui\n" "enablewordcomplete\n" "label\n" "string.text" msgid "Enable word _completion" -msgstr "Slå på kodefullføringa" +msgstr "Slå på _fullføring av ord" #: wordcompletionpage.ui msgctxt "" @@ -15719,7 +15696,7 @@ "label\n" "string.text" msgid "_When closing a document, remove the words collected from it from the list" -msgstr "" +msgstr "_Fjern de samlede ordene fra lista ved lukking av dokumentet." #: wordcompletionpage.ui msgctxt "" @@ -15728,7 +15705,7 @@ "label\n" "string.text" msgid "C_ollect words" -msgstr "" +msgstr "Samle _ord" #: wordcompletionpage.ui msgctxt "" @@ -15737,7 +15714,7 @@ "label\n" "string.text" msgid "Acc_ept with" -msgstr "" +msgstr "Godta m_ed" #: zoomdialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nb/dbaccess/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/nb/dbaccess/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nb/dbaccess/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nb/dbaccess/source/ui/app.po 2014-09-16 19:55:40.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: 2014-05-02 00:05+0200\n" -"PO-Revision-Date: 2013-12-11 10:43+0100\n" -"Last-Translator: Olav Dahlum \n" +"PO-Revision-Date: 2014-08-31 17:21+0000\n" +"Last-Translator: Olav \n" "Language-Team: British English <>\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,6 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1409505686.000000\n" #: app.src msgctxt "" @@ -568,7 +569,7 @@ "STR_PAGETITLE_GENERAL\n" "string.text" msgid "Advanced Properties" -msgstr "" +msgstr "Avanserte egenskaper" #: app.src msgctxt "" @@ -576,7 +577,7 @@ "STR_PAGETITLE_ADVANCED\n" "string.text" msgid "Additional Settings" -msgstr "" +msgstr "Flere innstillinger" #: app.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nb/dbaccess/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/nb/dbaccess/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nb/dbaccess/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nb/dbaccess/source/ui/dlg.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-12-11 10:44+0100\n" -"Last-Translator: Olav Dahlum \n" +"PO-Revision-Date: 2014-08-31 17:21+0000\n" +"Last-Translator: Olav \n" "Language-Team: Norwegian Bokmål <>\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1358832971.0\n" +"X-POOTLE-MTIME: 1409505693.000000\n" #: AutoControls.src msgctxt "" @@ -1846,7 +1846,7 @@ "STR_EXCEPTION_STATUS\n" "string.text" msgid "SQL Status" -msgstr "" +msgstr "SQL-status" #: sqlmessage.src msgctxt "" @@ -1854,7 +1854,7 @@ "STR_EXCEPTION_ERRORCODE\n" "string.text" msgid "Error code" -msgstr "" +msgstr "Feilkode" #: sqlmessage.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nb/dbaccess/source/ui/querydesign.po libreoffice-l10n-4.3.2/translations/source/nb/dbaccess/source/ui/querydesign.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nb/dbaccess/source/ui/querydesign.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nb/dbaccess/source/ui/querydesign.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-01-22 05:36+0000\n" +"PO-Revision-Date: 2014-08-31 17:21+0000\n" "Last-Translator: Olav \n" "Language-Team: LANGUAGE \n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1358832987.0\n" +"X-POOTLE-MTIME: 1409505712.000000\n" #: query.src msgctxt "" @@ -500,7 +500,7 @@ "STR_QUERY_CROSS_JOIN\n" "string.text" msgid "Contains the Cartesian product of ALL records from '%1' and from '%2'." -msgstr "" +msgstr "Inneholder det kartesiske produktet av ALLE postene fra «%1» og fra «%2»." #: querydlg.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nb/dbaccess/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/nb/dbaccess/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nb/dbaccess/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nb/dbaccess/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-12-11 10:49+0100\n" -"Last-Translator: Olav Dahlum \n" +"PO-Revision-Date: 2014-08-31 17:27+0000\n" +"Last-Translator: Olav \n" "Language-Team: Norwegian Bokmål <>\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1377747393.0\n" +"X-POOTLE-MTIME: 1409506078.000000\n" #: admindialog.ui msgctxt "" @@ -23,7 +23,7 @@ "title\n" "string.text" msgid "Database properties" -msgstr "" +msgstr "Databaseegenskaper" #: admindialog.ui msgctxt "" @@ -32,7 +32,7 @@ "label\n" "string.text" msgid "Advanced Properties" -msgstr "" +msgstr "Avanserte egenskaper" #: advancedsettingsdialog.ui msgctxt "" @@ -41,7 +41,7 @@ "title\n" "string.text" msgid "Advanced Settings" -msgstr "" +msgstr "Avanserte innstillinger" #: advancedsettingsdialog.ui msgctxt "" @@ -53,13 +53,14 @@ msgstr "" #: advancedsettingsdialog.ui +#, fuzzy msgctxt "" "advancedsettingsdialog.ui\n" "special\n" "label\n" "string.text" msgid "Special Settings" -msgstr "" +msgstr "Spesielle innstillinger" #: applycolpage.ui msgctxt "" @@ -68,7 +69,7 @@ "label\n" "string.text" msgid "Existing columns" -msgstr "" +msgstr "Eksisterende kolonner" #: choosedatasourcedialog.ui msgctxt "" @@ -158,7 +159,7 @@ "label\n" "string.text" msgid "Append _data" -msgstr "" +msgstr "Legg til _data" #: copytablepage.ui msgctxt "" @@ -167,7 +168,7 @@ "label\n" "string.text" msgid "Use first _line as column names" -msgstr "" +msgstr "Bruk første _linje som kolonnenavn" #: copytablepage.ui msgctxt "" @@ -176,7 +177,7 @@ "label\n" "string.text" msgid "Crea_te primary key" -msgstr "" +msgstr "_Lag primærnøkkel" #: copytablepage.ui msgctxt "" @@ -185,7 +186,7 @@ "label\n" "string.text" msgid "Name" -msgstr "" +msgstr "Navn" #: copytablepage.ui msgctxt "" @@ -194,7 +195,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "Valg" #: copytablepage.ui msgctxt "" @@ -203,16 +204,17 @@ "label\n" "string.text" msgid "Ta_ble name" -msgstr "" +msgstr "T_abellnavn" #: dbaseindexdialog.ui +#, fuzzy msgctxt "" "dbaseindexdialog.ui\n" "DBaseIndexDialog\n" "title\n" "string.text" msgid "Indexes" -msgstr "" +msgstr "Registre" #: dbaseindexdialog.ui msgctxt "" @@ -221,7 +223,7 @@ "label\n" "string.text" msgid "_Table" -msgstr "" +msgstr "_Tabell" #: dbaseindexdialog.ui msgctxt "" @@ -374,7 +376,7 @@ "label\n" "string.text" msgid "Do you want the wizard to register the database in %PRODUCTNAME?" -msgstr "" +msgstr "Vil du at veiviseren skal registrere databasen i %PRODUCTNAME?" #: finalpagewizard.ui msgctxt "" @@ -383,7 +385,7 @@ "label\n" "string.text" msgid "_Yes, register the database for me" -msgstr "" +msgstr "J_a, registrer databasen for meg" #: finalpagewizard.ui msgctxt "" @@ -392,7 +394,7 @@ "label\n" "string.text" msgid "N_o, do not register the database" -msgstr "" +msgstr "N_ei, ikke registrer databasen" #: finalpagewizard.ui msgctxt "" @@ -401,7 +403,7 @@ "label\n" "string.text" msgid "After the database file has been saved, what do you want to do?" -msgstr "" +msgstr "_Hva vil du gjøre etter at databasefila er lagret?" #: finalpagewizard.ui msgctxt "" @@ -410,7 +412,7 @@ "label\n" "string.text" msgid "Open the database for editing" -msgstr "" +msgstr "Åpne databasen for redigering" #: finalpagewizard.ui msgctxt "" @@ -419,7 +421,7 @@ "label\n" "string.text" msgid "Create tables using the table wizard" -msgstr "" +msgstr "Lag tabeller ved hjelp av tabellveiviseren" #: finalpagewizard.ui msgctxt "" @@ -428,7 +430,7 @@ "label\n" "string.text" msgid "Click 'Finish' to save the database." -msgstr "" +msgstr "Trykk på «Fullfør» for å lagre databasen." #: generalpagedialog.ui msgctxt "" @@ -641,7 +643,7 @@ "0\n" "stringlist.text" msgid "Inner join" -msgstr "" +msgstr "Indre sammenslåing" #: joindialog.ui msgctxt "" @@ -650,7 +652,7 @@ "1\n" "stringlist.text" msgid "Left join" -msgstr "" +msgstr "Venstre sammenslåing" #: joindialog.ui msgctxt "" @@ -659,7 +661,7 @@ "2\n" "stringlist.text" msgid "Right join" -msgstr "" +msgstr "Høyre sammenslåing" #: joindialog.ui msgctxt "" @@ -668,7 +670,7 @@ "3\n" "stringlist.text" msgid "Full (outer) join" -msgstr "" +msgstr "Full (ytre) sammenslåing" #: joindialog.ui msgctxt "" @@ -677,7 +679,7 @@ "4\n" "stringlist.text" msgid "Cross join" -msgstr "" +msgstr "Kryssammenslåing" #: password.ui msgctxt "" @@ -686,7 +688,7 @@ "title\n" "string.text" msgid "Change Password" -msgstr "" +msgstr "Endre passord" #: password.ui msgctxt "" @@ -695,7 +697,7 @@ "label\n" "string.text" msgid "Old p_assword" -msgstr "" +msgstr "Gammelt p_assord" #: password.ui msgctxt "" @@ -704,7 +706,7 @@ "label\n" "string.text" msgid "_Password" -msgstr "" +msgstr "_Passord" #: password.ui msgctxt "" @@ -767,7 +769,7 @@ "0\n" "stringlist.text" msgid "- none -" -msgstr "" +msgstr "- ingen -" #: queryfilterdialog.ui msgctxt "" @@ -776,7 +778,7 @@ "0\n" "stringlist.text" msgid "=" -msgstr "" +msgstr "=" #: queryfilterdialog.ui msgctxt "" @@ -785,7 +787,7 @@ "1\n" "stringlist.text" msgid "<>" -msgstr "" +msgstr "<>" #: queryfilterdialog.ui msgctxt "" @@ -794,7 +796,7 @@ "2\n" "stringlist.text" msgid "<" -msgstr "" +msgstr "<" #: queryfilterdialog.ui msgctxt "" @@ -803,7 +805,7 @@ "3\n" "stringlist.text" msgid "=" -msgstr "" +msgstr "=" #: queryfilterdialog.ui msgctxt "" @@ -812,7 +814,7 @@ "4\n" "stringlist.text" msgid ">" -msgstr "" +msgstr ">" #: queryfilterdialog.ui msgctxt "" @@ -821,7 +823,7 @@ "5\n" "stringlist.text" msgid "=" -msgstr "" +msgstr "=" #: queryfilterdialog.ui msgctxt "" @@ -830,7 +832,7 @@ "6\n" "stringlist.text" msgid "like" -msgstr "" +msgstr "lik" #: queryfilterdialog.ui msgctxt "" @@ -839,7 +841,7 @@ "7\n" "stringlist.text" msgid "not like" -msgstr "" +msgstr "Ikke lik" #: queryfilterdialog.ui msgctxt "" @@ -929,7 +931,7 @@ "label\n" "string.text" msgid "Criteria" -msgstr "" +msgstr "Vilkår" #: querypropertiesdialog.ui msgctxt "" @@ -992,7 +994,7 @@ "title\n" "string.text" msgid "Relations" -msgstr "" +msgstr "Relasjoner" #: relationdialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nb/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/nb/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nb/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nb/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-03-18 20:00+0000\n" "Last-Translator: Olav \n" "Language-Team: British English <>\n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1- dokument" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-dokument" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-dokument" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac-dokument (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,7 +670,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -679,7 +679,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nb/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/nb/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nb/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nb/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-12-01 16:58+0000\n" "Last-Translator: Olav \n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programmere i %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Funksjonaliteten for opptak av makroer er bare tilgjengelig for tekstdokumenter i %PRODUCTNAME Writer og regneark i %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ne/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ne/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ne/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ne/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-01-21 20:45+0200\n" "Last-Translator: Saaz \n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ne/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/ne/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ne/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ne/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-12-01 18:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13059,14 +13059,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "%PRODUCTNAME मा प्रोग्रामिङ" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "म्याक्रो रेकर्डिङ कार्यगतता चाँही %PRODUCTNAME लेखकमा पाठ कागजात र %PRODUCTNAME Calc मा स्प्रेडसिटहरूका लागि मात्र उपलब्ध हुन्छ।" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/nl/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-07 06:26+0000\n" "Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1-document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1-document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-document" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-document" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Document GreatWorks" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-document" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-document" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works voor Mac-document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works voor Mac-document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/sbasic/guide.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/sbasic/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/sbasic/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/sbasic/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -62,7 +62,7 @@ "par_idA2B005\n" "help.text" msgid "The provided macros implement functionalities, all directly inspired by Microsoft Access. The macros are callable from a LibreOffice Base application only." -msgstr "De geleverde macro's implementeert functies, die allemaal direct geïnspireerd zijn door Microsoft Access. De macro's zijn alleen oproepbaar vanuit een LibreOffice Base toepassing." +msgstr "De geleverde macro's implementeert functies, die allemaal direct geïnspireerd zijn door Microsoft Access. De macro's zijn alleen oproepbaar vanuit een LibreOffice Base toepassing." #: access2base.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared/02.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/sbasic/shared/02.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2013-06-13 08:10+0000\n" -"Last-Translator: kees538 \n" +"POT-Creation-Date: 2014-05-02 00:11+0200\n" +"PO-Revision-Date: 2014-09-01 09:42+0000\n" +"Last-Translator: JorenDC \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1371111046.0\n" +"X-POOTLE-MTIME: 1409564537.000000\n" #: 11010000.xhp msgctxt "" @@ -455,7 +455,7 @@ "2\n" "help.text" msgid "Opens the Objects pane, where you can view Basic objects." -msgstr " Opent hetobjectenvenster, waar u Basic-objecten kunt bekijken." +msgstr "Opent hetobjectenvenster, waar u Basic-objecten kunt bekijken." #: 11090000.xhp msgctxt "" @@ -499,7 +499,7 @@ "14\n" "help.text" msgid "Displays a hierarchical view of the current $[officename] macro libraries, modules, and dialogs. To display the contents of an item in the window, double click its name." -msgstr "Toont een hiërarchische weergave van de huidige macrobibliotheken, -modules en -dialoogvensters van $[officename]. Om de inhoud van een item in het venster weer te geven, dubbelklikt u op de naam." +msgstr "Toont een hiërarchische weergave van de huidige macrobibliotheken, -modules en -dialoogvensters van $[officename]. Om de inhoud van een item in het venster weer te geven, dubbelklikt u op de naam." #: 11100000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/scalc/01.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/scalc/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/scalc/01.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-06-09 06:35+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2014-09-01 14:16+0000\n" +"Last-Translator: JorenDC \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402295747.000000\n" +"X-POOTLE-MTIME: 1409580995.000000\n" #: 01120000.xhp msgctxt "" @@ -7888,7 +7888,7 @@ "120\n" "help.text" msgid "Life defines the period over which an asset is depreciated." -msgstr "Levensduur\\ definieert de periode waarover een goed wordt afgeschreven." +msgstr "Levensduur definieert de periode waarover een goed wordt afgeschreven." #: 04060103.xhp msgctxt "" @@ -47121,7 +47121,7 @@ "4\n" "help.text" msgid "For example, to show the column B, click on the header of the column A, expand the selection to the column C, then chose Format - Column - Show. To show the column A previously hidden, click on the header of the column B, keep the mouse button pressed and drag on the left. The selected range displayed in the name area changes from B1:B1048576 to A1:B1048576. Choose Format - Column - Show. Proceed the same way with rows." -msgstr "Om ,bijvoorbeeld, kolom B te laten zien, klik op de kop van kolom A, breid de selectie uit naar kolom C, kies dan Opmaak - Kolom - Weergeven. Om de verborgen kolom A te tonen, klikt u op de kop van kolom B, houd de muisknop ingedrukt en sleep aan links. Het geselecteerde bereik in het Naamvak verandert van B1: B1048576 in A1: B1048576. Kies Opmaak - Kolom - Weergeven. Dit werkt op dezelfde manier met rijen." +msgstr "Om, bijvoorbeeld, kolom B te laten zien, klik op de kop van kolom A, breid de selectie uit naar kolom C, kies dan Opmaak - Kolom - Weergeven. Om de verborgen kolom A te tonen, klikt u op de kop van kolom B, houd de muisknop ingedrukt en sleep aan links. Het geselecteerde bereik in het Naamvak verandert van B1: B1048576 in A1: B1048576. Kies Opmaak - Kolom - Weergeven. Dit werkt op dezelfde manier met rijen." #: 05030400.xhp msgctxt "" @@ -48892,7 +48892,7 @@ "2\n" "help.text" msgid "Choose Conditional Formatting to define format styles depending on certain conditions. If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. There are several types of conditional formatting that can be used." -msgstr " Kies Voorwaardelijke opmaak om opmaak te definiëren die afhankelijk is van bepaalde voorwaarden. Als er al een opmaak aan een cel was toegewezen, blijft deze ongewijzigd. De hier ingevoerde opmaak wordt vervolgens beoordeeld. Er zijn verschillende typen voorwaardelijke opmaak die gebruikt kunnen worden." +msgstr " Kies Voorwaardelijke opmaak om opmaak te definiëren die afhankelijk is van bepaalde voorwaarden. Als er al een opmaak aan een cel was toegewezen, blijft deze ongewijzigd. De hier ingevoerde opmaak wordt vervolgens beoordeeld. Er zijn verschillende typen voorwaardelijke opmaak die gebruikt kunnen worden." #: 05120000.xhp msgctxt "" @@ -48956,7 +48956,7 @@ "par_id31494134\n" "help.text" msgid "If you select Cell value is:" -msgstr "Als u selecteert Cellwaarde is:" +msgstr "Als u selecteert Cellwaarde is:" #: 05120000.xhp msgctxt "" @@ -48980,7 +48980,7 @@ "par_id31494137\n" "help.text" msgid "Click the Add button to add another condition, click the Remove button to remove a condition." -msgstr "Klik op de knop Toevoegen om een andere voorwaarde toe te voegen, klikt u op de knop Verwijderen om een voorwaarde te verwijderen." +msgstr "Klik op de knop Toevoegen om een andere voorwaarde toe te voegen, klikt u op de knop Verwijderen om een voorwaarde te verwijderen." #: 05120000.xhp msgctxt "" @@ -48988,7 +48988,7 @@ "par_id31494138\n" "help.text" msgid "In the Range field, define the range of cells concerned by the conditional formatting. Click on the Shrink button to minimize the dialog box. Click again on the button to come back to the dialog box once the range is selected." -msgstr "In het Bereik/ emph>veld, vul het bereik in van de cellen voor de voorwaardelijke opmaak. Klik op de knop Verkleinen om het dialoogvenster te minimaliseren. Klik nogmaals op de knop, om naar het dialoogvenster terug te keren, zodra het bereik is geselecteerd." +msgstr "In het Bereikveld, vul het bereik in van de cellen voor de voorwaardelijke opmaak. Klik op de knop Verkleinen om het dialoogvenster te minimaliseren. Klik nogmaals op de knop, om naar het dialoogvenster terug te keren, zodra het bereik is geselecteerd." #: 05120000.xhp msgctxt "" @@ -49004,7 +49004,7 @@ "par_id3149413a\n" "help.text" msgid "If you select Date is, see below explanations for Date." -msgstr "Als u Datum is selecteert, bekijk dan de uitleg hieronder voor Datum." +msgstr "Als u Datum is selecteert, bekijk dan de uitleg hieronder voor Datum." #: 05120000.xhp msgctxt "" @@ -49164,7 +49164,7 @@ "par_id31494157\n" "help.text" msgid "In front of Apply Styles, select the desired style in the list or chose New Style to create one." -msgstr "Selecteer vóór Opmaakprofiel toepassen het gewenste opmaakprofiel in de lijst of kies Nieuw om er één te maken." +msgstr "Selecteer vóór Opmaakprofiel toepassen het gewenste opmaakprofiel in de lijst of kies Nieuw om er één te maken." #: 05120000.xhp msgctxt "" @@ -49180,7 +49180,7 @@ "par_id31494177\n" "help.text" msgid "In the Range field, define the range of cells concerned by the conditional formatting. Click on the Shrink button to minimize the dialog box. Click again on the button to come back to the dialog box once the range is selected." -msgstr "In het Bereikveld, definieer het bereik van cellen voor de voorwaardelijke opmaak. Klik op de knop Verkleinen om het dialoogvenster te minimaliseren. Klik nogmaals op deze knop om naar het dialoogvenster terug te keren zodra het bereik is geselecteerd." +msgstr "In het Bereikveld, definieer het bereik van cellen voor de voorwaardelijke opmaak. Klik op de knop Verkleinen om het dialoogvenster te minimaliseren. Klik nogmaals op deze knop om naar het dialoogvenster terug te keren zodra het bereik is geselecteerd." #: 05120000.xhp msgctxt "" @@ -51105,7 +51105,7 @@ "12\n" "help.text" msgid "Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options. You define the default on %PRODUCTNAME - PreferencesTools - Options - Language settings - Languages." -msgstr "Sorteert de selectie van de laagste waarde naar de hoogste waarde. U kunt de sorteerregels opgeven met Gegevens - Sorteren - Opties. U definieert de standaardwaarde in %PRODUCTNAME - VoorkeurenExtra - Opties - Taalinstellingen - Talen." +msgstr "Sorteert de selectie van de laagste waarde naar de hoogste waarde. U kunt de sorteerregels opgeven met Gegevens - Sorteren - Opties. U definieert de standaardwaarde in %PRODUCTNAME - VoorkeurenExtra - Opties - Taalinstellingen - Talen." #: 12030100.xhp msgctxt "" @@ -51123,7 +51123,7 @@ "14\n" "help.text" msgid "Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options. You define the default on %PRODUCTNAME - PreferencesTools - Options - Language settings - Languages." -msgstr "Sorteert de selectie van de hoogste waarde naar de laagste waarde. U kunt de sorteerregels opgeven met Gegevens - Sorteren - Opties. U definieert de standaardwaarde in %PRODUCTNAME - VoorkeurenExtra - Opties - Taalinstellingen - Talen." +msgstr "Sorteert de selectie van de hoogste waarde naar de laagste waarde. U kunt de sorteerregels opgeven met Gegevens - Sorteren - Opties. U definieert de standaardwaarde in %PRODUCTNAME - VoorkeurenExtra - Opties - Taalinstellingen - Talen." #: 12030100.xhp msgctxt "" @@ -52708,7 +52708,7 @@ "3\n" "help.text" msgid "To hide a selected group, choose Data - Group and Outline – Hide Details." -msgstr "Om een geselecteerde groep te verbergen, kies Gegevens - Groeperen en overzicht maken -Details verbergen ." +msgstr "Om een geselecteerde groep te verbergen, kies Gegevens - Groeperen en overzicht maken -Details verbergen ." #: 12080200.xhp msgctxt "" @@ -56707,7 +56707,7 @@ "214\n" "help.text" msgid "The result is a date which is a number of months away from the start date. Only months are considered; days are not used for calculation." -msgstr "Het resultaat is een datum die een aantal maanden verwijderd is van de startdatum. Alleen maanden worden meegenomen; dagen worden niet voor de berekening gebruikt." +msgstr "Het resultaat is een datum die een aantal maanden verwijderd is van de startdatum. Alleen maanden worden meegenomen; dagen worden niet voor de berekening gebruikt." #: func_edate.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/scalc/05.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/scalc/05.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/scalc/05.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/scalc/05.po 2014-09-16 19:55:40.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: 2014-05-02 00:11+0200\n" -"PO-Revision-Date: 2014-05-24 06:31+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2014-09-01 09:42+0000\n" +"Last-Translator: JorenDC \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1400913117.000000\n" +"X-POOTLE-MTIME: 1409564574.000000\n" #: 02140000.xhp msgctxt "" @@ -826,7 +826,7 @@ "par_id8277230\n" "help.text" msgid "A1: 1 B1: C1: =B1 (displays 0)" -msgstr "A1: 1 B1: C1: =B1 (geeft 0 weer)" +msgstr "A1: 1 B1: C1: =B1 (geeft 0 weer)" #: empty_cells.xhp msgctxt "" @@ -970,7 +970,7 @@ "par_id2629474\n" "help.text" msgid "A1: " -msgstr "A1: " +msgstr "A1: " #: empty_cells.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/schart/00.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/schart/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/schart/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/schart/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -556,7 +556,7 @@ "par_id733359\n" "help.text" msgid "In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button." -msgstr "In het dialoogvenster Diagramtype van een lijndiagram of een XY-diagram dat lijnen weergeeft, kiest Vloeiende lijnen, klik vervolgens op de knop Eigenschappen." +msgstr "In het dialoogvenster Diagramtype van een lijndiagram of een XY-diagram dat lijnen weergeeft, kiest Vloeiende lijnen, klik vervolgens op de knop Eigenschappen." #: 00000004.xhp msgctxt "" @@ -564,4 +564,4 @@ "par_id8513095\n" "help.text" msgid "In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button." -msgstr "In het dialoogvenster Diagramtype van een lijndiagram of een XY-diagram dat lijnen weergeeft, kiest Gestapelde reeksen, klik vervolgens op de knop Eigenschappen." +msgstr "In het dialoogvenster Diagramtype van een lijndiagram of een XY-diagram dat lijnen weergeeft, kiest Gestapelde reeksen, klik vervolgens op de knop Eigenschappen." diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/schart/01.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/schart/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/schart/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/schart/01.po 2014-09-16 19:55:40.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: 2014-05-02 00:14+0200\n" -"PO-Revision-Date: 2014-06-13 09:36+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2014-09-01 09:44+0000\n" +"Last-Translator: JorenDC \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402652206.000000\n" +"X-POOTLE-MTIME: 1409564674.000000\n" #: 03010000.xhp msgctxt "" @@ -4482,7 +4482,7 @@ "par_id0679473\n" "help.text" msgid "Start to step up vertically to the middle of the Y values, draw a horizontal line and finish by stepping vertically to the end." -msgstr "Begin met verticaal te stijgen naar het midden van de Y-waarden, trek een horizontale lijn en maak het af door verticaal naar het einde te stappen." +msgstr "Begin met verticaal te stijgen naar het midden van de Y-waarden, trek een horizontale lijn en maak het af door verticaal naar het einde te stappen." #: three_d_view.xhp msgctxt "" @@ -5594,7 +5594,7 @@ "par_id3682058\n" "help.text" msgid "Choose the Line type from the dropdown to select how the points will be connected. You can choose either Straight lines, Smooth lines to draw curves through the points or Stepped lines to draw lines which step from point to point. Click Properties to change the properties for the smooth or stepped lines." -msgstr "Kies de lijnsoort uit de keuzelijst om te selecteren hoe de punten worden verbonden. U kunt kiezen uit Rechte lijnen, Vloeiende lijnen, om golven te tekenen door de punten of Getrapte lijnen, om te lijnen in stappen van punt naar punt te tekenen. Klik op Eigenschappen, om de eigenschappen van de vloeiden of getrapte lijnen aan te passen." +msgstr "Kies de lijnsoort uit de keuzelijst om te selecteren hoe de punten worden verbonden. U kunt kiezen uit Rechte lijnen, Vloeiende lijnen, om golven te tekenen door de punten of Getrapte lijnen, om te lijnen in stappen van punt naar punt te tekenen. Klik op Eigenschappen, om de eigenschappen van de vloeiden of getrapte lijnen aan te passen." #: type_net.xhp msgctxt "" @@ -6770,7 +6770,7 @@ "par_id7957396\n" "help.text" msgid "Choose Smooth from the Line type dropdown to draw curves instead of straight line segments." -msgstr "Kies Vloeiende lijnen als Lijnsoort keuzelijst om rondingen in plaats van rechte lijnstukken te tekenen." +msgstr "Kies Vloeiende lijnen als Lijnsoort keuzelijst om rondingen in plaats van rechte lijnstukken te tekenen." #: type_xy.xhp msgctxt "" @@ -6818,7 +6818,7 @@ "par_id1449076\n" "help.text" msgid "Choose Stepped from the Line type dropdown to draw lines which step from point to point instead of straight line segments." -msgstr "Kies Gestapelde lijnen als Lijnsoort keuzelijst om lijnen te trekken met stappen van punt tot punt in plaats van rechte lijnstukken." +msgstr "Kies Gestapelde lijnen als Lijnsoort keuzelijst om lijnen te trekken met stappen van punt tot punt in plaats van rechte lijnstukken." #: type_xy.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/shared/01.po 2014-09-16 19:55:40.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: 2014-06-25 17:39+0200\n" -"PO-Revision-Date: 2014-06-27 06:46+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2014-09-02 13:32+0000\n" +"Last-Translator: JorenDC \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403851567.000000\n" +"X-POOTLE-MTIME: 1409664751.000000\n" #: 01010000.xhp msgctxt "" @@ -549,7 +549,7 @@ "117\n" "help.text" msgid "The Templates Manager dialog allows you to manage your templates." -msgstr "In het dialoogvenster Sjabloonmanager kunt u uw sjablonen te beheren." +msgstr "In het dialoogvenster Sjabloonmanager kunt u uw sjablonen te beheren." #: 01010100.xhp msgctxt "" @@ -2963,7 +2963,7 @@ "par_id3149901\n" "help.text" msgid "Displays \"favourite\" places, i.e. shortcuts to local or remote locations." -msgstr "Toont \"favoriete\" plaatsen, d.w.z. snelkoppelingen naar lokale of externe locaties." +msgstr "Toont \"favoriete\" plaatsen, d.w.z. snelkoppelingen naar lokale of externe locaties." #: 01070000.xhp msgctxt "" @@ -6237,7 +6237,7 @@ "8\n" "help.text" msgid "Select a format for the clipboard contents that you want to paste." -msgstr "Selecteer een formaat voor de inhoud van het klembord dat u wilt plakken." +msgstr "Selecteer een formaat voor de inhoud van het klembord dat u wilt plakken." #: 02070000.xhp msgctxt "" @@ -6817,7 +6817,7 @@ "189\n" "help.text" msgid "Search options are listed in the Options area of the dialog" -msgstr "Zoekmogelijkheden zijn opgenomen in het gedeelte Opties van het dialoogvenster" +msgstr "Zoekmogelijkheden zijn opgenomen in het gedeelte Opties van het dialoogvenster" #: 02100000.xhp msgctxt "" @@ -6844,7 +6844,7 @@ "190\n" "help.text" msgid "Replacement options are listed in the Options area of the dialog." -msgstr "Vervangingsopties zijn opgenomen in het gedeelteOpties van het dialoogvenster." +msgstr "Vervangingsopties zijn opgenomen in het gedeelteOpties van het dialoogvenster." #: 02100000.xhp msgctxt "" @@ -7889,7 +7889,7 @@ "208\n" "help.text" msgid "For certain symbol fonts the code for special characters may depend on the used font. You can view the codes by choosing Insert - Special Character." -msgstr "Voor bepaalde symbool-lettertypes kan de code voor speciale tekens afhangen van het gebruikte lettertype. U kunt de codes te bekijken door Invoegen - Speciale tekens te kiezen." +msgstr "Voor bepaalde symbool-lettertypes kan de code voor speciale tekens afhangen van het gebruikte lettertype. U kunt de codes te bekijken door Invoegen - Speciale tekens te kiezen." #: 02100001.xhp msgctxt "" @@ -12663,7 +12663,7 @@ "16\n" "help.text" msgid "To display all of the records in a table, click the Reset Filter icon." -msgstr "Om alle records weer te geven in een tabel, klikt u op het pictogramFilter verwijderen." +msgstr "Om alle records weer te geven in een tabel, klikt u op het pictogramFilter verwijderen." #: 02250000.xhp msgctxt "" @@ -14861,7 +14861,7 @@ "40\n" "help.text" msgid "If the language list consists of an editable combo box, you can enter a valid BCP 47 language tag if the language you want to assign is not available from the selectable list." -msgstr "Als de taallijst een bewerkbare keuzelijst is, kunt u een geldige BCP 47 taaltag invoeren als de taal die u wilt toewijzen niet in de lijst beschikbaar is." +msgstr "Als de taallijst een bewerkbare keuzelijst is, kunt u een geldige BCP 47 taaltag invoeren als de taal die u wilt toewijzen niet in de lijst beschikbaar is." #: 05020100.xhp msgctxt "" @@ -14870,7 +14870,7 @@ "41\n" "help.text" msgid "For language tag details please see the For users section on the langtag.net web site." -msgstr "Voor taaltag-details zie de Voor gebruikers sectie op de langtag.net website." +msgstr "Voor taaltag-details zie de Voor gebruikers sectie op de langtag.net website." #: 05020100.xhp msgctxt "" @@ -15482,7 +15482,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 "Definieert de taalinstelling voor de geselecteerde-cellen. Als de taalinstelling op Automatisch staat, neemt $[officename] automatisch de getalnotatie van de standaard taal van het systeem. Kies een taal om de instellingen voor de geselecteerde fix-cellen aan te passen." +msgstr "Definieert de taalinstelling voor de geselecteerde-cellen. Als de taalinstelling op Automatisch staat, neemt $[officename] automatisch de getalnotatie van de standaard taal van het systeem. Kies een taal om de instellingen voor de geselecteerde fix-cellen aan te passen." #: 05020300.xhp msgctxt "" @@ -19961,7 +19961,7 @@ "44\n" "help.text" msgid "You can specify the border position, size, and style in Writer or Calc. In $[officename] Writer, you can add borders to pages, frames, graphics, tables, paragraphs, characters and to embedded objects. " -msgstr "U kunt de positie, grootte en opmaak van de rand opgeven in Writer of Calc. In $[officename] Writer, kunt u randen toevoegen aan pagina's, frames, afbeeldingen, tabellen, alinea's, tekens en ingesloten objecten." +msgstr "U kunt de positie, grootte en opmaak van de rand opgeven in Writer of Calc. In $[officename] Writer, kunt u randen toevoegen aan pagina's, frames, afbeeldingen, tabellen, alinea's, tekens en ingesloten objecten." #: 05030500.xhp msgctxt "" @@ -24785,7 +24785,7 @@ "par_id3154583\n" "help.text" msgid "Select the shape to be used at the corners of the line. In case of a small angle between lines, a mitered shape is replaced with a beveled shape." -msgstr " Kies de vorm die moet worden gebruikt op de hoeken van een lijn. Bij een kleine hoek tussen lijnen, wordt een verstekhoeken vervangen door een afgeschuinde vorm. " +msgstr " Kies de vorm die moet worden gebruikt op de hoeken van een lijn. Bij een kleine hoek tussen lijnen, wordt een verstekhoeken vervangen door een afgeschuinde vorm. " #: 05200100.xhp msgctxt "" @@ -24801,7 +24801,7 @@ "par_id3154586\n" "help.text" msgid "Select the style of the line end caps. The caps are added to inner dashes as well." -msgstr "Kies de stijl van de eindkappen van een lijn . De kappen worden ook toegevoegd aan de binnenstreepjes." +msgstr "Kies de stijl van de eindkappen van een lijn . De kappen worden ook toegevoegd aan de binnenstreepjes." #: 05200200.xhp msgctxt "" @@ -30421,7 +30421,7 @@ "46\n" "help.text" msgid "Enter the rotation angle for the text in the selected cell(s). A positive number rotates the text to the left and a negative number rotates the text to the right." -msgstr "Voer de draaihoek in voor de tekst in de geselecteerde cel(len). Een positief getal roteert de tekst naar links en een negatief getal roteert de tekst rechts." +msgstr "Voer de draaihoek in voor de tekst in de geselecteerde cel(len). Een positief getal roteert de tekst naar links en een negatief getal roteert de tekst rechts." #: 05340300.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/shared/02.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/shared/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/shared/02.po 2014-09-16 19:55:40.000000000 +0000 @@ -5675,7 +5675,7 @@ "43\n" "help.text" msgid "The index of the selected entry in the list is linked to the field specified under Data field." -msgstr "De index van het in de lijst geselecteerde item is gekoppeld aan het veld onder Gegevensveld." +msgstr "De index van het in de lijst geselecteerde item is gekoppeld aan het veld onder Gegevensveld." #: 01170102.xhp msgctxt "" @@ -5756,7 +5756,7 @@ "43\n" "help.text" msgid "The index of the selected entry in the list is linked to the field specified under Data field." -msgstr "De index van het in de lijst geselecteerde item is gekoppeld aan het veld onder Gegevensveld." +msgstr "De index van het in de lijst geselecteerde item is gekoppeld aan het veld onder Gegevensveld." #: 01170102.xhp msgctxt "" @@ -14176,7 +14176,7 @@ "13\n" "help.text" msgid "Moves the fields that you selected in the Database columns list box into the selection field. You can also double-click the entry to select it." -msgstr "Hiermee verplaatst u de velden die u in de keuzelijst Databasekolommen hebt geselecteerd naar het veld selectie.U kunt ook dubbelklikken op het item om het te selecteren." +msgstr "Hiermee verplaatst u de velden die u in de keuzelijst Databasekolommen hebt geselecteerd naar het veld selectie.U kunt ook dubbelklikken op het item om het te selecteren." #: 12070200.xhp msgctxt "" @@ -18793,7 +18793,7 @@ "par_id3154894\n" "help.text" msgid "Expands the created select statement of the SQL Query by the LIMIT X clause. This can be used to limit your SQL Query results to those that fall within the first X number of it." -msgstr "Breidt het selectstatement van de SQL Query uit met het LIMIT X-clausule . Dit kan worden gebruikt de resultaten van uw SQL Query te beperken tot degenen die binnen de eerste X aantal vallen." +msgstr "Breidt het selectstatement van de SQL Query uit met het LIMIT X-clausule . Dit kan worden gebruikt de resultaten van uw SQL Query te beperken tot degenen die binnen de eerste X aantal vallen." #: more_controls.xhp msgctxt "" @@ -18905,7 +18905,7 @@ "par_id3152820\n" "help.text" msgid "In the Query Properties dialog you can set two properties of the SQL Query, i.e. whether to return distinct values, and whether to limit the result set." -msgstr "In het dialoogvenster Query-eigenschappen kunt u twee eigenschappen van de SQL Query instellen, dat zijn; of verschillende waarden terug gegeven worden en of de resultaatset beperkt moet worden." +msgstr "In het dialoogvenster Query-eigenschappen kunt u twee eigenschappen van de SQL Query instellen, dat zijn; of verschillende waarden terug gegeven worden en of de resultaatset beperkt moet worden." #: querypropdlg.xhp msgctxt "" @@ -18913,7 +18913,7 @@ "par_id3153761\n" "help.text" msgid "In the Query Design View, choose Edit - Query Properties." -msgstr "In de query-ontwerpweergave, kies Bewerken - Query-eigenschappen." +msgstr "In de query-ontwerpweergave, kies Bewerken - Query-eigenschappen." #: querypropdlg.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2013-07-19 07:39+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2014-09-02 13:35+0000\n" +"Last-Translator: JorenDC \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1374219553.0\n" +"X-POOTLE-MTIME: 1409664906.000000\n" #: 02000000.xhp msgctxt "" @@ -1641,7 +1641,7 @@ "par_id3147501\n" "help.text" msgid "Allows you to maximize the number of records with which query returns." -msgstr "Hiermee kunt u het aantal records die de query oplevert maximaliseren. " +msgstr "Hiermee kunt u het aantal records die de query oplevert maximaliseren. " #: 02010100.xhp msgctxt "" @@ -1649,7 +1649,7 @@ "par_id3152350\n" "help.text" msgid "If there is added a Limit, you will get at most as many rows as the number you specify. Otherwise, you will see all records corresponding to the query criteria." -msgstr "Als er een Limiet wordt toegevoegd, krijgt u hooguit net zoveel rijen als het aantal dat u opgeeft. Anders zult u alle records zien, die met de query-criteria overeenkomen." +msgstr "Als er een Limiet wordt toegevoegd, krijgt u hooguit net zoveel rijen als het aantal dat u opgeeft. Anders zult u alle records zien, die met de query-criteria overeenkomen." #: 02010100.xhp msgctxt "" @@ -12906,7 +12906,7 @@ "par_id7128818\n" "help.text" msgid "To use the Report Builder, the Report Builder component must be installed. In addition, the Java Runtime Environment (JRE) software must be installed, and this software must be selected in %PRODUCTNAME." -msgstr "Om de 'Report Builder' te gebruiken, moet het 'Report Builder' component geïnstalleerd worden. Daarnaast moet de Java Runtime Environment (JRE) software worden geïnstalleerd en deze software moet worden geselecteerd in % PRODUCTNAME." +msgstr "Om de 'Report Builder' te gebruiken, moet het 'Report Builder' component geïnstalleerd worden. Daarnaast moet de Java Runtime Environment (JRE) software worden geïnstalleerd en deze software moet worden geselecteerd in %PRODUCTNAME." #: rep_main.xhp msgctxt "" @@ -12930,7 +12930,7 @@ "par_id4044312\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced." -msgstr "Kies % PRODUCTNAME - Voorkeuren Extra - Opties - %PRODUCTNAME - Geavanceerd." +msgstr "Kies %PRODUCTNAME - Voorkeuren Extra - Opties - %PRODUCTNAME - Geavanceerd." #: rep_main.xhp msgctxt "" @@ -12970,7 +12970,7 @@ "par_id6317636\n" "help.text" msgid "If no JRE version is found on your system, open your web browser and download the JRE software from http://www.java.com. Install the JRE software. Then restart %PRODUCTNAME and open %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced again." -msgstr "Indien er geen JRE-versie op uw systeem wordt gevonden, opent u uw webbrowser en download de JRE-software van http://www.java.com . Installeer de JRE-software. Start dan % PRODUCTNAME opnieuw en open % PRODUCTNAME - VoorkeurenExtra - Opties -%PRODUCTNAME - Nogmaals Geavanceerd." +msgstr "Indien er geen JRE-versie op uw systeem wordt gevonden, opent u uw webbrowser en download de JRE-software van http://www.java.com . Installeer de JRE-software. Start dan %PRODUCTNAME opnieuw en open %PRODUCTNAME - VoorkeurenExtra - Opties -%PRODUCTNAME - Nogmaals Geavanceerd." #: rep_main.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.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: 2014-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-06-21 15:26+0000\n" -"Last-Translator: vpanter \n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" +"PO-Revision-Date: 2014-09-02 13:42+0000\n" +"Last-Translator: JorenDC \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403364364.000000\n" +"X-POOTLE-MTIME: 1409665330.000000\n" #: aaa_start.xhp msgctxt "" @@ -12882,7 +12882,7 @@ "par_id3149399\n" "help.text" msgid "If Tools - Macros - Record Macro menu item is missing, make sure that macro recording feature is enabled in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced." -msgstr "Als het menu-item Extra - Macro's - Macro opnemen ontbreekt, zorg ervoor dat macro opnamefunctie is ingeschakeld in % PRODUCTNAME - voorkeuren Extra - Opties-% PRODUCTNAME - Algemeen." +msgstr "Als het menu-item Extra - Macro's - Macro opnemen ontbreekt, zorg ervoor dat macro opnamefunctie is ingeschakeld in %PRODUCTNAME - voorkeuren Extra - Opties-%PRODUCTNAME - Algemeen." #: macro_recording.xhp msgctxt "" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programmeren in %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "De functionaliteit voor het opnemen van macro's is alleen beschikbaar voor tekstdocumenten in %PRODUCTNAME Writer en werkbladen in %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" @@ -15025,7 +15017,7 @@ "par_idN10672\n" "help.text" msgid "The paragraph formats are the formats applied to the whole paragraph. The character formats are those applied to a portion of the paragraph. For example, if you apply the bold format to a whole paragraph the bold format is a paragraph format. Then if you unbold a portion of this paragraph, the bold format is still a paragraph format but the portion you unbold has a \"not bold\" character format." -msgstr "De alinea-opmaak zijn de instellingen die op de hele alinea worden toegepast. Detekenopmaak zijn diegene die gelden voor een deel van de alinea. Bijvoorbeeld, als u de opmaak 'vet' toepast op een hele alinea, is de opmaak vet een alinea-opmaak. Als u dan een deel van deze alinea 'niet vet' maakt, is de opmaak 'vet' nog steeds een alinea opmaak, maar het gedeelte dat u 'niet vet' maakt heeft dan een \"niet vet\" tekenopmaak." +msgstr "De alinea-opmaak zijn de instellingen die op de hele alinea worden toegepast. Detekenopmaak zijn diegene die gelden voor een deel van de alinea. Bijvoorbeeld, als u de opmaak 'vet' toepast op een hele alinea, is de opmaak vet een alinea-opmaak. Als u dan een deel van deze alinea 'niet vet' maakt, is de opmaak 'vet' nog steeds een alinea opmaak, maar het gedeelte dat u 'niet vet' maakt heeft dan een \"niet vet\" tekenopmaak." #: paintbrush.xhp msgctxt "" @@ -16550,7 +16542,7 @@ "par_id3153885\n" "help.text" msgid "Using these commands in conjunction with the Accept Change and Reject Change commands allows navigating, accepting and rejecting changes without invoking the Edit - Changes - Accept or Reject dialog." -msgstr "Met behulp van deze opdrachten in combinatie met de Wijziging Accepteren en Wijziging Negeren opdrachten kunt u navigeren, accepteren en afwijzen van veranderingen zonder gebruikmaking van het dialoogvenster Bewerken - Wijzigingen - Accepteren of Annuleren." +msgstr "Met behulp van deze opdrachten in combinatie met de Wijziging Accepteren en Wijziging Negeren opdrachten kunt u navigeren, accepteren en afwijzen van veranderingen zonder gebruikmaking van het dialoogvenster Bewerken - Wijzigingen - Accepteren of Annuleren." #: redlining_protect.xhp msgctxt "" @@ -17622,7 +17614,7 @@ "17\n" "help.text" msgid "To open the template for editing, choose File - New - Templates, select the template and click the Edit button." -msgstr "Als u de sjabloon wilt bewerken, kiest u Bestand - Nieuw - Sjablonen, selecteer de sjabloon en klik op de knop Bewerken." +msgstr "Als u de sjabloon wilt bewerken, kiest u Bestand - Nieuw - Sjablonen, selecteer de sjabloon en klik op de knop Bewerken." #: standard_template.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/shared/optionen.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/shared/optionen.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-06-27 06:30+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2014-09-02 13:48+0000\n" +"Last-Translator: JorenDC \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403850641.000000\n" +"X-POOTLE-MTIME: 1409665714.000000\n" #: 01000000.xhp msgctxt "" @@ -793,7 +793,7 @@ "par_id3149561\n" "help.text" msgid " Specifies that %PRODUCTNAME saves all open documents when saving auto recovery information. Uses the same time interval as AutoRecovery does. " -msgstr " Geeft aan dat % PRODUCTNAME alle geopende documenten opslaat bij het automatisch opslaan van herstelgegevens. Gebruikt dezelfde tijdsinterval als AutoHerstel doet. " +msgstr " Geeft aan dat %PRODUCTNAME alle geopende documenten opslaat bij het automatisch opslaan van herstelgegevens. Gebruikt dezelfde tijdsinterval als AutoHerstel doet. " #: 01010200.xhp msgctxt "" @@ -1641,7 +1641,7 @@ "70\n" "help.text" msgid "By selecting a certain language you can limit the use of the custom dictionary. By selecting All the custom dictionary is used independently of the current language." -msgstr "Door het selecteren van een bepaalde taal kunt u het gebruik van de aangepaste woordenlijst beperken. Door Alle te selecteren wordt de aangepaste woordenlijst onafhankelijk van de huidige taal gebruikt." +msgstr "Door het selecteren van een bepaalde taal kunt u het gebruik van de aangepaste woordenlijst beperken. Door Alle te selecteren wordt de aangepaste woordenlijst onafhankelijk van de huidige taal gebruikt." #: 01010400.xhp msgctxt "" @@ -1811,7 +1811,7 @@ "89\n" "help.text" msgid "Adds the word in the Word text field to your current custom dictionary. The word in the Suggestion field is also added when working with exception dictionaries." -msgstr "Voegt het woord in het tekstveld Woord aan uw huidige aangepaste woordenlijst toe. Het woord in het veldSuggestie wordt ook toegevoegd bij het werken met uitzonderingswoordenboeken." +msgstr "Voegt het woord in het tekstveld Woord aan uw huidige aangepaste woordenlijst toe. Het woord in het veldSuggestie wordt ook toegevoegd bij het werken met uitzonderingswoordenboeken." #: 01010400.xhp msgctxt "" @@ -4038,7 +4038,7 @@ "72\n" "help.text" msgid "Specifies that the transparency is only printed if the transparent area covers less than a quarter of the entire page." -msgstr "Geeft aan dat de transparantie alleen wordt afgedrukt als het transparante gebied minder dan een kwart van de gehele pagina beslaat." +msgstr "Geeft aan dat de transparantie alleen wordt afgedrukt als het transparante gebied minder dan een kwart van de gehele pagina beslaat." #: 01010900.xhp msgctxt "" @@ -4056,7 +4056,7 @@ "74\n" "help.text" msgid "With this option transparency is never printed." -msgstr "Met deze optie wordt de transparantie nooit afgedrukt." +msgstr "Met deze optie wordt de transparantie nooit afgedrukt." #: 01010900.xhp msgctxt "" @@ -4092,7 +4092,7 @@ "76\n" "help.text" msgid "High print quality corresponds to a resolution of 300dpi. Normal print quality corresponds to a resolution of 200dpi. " -msgstr "Hoge afdrukkwaliteit komt overeen met een resolutie van 300dpi. Normale afdrukkwaliteit komt overeen met een resolutie van 200 dpi." +msgstr "Hoge afdrukkwaliteit komt overeen met een resolutie van 300dpi. Normale afdrukkwaliteit komt overeen met een resolutie van 200 dpi." #: 01010900.xhp msgctxt "" @@ -4110,7 +4110,7 @@ "77\n" "help.text" msgid "Specifies the maximum print quality in dpi. The resolution can only be reduced and not increased." -msgstr "Geeft de maximale afdrukkwaliteit in dpi. De resolutie kan alleen worden verminderd en niet verhoogd." +msgstr "Geeft de maximale afdrukkwaliteit in dpi. De resolutie kan alleen worden verminderd en niet verhoogd." #: 01010900.xhp msgctxt "" @@ -4128,7 +4128,7 @@ "78\n" "help.text" msgid "If this field is marked, the reduction in print quality for bitmaps also applies to the transparent areas of objects." -msgstr "Als dit veld wordt gemarkeerd, geldt de vermindering van de afdrukkwaliteit voor bitmaps ook voor de transparante gebieden van objecten." +msgstr "Als dit veld wordt gemarkeerd, geldt de vermindering van de afdrukkwaliteit voor bitmaps ook voor de transparante gebieden van objecten." #: 01010900.xhp msgctxt "" @@ -4146,7 +4146,7 @@ "79\n" "help.text" msgid "If this field is marked, gradients are printed with reduced quality." -msgstr "Als dit veld gemarkeerd is, worden kleurverlopen met verminderde kwaliteit afgedrukt." +msgstr "Als dit veld gemarkeerd is, worden kleurverlopen met verminderde kwaliteit afgedrukt." #: 01010900.xhp msgctxt "" @@ -4164,7 +4164,7 @@ "80\n" "help.text" msgid "Specifies the maximum number of gradient stripes for printing." -msgstr "Geeft u het maximum aantal kleurverloop-strepen voor het afdrukken. " +msgstr "Geeft u het maximum aantal kleurverloop-strepen voor het afdrukken. " #: 01010900.xhp msgctxt "" @@ -4182,7 +4182,7 @@ "81\n" "help.text" msgid "Specifies that gradients are only printed in a single intermediate color." -msgstr "Geeft aan dat kleurovergangen alleen worden afgedrukt in een enkele tussenliggende kleur." +msgstr "Geeft aan dat kleurovergangen alleen worden afgedrukt in een enkele tussenliggende kleur." #: 01010900.xhp msgctxt "" @@ -4200,7 +4200,7 @@ "82\n" "help.text" msgid "Specifies that all colors are printed only as grayscale." -msgstr "Geeft aan dat alle kleuren alleen in grijstinten worden afgedrukt." +msgstr "Geeft aan dat alle kleuren alleen in grijstinten worden afgedrukt." #: 01010900.xhp msgctxt "" @@ -4218,7 +4218,7 @@ "51\n" "help.text" msgid "Defines which warnings appear before printing begins." -msgstr "Definieert welke waarschuwingen verschijnen voordat het afdrukken begint." +msgstr "Definieert welke waarschuwingen verschijnen voordat het afdrukken begint." #: 01010900.xhp msgctxt "" @@ -4378,7 +4378,7 @@ "13\n" "help.text" msgid "Specifies the total cache size for all graphics." -msgstr "Stelt de totale cachegrootte voor alle afbeeldingen in." +msgstr "Stelt de totale cachegrootte voor alle afbeeldingen in." #: 01011000.xhp msgctxt "" @@ -4396,7 +4396,7 @@ "15\n" "help.text" msgid "Specifies that objects which are larger than the selected megabytes will not be placed in the cache." -msgstr "Geeft op dat objecten die groter zijn dan de geselecteerde megabytes niet in de cache wordt geplaatst." +msgstr "Geeft op dat objecten die groter zijn dan de geselecteerde megabytes niet in de cache wordt geplaatst." #: 01011000.xhp msgctxt "" @@ -4414,7 +4414,7 @@ "17\n" "help.text" msgid "Specifies the time that each graphic remains in the cache in hours and minutes." -msgstr "Stelt de tijd in dat elke afbeelding in de cache blijft, in uren en minuten. " +msgstr "Stelt de tijd in dat elke afbeelding in de cache blijft, in uren en minuten. " #: 01011000.xhp msgctxt "" @@ -5897,7 +5897,7 @@ "10\n" "help.text" msgid "Defines the settings for exporting HTML documents. To export in HTML format select the HTML Document file type in the Save As dialog. You can find further instructions in the Import and export filters description." -msgstr "Definieert de instellingen voor het exporteren van HTML-documenten. Om in HTML-formaat te exporteren, selecteert u het bestandstype HTML document in het dialoogvenster Opslaan als. U kunt verdere instructies vinden in de beschrijving van de Import- en exportfilters." +msgstr "Definieert de instellingen voor het exporteren van HTML-documenten. Om in HTML-formaat te exporteren, selecteert u het bestandstype HTML document in het dialoogvenster Opslaan als. U kunt verdere instructies vinden in de beschrijving van de Import- en exportfilters." #: 01030500.xhp msgctxt "" @@ -5951,7 +5951,7 @@ "46\n" "help.text" msgid "If this field is marked, when exporting to HTML a warning is shown that %PRODUCTNAME Basic macros will be lost." -msgstr "Als dit veld gemarkeerd is, wordt er bij het exporteren naar HTML een waarschuwing gegeven dat % PRODUCTNAME Basic-macro's verloren gaan." +msgstr "Als dit veld gemarkeerd is, wordt er bij het exporteren naar HTML een waarschuwing gegeven dat %PRODUCTNAME Basic-macro's verloren gaan." #: 01030500.xhp msgctxt "" @@ -7209,7 +7209,7 @@ "43\n" "help.text" msgid "If Number format recognition is not marked, only input in the format that has been set at the cell is accepted. Any other input resets the format to Text." -msgstr "Als Nummernotatie/herkenning niet is gemarkeerd, wordt alleen invoer in het vastgestelde formaat van de cel geaccepteerd. Elke andere invoer zet de opmaak naar Tekst." +msgstr "Als Nummernotatie/herkenning niet is gemarkeerd, wordt alleen invoer in het vastgestelde formaat van de cel geaccepteerd. Elke andere invoer zet de opmaak naar Tekst." #: 01040500.xhp msgctxt "" @@ -7637,7 +7637,7 @@ "44\n" "help.text" msgid "If you have inserted text using the Hidden Paragraph field, specifies whether to display the hidden paragraph. This option has the same function as the menu commands View - Hidden ParagraphsView - Hidden Paragraphs available in open text documents." -msgstr "Als u tekst hebt ingevoegd met het veld Verborgen alinea, geeft u hiermee aan of de verborgen alinea getoond moet worden. Deze optie heeft de dezelfde functie als de menukeuze Beeld - Verborgen alinea'sBeeld - Verborgen alinea's is beschikbaar in open tekstdocumenten." +msgstr "Als u tekst hebt ingevoegd met het veld Verborgen alinea, geeft u hiermee aan of de verborgen alinea getoond moet worden. Deze optie heeft de dezelfde functie als de menukeuze Beeld - Verborgen alinea'sBeeld - Verborgen alinea's is beschikbaar in open tekstdocumenten." #: 01040600.xhp msgctxt "" @@ -8714,7 +8714,7 @@ "par_idN10848\n" "help.text" msgid "Click to use the current settings on this tab page as the default for further sessions with %PRODUCTNAME." -msgstr "Klik om de huidige instellingen op dit tabblad te gebruiken als standaard voor verdere sessies met % PRODUCTNAME." +msgstr "Klik om de huidige instellingen op dit tabblad te gebruiken als standaard voor verdere sessies met %PRODUCTNAME." #: 01041000.xhp msgctxt "" @@ -9506,7 +9506,7 @@ "8\n" "help.text" msgid "Specifies whether to show numbers with the value of 0." -msgstr "Geeft aan of nulwaarden worden getoond" +msgstr "Geeft aan of nulwaarden worden getoond" #: 01060100.xhp msgctxt "" @@ -9524,7 +9524,7 @@ "10\n" "help.text" msgid "Specifies that a small rectangle in the top right corner of the cell indicates that a comment exists. The comment will be shown only when you enable tips under %PRODUCTNAME - General in the Options dialog box." -msgstr "Geeft aan dat een kleine rechthoek in de rechterbovenhoek van de cel aangeeft dat er een notitie is. De notitie wordt alleen getoond als u tips aan heeft gezet onder % PRODUCTNAME - Algemeen in het dialoogvenster Opties." +msgstr "Geeft aan dat een kleine rechthoek in de rechterbovenhoek van de cel aangeeft dat er een notitie is. De notitie wordt alleen getoond als u tips aan heeft gezet onder %PRODUCTNAME - Algemeen in het dialoogvenster Opties." #: 01060100.xhp msgctxt "" @@ -10085,7 +10085,7 @@ "2\n" "help.text" msgid "All user-defined lists are displayed in the Sort Lists dialog. You can also define and edit your own lists. Only text can be used as sort lists, no numbers." -msgstr "Alle gebruikergedefinieerde lijsten worden weergegeven in het dialoogvenster Sorteerlijsten. U kunt ook uw eigen lijsten samenstellen bewerken. Alleen tekst kan worden gebruikt voor soorteerlijsten, geen getallen." +msgstr "Alle gebruikergedefinieerde lijsten worden weergegeven in het dialoogvenster Sorteerlijsten. U kunt ook uw eigen lijsten samenstellen bewerken. Alleen tekst kan worden gebruikt voor soorteerlijsten, geen getallen." #: 01060400.xhp msgctxt "" @@ -10139,7 +10139,7 @@ "8\n" "help.text" msgid "Defines the spreadsheet and the cells to copy, in order to include them in the Lists box. The currently selected range in the spreadsheet is the default." -msgstr "Definieert het werkblad en de te kopiëren cellen, met de bedoeling ze op te nemen in het Lijstvak. Het huidige geselecteerde bereik in het werkblad is de standaard." +msgstr "Definieert het werkblad en de te kopiëren cellen, met de bedoeling ze op te nemen in het Lijstvak. Het huidige geselecteerde bereik in het werkblad is de standaard." #: 01060400.xhp msgctxt "" @@ -10157,7 +10157,7 @@ "14\n" "help.text" msgid "Copies the contents of the cells in the Copy list from box. If you select a reference to related rows and columns, the Copy List dialog appears after clicking the button. You can use this dialog to define if the reference is converted to sort lists by row or by column." -msgstr "Kopieert de inhoud van de cellen naar het vak Lijst kopiëren van. Als u een verwijzing naar rijen en kolommen opgeeft , het dialoogvenster Kopieer lijst verschijnt na het klikken op de knop. U kunt dit dialoogvenster gebruiken om te bepalen of de verwijzing op rij of kolom wordt omgezet in sorteerlijsten." +msgstr "Kopieert de inhoud van de cellen naar het vak Lijst kopiëren van. Als u een verwijzing naar rijen en kolommen opgeeft , het dialoogvenster Kopieer lijst verschijnt na het klikken op de knop. U kunt dit dialoogvenster gebruiken om te bepalen of de verwijzing op rij of kolom wordt omgezet in sorteerlijsten." #: 01060400.xhp msgctxt "" @@ -10193,7 +10193,7 @@ "12\n" "help.text" msgid "Adds a new list into the Lists box. If you would like to edit this list in the Entries box, this button will change from Add to Modify, which enables you to include the newly modified list." -msgstr "Voegt de nieuwe lijst toe aan het vak Lijsten. Als u deze lijst in het vak Items wilt bewerken, veranderd deze knop van Toevoegen naar Wijzigen, wat u in staat stelt om in de nieuwe lijst toe te voegen." +msgstr "Voegt de nieuwe lijst toe aan het vak Lijsten. Als u deze lijst in het vak Items wilt bewerken, veranderd deze knop van Toevoegen naar Wijzigen, wat u in staat stelt om in de nieuwe lijst toe te voegen." #: 01060401.xhp msgctxt "" @@ -11380,7 +11380,7 @@ "par_id4155419\n" "help.text" msgid "In %PRODUCTNAME Calc function names can be localized. By default, the check box is off, which means the localized function names are used. Checking this check box will swap localized function names with the English ones. This change takes effect in all of the following areas: formula input and display, function wizard, and formula tips. You can of course uncheck it to go back to the localized function names." -msgstr "In% PRODUCTNAME Calc kunnen functienamen worden gelokaliseerd. Standaard is het selectievakje uitgeschakeld, wat betekent dat de gelokaliseerde functienamen worden gebruikt. Door het aanvinken van dit vakje zal worden gewissled naar Engelse functienamen. Deze wijziging heeft effect voor alle volgende gebieden: formule invoer en weergave, functie wizard en formule tips. U kunt natuurlijk het vinkje weghalen om terug te gaan naar de gelokaliseerde functienamen." +msgstr "In %PRODUCTNAME Calc kunnen functienamen worden gelokaliseerd. Standaard is het selectievakje uitgeschakeld, wat betekent dat de gelokaliseerde functienamen worden gebruikt. Door het aanvinken van dit vakje zal worden gewisseld naar Engelse functienamen. Deze wijziging heeft effect voor alle volgende gebieden: formule invoer en weergave, functie wizard en formule tips. U kunt natuurlijk het vinkje weghalen om terug te gaan naar de gelokaliseerde functienamen." #: 01060900.xhp msgctxt "" @@ -11659,7 +11659,7 @@ "34\n" "help.text" msgid "%PRODUCTNAME displays the contour line of each individual object when moving this object. The Contour of each individual object option enables you to see if single objects conflict with other objects in the target position. If you do not mark the Contour of each individual object option, %PRODUCTNAME only displays a square contour that includes all selected objects." -msgstr "%PRODUCTNAME geeft de omtreklijnen van elk individueel object weer bij het verplaatsen van dit object. De optie Contour van elk object maakt het u mogelijk om te zien of individuele objecten botsen met andere objecten op de bestemmingspositie. Als u de optie Contour van elk object niet selecteert, toont %PRODUCTNAME alleen een vierkante omtrek waarin alle geselecteerde objecten zijn opgenomen." +msgstr "%PRODUCTNAME geeft de omtreklijnen van elk individueel object weer bij het verplaatsen van dit object. De optie Contour van elk object maakt het u mogelijk om te zien of individuele objecten botsen met andere objecten op de bestemmingspositie. Als u de optie Contour van elk object niet selecteert, toont %PRODUCTNAME alleen een vierkante omtrek waarin alle geselecteerde objecten zijn opgenomen." #: 01070300.xhp msgctxt "" @@ -11927,7 +11927,7 @@ "26\n" "help.text" msgid "Specifies that graphic objects can only be rotated within the rotation angle that you selected in the When rotating control. If you want to rotate an object outside the defined angle, press the Shift key when rotating. Release the key when the desired rotation angle is reached." -msgstr "Geeft aan dat grafische objecten alleen binnen de draaihoek die u geselecteerd heeft in de Rotatie-controle, kunnen worden gedraaid. Wilt u een object buiten een gedefinieerde hoek draaien, drukt u tijdens het draaien op de Shift-toets. Laat de toets los wanneer de gewenste draaihoek is bereikt." +msgstr "Geeft aan dat grafische objecten alleen binnen de draaihoek die u geselecteerd heeft in de Rotatie-controle, kunnen worden gedraaid. Wilt u een object buiten een gedefinieerde hoek draaien, drukt u tijdens het draaien op de Shift-toets. Laat de toets los wanneer de gewenste draaihoek is bereikt." #: 01070300.xhp msgctxt "" @@ -12837,7 +12837,7 @@ "15\n" "help.text" msgid "Adjusts the formula to the page format used in the printout. The real size will be determined by the used paper format." -msgstr "Past de formule aan de pagina-indeling die in de afdruk wordt gebruikt aan." +msgstr "Past de formule aan de pagina-indeling die in de afdruk wordt gebruikt aan." #: 01090100.xhp msgctxt "" @@ -12855,7 +12855,7 @@ "17\n" "help.text" msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor. Type the desired enlargement factor directly in the Scaling control, or set the value using the arrow buttons." -msgstr "Verkleint of vergroot de grootte van de afgedrukte formule met een opgegeven schaalfactor. Typ de gewenste vergrotingsfactor direct in het veld van de Schaalfactor in, of stel de waarde in met de pijltoetsen." +msgstr "Verkleint of vergroot de grootte van de afgedrukte formule met een opgegeven schaalfactor. Typ de gewenste vergrotingsfactor direct in het veld van de Schaalfactor in, of stel de waarde in met de pijltoetsen." #: 01090100.xhp msgctxt "" @@ -13489,7 +13489,7 @@ "par_id3145121\n" "help.text" msgid "Specifies the date acceptance patterns for the current locale. Calc spreadsheet and Writer table cell input needs to match locale dependent date acceptance patterns before it is recognized as a valid date. Default locale dependent date acceptance patterns are generated build time, but it is possible to add more or modify them in this edit box." -msgstr " Geeft de datum aanvaardingspatronen voor de huidige taalinstellingen. Calc-werkblad en Writer-tabelcel invoer moet overeenkomen met taalafhankelijke datum aanvaardingspatronen voordat deze wordt herkend als een geldige datum. Standaard taalafhankelijke datum aanvaardingspatronen worden gegenereerd, maar het is mogelijk om er meer toe te voegen of aan te passen in dit invoervak." +msgstr "Geeft de datum aanvaardingspatronen voor de huidige taalinstellingen. Calc-werkblad en Writer-tabelcel invoer moet overeenkomen met taalafhankelijke datum aanvaardingspatronen voordat deze wordt herkend als een geldige datum. Standaard taalafhankelijke datum aanvaardingspatronen worden gegenereerd, maar het is mogelijk om er meer toe te voegen of aan te passen in dit invoervak." #: 01140000.xhp msgctxt "" @@ -13497,7 +13497,7 @@ "par_id3148492\n" "help.text" msgid "Additionally to the date acceptance patterns defined here, every locale accepts input in an ISO 8601 Y-M-D pattern, and since %PRODUCTNAME 3.5 that also leads to the YYYY-MM-DD format being applied." -msgstr "In aanvulling op de, hier gedefinieerde, datum aanvaardingspatronen, accepteert elke taalinstelling, invoer in een ISO 8601 YMD patroon, en sinds% PRODUCTNAME 3,5 leidt dat ook tot het JJJJ-MM-DD formaat dat wordt toegepast." +msgstr "In aanvulling op de, hier gedefinieerde, datum aanvaardingspatronen, accepteert elke taalinstelling, invoer in een ISO 8601 Y-M-D-patroon, en sinds %PRODUCTNAME 3.5 leidt dat ook tot het JJJJ-MM-DD formaat dat wordt toegepast." #: 01140000.xhp msgctxt "" @@ -13505,7 +13505,7 @@ "par_id3157939\n" "help.text" msgid "Syntax: Y means year, M means month, and D means day, regardless of localizaton." -msgstr "Syntaxis: Y betekent jaar M betekent maand en D betekent dag, ongeacht de taalinstelling." +msgstr "Syntaxis: Y betekent jaar M betekent maand en D betekent dag, ongeacht de taalinstelling." #: 01140000.xhp msgctxt "" @@ -13674,7 +13674,7 @@ "par_id3149668\n" "help.text" msgid "Indicates whether changes to the system input language/keyboard will be ignored. If ignored, when new text is typed that text will follow the language of the document or current paragraph, not the current system language." -msgstr "Geeft aan of wijzigingen aan de systeem invoertaal/toetsenbord worden genegeerd. Indien genegeerd; wanneer nieuwe tekst wordt getypt, zal die tekst de taal van het document of de huidige paragraaf volgen en niet de huidige systeemtaal." +msgstr "Geeft aan of wijzigingen aan de systeem invoertaal/toetsenbord worden genegeerd. Indien genegeerd; wanneer nieuwe tekst wordt getypt, zal die tekst de taal van het document of de huidige paragraaf volgen en niet de huidige systeemtaal." #: 01150000.xhp msgctxt "" @@ -14115,7 +14115,7 @@ "par_idN10695\n" "help.text" msgid "Prevents the use as well as the printing of illegal character combinations." -msgstr "Met deze optie kunt u beletten dat ongeldige tekencombinaties worden gebruikt of afgedrukt." +msgstr "Met deze optie kunt u beletten dat ongeldige tekencombinaties worden gebruikt of afgedrukt." #: 01150300.xhp msgctxt "" @@ -14592,7 +14592,7 @@ "par_idN10568\n" "help.text" msgid "Specifies the support options for Java applications in %PRODUCTNAME, including which Java Runtime Environment (JRE) to use. It also specifies whether to use experimental (unstable) features such as macro recording." -msgstr "Hiermee geeft u de opties op om Java-toepassingen in % PRODUCTNAME, met inbegrip van Java Runtime Environment (JRE) te gebruiken. Het regelt ook het gebruik van experimentele (instabiele) functies zoals macro opname." +msgstr "Hiermee geeft u de opties op om Java-toepassingen in %PRODUCTNAME, met inbegrip van Java Runtime Environment (JRE) te gebruiken. Het regelt ook het gebruik van experimentele (instabiele) functies zoals macro opname." #: java.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/shared.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/shared.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/shared.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/shared.po 2014-09-16 19:55:40.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-04 10:34+0000\n" -"Last-Translator: kees538 \n" +"POT-Creation-Date: 2014-05-02 00:10+0200\n" +"PO-Revision-Date: 2014-09-01 09:44+0000\n" +"Last-Translator: JorenDC \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.0\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1388831671.0\n" +"X-POOTLE-MTIME: 1409564691.000000\n" #: 3dsettings_toolbar.xhp msgctxt "" @@ -550,7 +550,7 @@ "par_id2783898\n" "help.text" msgid "Enable an Internet connection for %PRODUCTNAME. If you need a Proxy, check the %PRODUCTNAME Proxy settings in %PRODUCTNAME - PreferencesTools - Options - Internet. Then choose Check for Updates to check for the availability of a newer version of your office suite." -msgstr "Inschakelen van een internetverbinding voor% PRODUCTNAME. Als u een Proxy-server nodig heeft, controleer dan de% PRODUCTNAME Proxy instellingen in % PRODUCTNAME - Instellingen Extra - Opties - Internet. Kies dan Zoeken naar Updates om te controleren op de beschikbaarheid van een nieuwere versie van uw Office-pakket." +msgstr "Inschakelen van een internetverbinding voor %PRODUCTNAME. Als u een Proxy-server nodig heeft, controleer dan de %PRODUCTNAME Proxy instellingen in %PRODUCTNAME - Instellingen Extra - Opties - Internet. Kies dan Zoeken naar Updates om te controleren op de beschikbaarheid van een nieuwere versie van uw Office-pakket." #: main0108.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/swriter/00.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/swriter/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/swriter/00.po 2014-09-16 19:55:40.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: 2014-05-30 13:10+0200\n" -"PO-Revision-Date: 2014-06-13 10:02+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2014-09-02 13:39+0000\n" +"Last-Translator: JorenDC \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402653748.000000\n" +"X-POOTLE-MTIME: 1409665158.000000\n" #: 00000004.xhp msgctxt "" @@ -1670,7 +1670,7 @@ "48\n" "help.text" msgid "Choose Insert - Image - From File - Properties button" -msgstr "Kies Invoegen - Afbeelding - Uit bestand knop Eigenschappen" +msgstr "Kies Invoegen - Afbeelding - Uit bestand - Eigenschappen" #: 00000405.xhp msgctxt "" @@ -1858,7 +1858,7 @@ "70\n" "help.text" msgid "Choose Format - Image - Picture tab " -msgstr "Kies Opmaak - Afbeelding tabpagina Afbeelding" +msgstr "Kies Opmaak - Afbeelding - Afbeelding tabblad " #: 00000405.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/swriter/01.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/swriter/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/swriter/01.po 2014-09-16 19:55:40.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: 2014-06-25 17:42+0200\n" -"PO-Revision-Date: 2014-06-13 10:07+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2014-09-02 13:39+0000\n" +"Last-Translator: JorenDC \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402654045.000000\n" +"X-POOTLE-MTIME: 1409665184.000000\n" #: 01120000.xhp msgctxt "" @@ -14247,7 +14247,7 @@ "10\n" "help.text" msgid "Lists the databases that are registered in %PRODUCTNAME." -msgstr "Geeft een lijst van databases die zijn geregistreerd in % PRODUCTNAME ." +msgstr "Geeft een lijst van databases die zijn geregistreerd in %PRODUCTNAME ." #: 04180400.xhp msgctxt "" @@ -14755,7 +14755,7 @@ "2\n" "help.text" msgid "Specify hyphenation and pagination options." -msgstr "Kies afbreek-en pagina-opties." +msgstr "Kies afbreek-en pagina-opties." #: 05030200.xhp msgctxt "" @@ -24579,7 +24579,7 @@ "par_id334242345\n" "help.text" msgid "Footnote numbers are left aligned by default in the footnote area. For right aligned footnote numbers first edit the paragraph style Footnote. Press F11 to open Styles and Formatting dialog and select Footnote from the list of paragraph styles. Open the local menu with right click and choose Modify. Go to the Indents & Spacing tab page and set indent to 0 before and after the paragraph, including the first line. On Tabs tab page create a tab of right type at 12pt and a tab of left type at 14pt. Then in Footnotes/Endnotes Settings dialog enter \\t into the Before and After edit boxes." -msgstr "Voetnootnummers worden standaard links uitgelijnd in het voetnootgebied. Voor rechts uitgelijnde voetnootnummers; bewerk eerst het pagina-opmaakprofiel Voetnoot. Druk op F11 om het dialoogvenster Stijlen en opmaak te openen en selecteer Voetnoot uit de lijst van paginastijlen. Open het contextmenu door rechtsklikken en kies Wijzigen. Zet de optie Afstand tot tekst op 0. Maak op het tabblad Tabs van het dialoogvenster Allina-opmaakprofiel een tab van het type Rechts op 12pt en een tab van het type Links op 14pt. Voer dan in het dialoogvensterVoetnoten/eindnoten Instellingen een \\t in de Voor en Na invoervelden in." +msgstr "Voetnootnummers worden standaard links uitgelijnd in het voetnootgebied. Voor rechts uitgelijnde voetnootnummers; bewerk eerst het pagina-opmaakprofiel Voetnoot. Druk op F11 om het dialoogvenster Stijlen en opmaak te openen en selecteer Voetnoot uit de lijst van paginastijlen. Open het contextmenu door rechtsklikken en kies Wijzigen. Zet de optie Afstand tot tekst op 0. Maak op het tabblad Tabs van het dialoogvenster Allina-opmaakprofiel een tab van het type Rechts op 12pt en een tab van het type Links op 14pt. Voer dan in het dialoogvensterVoetnoten/eindnoten Instellingen een \\t in de Voor en Na invoervelden in." #: 06080100.xhp msgctxt "" @@ -26464,7 +26464,7 @@ "par_idN10561\n" "help.text" msgid "Creates mail merge documents that you can send as an e-mail message or an e-mail attachment." -msgstr " Maakt mailmerge documenten die u kunt verzenden als een e-mailbericht of een e-mailbijlage. " +msgstr " Maakt mailmerge documenten die u kunt verzenden als een e-mailbericht of een e-mailbijlage." #: mailmerge02.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/swriter/guide.po 2014-09-16 19:55:40.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: 2014-06-12 13:25+0200\n" -"PO-Revision-Date: 2014-06-27 06:37+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2014-09-02 13:40+0000\n" +"Last-Translator: JorenDC \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403851067.000000\n" +"X-POOTLE-MTIME: 1409665208.000000\n" #: anchor_object.xhp msgctxt "" @@ -1055,7 +1055,7 @@ "62\n" "help.text" msgid "In the Macro from tree control, select %PRODUCTNAME Macros - Gimmicks - AutoText." -msgstr "In de boomstructuur Macro uit , selecteer % PRODUCTNAME-macro's - Gimmicks - Auto Tekst." +msgstr "In de boomstructuur Macro uit , selecteer %PRODUCTNAME-macro's - Gimmicks - Auto Tekst." #: autotext.xhp msgctxt "" @@ -1064,7 +1064,7 @@ "63\n" "help.text" msgid "Select \"Main\" in the Existing macros in: AutoText list and then click Run. A list of the current AutoText entries is generated in a separate text document." -msgstr "Selecteer \"Main\" in het vak Bestaande macro's in: AutoTekst en klik vervolgens op Uitvoeren. Een overzicht van de huidige AutoTekst-fragmenten wordt gegenereerd in een apart tekstdocument." +msgstr "Selecteer \"Main\" in het vak Bestaande macro's in: AutoTekst en klik vervolgens op Uitvoeren. Een overzicht van de huidige AutoTekst-fragmenten wordt gegenereerd in een apart tekstdocument." #: autotext.xhp msgctxt "" @@ -1426,7 +1426,7 @@ "par_id3151046\n" "help.text" msgid "Select a line style, width and color for the selected border style in the Line area. These settings apply to all border lines that are included in the selected border style." -msgstr "Selecteer een lijnopmaakprofiel, breedte en kleur voor de geselecteerde Lijnschikking in het gebied LijnLijn. Deze instellingen gelden voor alle randen die zijn opgenomen in de geselecteerde Lijnschikking." #: border_character.xhp msgctxt "" @@ -1482,7 +1482,7 @@ "par_id3119149\n" "help.text" msgid "Select a line style, width and color for the selected border style in the Line area. These settings apply to all border lines that are included in the selected border style." -msgstr "Selecteer een lijnopmaakprofiel, breedte en kleur voor de geselecteerde Lijnschikking in het gebied LijnLijn. Deze instellingen gelden voor alle randen die zijn opgenomen in de geselecteerde Lijnschikking." #: border_character.xhp msgctxt "" @@ -1718,7 +1718,7 @@ "5\n" "help.text" msgid "Select a line style, width and color for the selected border style in the Line area. These settings apply to all border lines that are included in the selected border style." -msgstr "Selecteer een lijnopmaakprofiel, breedte en kleur voor de geselecteerde Lijnschikking in het gebied LijnLijn. Deze instellingen gelden voor alle randen die zijn opgenomen in de geselecteerde Lijnschikking." #: border_page.xhp msgctxt "" @@ -1772,7 +1772,7 @@ "11\n" "help.text" msgid "Select a line style, width and color for the selected border style in the Line area. These settings apply to all border lines that are included in the selected border style." -msgstr "Selecteer een lijnopmaakprofiel, breedte en kleur voor de geselecteerde Lijnschikking in het gebied LijnLijn. Deze instellingen gelden voor alle randen die zijn opgenomen in de geselecteerde Lijnschikking." #: border_page.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/swriter/librelogo.po libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/helpcontent2/source/text/swriter/librelogo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/helpcontent2/source/text/swriter/librelogo.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408083722.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/readlicense_oo/docs.po libreoffice-l10n-4.3.2/translations/source/nl/readlicense_oo/docs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/readlicense_oo/docs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/readlicense_oo/docs.po 2014-09-16 19:55:40.000000000 +0000 @@ -702,7 +702,7 @@ "reportbugs1\n" "readmeitem.text" msgid "Our system for reporting, tracking and solving bugs is currently BugZilla, kindly hosted at https://bugs.libreoffice.org/. We encourage all users to feel entitled and welcome to report bugs that may arise on your particular platform. Energetic reporting of bugs is one of the most important contributions that the user community can make to the ongoing development and improvement of ${PRODUCTNAME}." -msgstr "Ons systeem voor meldingen, tracking en het oplossen van bugs is momenteel BugZilla, vriendelijk gehost in https://bugs.libreoffice.org/. We verwelkomen alle gebruikers om bugs, die zich kunnen voordoen op specifieke platformen, te melden. Energetische rapportage van bugs is een van de belangrijkste bijdragen die de gebruikersgemeenschap kan leveren aan de verdere ontwikkeling en verbetering van ${PRODUCTNAAM}." +msgstr "Ons systeem voor meldingen, tracking en het oplossen van bugs is momenteel BugZilla, vriendelijk gehost in https://bugs.libreoffice.org/. We verwelkomen alle gebruikers om bugs, die zich kunnen voordoen op specifieke platformen, te melden. Energetische rapportage van bugs is een van de belangrijkste bijdragen die de gebruikersgemeenschap kan leveren aan de verdere ontwikkeling en verbetering van ${PRODUCTNAAM}." #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/sc/uiconfig/scalc/ui.po libreoffice-l10n-4.3.2/translations/source/nl/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/sc/uiconfig/scalc/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/sc/uiconfig/scalc/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408083296.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/nl/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408083372.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/sw/source/ui/index.po libreoffice-l10n-4.3.2/translations/source/nl/sw/source/ui/index.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/sw/source/ui/index.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/sw/source/ui/index.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408083385.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nl/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/nl/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nl/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nl/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408083406.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/chart2/source/controller/dialogs.po libreoffice-l10n-4.3.2/translations/source/nn/chart2/source/controller/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/chart2/source/controller/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/chart2/source/controller/dialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:01+0200\n" -"PO-Revision-Date: 2014-08-17 15:33+0000\n" +"PO-Revision-Date: 2014-08-29 11:35+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408289591.000000\n" +"X-POOTLE-MTIME: 1409312113.000000\n" #: Strings.src msgctxt "" @@ -1194,7 +1194,7 @@ "STR_STOCK_1\n" "string.text" msgid "Stock Chart 1" -msgstr "Kursdiagram 1" +msgstr "Aksjediagram 1" #: Strings_ChartTypes.src msgctxt "" @@ -1202,7 +1202,7 @@ "STR_STOCK_2\n" "string.text" msgid "Stock Chart 2" -msgstr "Kursdiagram 2" +msgstr "Aksjediagram 2" #: Strings_ChartTypes.src msgctxt "" @@ -1210,7 +1210,7 @@ "STR_STOCK_3\n" "string.text" msgid "Stock Chart 3" -msgstr "Kursdiagram 3" +msgstr "Aksjediagram 3" #: Strings_ChartTypes.src msgctxt "" @@ -1218,7 +1218,7 @@ "STR_STOCK_4\n" "string.text" msgid "Stock Chart 4" -msgstr "Kursdiagram 4" +msgstr "Aksjediagram 4" #: Strings_ChartTypes.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/chart2/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/nn/chart2/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/chart2/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/chart2/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-30 10:57+0200\n" -"PO-Revision-Date: 2014-06-30 19:36+0000\n" +"PO-Revision-Date: 2014-08-31 12:36+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404156988.000000\n" +"X-POOTLE-MTIME: 1409488601.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -3236,7 +3236,7 @@ "label\n" "string.text" msgid "Sho_w labels" -msgstr "Vis _etikettar" +msgstr "_Vis etikettar" #: tp_axisLabel.ui msgctxt "" @@ -3272,7 +3272,7 @@ "label\n" "string.text" msgid "A_utomatic" -msgstr "A_utomaticsk" +msgstr "_Automatisk" #: tp_axisLabel.ui msgctxt "" @@ -3290,7 +3290,7 @@ "label\n" "string.text" msgid "O_verlap" -msgstr "O_verlapping" +msgstr "_Overlapping" #: tp_axisLabel.ui msgctxt "" @@ -3326,7 +3326,7 @@ "label\n" "string.text" msgid "Ve_rtically stacked" -msgstr "Stapla _loddrett" +msgstr "_Stabla loddrett" #: tp_axisLabel.ui msgctxt "" @@ -3344,7 +3344,7 @@ "label\n" "string.text" msgid "Te_xt direction:" -msgstr "Tekst_retning:" +msgstr "_Tekstretning:" #: tp_axisLabel.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/cui/source/dialogs.po libreoffice-l10n-4.3.2/translations/source/nn/cui/source/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/cui/source/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/cui/source/dialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407769515.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/extensions/uiconfig/sabpilot/ui.po libreoffice-l10n-4.3.2/translations/source/nn/extensions/uiconfig/sabpilot/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/extensions/uiconfig/sabpilot/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/extensions/uiconfig/sabpilot/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-21 19:54+0000\n" +"PO-Revision-Date: 2014-08-31 12:53+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403380494.000000\n" +"X-POOTLE-MTIME: 1409489622.000000\n" #: datasourcepage.ui msgctxt "" @@ -273,6 +273,6 @@ "\n" "This wizard helps you create the data source." msgstr "" -"%PRODUCTNAME gir deg tilgang til adresseinformasjon som er i systemet frå før. Det blir laga ei %PRODUCTNAME-datakjelde der adresseinformasjonen er tilgjengeleg i tabellform.\n" +"%PRODUCTNAME gir deg tilgang til adresseinformasjon som er i systemet frå før. Det vert laga ei %PRODUCTNAME-datakjelde der adresseinformasjonen er tilgjengeleg i tabellform.\n" "\n" "Denne vegvisaren hjelper deg med å laga datakjelda." diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/nn/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-21 19:58+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1- dokument" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1- dokument" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1- dokument" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-dokument" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-dokument" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-dokument" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac dokument (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac dokument (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac dokument (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/filter/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/nn/filter/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/filter/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/filter/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:02+0200\n" -"PO-Revision-Date: 2014-06-21 20:01+0000\n" +"PO-Revision-Date: 2014-08-28 20:14+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403380904.000000\n" +"X-POOTLE-MTIME: 1409256856.000000\n" #: impswfdialog.ui msgctxt "" @@ -45,7 +45,7 @@ "label\n" "string.text" msgid "Export _All Slides (Uncheck exports current slide)" -msgstr "Eksporter _alle lysbilete (Eksporter gjeldande lysbilete ikkje markert)" +msgstr "Eksporter _alle lysbilete (Fjern markeringa for å eksportera gjeldande lysbilete)" #: impswfdialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/formula/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/nn/formula/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/formula/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/formula/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407769543.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/sbasic/guide.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/sbasic/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/sbasic/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/sbasic/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:12+0200\n" -"PO-Revision-Date: 2014-08-17 17:04+0000\n" +"PO-Revision-Date: 2014-08-30 16:08+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408295075.000000\n" +"X-POOTLE-MTIME: 1409414886.000000\n" #: access2base.xhp msgctxt "" @@ -200,7 +200,7 @@ "2\n" "help.text" msgid "You can set the properties of control that you add to a dialog. For example, you can change the color, name, and size of a button that you added. You can change most control properties when you create or edit a dialog. However, you can only change some properties at runtime." -msgstr "Du kan endra eigenskapane til ein kontroll du legg til eit dialogvindauge. Til dømes kan du endra farge, namn og storleik på ein knapp du har lagt til. Du kan endra dei fleste kontrolleigenskapane når du opprettar eller redigerer eit dialogvindauge. Men ved køyring kan du berre endra nokre av eigenskapane." +msgstr "Du kan endra eigenskapane til eit kontrollelement som du legg til eit dialogvindauge. Til dømes kan du endra farge, namn og storleik på ein knapp du har lagt til. Du kan endra dei fleste kontrolleigenskapane når du opprettar eller redigerer eit dialogvindauge. Men ved køyring kan du berre endra nokre av eigenskapane." #: control_properties.xhp msgctxt "" @@ -582,7 +582,7 @@ "6\n" "help.text" msgid "Enter the following code for a subroutine called Dialog1Show. In this example, the name of the dialog that you created is \"Dialog1\":" -msgstr "Skriv inn følgjande kode for subrutinen kalla VisDialogvindauge1. I dette eksemplet blir dialogvindauget du laga kalla \"Dialogvindauge1\":" +msgstr "Skriv inn følgjande kode for ein subrutine kalla VisDialogvindauge1. I dette eksemplet vert dialogvindauget du laga kalla \"Dialogvindauge1\":" #: show_dialog.xhp msgctxt "" @@ -600,7 +600,7 @@ "16\n" "help.text" msgid "When you execute this code, \"Dialog1\" opens. To close the dialog, click the close button (x) on its title bar." -msgstr "\"Dialogvindauge1\" blir opna når du køyrer denne koden. For å lukke dialogvindauget klikkar du på lukkeknappen (x) på tittellinja." +msgstr "\"Dialogvindauge1\" vert opna når du køyrer denne koden. Du lukker dialogvindauget ved å klikka på lukkeknappen (x) på tittellinja." #: translation.xhp msgctxt "" @@ -640,7 +640,7 @@ "par_id9538560\n" "help.text" msgid "By default, any dialog that you create only contains string resources for one language. You may want to create dialogs that automatically show localized strings according to the user's language settings." -msgstr "Som standard har dialogvindauge du lagar berre ein strengressurs for språk. Men kva om du ønskjer å lage eit dialogvindauge som automatisk viser teksten på brukaren sitt språk?" +msgstr "Alle dialogvindauge du lagar har som standard berre ein strengressurs for språk. Men kva om du ønskjer å lage eit dialogvindauge som automatisk viser teksten på brukaren sitt språk?" #: translation.xhp msgctxt "" @@ -672,7 +672,7 @@ "par_id5781731\n" "help.text" msgid "Select a language in the list and click Delete to remove that language. When you remove all languages, the string resources for localizable dialogs are removed from all dialogs in the current library." -msgstr "Vel eit språk frå lista og trykk «Slett» for å fjerne det. Dersom du fjernar eit språk, blir tekstene på språket sletta frå alle dialogvindauga i same bibliotek." +msgstr "Vel eit språk frå lista og trykk «Slett» for å fjerna det. Dersom du fjernar eit språk, vert tekstane på språket sletta frå alle dialogvindauga i det same bibliotek." #: translation.xhp msgctxt "" @@ -688,7 +688,7 @@ "par_id4721823\n" "help.text" msgid "The default language will be used as a source for all other language strings." -msgstr "Tekst på standardspråket blir brukt som kjelde når du skal omsetje til andre språk." +msgstr "Tekst på standardspråket vert brukt som kjelde når du skal omsetja til andre språk." #: translation.xhp msgctxt "" @@ -720,7 +720,7 @@ "par_id2224494\n" "help.text" msgid "If the current library already contains a localizable dialog, the Language toolbar is shown automatically." -msgstr "Verktøylinja «Språk» blir vist automatisk dersom det gjeldande biblioteket inneheld eit lokalisert dialogvindauge frå før." +msgstr "Verktøylinja «Språk» vert vist automatisk dersom det gjeldande biblioteket inneheld eit lokalisert dialogvindauge frå før." #: translation.xhp msgctxt "" @@ -736,7 +736,7 @@ "par_id6549272\n" "help.text" msgid "You see the Manage User Interface Language dialog. The dialog manages languages for the current library. The name of the current library is shown on the title bar." -msgstr "Du ser her dialogvindauget for å handtere språk for det gjeldande biblioteket. Namnet på det gjeldande biblioteket blir vist i tittellinja." +msgstr "Du ser her dialogvindauget for å handtere språk for det gjeldande biblioteket. Namnet på det gjeldande biblioteket vert vist i tittellinja." #: translation.xhp msgctxt "" @@ -784,7 +784,7 @@ "par_id4585100\n" "help.text" msgid "This adds string resources to contain the translated versions of all strings to the dialog properties. The set of dialog strings of the default language is copied to the new set of strings. Later, you can switch to the new language and then translate the strings." -msgstr "Dette legg til strengresursar som inneheld omsette versjonar av alle strengene for dialogeigenskapane. Dialogstrengane for standardspråket blir kopierte til det nye strengsettet. Seinare kan du bytte til det nye språket og omsetje strengane." +msgstr "Dette legg til strengresursar som inneheld omsette versjonar av alle strengane for dialogeigenskapane. Dialogstrengane for standardspråket vert kopierte til det nye strengsettet. Seinare kan du byta til det nye språket og omsetja strengane." #: translation.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared/01.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/sbasic/shared/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/sbasic/shared/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:11+0200\n" -"PO-Revision-Date: 2014-07-27 19:49+0000\n" +"PO-Revision-Date: 2014-08-31 17:46+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406490596.000000\n" +"X-POOTLE-MTIME: 1409507184.000000\n" #: 06130000.xhp msgctxt "" @@ -594,7 +594,7 @@ "8\n" "help.text" msgid "Adds the selected library as a read-only file. The library is reloaded each time you start %PRODUCTNAME." -msgstr "Leggjer til det valde biblioteket som ei skrivebeskytta fil. Biblioteket blir lasta på nytt kvar gang du startar %PRODUCTNAME." +msgstr "Legg det valde biblioteket til som ei skriveverna fil. Biblioteket vert lasta på nytt kvar gong du opnar %PRODUCTNAME." #: 06130500.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared/02.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/sbasic/shared/02.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2014-02-18 15:13+0000\n" +"POT-Creation-Date: 2014-05-02 00:11+0200\n" +"PO-Revision-Date: 2014-08-30 20:45+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.0\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1392736391.0\n" +"X-POOTLE-MTIME: 1409431547.000000\n" #: 11010000.xhp msgctxt "" @@ -1542,7 +1542,7 @@ "47\n" "help.text" msgid "Adds a text box where you can define the formatting for text that is inputted or outputted as well as any limiting values." -msgstr "Legg til eit tekstfelt der du kan angje formateringa for tekst som vert skrive inn eller skrive ut eller leggja inn ein avgrensingsverdi." +msgstr "Legg til eit tekstfelt der du kan definere formateringa for tekst som vert skrive inn eller skrive ut, eller leggja inn ein avgrensingsverdi." #: 20000000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:11+0200\n" -"PO-Revision-Date: 2014-04-08 20:06+0000\n" +"PO-Revision-Date: 2014-08-31 17:44+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1396987566.000000\n" +"X-POOTLE-MTIME: 1409507098.000000\n" #: 00000002.xhp msgctxt "" @@ -85,7 +85,7 @@ "30\n" "help.text" msgid "In $[officename] Basic, colors are treated as long integer value. The return value of color queries is also always a long integer value. When defining properties, colors can be specified using their RGB code that is converted to a long integer value using the RGB function." -msgstr "I $[officename] Basic blir fargar handterte som heiltal av typen Long. Returverdien etter fargespurnader er også alltid eit heiltal av typen Long. Når du definerer eigenskapar, kan du bruke RGB-koden som vert konvertert til eit heiltal ved hjelp av RGB-funksjonen." +msgstr "I $[officename] Basic vert fargar handterte som heiltal av typen Long. Returverdien etter fargespurnader er også alltid eit heiltal av typen Long. Når du definerer eigenskapar, kan du bruka RGB-koden som vert konvertert til eit heiltal ved hjelp av RGB-funksjonen." #: 00000002.xhp msgctxt "" @@ -165,7 +165,7 @@ "109\n" "help.text" msgid "The most common usage of URLs is on the internet when specifying web pages. Example for protocols are http, ftp, or file. The file protocol specifier is used when referring to a file on the local file system." -msgstr "URL blir mest brukt på Internett for å spesifisere internettsider. Eksempel på protokollar er http, ftp og file. Protokollen file viser til ei fil på det lokale filsystemet." +msgstr "URL vert mest brukt på Internett for å spesifisere internettsider. Eksempel på protokollar er http, ftp og file. Protokollen file viser til ei fil på det lokale filsystemet." #: 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 "I URL-notasjonen er ein del spesialteikn ulovlege å bruka. Desse vert anten byt ut med andre teikn eller vert koda. Det vert brukt skråstrek (/) som skiljeteikn. Ei fil som for eksempel blir skrive som C:\\fila mi.sxw på ein Windowsmaskin, vert file:///C|/fila%20mi.sxw i URL-notasjon. " +msgstr "I URL-notasjonen er ein del spesialteikn ulovlege å bruka. Desse vert anten byt ut med andre teikn eller vert koda. Det vert brukt skråstrek (/) som skiljeteikn. Ei fil som for eksempel vert skrive som C:\\fila mi.sxw på ein Windowsmaskin, vert file:///C|/fila%20mi.sxw i URL-notasjon. " #: 00000003.xhp msgctxt "" @@ -2034,7 +2034,7 @@ "30\n" "help.text" msgid "The Option Explicit statement has to be the first line in the module, before the first SUB. Generally, only arrays need to be declared explicitly. All other variables are declared according to the type-declaration character, or - if omitted - as the default type Single." -msgstr "Uttrykket Option Explicit må vere på den første linja i modulen, framføre den første SUB-prosedyren. Normalt skal bare tabellar («array») deklarerast spesielt. Alle andre variablar blir deklarerte med typedeklarasjonsteiknet eller, dersom dette er sløyfa, som standardtypen Single." +msgstr "Uttrykket Option Explicit må vera på den første linja i modulen, framføre den første SUB-prosedyren. Normalt skal berre tabellar («array») deklarerast spesielt. Alle andre variablar vert deklarerte med typedeklarasjonsteiknet eller, dersom dette er sløyfa, som standardtypen Single." #: 01020100.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 "Variabeltypen Long Integer kan ha ein verdi frå -2.147.483.648 til 2.147.483.647. Viss eit desimaltal blir lagt inn i ein Long variabel (32 bit), vert verdien avrunda til næraste heiltal. Eit Long heiltal er nokså raskt å arbeida med og kan brukast mellom anna som teljar i sløyfer (loop). Eit Long heiltal krev fire byte i minnet. Typedeklarasjonsteiknet er «&»." +msgstr "Variabeltypen Long Integer kan ha ein verdi frå -2.147.483.648 til 2.147.483.647. Viss eit desimaltal vert lagt inn i ein Long variabel (32 bit), vert verdien avrunda til næraste heiltal. Eit Long heiltal er nokså raskt å arbeida med og kan brukast mellom anna som teljar i sløyfer (loop). Eit Long heiltal krev fire byte i minnet. Typedeklarasjonsteiknet er «&»." #: 01020100.xhp msgctxt "" @@ -2156,7 +2156,7 @@ "par_id1593676\n" "help.text" msgid "If a decimal number is assigned to an integer variable, %PRODUCTNAME Basic rounds the figure up or down." -msgstr "Viss eit desimaltal blir lagt til ein heiltalsvariabel, vil %PRODUCTNAME Basic runde av talet opp eller ned." +msgstr "Viss eit desimaltal vert lagt til ein heiltalsvariabel, vil %PRODUCTNAME Basic runda av talet opp eller ned." #: 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 "Valutavariablane blir lagra internt som 74-bits tal (8 byte) og blir vist som eit fast desimaltal med 15 heiltalsplassar og 4 desimalar. Verdiane kan vere frå -922.337.203.685.477,5808 til +922.337.203.685.477,5807. Valutavariablane blir brukte til å rekne ut valutaverdiar med høg presisjon. Typedeklarasjonsteiknet er «@»." +msgstr "Valutavariablane vert lagra internt som 74-bits tal (8 byte) og vert viste som eit fast desimaltal med 15 heiltalsplassar og 4 desimalar. Verdiane kan vere frå -922.337.203.685.477,5808 til +922.337.203.685.477,5807. Valutavariablane vert brukte til å rekne ut valutaverdiar med høg presisjon. Typedeklarasjonsteiknet er «@»." #: 01020100.xhp msgctxt "" @@ -2228,7 +2228,7 @@ "59\n" "help.text" msgid "String variables can hold character strings with up to 65,535 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 64 Kbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"." -msgstr "Strengvariablane (variablar av typen String) er tekststrengar med opp til 65.535 teikn (64 kb). Kvart teikn blir lagra som Unicode-verdi. Strengvariablane blir brukte for å handtere tekst i program og for mellomlagring av ikkje-skrivbare teikn. Kor mykje minneplass ein streng bruker, er avhengig av kor mange teikn strengen inneheld. Typedeklarasjonsteiknet er «$»." +msgstr "Strengvariablane (variablar av typen String) er tekststrengar med opp til 65.535 teikn (64 kb). Kvart teikn vert lagra som Unicode-verdi. Strengvariablane vert brukte for å handtera tekst i program og for mellomlagring av ikkje-skrivbare teikn. Kor mykje minneplass ein streng brukar, er avhengig av kor mange teikn strengen inneheld. Typedeklarasjonsteiknet er «$»." #: 01020100.xhp msgctxt "" @@ -3092,7 +3092,7 @@ "3\n" "help.text" msgid "The Basic Editor provides the standard editing functions you are familiar with when working in a text document. It supports the functions of the Edit menu (Cut, Delete, Paste), the ability to select text with the Shift key, as well as cursor positioning functions (for example, moving from word to word with CommandCtrl and the arrow keys)." -msgstr "Redigeringsvindauget for Basic inneheld fleire av dei same redigeringsverktøya som du kjenner frå tekstredigering. I Rediger-menyen finn du såleis klipp ut, lim inn og andre kommandoar. du kan også markera tekst med Shift-tasten og bruka snartastar for å styra markøren. Du kan for eksempel flytta frå ord til ord ved hjelp av CmdCtrl og piltastane." +msgstr "Redigeringsvindauget for Basic inneheld fleire av dei same redigeringsverktøya som du kjenner frå tekstredigering. I Rediger-menyen finn du såleis klipp ut, lim inn og andre kommandoar. Du kan også markera tekst med Shift-tasten og bruka snøggtastar for å styra markøren. Du kan for eksempel flytta frå ord til ord ved hjelp av CmdCtrl og piltastane." #: 01030200.xhp msgctxt "" @@ -3145,7 +3145,7 @@ "7\n" "help.text" msgid "Select a library from the Library list at the left of the toolbar to load the library in the editor. The first module of the selected library will be displayed." -msgstr "Velj eit bibliotek frå lista bibliotek til venstre på verktøylinja for å hente inn biblioteket. Den første modulen i det markerte biblioteket vert vist." +msgstr "Vel eit bibliotek frå lista bibliotek til venstre på verktøylinja for å henta inn biblioteket. Den første modulen i det markerte biblioteket vert vist." #: 01030200.xhp msgctxt "" @@ -4834,7 +4834,7 @@ "9\n" "help.text" msgid "Specify the number of loops to perform before the breakpoint takes effect." -msgstr "Angje kor mange gjennomkøyringar som skal køyrast før brotpunktet skal slå inn." +msgstr "Bestem kor mange gjennomkøyringar som skal utførast før brotpunktet skal slå inn." #: 01050300.xhp msgctxt "" @@ -4904,7 +4904,7 @@ "2\n" "help.text" msgid "Specifies the properties of the selected dialog or control. You must be in the design mode to be able to use this command." -msgstr "Angje eigenskapane til det valde dialogvindauget eller kontrollelementet. Du må bruka utformingsmodus for å kunna bruka denne kommandoen." +msgstr "Bestemmer eigenskapane til det valde dialogvindauget eller kontrollelementet. Du må vera i utformingsmodus for å kunna bruka denne kommandoen." #: 01170100.xhp msgctxt "" @@ -5340,7 +5340,7 @@ "par_idN108D0\n" "help.text" msgid "Specifies the delay in milliseconds between scrollbar trigger events. A trigger event occurs when you click a scrollbar arrow or click the background area in a scrollbar. Repeated trigger events occur if you keep the mouse button pressed when you click a scrollbar arrow or background area in a scrollbar. If you want, you can include valid time units with the number that you enter, for example, 2 s or 500 ms." -msgstr "Gir forseinkinga i millisekund mellom hendingsutløysarane for rullefeltet. Ei hending blir utløyst når du trykker på ei pil eller på bakgrunnen i rullefeltet. Held du nede museknappen medan musepeikaren er over ei pil eller bakgrunnen i rullefeltet, blir hendinga repetert så ofte som angitt her. Du kan i tillegg også skrive inn gyldige tidseiningar, som for eksempel 2 s wllwe 500 ms." +msgstr "Gir forseinkinga i millisekund mellom hendingsutløysarane for rullefeltet. Ei hending vert utløyst når du trykkjer på ei pil eller på bakgrunnen i rullefeltet. Held du nede museknappen medan musepeikaren er over ei pil eller bakgrunnen i rullefeltet, vert hendinga repetert så ofte som oppgjeve her. Du kan i tillegg også skriva inn gyldige tidseiningar, som for eksempel 2 s eller 500 ms." #: 01170101.xhp msgctxt "" @@ -5457,7 +5457,7 @@ "98\n" "help.text" msgid "The characters a-z can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter." -msgstr "Bokstavane a-z kan skrivast inn her. Dersom det blir skrive inn ein stor bokstav, vil han automatisk bli gjort om til liten bokstav." +msgstr "Bokstavane a-z kan skrivast inn her. Dersom det vert skrive inn ein stor bokstav, vert han automatisk gjort om til liten bokstav." #: 01170101.xhp msgctxt "" @@ -5475,7 +5475,7 @@ "100\n" "help.text" msgid "The characters A-Z can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter" -msgstr "Bokstavane A-Z kan skrivast inn her. Dersom ein liten bokstav blir skriven inn, vil han automatisk bli gjort om til stor bokstav." +msgstr "Bokstavane A-Z kan skrivast inn her. Dersom ein liten bokstav vert skriven inn, vert han automatisk gjort om til stor bokstav." #: 01170101.xhp msgctxt "" @@ -5493,7 +5493,7 @@ "102\n" "help.text" msgid "The characters a-z and 0-9 can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter." -msgstr "Teikna A-Z og 0-9 kan skrivast inn her. Dersom det blir skrive inn ein stor bokstav, vil han automatisk bli gjort om til liten bokstav." +msgstr "Teikna A-Z og 0-9 kan skrivast inn her. Dersom det vert skrive inn ein stor bokstav, vert han automatisk gjort om til liten bokstav." #: 01170101.xhp msgctxt "" @@ -5511,7 +5511,7 @@ "104\n" "help.text" msgid "The characters a-z and 0-9 can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter" -msgstr "Teikna A-Z og 0-9 kan skrivast inn her. Dersom ein liten bokstav blir skriven inn, vil han automatisk bli gjort om til stor bokstav." +msgstr "Teikna A-Z og 0-9 kan skrivast inn her. Dersom ein liten bokstav vert skrive inn, vert han automatisk gjort om til stor bokstav." #: 01170101.xhp msgctxt "" @@ -5661,7 +5661,7 @@ "213\n" "help.text" msgid "Specify the help URL that is called when you press F1 while the focus is on a particular control. For example, use the format HID:1234 to call the Help-ID with the number 1234." -msgstr "Bestemmer hjelpeadressa som skal kallast opp når «F1»-tasten blir trykkt når fokus er på eit bestemt kontrollelement. Du kan for eksempel bruke formatet «HID:1234» for å kalle opp hjelpe-id-en med nummer1234." +msgstr "Bestemmer hjelpeadressa som skal kallast opp når «F1»-tasten vert trykt når fokus er på eit bestemt kontrollelement. Du kan for eksempel bruka formatet «HID:1234» for å kalla opp hjelpe-id-en med nummer1234." #: 01170101.xhp msgctxt "" @@ -5703,7 +5703,7 @@ "par_id234382\n" "help.text" msgid "Specifies what happens when editing is interrupted by selecting another node in the tree, a change in the tree's data, or by some other means." -msgstr "Spesifiserer kva som hender når redigeringa blir avbroten ved at ei anna node i treet blir vald, at det blir gjort endringar i tredata eller av andre grunnar. " +msgstr "Spesifiserer kva som hender når redigeringa vert avbroten ved at ei anna node i treet vert vald, at det vert gjort endringar i tredata eller av andre grunnar. " #: 01170101.xhp msgctxt "" @@ -5711,7 +5711,7 @@ "par_id6591082\n" "help.text" msgid "Setting this property to TRUE causes the changes to be automatically saved when editing is interrupted. FALSE means that editing is canceled and changes are lost." -msgstr "Ved å setje eigenskapen til SANN, vil alle endringar bli lagra automatisk når redigeringa bir avbrote. USANN betyr at redigeringa ikkje blir lagra og alle endringane går tapt." +msgstr "Ved å setje eigenskapen til SANN, vert alle endringar lagra automatisk når redigeringa vert avbrote. USANN betyr at redigeringa ikkje vert lagra og alle endringane går tapt." #: 01170101.xhp msgctxt "" @@ -5737,7 +5737,7 @@ "8\n" "help.text" msgid "Specifies the label of the current control. The label is displayed along with the control." -msgstr "Lag merkelappen for gjeldande kontrollelement. Denne blir vist saman med kontrollelementet." +msgstr "Spesifiserer merkelappen for det gjeldande kontrollelementet. Denne vert vist saman med kontrollelementet." #: 01170101.xhp msgctxt "" @@ -5834,7 +5834,7 @@ "160\n" "help.text" msgid "Specify the initial values to be displayed in a pattern control. This helps the user to identify which values are allowed in a pattern control. The literal mask is restricted by the format specified by the edit mask." -msgstr "Skriv inn startverdiane som skal visast i eit mønsterkontrollelement. Dette hjelper brukaren til å sjå kva verdiar som er lovlege i kontrollelementet. Teiknmaska blir avgrensa av formatet som er angitt i redigeringsmaska." +msgstr "Skriv inn startverdiane som skal visast i eit mønsterkontrollelement. Dette hjelper brukaren til å sjå kva verdiar som er lovlege i kontrollelementet. Teiknmaska vert avgrensa av formatet som er oppgjeve i redigeringsmaska." #: 01170101.xhp msgctxt "" @@ -5924,7 +5924,7 @@ "10\n" "help.text" msgid "Insert a name for the current control. This name is used to identify the control." -msgstr "Skriv inn eit namn for kontrollelementet. Namnet blir brukt for å identifisere kontrollelementet." +msgstr "Skriv inn eit namn for kontrollelementet. Namnet vert brukt for å identifisera kontrollelementet." #: 01170101.xhp msgctxt "" @@ -5942,7 +5942,7 @@ "45\n" "help.text" msgid "Specify the order in which the controls receive the focus when the Tab key is pressed in the dialog. On entering a dialog, the control with the lowest order (0) receives the focus. Pressing the Tab key the successively focusses the other controls as specified by their order number." -msgstr "Bestem fokusrekkefølgja for kontrollelementa når Tab-tasten blir brukt i dialogvindauget. Når dialogvindauget blir opna, vil kontrollelementet med lågast nummer (0), få fokus. Ved å trykke Tab-tasten kan brukaren gå vidare til dei neste kontrollelementa i den rekkfølgja som er bestemt her." +msgstr "Bestemmer fokusrekkefølgja for kontrollelementa når Tab-tasten vert brukt i dialogvindauget. Når dialogvindauget vert opna, vil kontrollelementet med lågast nummer (0), få fokus. Ved å trykkja Tab-tasten kan brukaren gå vidare til dei neste kontrollelementa i den rekkjefølgja som er bestemt her." #: 01170101.xhp msgctxt "" @@ -5951,7 +5951,7 @@ "46\n" "help.text" msgid "Initially, the controls receive numbers in the order they are added to the dialog. You can change the order numbers for controls. $[officename] Basic updates the order numbers automatically to avoid duplicate numbers. Controls that cannot be focused are also assigned a value but these controls are skipped when using the Tab key." -msgstr "I utgangspunktet blir kontrollelementa nummererte etter kvart som dei blir lagt inn i dialogen. Du kan endre denne rekkefølgja. $[officename] Basic oppdaterer rekkefølgja automatisk for å unngå at same talet blir brukt fleire gonger. Kontrollelement som ikkje kan ha fokus får også eit nummer, men blir hoppa over når Tab-tasten blir brukt." +msgstr "I utgangspunktet vert kontrollelementa nummererte etter kvart som dei vert lagt inn i dialogvindauget. Du kan endra denne rekkjefølgja. $[officename] Basic oppdaterer rekkjefølgja automatisk for å unngå at same talet vert brukt fleire gonger. Kontrollelement som ikkje kan ha fokus, får også eit nummer, men vert hoppa over når Tab-tasten vert brukt." #: 01170101.xhp msgctxt "" @@ -6023,7 +6023,7 @@ "157\n" "help.text" msgid "Enter a character to be displayed instead of the characters that are typed. This can be used for entering passwords in text controls." -msgstr "Skriv inn eit teikn som skal visast i staden for teiknet som blir skrive inn. Dette kan bli brukt for å skrive inn passord i tekstkontrollar." +msgstr "Skriv inn eit teikn som skal visast i staden for teiknet som vert skrive inn. Dette kan brukast for å skriva inn passord i tekstkontrollar." #: 01170101.xhp msgctxt "" @@ -6077,7 +6077,7 @@ "222\n" "help.text" msgid "Select \"Yes\" to display the currency symbol prefix in currency controls when a number was entered." -msgstr "Vel «Ja» om du vil vise valutasymbolet som prefiks i valutakontrollar når eit tal blir skrive inn. " +msgstr "Vel «Ja» om du vil visa valutasymbolet som prefiks i valutakontrollar når eit tal vert skrive inn. " #: 01170101.xhp msgctxt "" @@ -6509,7 +6509,7 @@ "49\n" "help.text" msgid "Select the focus behavior of the current control when using the Tab key." -msgstr "Vel korleis fokuset skal endrast i kontrollelementet når Tab-tasten blir trykt ned." +msgstr "Vel korleis fokuset skal endrast i kontrollelementet når Tab-tasten vert trykt ned." #: 01170101.xhp msgctxt "" @@ -6527,7 +6527,7 @@ "179\n" "help.text" msgid "Only input controls receive the focus when using the Tab key. Controls without input like caption controls are omitted." -msgstr "Bare kontrollelementa som gjeld inndata får fokus når du bruker Tabulator-tasten. Andre kontrollelement som t.d. dei som inneheld merkelappar blir hoppa over." +msgstr "Berre kontrollelementa som gjeld inndata får fokus når du brukar Tabulator-tasten. Andre kontrollelement som t.d. dei som inneheld merkelappar vert hoppa over." #: 01170101.xhp msgctxt "" @@ -6662,7 +6662,7 @@ "55\n" "help.text" msgid "Titles are only used for labeling a dialog and can only contain one line. Please note that if you work with macros, controls are only called through their Name property." -msgstr "Titlar blir berre brukt for å setje merkelapp på eit dialogvindauget og kan berre ha ei linje. Legg merke til at dersom du arbeider med makroar, blir kontrollane kalla opp berre med eigenskapen Namn." +msgstr "Titlar vert berre brukt for å setja merkelapp på eit dialogvindauge og kan berre ha éi linje. Legg merke til at dersom du arbeider med makroar, vert kontrollane kalla opp berre med eigenskapen Namn." #: 01170101.xhp msgctxt "" @@ -7100,7 +7100,7 @@ "2\n" "help.text" msgid "This section describes the Runtime Functions used to call dialogs for the input and output of user entries." -msgstr "Dette avsnittet handlar om køyretidsfunksjonar som blir brukte for å vise dialogvindauge for inn- og utskriving av data." +msgstr "Dette avsnittet handlar om køyretidsfunksjonar som vert brukte for å visa dialogvindauge for inn- og utskriving av data." #: 03010100.xhp msgctxt "" @@ -7214,7 +7214,7 @@ "8\n" "help.text" msgid "Type: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. Type represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:" -msgstr "Type: Eit heiltalsuttrykk som angjer dialogvindaugetypen, kor mange og kva type knappar som skal visast og ikontypen. Type er ein kombinasjon av bit-mønster, det vil seia ein kombinasjon av element som vert definert ved å leggja saman dei respektive verdiane:" +msgstr "Type: Eit heiltalsuttrykk som bestemmer dialogvindaugetypen, kor mange og kva type knappar som skal visast og ikontypen. Type er ein kombinasjon av bit-mønster, det vil seia ein kombinasjon av element som vert definert ved å leggja saman dei respektive verdiane:" #: 03010101.xhp msgctxt "" @@ -7740,7 +7740,7 @@ "2\n" "help.text" msgid "Outputs the specified strings or numeric expressions to a dialog or to a file." -msgstr "Skriv dei angjevne strengane eller numeriske uttrykka til eit dialogvindauge eller ei fil. " +msgstr "Skriv ut dei valde strengane eller numeriske uttrykka til eit dialogvindauge eller til ei fil. " #: 03010103.xhp msgctxt "" @@ -8289,7 +8289,7 @@ "8\n" "help.text" msgid "Color: Long integer expression that specifies a color code for which to return the Green component." -msgstr "Color: Heiltalsuttrykk av typen Long som angjer ein fargekode som den grøne komponenten skal returnerast for." +msgstr "Color: Heiltalsuttrykk av typen Long som definerer ein fargekode som den grøne komponenten skal returnerast for." #: 03010302.xhp msgctxt "" @@ -8547,7 +8547,7 @@ "8\n" "help.text" msgid "ColorNumber: Any integer expression that specifies the color value of the color passed from an older MS-DOS based programming system." -msgstr "ColorNumber: Eit heiltalsuttrykk som angjev fargeverdien som tilsvarar fargeverdien brukt i eit eldre MSDOS-baserte programmeringssystem." +msgstr "ColorNumber: Eit heiltalsuttrykk som spesifiserer fargeverdien for fargen som er brukt eit eldre MSDOS-basert programmeringssystem." #: 03010304.xhp msgctxt "" @@ -8807,7 +8807,7 @@ "8\n" "help.text" msgid "Red: Any integer expression that represents the red component (0-255) of the composite color." -msgstr "Red: Eit heiltalsuttrykk som angjev den raude komponenten (0 - 255) i ein samansett farge." +msgstr "Red: Eit heiltalsuttrykk som representerer den raude komponenten (0 - 255) i ein samansett farge." #: 03010305.xhp msgctxt "" @@ -8816,7 +8816,7 @@ "9\n" "help.text" msgid "Green: Any integer expression that represents the green component (0-255) of the composite color." -msgstr "Green: Eit heiltalsuttrykk som angjev den grøne komponenten (0 - 255) i ein samansett farge." +msgstr "Green: Eit heiltalsuttrykk som representerer den grøne komponenten (0 - 255) i ein samansett farge." #: 03010305.xhp msgctxt "" @@ -8825,7 +8825,7 @@ "10\n" "help.text" msgid "Blue: Any integer expression that represents the blue component (0-255) of the composite color." -msgstr "Blue: Eit heiltalsuttrykk som angjev den blå komponenten (0 - 255) i ein samansett farge." +msgstr "Blue: Eit heiltalsuttrykk som representerer den blå komponenten (0 - 255) i ein samansett farge." #: 03010305.xhp msgctxt "" @@ -8992,7 +8992,7 @@ "6\n" "help.text" msgid "FileNumber: Any integer expression that specifies the number of the data channel that was opened with the Open statement." -msgstr "Filnummer: Eit heltalsuttrykk som angjev nummeret på datakanalen som vart opna med uttrykket Open." +msgstr "Filnummer: Eit heiltalsuttrykk som viser nummeret på datakanalen som vart opna med uttrykket Open." #: 03020101.xhp msgctxt "" @@ -9204,7 +9204,7 @@ "7\n" "help.text" msgid "Mode: Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files)." -msgstr "Mode: Nøkkelord som angjev filmodus. Gyldige verdiar: «append» (legg til i sekventiell fil), «binary» (data er tilgjengelege som byte med Get og Put), «input» (opnar datakanal for lesing), «output» (opnar datakanal for skriving) og «random» (redigerar relative filer)." +msgstr "Mode: Nøkkelord som bestemmer filmodus. Gyldige verdiar: «append» (legg til i sekvensiell fil), «binary» (data er tilgjengelege som byte med Get og Put), «input» (opnar datakanal for lesing), «output» (opnar datakanal for skriving) og «random» (redigerar relative filer)." #: 03020103.xhp msgctxt "" @@ -11226,7 +11226,7 @@ "18\n" "help.text" msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.sxw\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments." -msgstr "For å lage ei liste over alle filene i ein bestemt katalog, må du den første gongen du kallar opp Dir-funksjonen skrive inn den fullstendige søkestien for filene, for eksempel «D:\\Filer\\*.sxw». Dersom søkestien er korrekt og det blir funne i det minste éi fil, vil Dir-funksjonen returnere namnet på den første fila som passar med søket. For å finne fleire filnamn som passar søket, kall opp Dir-funksjonen igjen, men utan argument." +msgstr "For å lage ei liste over alle filene i ein bestemt katalog, må du den første gongen du kallar opp Dir-funksjonen skrive inn den fullstendige søkjestien for filene, for eksempel «D:\\Filer\\*.sxw». Dersom søkjestien er korrekt og det vert funne i det minste éi fil, vil Dir-funksjonen returnere namnet på den første fila som passar med søket. For å finne fleire filnamn som passar søket, kall opp Dir-funksjonen igjen, men utan argument." #: 03020404.xhp msgctxt "" @@ -11386,7 +11386,7 @@ "11\n" "help.text" msgid "Attribute: Integer expression that indicates the type of file information that you want to return. The following values are possible:" -msgstr "Attributt: Heiltalsuttrykk som angjer kva type av filinformasjon som skal returnerast. Følgjande verdiar er moglege:" +msgstr "Attributt: Eit heiltalsuttrykk som viser kva type filinformasjon som skal returnerast. Desse verdiar er moglege:" #: 03020405.xhp msgctxt "" @@ -11413,7 +11413,7 @@ "14\n" "help.text" msgid "If you specify a parameter attribute with a value of 1, the following return values apply:" -msgstr "Viss du angjer ein parametereigenskap med verdien 1, vil du få denne returverdien:values apply:" +msgstr "Viss du gjev ein parametereigenskap med verdien 1, får du denne returverdien:" #: 03020405.xhp msgctxt "" @@ -22249,7 +22249,7 @@ "2\n" "help.text" msgid "The following statements execute jumps." -msgstr "Desse uttrykka gjer lagar hopp i programmet." +msgstr "Desse uttrykka utfører hopp." #: 03090301.xhp msgctxt "" @@ -23427,7 +23427,7 @@ "6\n" "help.text" msgid "LibName: String expression that specifies the name of the DLL." -msgstr "LibName: Strenguttrykk som angjev namnet på DLL-en." +msgstr "LibName: Strenguttrykk som viser namnet på DLL-en." #: 03090405.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 "Teiknområde: Bokstavar som angjev variabelområdet som du vil setja standardtypen for." +msgstr "Teiknområde: Bokstavar som bestemmer variabelområdet som du vil setja standarddatatypen for." #: 03101100.xhp msgctxt "" @@ -25837,7 +25837,7 @@ "par_idN1059B\n" "help.text" msgid "Characterrange: Letters that specify the range of variables that you want to set a default data type for." -msgstr "Teiknområde: Bokstavar som angjev variabelområdet som du vil setja standardtypen for." +msgstr "Teiknområde: Bokstavar som bestemmer variabelområdet som du vil setja standarddatatypen for." #: 03101110.xhp msgctxt "" @@ -26061,7 +26061,7 @@ "par_idN10595\n" "help.text" msgid "Characterrange: Letters that specify the range of variables that you want to set a default data type for." -msgstr "Teiknområde: Bokstavar som angjev variabelområdet som du vil setja standardtypen for." +msgstr "Teiknområde: Bokstavar som bestemmer variabelområdet som du vil setja standarddatatypen for." #: 03101130.xhp msgctxt "" @@ -26173,7 +26173,7 @@ "par_idN10595\n" "help.text" msgid "Characterrange: Letters that specify the range of variables that you want to set a default data type for." -msgstr "Teiknområde: Bokstavar som angjev variabelområdet som du vil setja standardtypen for." +msgstr "Teiknområde: Bokstavar som bestemmer variabelområdet som du vil setja standarddatatypen for." #: 03101140.xhp msgctxt "" @@ -26291,7 +26291,7 @@ "6\n" "help.text" msgid "Characterrange: Letters that specify the range of variables that you want to set a default data type for." -msgstr "Teiknområde: Bokstavar som angjev variabelområdet som du vil setja standardtypen for." +msgstr "Teiknområde: Bokstavar som bestemmer variabelområdet som du vil setja standarddatatypen for." #: 03101300.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 "Teiknområde: Bokstavar som angjev variabelområdet som du vil setje standardtypen for." +msgstr "Teiknområde: Bokstavar som bestemmer variabelområdet som du vil setja standarddatatypen for. " #: 03101400.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 "Teiknområde: Bokstavar som angjev variabelområdet som du vil setje standardtypen for." +msgstr "Teiknområde: Bokstavar som bestemmer variabelområdet som du vil setja standarddatatypen for. " #: 03102000.xhp msgctxt "" @@ -27890,7 +27890,7 @@ "2\n" "help.text" msgid "Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized." -msgstr "Kontrollerar om ein Variant-variabel inneheld ein tom verdi. Den tomme verdien indikerer at variabelen ikkje er initialisert." +msgstr "Kontrollerer om ein Variant-variabel inneheld ein tom verdi. Den tomme verdien indikerer at variabelen ikkje er initialisert." #: 03102400.xhp msgctxt "" @@ -28438,7 +28438,7 @@ "8\n" "help.text" msgid "ArrayName: Name of the array for which you want to return the upper (Ubound) or the lower (LBound) boundary of the array dimension." -msgstr "TabellNamn: Namnet på tabellen som du ønskjer å finne øvre (Ubound) eller nedre (Lbound) grenseverdien for." +msgstr "TabellNamn: Namnet på tabellen som du ønskjer å finne øvre (Ubound) eller nedre (Lbound) grenseverdien for." #: 03102900.xhp msgctxt "" @@ -28447,7 +28447,7 @@ "9\n" "help.text" msgid "[Dimension]: Integer that specifies which dimension to return the upper (Ubound) or the lower (LBound) boundary for. If a value is not specified, the first dimension is assumed." -msgstr "[Dimensjon]: Heiltal som viser for kva dimensjon den øvre (Ubound) eller den nedre (Lbound) grensa skal returmerast. Dersom det ikkje er oppgitt noen verdi her, vil den første dimensjonen bli vist." +msgstr "[Dimensjon]: Heiltal som viser for kva dimensjon den øvre (Ubound) eller den nedre (Lbound) grensa skal returnerast. Dersom det ikkje er oppgitt noen verdi her, vil den første dimensjonen bli vist." #: 03102900.xhp msgctxt "" @@ -30984,7 +30984,7 @@ "2\n" "help.text" msgid "Comparison operators compare two expressions. The result is returned as a Boolean expression that determines if the comparison is True (-1) or False (0)." -msgstr "Samanlikningsoperatorane samanliknar to uttrykk. Resultatet blir returnert som eit logisk uttrykk som viser om samanlikninga er sann (-1) eller usann (0)." +msgstr "Samanlikningsoperatorane samanliknar to uttrykk. Resultatet vert returnert som eit logisk uttrykk som viser om samanlikninga er sann (-1) eller usann (0)." #: 03110100.xhp msgctxt "" @@ -36820,7 +36820,7 @@ "par_idN1059F\n" "help.text" msgid "This method creates instances of the type that is passed as parameter." -msgstr "Denne metoden lagar førkomster av type som vert sendt som parameter." +msgstr "Denne metoden lagar førekomstar av typen som vert sendt som parameter." #: 03132400.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/scalc/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-24 11:04+0000\n" +"PO-Revision-Date: 2014-09-01 18:43+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408878271.000000\n" +"X-POOTLE-MTIME: 1409597025.000000\n" #: 01120000.xhp msgctxt "" @@ -425,7 +425,7 @@ "28\n" "help.text" msgid "Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created." -msgstr "Opnar ein undermeny for å velje dra-moduset. Du bestemmer handling som skal utførast ved dra og slepp av eit objekt frå dokumentstrukturen inn i eit dokument. Avhengig av moduset du vel, vil ikonet vise om det er ei hyperlenke, ei lenke eller ein kopi som blir oppretta." +msgstr "Opnar ein undermeny for å velja dra-moduset. Du bestemmer kva handling som skal utførast når du drar og slepp eit objekt frå dokumentstrukturen inn i eit dokument. Avhengig av kva modus du vel, vil ikonet visa om det er ei hyperlenke, ei lenkje eller ein kopi som vert oppretta." #: 02110000.xhp msgctxt "" @@ -767,7 +767,7 @@ "14\n" "help.text" msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document." -msgstr "Set inn eit felt med arknamnet i det valde området av topp- eller botnteksten. Feltet blir bytt ut med namnet på reknearket." +msgstr "Set inn ein plasshaldar i det valde området av topp- eller botnteksten. Plasshaldaren vert bytt ut med namnet på arket." #: 02120100.xhp msgctxt "" @@ -802,7 +802,7 @@ "16\n" "help.text" msgid "Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document." -msgstr "Set inn eit sidetalsfelt i det valde området av topp- eller botnteksten. Feltet blir bytt ut med sidetalet. På denne måten kan du få samanhengande sidenummerering i dokumentet." +msgstr "Set inn ein plasshaldar i det valde området av topp- eller botnteksten. Plasshaldaren vert bytt ut med sidetalet. På denne måten kan du få samanhengande sidenummerering i dokumentet." #: 02120100.xhp msgctxt "" @@ -837,7 +837,7 @@ "18\n" "help.text" msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document." -msgstr "Set inn eit felt for sidemengd i det valde omådet av topp- eller botnteksten. Feltet blir bytt ut med sidemengda i dokumentet." +msgstr "Set inn ein plasshaldar for talet på sider i det valde området i topp- eller botnteksten. Plasshaldaren vert byt ut med talet på sider i dokumentet." #: 02120100.xhp msgctxt "" @@ -872,7 +872,7 @@ "20\n" "help.text" msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document." -msgstr "Set inn eit datofelt i det valde området av topp- eller botnteksten. Feltet blir bytt ut med datoen.." +msgstr "Set inn ein plasshaldar for datofelt i det valde området i topp- eller botnteksten. Plasshaldaren vert bytt ut med datoen på alle dokumentsidene." #: 02120100.xhp msgctxt "" @@ -907,7 +907,7 @@ "22\n" "help.text" msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document." -msgstr "Set inn eit felt for klokkeslett i det valde området av topp- eller botnteksten. Feltet blir bytt ut med klokkeslettet." +msgstr "Set inn ein plasshaldar for klokkeslett i det valde området i topp- eller botnteksten. Plasshaldaren vert bytt ut med klokkeslettet på alle dokumentsidene." #: 02120100.xhp msgctxt "" @@ -1056,7 +1056,7 @@ "3\n" "help.text" msgid "If a selected range has only one column, the contents of the top cell are copied to all others. If several columns are selected, the contents of the corresponding top cell will be copied down." -msgstr "Dersom eit merka området bare har éi enkelt kolonne, blir innhaldet av den øverste cella kopiert til alle de andre. Dersom fleire kolonnar er merka, blir innhaldet av den øverste cella kopiert nedover i kvar kolonne." +msgstr "Dersom eit merka området berre har éi enkelt kolonne, vert innhaldet av den øvste cella kopiert til alle dei andre. Dersom fleire kolonnar er merka, vert innhaldet av den øvste cella kopiert nedover i kvar kolonne." #: 02140200.xhp msgctxt "" @@ -1091,7 +1091,7 @@ "3\n" "help.text" msgid "If a range of only one row is selected, the contents of the far left cell are copied to all the other selected cells. If you have selected several rows, each of the far left cells is copied into those cells to the right." -msgstr "Viss eit område med bare éi rad er markert, blir innhaldet av cella lengst til venstre kopiert til alle dei andre markerte cellene. Viss du har markert fleire rader, vil cella lengst til venstre i kvar rad bli kopiert mot høgre i dei markerte cellene." +msgstr "Viss eit område med berre éi rad er merkt, vert innhaldet av cella lengst til venstre kopiert til alle dei andre merkte cellene. Viss du har merkt fleire rader, vert cella lengst til venstre i kvar rad kopiert mot høgre i dei markerte cellene." #: 02140300.xhp msgctxt "" @@ -1126,7 +1126,7 @@ "3\n" "help.text" msgid "If a selected range has only one column, the content of the bottom most cell is copied into the selected cells. If several columns are selected, the contents of the bottom most cells are copied into those selected above." -msgstr "Dersom eit merka området inneheld bare éi kolonne, vil innhaldet av den nedste cella bli kopiert inn i dei andre merka cellene. Dersom fleire kolonnar er merka, så blir innhaldet av den nedste cella i kvar kolonne kopiert inn i dei merka cellene ovanfor." +msgstr "Dersom eit merka området inneheld bare éi kolonne, vert innhaldet av den nedste cella kopiert inn i dei andre merkte cellene. Dersom fleire kolonnar er merka, så vert innhaldet av den nedste cella i kvar kolonne kopiert inn i dei merkte cellene ovanfor." #: 02140400.xhp msgctxt "" @@ -16984,7 +16984,7 @@ "bm_id3164375\n" "help.text" msgid "SQRT functionsquare roots;positive numbers" -msgstr "ROT-funksjonenkvadratrøtter;positive tal" +msgstr "KVROT-funksjonenkvadratrøtter;positive tal" #: 04060106.xhp msgctxt "" @@ -16993,7 +16993,7 @@ "532\n" "help.text" msgid "SQRT" -msgstr "SQRT" +msgstr "KVROT" #: 04060106.xhp msgctxt "" @@ -17020,7 +17020,7 @@ "535\n" "help.text" msgid "SQRT(Number)" -msgstr "MINUTT (tal)" +msgstr "KVROT(tal)" #: 04060106.xhp msgctxt "" @@ -17055,7 +17055,7 @@ "538\n" "help.text" msgid "=SQRT(16) returns 4." -msgstr "=MINUT(8,999) returnerar 58" +msgstr "=KVROT(16) returnerer 4" #: 04060106.xhp msgctxt "" @@ -17063,7 +17063,7 @@ "par_id3591723\n" "help.text" msgid "=SQRT(-16) returns an invalid argument error." -msgstr "=ROT(-16) returnerer feilmeldinga ugyldig argument." +msgstr "=KVROT(-16) returnerer feilmeldinga ugyldig argument." #: 04060106.xhp msgctxt "" @@ -17123,7 +17123,7 @@ "par_id9929197\n" "help.text" msgid "This is equivalent to SQRT(PI()*Number)." -msgstr "Dette er det same som ROT(PI()*Tal)." +msgstr "Dette er det same som KVROT(PI()*Tal)." #: 04060106.xhp msgctxt "" @@ -17141,7 +17141,7 @@ "670\n" "help.text" msgid "=SQRTPI(2) returns the squareroot of (2PI), approximately 2.506628." -msgstr "=KVRODPI(2) gir kvadratrota av (2pi), omlag 2,506628." +msgstr "=ROTPI(2) gir kvadratrota av (2pi), omlag 2,506628." #: 04060106.xhp msgctxt "" @@ -48940,7 +48940,7 @@ "par_id31494132\n" "help.text" msgid "Specify if conditional formatting is dependent on one of the entry listed on the drop down box:" -msgstr "Angje om vilkårsformateringa er evhengig av ei av oppføringane i nedtrekkslista:" +msgstr "Bestemmer om vilkårsformateringa er avhengig av ei av oppføringane i nedtrekkslista:" #: 05120000.xhp msgctxt "" @@ -50192,7 +50192,7 @@ "8\n" "help.text" msgid "Unprotected cells or cell ranges can be set up on a protected sheet by using the Tools - Protect Document - Sheet and Format - Cells - Cell Protection menus:" -msgstr "Celler eller celleområde som ikkje er verna kan bli sette opp i eit verna ark med menyane Verktøy → Vern dokument → Ark og Formater → Celler → Cellevern" +msgstr "Celler eller celleområde som ikkje er verna kan setjast inn i eit verna ark med menyane Verktøy → Vern dokument → Ark og Format → Celler → Cellevern" #: 06060100.xhp msgctxt "" @@ -53722,7 +53722,7 @@ "35\n" "help.text" msgid "Pivot table shortcut keys" -msgstr "Snartastar for pivottabellar" +msgstr "Snøggtastar for pivottabellar" #: 12090103.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/04.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/scalc/04.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/04.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/scalc/04.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2014-02-25 16:55+0000\n" +"POT-Creation-Date: 2014-05-02 00:11+0200\n" +"PO-Revision-Date: 2014-08-29 15:42+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.0\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393347327.0\n" +"X-POOTLE-MTIME: 1409326979.000000\n" #: 01020000.xhp msgctxt "" @@ -22,7 +22,7 @@ "tit\n" "help.text" msgid "Shortcut Keys for Spreadsheets" -msgstr "Snartastar for rekneark" +msgstr "Snøggtastar for rekneark" #: 01020000.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3145801\n" "help.text" msgid "spreadsheets; shortcut keys inshortcut keys; spreadsheetssheet ranges; filling" -msgstr "rekneark; snartastar isnartastar; reknearkarkområde; fylle ut" +msgstr "rekneark; snartastar isnøggtastar; reknearkarkområde; fylla ut" #: 01020000.xhp msgctxt "" @@ -39,7 +39,7 @@ "1\n" "help.text" msgid "Shortcut Keys for Spreadsheets" -msgstr "Snartastar for rekneark" +msgstr "Snøggtastar for rekneark" #: 01020000.xhp msgctxt "" @@ -111,7 +111,7 @@ "86\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01020000.xhp msgctxt "" @@ -622,7 +622,7 @@ "6\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01020000.xhp msgctxt "" @@ -1151,7 +1151,7 @@ "56\n" "help.text" msgid "Formatting Cells Using Shortcut Keys" -msgstr "Formatering av celler med snartastane" +msgstr "Formatering av celler med snøggtastane" #: 01020000.xhp msgctxt "" @@ -1169,7 +1169,7 @@ "58\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01020000.xhp msgctxt "" @@ -1678,4 +1678,4 @@ "183\n" "help.text" msgid "Shortcut keys in $[officename]" -msgstr "Snartastar i $[officename]" +msgstr "Snøggtastar i $[officename]" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/05.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/scalc/05.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/05.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/scalc/05.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:11+0200\n" -"PO-Revision-Date: 2014-07-05 11:32+0000\n" +"PO-Revision-Date: 2014-08-29 15:16+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404559978.000000\n" +"X-POOTLE-MTIME: 1409325378.000000\n" #: 02140000.xhp msgctxt "" @@ -179,7 +179,7 @@ "11\n" "help.text" msgid "Function argument is not valid. For example, a negative number for the SQRT() function, for this please use IMSQRT()." -msgstr "Argumentet i funksjonen er ugyldig. Det kan t.d. vere at eit negativt tal er lagt inn i funksjonen ROT(). Bruk i tilfelle IMROT() i staden." +msgstr "Argumentet i funksjonen er ugyldig. Det kan t.d. vere at eit negativt tal er lagt inn i funksjonen KVROT(). Bruk i tilfelle IMROT() i staden." #: 02140000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/guide.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/scalc/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/scalc/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/scalc/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-31 19:53+0000\n" +"PO-Revision-Date: 2014-08-29 15:43+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406836408.000000\n" +"X-POOTLE-MTIME: 1409327021.000000\n" #: address_auto.xhp msgctxt "" @@ -1823,7 +1823,7 @@ "7\n" "help.text" msgid "Choose Format - Cells and click the Cell Protection tab." -msgstr "Vel Formater → Celler og klikk på Cellevern." +msgstr "Vel Format → Celler og klikk på Cellevern." #: cell_protect.xhp msgctxt "" @@ -3010,7 +3010,7 @@ "34\n" "help.text" msgid "Select the cells and choose Format - Cells." -msgstr "Marker cellene og vel Formater → Celler." +msgstr "Marker cellene og vel Format → Celler." #: cellstyle_minusvalue.xhp msgctxt "" @@ -3738,7 +3738,7 @@ "47\n" "help.text" msgid "In %PRODUCTNAME Calc you can give numbers any currency format. When you click the Currency icon Icon in the Formatting bar to format a number, the cell is given the default currency format set under %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." -msgstr "I %PRODUCTNAME Calc kan du bruke valutaformat på alle tal. Når du trykker på knappen ValutaIkon på menylinja Formatering vil den markerte cella bli formatert ut frå innstillingane valde i %PRODUCTNAME → InnstillingarVerktøy → Innstillingar → Språkinnstillingar → Språk." +msgstr "I %PRODUCTNAME Calc kan du bruke valutaformat på alle tal. Når du trykkjer på knappen ValutaIkon på menylinja Formatering vert den merkte cella formatert ut frå innstillingane valde i %PRODUCTNAME → InnstillingarVerktøy → Innstillingar → Språkinnstillingar → Språk." #: currency_format.xhp msgctxt "" @@ -3765,7 +3765,7 @@ "49\n" "help.text" msgid "You can change the currency format in the Format Cells dialog (choose Format - Cells - Numbers tab) by two country settings. In the Language combo box select the basic setting for decimal and thousands separators. In the Format list box you can select the currency symbol and its position." -msgstr "Du kan endra valutaformatet i dialogvindauget Formater celler (vel fana Format → Celler → Tal) med innstillingar for to land. I nedtrekksmenyen for Språk vel du innstillingane for desimal- og tusenseperatorar. I lista Format kan du velja valutasymbol og plasseringa. " +msgstr "Du kan endra valutaformatet i dialogvindauget Formater celler (vel fana Format → Celler → Tal) med innstillingar for to land. I nedtrekksmenyen for Språk vel du innstillingane for desimal- og tusenskilje. I lista Format kan du velja valutasymbol og plasseringa av det. " #: currency_format.xhp msgctxt "" @@ -5531,7 +5531,7 @@ "20\n" "help.text" msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the CommandCtrl key when clicking), and then activating the Format Cells dialog in Format - Cell. In this dialog, you can select attributes such as shadows and backgrounds." -msgstr "Du kan tildela eit format til ei cellegrupper ved å først markera cellene (for å markere fleire cellegrupper, hald nede CmdCtrl når du klikkar) og så aktivera dialogen Celleeigenskapar frå Formater → Celler. I denne dialogen kan du velja innstillingar for til dømes tekst med skygge eller velja bakgrunnar." +msgstr "Du kan tildela eit format til ei cellegrupper ved å først merkja cellene (for å merkja fleire cellegrupper, hald nede CmdCtrl når du klikkar) og så aktivera dialogen Celleeigenskapar frå Format → Celler. I denne dialogen kan du velja innstillingar for til dømes tekst med skygge eller velja bakgrunnar." #: format_table.xhp msgctxt "" @@ -6898,7 +6898,7 @@ "tit\n" "help.text" msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)" -msgstr "Snartastar (tilgjengelege i %PRODUCTNAME Calc)" +msgstr "Snøggtastar (tilgjengelege i %PRODUCTNAME Calc)" #: keyboard.xhp msgctxt "" @@ -6906,7 +6906,7 @@ "bm_id3145120\n" "help.text" msgid "accessibility; %PRODUCTNAME Calc shortcutsshortcut keys;%PRODUCTNAME Calc accessibility" -msgstr "tilgjenge; snartastar (snøggtastar) i %PRODUCTNAME Calcsnartastar (snøggtastar); tilgjenge i %PRODUCTNAME Calc " +msgstr "tilgjenge; snøggtastar (snartastar) i %PRODUCTNAME Calcsnøggtastar (snartastar); tilgjenge i %PRODUCTNAME Calc " #: keyboard.xhp msgctxt "" @@ -6915,7 +6915,7 @@ "1\n" "help.text" msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)" -msgstr "Snartastar (tilgjengelege i %PRODUCTNAME Calc)" +msgstr "Snøggtastar (tilgjengelege i %PRODUCTNAME Calc)" #: keyboard.xhp msgctxt "" @@ -6924,7 +6924,7 @@ "13\n" "help.text" msgid "Refer also to the lists of shortcut keys for %PRODUCTNAME Calc and %PRODUCTNAME in general." -msgstr "Sjå også snartastlistene til %PRODUCTNAME Calc og %PRODUCTNAME generelt." +msgstr "Sjå også snøggtastlistene til %PRODUCTNAME Calc og %PRODUCTNAME generelt." #: keyboard.xhp msgctxt "" @@ -11146,7 +11146,7 @@ "43\n" "help.text" msgid "You can format numbers as text in $[officename] Calc. Open the context menu of a cell or range of cells and choose Format Cells - Numbers, then select \"Text\" from the Category list. Any numbers subsequently entered into the formatted range are interpreted as text. The display of these \"numbers\" is left-justified, just as with other text." -msgstr "Du kan formatere tal som tekst i $[officename] Calc. Opna sprettoppmenyen til ei celle eller eit celleområde og vel Formater celler → Tal, vel så «Tekst» i lista Kategori. Tal som nå blir skrivne inn i det formaterte området blir tolka som tekst. Visinga av desse «tala» blir venstrejustert slik som annan tekst." +msgstr "Du kan formatera tal som tekst i $[officename] Calc. Opna sprettoppmenyen til ei celle eller eit celleområde og vel Formater celler → Tal, vel så «Tekst» i lista Kategori. Tal som nå vert skrivne inn i det formaterte området vert tolka som tekst. Visinga av desse «tala» vert venstrejustert slik som annan tekst." #: text_numbers.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/scalc.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/scalc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/scalc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/scalc.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2013-12-20 12:47+0000\n" +"POT-Creation-Date: 2014-05-02 00:11+0200\n" +"PO-Revision-Date: 2014-08-31 17:51+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.0\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1387543646.0\n" +"X-POOTLE-MTIME: 1409507481.000000\n" #: main0000.xhp msgctxt "" @@ -910,7 +910,7 @@ "par_idN10875\n" "help.text" msgid "If CTL support is enabled, two additional icons are visible." -msgstr "Dersom CTL-støtta er på, blir to ekstra ikon synlege." +msgstr "Dersom CTL-støtta er på, vert to ekstra ikon synlege." #: main0202.xhp msgctxt "" @@ -934,7 +934,7 @@ "par_idN108BA\n" "help.text" msgid "The text is entered from left to right." -msgstr "Tekst blir skrive inn frå venstre mot høgre." +msgstr "Tekst vert skrive inn frå venstre mot høgre." #: main0202.xhp msgctxt "" @@ -958,7 +958,7 @@ "par_idN108FD\n" "help.text" msgid "The text formatted in a complex text layout language is entered from right to left." -msgstr "Tekst blir skrive inn frå høgre mot venstre, for språk med oppsett av kompleks tekst (CTL)." +msgstr " For språk som er formatert i kompleks tekst (CTL) vert teksten skrive inn frå høgre mot venstre" #: main0202.xhp msgctxt "" @@ -1078,7 +1078,7 @@ "2\n" "help.text" msgid "The Text Formatting Bar that is displayed when the cursor is in a text object, such as a text frame or a drawing object, contains formatting and alignment commands." -msgstr "Tekstformateringslinja som blir vist når skrivemerket er i eit tekstobjekt (til dømes ei tekstramme eller ei teikning) inneheld formaterings- og justeringfunksjonar." +msgstr "Tekstformateringslinja som vert vist når skrivemerket er i eit tekstobjekt (til dømes ei tekstramme eller ei teikning) inneheld formaterings- og justeringfunksjonar." #: main0205.xhp msgctxt "" @@ -1280,7 +1280,7 @@ "2\n" "help.text" msgid "The Page Preview Bar is displayed when you choose File - Page Preview." -msgstr "Linja Førehandsvis sida blir vist når du vel Fil → Førehandsvis sida." +msgstr "Linja Førehandsvis sida vert vist når du vel Fil → Førehandsvis sida." #: main0210.xhp msgctxt "" @@ -1383,7 +1383,7 @@ "2\n" "help.text" msgid "The Picture bar is displayed when you insert or select a picture in a sheet." -msgstr "Biletlinja blir vist når du set inn eller vel eit bilete i eit rekneark." +msgstr "Biletlinja vert vist når du set inn eller vel eit bilete i eit rekneark." #: main0218.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 "Med $[officename] Calc kan du presentera informasjon frå reknearka i dynamiske diagram som endrar seg når dataa blir endra." +msgstr "Med $[officename] Calc kan du presentera informasjon frå reknearka i dynamiske diagram som endrar seg når dataa vert endra." #: main0503.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/schart/00.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/schart/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/schart/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/schart/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408273499.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/schart/01.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/schart/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/schart/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/schart/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-08-24 10:44+0000\n" +"PO-Revision-Date: 2014-08-31 11:44+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408877083.000000\n" +"X-POOTLE-MTIME: 1409485490.000000\n" #: 03010000.xhp msgctxt "" @@ -247,7 +247,7 @@ "2\n" "help.text" msgid "Opens a dialog to enter or modify the titles in a chart. You can define the text for the main title, subtitle and the axis labels, and specify if they are displayed." -msgstr "Opnar eit dialogvindauge for å skriva inn eller endra titlar i ein tabell.. Du kan angje teksten for hovudtittelen, undertittelen og akseoverskriftene, samt angje om dei skal visast." +msgstr "Opnar eit dialogvindauge der du kan skriva inn eller endra titlar i ein tabell. Du kan skriva teksten for hovudtittelen, undertittelen og akseoverskriftene og velja om dei skal visast." #: 04010000.xhp msgctxt "" @@ -2924,7 +2924,7 @@ "11\n" "help.text" msgid "The options on this tab are only available for a 2D chart, under Format - Axis - Y Axis or X Axis. In this area, you can define the alignment of the number labels on the X or Y axis." -msgstr "Innstillingane på denne fanen er berre tilgjengelege for 2D-diagram (Format – Akse – Y-akse eller X-akse). I dette området kan du angje plasseringa av tala på X- eller Y-aksen." +msgstr "Innstillingane på denne fanen er berre tilgjengelege for 2D-diagram (Format → Akse → Y-akse eller X-akse). I dette området kan du velja plasseringa av tala på X- eller Y-aksen." #: 05020201.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/schart.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/schart.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/schart.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/schart.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2014-02-18 16:27+0000\n" +"POT-Creation-Date: 2014-05-02 00:14+0200\n" +"PO-Revision-Date: 2014-08-29 11:24+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.0\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1392740831.0\n" +"X-POOTLE-MTIME: 1409311463.000000\n" #: main0000.xhp msgctxt "" @@ -233,7 +233,7 @@ "par_id0810200912061033\n" "help.text" msgid "In chart edit mode, you see the Formatting Bar for charts near the upper border of the document. The Drawing Bar for charts appears near the lower border of the document. The Drawing Bar shows a subset of the icons from the Drawing toolbar of Draw and Impress." -msgstr "I redigeringsmodus for diagrammet blir verktøylinja «Formatering» for diagrammet vist nær de øvre kanten av dokumentet. Verktøylinja for teikneverktøya blir vist nedst i dokumentet. Denne verktøylinja viser symbola for Teikning frå Draw og Impress." +msgstr "I redigeringsmodus for diagrammet vert verktøylinja «Formatering» for diagrammet vist nær den øvre kanten av dokumentet. Verktøylinja for teikneverktøya vert vist nedst i dokumentet. Denne verktøylinja viser symbola for Teikning frå Draw og Impress." #: 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 "Marker elementet som du vil formatere. Det valde elementet blir vist på førehandsvisinga av diagrammet. Klikk på «Formater utvalet …« for å opna dialogvindauget med vala for det valde elementet." +msgstr "Merk elementet som du vil formatera. Det valde elementet vert vist på førehandsvisinga av diagrammet. Klikk på «Formater utvalet …« for å opna dialogvindauget med vala for det valde elementet." #: main0202.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/sdraw/04.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/sdraw/04.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/sdraw/04.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/sdraw/04.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2013-02-19 21:52+0000\n" +"POT-Creation-Date: 2014-05-02 00:10+0200\n" +"PO-Revision-Date: 2014-08-29 15:46+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1361310767.0\n" +"X-POOTLE-MTIME: 1409327185.000000\n" #: 01020000.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3156441\n" "help.text" msgid "shortcut keys;in drawings drawings; shortcut keys" -msgstr "snartastar; i teikningarteikningar; snartastar" +msgstr "snøggtastar; i teikningarteikningar; snøggtastar" #: 01020000.xhp msgctxt "" @@ -290,7 +290,7 @@ "bm_id3150393\n" "help.text" msgid "zooming;shortcut keys drawings; zoom function in" -msgstr "skalere; snartastarteikningar; skalere" +msgstr "skalere; snøggtastarteikningar; skalere" #: 01020000.xhp msgctxt "" @@ -669,7 +669,7 @@ "79\n" "help.text" msgid "CommandCtrl-click while dragging an object. Note: this shortcut key works only when the Copy when moving option in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw - General is enabled (it is enabled by default)." -msgstr "CmdCtrl-klikk medan du drar eit objekt. Merk: du må først slå på innstillinga Kopier ved flytting i %PRODUCTNAME - InnstillingarVerktøy → Innstillingar - %PRODUCTNAME Draw → Generelt for å kunne bruke denne snartasten. (Er normalt aktivert)." +msgstr "CmdCtrl-klikk medan du drar eit objekt. Merk: du må først slå på innstillinga Kopier ved flytting i %PRODUCTNAME - InnstillingarVerktøy → Innstillingar - %PRODUCTNAME Draw → Generelt for å kunne bruka denne snøggtasten. (Er normalt aktivert)." #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/sdraw/guide.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/sdraw/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/sdraw/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/sdraw/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-24 11:06+0000\n" +"PO-Revision-Date: 2014-08-30 16:26+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408878363.000000\n" +"X-POOTLE-MTIME: 1409415962.000000\n" #: align_arrange.xhp msgctxt "" @@ -356,7 +356,7 @@ "16\n" "help.text" msgid "The RGB color model mixes red, green and blue light to create colors on a computer screen. In the RGB model, the three color components are additive and can have values ranging from 0 (black) to 255 (white). The CMYK color model combines Cyan (C), Magenta (M), Yellow (Y), and blacK (K, also used for \"Key\") to create colors for printing. The four colors of the CMYK models are subtractive and are defined as percentages. Black corresponds to 100 % and white to 0 %." -msgstr "RGB-fargemodellen blandar raudt, grønt og blått lys for å danna fargar på ein dataskjerm. I RGB-modellen er dei tre fargekomponentane additive, og kan ha verdiar frå 0 (svart) til 255 (kvit). CMYK-fargemodellen brukar cyanblå (C for «Cyan»), magentaraud (M for «Magenta»), gul (Y for «Yellow») og svart (K for «blacK», men òg for nøkkel, «key»). Dei fire fargane i CMYK-modellen er subtraktive og blir oppgjevne i prosent. Svart svarar til 100 % og kvit til 0 %." +msgstr "RGB-fargemodellen blandar raudt, grønt og blått lys for å danna fargar på ein dataskjerm. I RGB-modellen er dei tre fargekomponentane additive, og kan ha verdiar frå 0 (svart) til 255 (kvit). CMYK-fargemodellen brukar cyanblå (C for «Cyan»), magentaraud (M for «Magenta»), gul (Y for «Yellow») og svart (K for «blacK», men òg for nøkkel, «Key»). Dei fire fargane i CMYK-modellen er subtraktive og vert oppgjevne i prosent. Svart svarar til 100 % og kvit til 0 %." #: color_define.xhp msgctxt "" @@ -807,7 +807,7 @@ "24\n" "help.text" msgid "A group containing the two original objects and the specified number (increments) of cross-faded objects is displayed." -msgstr "Ei gruppe som inneheld dei to opphavlege objekta og det oppgjevne talet på (steg) overgangsobjekt, blir viste." +msgstr "Ei gruppe som inneheld dei to opphavlege objekta og så mange mellomliggjande objekt som er valde vert vist." #: cross_fading.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/00.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-12 11:19+0000\n" +"PO-Revision-Date: 2014-09-03 21:47+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407842368.000000\n" +"X-POOTLE-MTIME: 1409780860.000000\n" #: 00000001.xhp msgctxt "" @@ -49,7 +49,7 @@ "5\n" "help.text" msgid "Clicking Cancel closes a dialog without saving any changes made." -msgstr "Lukkar du eit dialogvindauge med Avbryt, blir ikkje nokon av endringane du har gjort i han lagra." +msgstr "Lukkar du eit dialogvindauge med Avbryt, vert ingen av endringane du har gjort i han lagra." #: 00000001.xhp msgctxt "" @@ -83,7 +83,7 @@ "40\n" "help.text" msgid "By clicking the arrow next to some icons you open a toolbar. To move a toolbar, drag the title bar. As soon as you release the mouse button, the toolbar remains at the new position. Drag the title bar to another position, or drag to an edge of the window, where the toolbar will dock. Close a toolbar by clicking the Close Window icon. Make the toolbar visible again by choosing View - Toolbars - (toolbar name)." -msgstr "Når du klikkar på pila ved sida av enkelte knappar opnar det seg ei verktøylinje. Du kan flytta ei verktøylinje ved å dra tittellinja til ein ny stad. Når du slepp museknappen, vert verktøylinja liggjande der du slapp henne. Dersom du legg verktøylinja inntil eit vindauge, festar ho seg til kanten. Du lukkar verktøylinja ved å trykkja på lukkeknappen. Då kan du henta henne fram att med Vis → Verktøylinjer → (namnet på verktøylinja)." +msgstr "Når du klikkar på pila ved sida av enkelte knappar opnar det seg ei verktøylinje. Du kan flytta ei verktøylinje ved å dra tittellinja til ein ny stad. Når du slepp museknappen, vert verktøylinja liggjande der du slapp henne. Dersom du legg verktøylinja inntil eit vindauge, festar ho seg til kanten. Du lukkar verktøylinja ved å trykkja på lukkeknappen. Då kan du henta ho fram att med Vis → Verktøylinjer → (namnet på verktøylinja)." #: 00000001.xhp msgctxt "" @@ -108,7 +108,7 @@ "par_id7493209\n" "help.text" msgid "In the Basic IDE, a spin button is the name used for the numerical field together with the two arrow symbols." -msgstr "I Basic-IDE-en er rulleknapp namnet som blir brukt på det numeriske feltet og dei to pilsymbola." +msgstr "I Basic-IDE-en er ein rulleknapp namnet som vert brukt på det numeriske feltet og dei to pilsymbola." #: 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 "Du kan opna sprettoppmenyen til eit objekt ved å trykke på det med venstre museknapp for å velja det, og så trykke ei gong til medan du held nede «Kontroll» eller «Kommando» og «Option»klikke med høgre museknapp. Nokre sprettoppmenyar kan verta opna sjølv om objektet ikkje er vald. Du finn sprettoppmenyar overalt i $[officename]." +msgstr "Ein sprettoppmenye er ein lokal meny for eit objekt. Du opnar sprettoppmenyen til eit objekt ved å trykkja på objketet med venstre museknapp for å merkja det og så trykkja ei gong til medan du held nede «Kontroll» eller «Kommando» og «Option»klikka med høgre museknapp. Nokre sprettoppmenyar kan verta opna sjølv om objektet ikkje er merkt. Du finn sprettoppmenyar overalt i $[officename]." #: 00000001.xhp msgctxt "" @@ -288,7 +288,7 @@ "48\n" "help.text" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "Trykk på Forminsk-knappen for å gjera dialogvindauget like lite som skrivefeltet. På den måten er det lettare å merkja av området i arket. Knappen blir etter dette automatisk endra til ein Maksimer-knapp. Denne kan brukast til å gjenoppretta storleiken til dialogvindauget." +msgstr "Trykk på Forminsk-knappen for å gjera dialogvindauget like lite som skrivefeltet. På den måten er det lettare å merkja av området i arket. Knappen vert etter dette automatisk endra til ein Maksimer-knapp. Denne kan brukast til å gjenoppretta storleiken til dialogvindauget." #: 00000001.xhp msgctxt "" @@ -475,7 +475,7 @@ "73\n" "help.text" msgid "View the selections in the dialog made in the previous step. The current settings remain unchanged. This button can only be activated from page two on." -msgstr "Vis vala du gjorde i dialogboksen i førre steg. Innstillingane på dette steget blir ikkje endra. Denne knappen kan berre brukast frå og med side to." +msgstr "Vis vala du gjorde i dialogboksen i førre steg. Innstillingane på dette steget bvert ikkje endra. Denne knappen kan berre brukast frå og med side to." #: 00000001.xhp msgctxt "" @@ -828,7 +828,7 @@ "74\n" "help.text" msgid "$[officename] creates ImageMaps for both methods. Select the format from the File type list in the Save As dialog in the ImageMap Editor. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program." -msgstr "$[officename] kan laga begge typar biletkart. Du vel format frå lista Filtype under Lagra som i dialogvindauget Biletkartredigering. Det blir laga eigne biletkartfiler som du må lasta opp til tenaren. Du må spørja nettleverandøren eller nettverksadministratoren om kva type biletkart som kan brukast på tenaren, og korleis du får tilgang til biletkartprogrammet." +msgstr "$[officename] kan laga begge typar biletkart. Du vel format frå lista Filtype under Lagra som i dialogvindauget Biletkartredigering. Det vert laga eigne biletkartfiler som du må lasta opp til tenaren. Du må spørja nettleverandøren eller nettverksadministratoren om kva type biletkart som kan brukast på tenaren, og korleis du får tilgang til biletkartprogrammet." #: 00000002.xhp msgctxt "" @@ -2078,7 +2078,7 @@ "33\n" "help.text" msgid "Formatting refers to the visual layout of text using a word-processing or DTP program. This includes defining the paper format, page borders, fonts and font effects, as well as indents and spacing. You can format text directly or with Styles provided by $[officename]." -msgstr "Formatering er den visuelle utforminga av teksten i ein teksthandsamar eller eit datatrykkeprogram. Dette omfattar papirformat, sidemargar, skriftypar, skrifteffektar, innrykk, mellomrom og mykje anna. Du kan formatera tekst direkte eller med stilar." +msgstr "Formatering er den visuelle utforminga av teksten i ein teksthandsamar eller eit DTP-program (DeskTop Publishing). Dette omfattar papirformat, sidemargar, skriftypar, skrifteffektar, innrykk, mellomrom og mykje anna. Du kan formatera tekst direkte eller med stilar." #: 00000005.xhp msgctxt "" @@ -2200,7 +2200,7 @@ "57\n" "help.text" msgid "When an object is inserted directly into a document, the document size increases by (at least) the size in bytes of the object. You can save the document and open it on another computer, and the inserted object will still be in the same position in the document." -msgstr "Dersom eit objekt blir set direkte inn i eit dokument, aukar storleiken på dokumentfila med minst storleiken på objektet. Når du lagrar dokumentet og opnar det på ein annan maskin, vil objektet du sette inn, framleis ligge på same staden i dokumentet." +msgstr "Dersom eit objekt vert set direkte inn i eit dokument, aukar storleiken på dokumentfila med minst storleiken på objektet. Når du lagrar dokumentet og opnar det på ein annan maskin, vil objektet du sette inn, framleis liggja på same staden i dokumentet." #: 00000005.xhp msgctxt "" @@ -2218,7 +2218,7 @@ "59\n" "help.text" msgid "Use Edit - Links to see which files are inserted as links. The links can be removed if required. This will break the link and insert the object directly." -msgstr "Bruk Rediger → Lenker for å sjå kva filer som er set inn som lenker. Du kan fjerne lenkene dersom du vil det. I så fall vil lenka bli broten og objektet blir set inn direkte." +msgstr "Bruk Rediger → Lenker for å sjå kva filer som er set inn som lenker. Du kan fjerne lenkene dersom du vil det. I så fall vert lenkja broten og objektet vert set inn direkte." #: 00000005.xhp msgctxt "" @@ -2236,7 +2236,7 @@ "108\n" "help.text" msgid "A number system is determined by the number of characters available for representing numbers. The decimal system, for instance is based on the ten numbers (0..9), the binary system is based on the two numbers 0 and 1, the hexadecimal system is based on 16 characters (0...9 and A...F)." -msgstr "Eit talsystem er inndelt etter kor mange teikn som blir brukte for å representere tal. Desimalsystemet er for eksempel basert på tala frå 0 til 9, binærsystemet på tala 0 og 1 og det heksadesimale systemet er basert på 16 teikn (0-9 og A-F)." +msgstr "Eit talsystem er inndelt etter kor mange teikn som vert brukte for å representere tal. Desimalsystemet er for eksempel basert på tala frå 0 til 9, binærsystemet på tala 0 og 1 og det heksadesimale systemet er basert på 16 teikn (0-9 og A-F)." #: 00000005.xhp msgctxt "" @@ -2376,7 +2376,7 @@ "92\n" "help.text" msgid "Portable Network Graphics (PNG) is a graphic file format. The files are compressed with a selectable compression factor, and, as opposed to the JPG format, PNG files are always compressed without any information loss." -msgstr "PNG («Portable Network Graphics») er eit filformat for bilete. Filene blir komprimerte med ein sjølvvald komprimeringsfaktor, og i motsetning til JPG-formatet, blir PNG-filer alltid komprimerte utan tap av informasjon." +msgstr "PNG («Portable Network Graphics») er eit filformat for bilete. Filene vert komprimerte med ein sjølvvald komprimeringsfaktor, og i motsetning til JPG-formatet, vert PNG-filer alltid komprimerte utan tap av informasjon." #: 00000005.xhp msgctxt "" @@ -2821,7 +2821,7 @@ "92\n" "help.text" msgid "Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a security query appears before objects are deleted." -msgstr "Slettar det merkte området. Har du merka fleire objekt, blir alle sletta. I dei fleste tilfella spør programmet om stadfesting før objekta blir sletta." +msgstr "Slettar det merkte området. Har du merkt fleire objekt, vert alle sletta. I dei fleste tilfella spør programmet om stadfesting før objekta vert sletta." #: 00000010.xhp msgctxt "" @@ -2929,7 +2929,7 @@ "320\n" "help.text" msgid "This command can be activated if an object is selected. A link named \"Link to xxx\" (xxx represents the name of the object) will be created directly in the same directory as that of the selected object." -msgstr "Denne kommandoen kan brukast når eit objekt er merka. Ei lenkje med namnet «Lenke til xxx» (der xxx er namnet på objektet) blir laga direkte i same mappa som det valde objektet." +msgstr "Denne kommandoen kan brukast når eit objekt er merka. Ei lenkje med namnet «Lenke til xxx» (der xxx er namnet på objektet) vert laga direkte i same mappa som det valde objektet." #: 00000011.xhp msgctxt "" @@ -3007,7 +3007,7 @@ "3\n" "help.text" msgid "In UNIX, certain file formats cannot be recognized automatically.$[officename] normally recognizes the correct file type automatically on opening a file. There may be cases where you have to select the file type yourself in the Open dialog. For example, if you have a database table in text format that you want to open as a database table, you need to specify the file type \"Text CSV\" after selecting the file." -msgstr "Ein del filformat kan ikkje kjennast att automatisk i UNIX. $[officename] vil normalt kjenne igjen den korrekte filtypen når fila blir opna. Det kan vere tilfelle der du må velje filtypen sjølv i dialogen Opna. Dette kan for eksempel vere om du har ein databasetabell på tekstform og vil opna denne som ein databasetabell. Du må då velje filtypen «Tekst, CSV» etter at du har markert fila. " +msgstr "Ein del filformat kan ikkje kjennast att automatisk i UNIX. $[officename] vil normalt kjenne igjen den korrekte filtypen når fila vert opna. Det kan vere tilfelle der du må velje filtypen sjølv i dialogen Opna. Dette kan for eksempel vere om du har ein databasetabell på tekstform og vil opna denne som ein databasetabell. Du må då velje filtypen «Tekst, CSV» etter at du har markert fila. " #: 00000020.xhp msgctxt "" @@ -3124,7 +3124,7 @@ "199\n" "help.text" msgid "Comments are used to include unknown characters in an HTML document. Every note that begins with \"HTML:...\" and ends with \">\" is treated as an HTML code, but is exported without these designations. Several tags around text can be included after \"HTML:...\" Accented characters are converted into the ANSI character set. Comments are created during import (for example, for meta tags that have no room in the file properties or unknown tags)." -msgstr "Merknader blir brukt for å legge til ukjende teikn i HTML-dokument. Alle merknader som byrjar med «HTML …» og sluttar med «>» blir handterte som HTML-kode men blir eksporterte utan desse nemningane. Det er råd å ha fleire taggar omkring teksten etter «HTML …». Teikn med aksent blir konverterte til ANSI-teiknsettet. Ved import blir det oppretta merknader for eksempel for meta-taggar, som ikkje har eigen plass i dokumentinformasjonen, eller for ukjende taggar." +msgstr "Merknadar vert brukt for å legge til ukjende teikn i HTML-dokument. Alle merknadar som byrjar med «HTML …» og sluttar med «>» vert handterte som HTML-kode men vert eksporterte utan desse nemningane. Det er råd å ha fleire taggar omkring teksten etter «HTML …». Teikn med aksent vert konverterte til ANSI-teiknsettet. Ved import vert det oppretta merknader for eksempel for meta-taggar, som ikkje har eigen plass i dokumentinformasjonen, eller for ukjende taggar." #: 00000020.xhp msgctxt "" @@ -3187,7 +3187,7 @@ "14\n" "help.text" msgid "If MS Internet Explorer or $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on \"width\" and \"height\" values. The \"Margin\" property is used to set equal margins on all sides of the page. To allow different margins, the \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" and \"Margin-Bottom\" properties are used." -msgstr "Dersom MS Internet Explorer eller $[officename] Writer er vald for eksport, blir storleiken på kontrollfelta og dei interne margane deira eksporterte som stilar (utskriftsformat). Storleikseigenskapane i CSS1 er basert på verdiane «width» og «height». Egenskapen «margin» blir brukt til å lage lik marg på alle sidene. Dersom margane skal vere ulike, kan ein bruke eigenskapane «margin-left», «margin-right», «margin-top» og «margin-bottom»." +msgstr "Dersom MS Internet Explorer eller $[officename] Writer er vald for eksport, vert storleiken på kontrollfelta og dei interne margane deira eksporterte som stilar (utskriftsformat). Storleikseigenskapane i CSS1 er basert på verdiane «width» og «height». Egenskapen «margin» vert brukt til å laga lik marg på alle sidene. Dersom margane skal vere ulike, kan ein bruka eigenskapane «margin-left», «margin-right», «margin-top» og «margin-bottom»." #: 00000020.xhp msgctxt "" @@ -3196,7 +3196,7 @@ "15\n" "help.text" msgid "The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer and MS Internet Explorer. If the top/bottom or right/left margin is set differently, the distances are exported in a \"STYLE\" option for the corresponding tag as CSS1 size properties \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" and \"Margin-Right\"." -msgstr "Ved eksport til $[officename] Writer og MS Internet Explorer kan ein velje avstandane frå bilete og programtillegg setjast uavhengig av kvarandre. Dersom topp- eller botnmargen eller venstre- og høgremargen er ulike, vil avstandane bli eksportrte som «STYLE»-eigenskapar for den tilsvarande taggen som storleikseigenskapane «margin-top», «margin-bottom», «margin-left» og «margin-right» i CSS1." +msgstr "Ved eksport til $[officename] Writer og MS Internet Explorer kan ein velje avstandane frå bilete og programtillegg setjast uavhengig av kvarandre. Dersom topp- eller botnmargen eller venstre- og høgremargen er ulike, vil avstandane verta eksportrte som «STYLE»-eigenskapar for den tilsvarande taggen som storleikseigenskapane «margin-top», «margin-bottom», «margin-left» og «margin-right» i CSS1." #: 00000020.xhp msgctxt "" @@ -3412,7 +3412,7 @@ "224\n" "help.text" msgid "If, in %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility, the export option \"$[officename] Writer\" or \"Internet Explorer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the
                and
                  tags. The property indicates the difference relative to the indent of the next higher level." -msgstr "Dersom eksportinnstillinga i %PRODUCTNAME → InnstillingarVerktøy → Innstillingar → Last inn /lagre → HTML-kompatibilitet er sett til \"$[officename] Writer\" eller \"Internet Explorer\", blir innrykkinga av nummereringar eksportert som ein «margin-lef» CSS1-eigenskap i STYLE attributtet for
                    og
                      taggane. Eigenskapen gir ut skilnaden i høve til innrykket på neste høgare nivå." +msgstr "Dersom eksportinnstillinga i %PRODUCTNAME → InnstillingarVerktøy → Innstillingar → Last inn /lagre → HTML-kompatibilitet er sett til \"$[officename] Writer\" eller \"Internet Explorer\", vert innrykkinga av nummereringar eksportert som ein «margin-lef» CSS1-eigenskap i STYLE attributtet for
                        og
                          taggane. Eigenskapen gir ut skilnaden i høve til innrykket på neste høgare nivå." #: 00000020.xhp msgctxt "" @@ -3421,7 +3421,7 @@ "225\n" "help.text" msgid "A left paragraph indent in numbering is indicated as \"margin-left\" CSS1 property. First-line indents are ignored in numbering and not exported." -msgstr "Venstreinnrykk av nummerering blir gjort med CSS1-eigenskapen «margin-left». Det blir ikkje tatt omsyn til innrykk av den første linja ved nummerering, og slike innrykk blir heller ikkje eksporterte." +msgstr "Venstreinnrykk av nummerering vert gjort med CSS1-eigenskapen «margin-left». Det vert ikkje tatt omsyn til innrykk av den første linja ved nummerering, og slike innrykk vert heller ikkje eksporterte." #: 00000020.xhp msgctxt "" @@ -4200,7 +4200,7 @@ "par_id6200750\n" "help.text" msgid "Some of the shortcut keys may be assigned to your desktop system. Keys that are assigned to the desktop system are not available to %PRODUCTNAME. Try to assign different keys either for %PRODUCTNAME, in Tools - Customize - Keyboard, or in your desktop system." -msgstr "Ein del av snartastane kan vera brukte av operativsystemet. Desse tastane vil i tilfelle ikkje vere tilgjengelege i %PRODUCTNAME. Du kan løyse dette problemet ved å velja andre snartastar, anten for %PRODUCTNAME ved hjelp av Verktøy → Tilpass → Tastatur eller i operativsystemet." +msgstr "Ein del av snøggtastane kan vera brukte av operativsystemet. Desse tastane vil i tilfelle ikkje vere tilgjengelege i %PRODUCTNAME. Du kan løyse dette problemet ved å velja andre snøggtastar, anten for %PRODUCTNAME ved hjelp av Verktøy → Tilpass → Tastatur eller i operativsystemet." #: 00000200.xhp msgctxt "" @@ -4232,7 +4232,7 @@ "par_id1\n" "help.text" msgid "When you export graphical elements to a file, you can select the file type. For most supported file types a dialog opens where you can setup export options." -msgstr "Når du eksporterer grafiske element til ei fil, kan du velje filtype. For dei fleste støtta filtypene blir det opna eit dialogvindauge der du kan setje eksportinnstillingane for grafikk." +msgstr "Når du eksporterer grafiske element til ei fil, kan du velje filtype. For dei fleste støtta filtypene vert det opna eit dialogvindauge der du kan setje eksportinnstillingane for grafikk." #: 00000200.xhp msgctxt "" @@ -4240,7 +4240,7 @@ "par_id2\n" "help.text" msgid "The following file types do not show an options dialog: PWP, RAS, SVG, TIFF, XPM." -msgstr "Desse filtypane blir ikkje viste i dialogen for eksportinnstillingar for grafikk: PWP, RAS, SVG, TIFF, XPM." +msgstr "Desse filtypane vert ikkje viste i dialogen for eksportinnstillingar for grafikk: PWP, RAS, SVG, TIFF, XPM." #: 00000200.xhp msgctxt "" @@ -4686,7 +4686,7 @@ "par_id3152778363\n" "help.text" msgid "Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character." -msgstr "Eksporter alle tekstcellene med hermeteikn framføre og etter slik som sett i feltet for skiljetikn. Dersom den ikkje er merkt, vil bare dei tekstcellene som inneheld feltskiljeteikn bli innekapsla i hermeteikn. " +msgstr "Eksporter alle tekstcellene med hermeteikn framføre og etter slik som dei er sette i feltet for skiljetikn. Dersom denne ikkje er merkt, vil berre dei tekstcellene som inneheld feltskiljeteikn verta innekapsla i hermeteikn. " #: 00000207.xhp msgctxt "" @@ -4702,7 +4702,7 @@ "par_id5719779\n" "help.text" msgid "Enabled by default, data will be saved as displayed, including applied number formats. If this checkbox is not marked, raw data content will be saved, as in older versions of the software." -msgstr "Denne er normalt avkryssa og gjer at data blir lagra slik dei blir viste, inklusivt det brukte talformatet. Dersom denne ikkje er avkryssa, vil bare dataane bli lagra slik som i tidlegare utgåver av programmet." +msgstr "Denne er normalt avkryssa og gjer at data vert lagra slik dei vert viste, inklusivt det brukte talformatet. Dersom denne ikkje er avkryssa, vert dataane lagra slik som i tidlegare utgåver av programmet." #: 00000207.xhp msgctxt "" @@ -4710,7 +4710,7 @@ "par_id3541062\n" "help.text" msgid "Depending on the number format, saving cell content as shown may write values that during an import cannot be interpreted as numerical values anymore." -msgstr "Lagrar du celleinnhaldet som vist, kan talformatet gjere at verdiane ikkje kan bli tolka som talverdiar når dei blir importerte igjen." +msgstr "Lagrar du celleinnhaldet som vist, kan talformatet gjera at verdiane ikkje kan verta tolka som talverdiar når dei vert importerte igjen." #: 00000207.xhp msgctxt "" @@ -4850,7 +4850,7 @@ "par_id314949587\n" "help.text" msgid "If Language is set to Default (for CSV import) or Automatic (for HTML import), Calc will use the globally set language. If Language is set to a specific language, that language will be used when importing numbers." -msgstr "Dersom språket er set til standard (for CSV-import) eller automatisk (for HTML-impoert), vil Calc bruke det språket som er set som globalt. Dersom det er oppgjeve eit spesifikt språk vil dette språket bli brukt ved import av tal." +msgstr "Dersom språket er set til standard (for CSV-import) eller automatisk (for HTML-impoert), vil Calc bruke det språket som er set som globalt. Dersom det er oppgjeve eit spesifikt språk, vil dette språket verta brukt ved import av tal." #: 00000208.xhp msgctxt "" @@ -4858,7 +4858,7 @@ "par_id314949586\n" "help.text" msgid "When importing an HTML document, the Language selection can conflict with the global HTML option Use 'English (USA)' locale for numbers. The global HTML option is effective only when the Automatic language option is selected. If you select a specific language in the HTML Import Options dialog, the global HTML option is ignored." -msgstr "Når eit HTML-dokument blir importert, kan språkinnstillingane lett kome i konflikt med den globale innstilinga Bruk 'Engelsk (USA)' lokalt for tal. Den globale innstillinga for HTML gjeld bare når det er vald automatisk språksetting. Dersom du vel eit bestemt språk i dialogen for HTML-import, vil dei globale innstillingane for HTML bli ignorerte." +msgstr "Når eit HTML-dokument vert importert, kan språkinnstillingane lett kome i konflikt med den globale innstilinga Bruk 'Engelsk (USA)' lokalt for tal. Den globale innstillinga for HTML gjeld berre når det er vald automatisk språksetting. Dersom du vel eit bestemt språk i dialogen for HTML-import, vil dei globale innstillingane for HTML verta ignorerte." #: 00000208.xhp msgctxt "" @@ -5506,7 +5506,7 @@ "9\n" "help.text" msgid "Specifies whether to distribute the printout on multiple pages. The print range will be printed on multiple pages." -msgstr "Bestemmer om om utskrifta skal fordelast på fleire sider. Utskriftsområdet blir skrive ut på fleire sider." +msgstr "Bestemmer om utskrifta skal fordelast på fleire sider. Utskriftsområdet vert skrive ut på fleire sider." #: 00000210.xhp msgctxt "" @@ -5524,7 +5524,7 @@ "11\n" "help.text" msgid "Specifies that anything extending beyond the maximum print range will be cut off and not included in the printing." -msgstr "Gjer at alt som ligg utanfor det største tillatne utskriftsområdet skal kuttast og ikkje bli skrive ut." +msgstr "Gjer at alt som ligg utanfor det største tillatne utskriftsområdet skal kuttast og ikkje skrivast ut." #: 00000215.xhp msgctxt "" @@ -5550,7 +5550,7 @@ "2\n" "help.text" msgid "You can specify which options, such as basic font, language, character set, or break, are imported or exported with a text document. The dialog appears when you load an ASCII file with the filter \"Text Encoded\" or when you save the document the first time, or when you \"save as\" with another name." -msgstr "Du kan velje kva eigenskapar som skal bli importert og eksportert med tekstdokument, for eksempel skrift, språk, teiknsett og skift. Dialogvindauget blir vist når du opnar ei ASCII-fil med filteret «Koda tekst» når du lagrar eit dokument første gongen eller når du vel «Lagra som» for å lagre det med eit anna namn." +msgstr "Du kan velje kva eigenskapar som svert importert og eksportert med tekstdokument, for eksempel skrift, språk, teiknsett og skift. Dialogvindauget vert vist når du opnar ei ASCII-fil med filteret «Koda tekst» når du lagrar eit dokument første gongen eller når du vel «Lagra som» for å lagra det med eit anna namn." #: 00000215.xhp msgctxt "" @@ -5604,7 +5604,7 @@ "8\n" "help.text" msgid "By setting a default font, you specify that the text should be displayed in a specific font. The default fonts can only be selected when importing." -msgstr "Dersom du vel ei standardskrift, bestemmer du at teksten skal bli vist med ei bestemt skrift. Standardskriftene kan bare veljast ved import." +msgstr "Dersom du vel ei standardskrift, bestemmer du at teksten skal visast med ei bestemt skrift. Standardskriftene kan berre veljast ved import." #: 00000215.xhp msgctxt "" @@ -5960,7 +5960,7 @@ "110\n" "help.text" msgid "Choose File - Wizards - Letter" -msgstr "Vel Fil → Vegvisarar → Brev" +msgstr "Vel Fil → Vegvisarar → Brev " #: 00000401.xhp msgctxt "" @@ -5969,7 +5969,7 @@ "111\n" "help.text" msgid "Choose File - Wizards - Letter - Page design" -msgstr "Vel Fil → Vegvisarar → Brev → Sideutforming" +msgstr "Vel Fil → Vegvisarar → Brev → Sideutforming " #: 00000401.xhp msgctxt "" @@ -5978,7 +5978,7 @@ "112\n" "help.text" msgid "Choose File - Wizards - Letter - Letterhead layout" -msgstr "Vel Fil → Vegvisarar → Brev → Brevhovudutforming" +msgstr "Vel Fil → Vegvisarar → Brev → Brevhovudutforming " #: 00000401.xhp msgctxt "" @@ -5987,7 +5987,7 @@ "113\n" "help.text" msgid "Choose File - Wizards - Letter - Printed items" -msgstr "Vel Fil → Vegvisarar → Brev → Element som skal skrivast ut" +msgstr "Vel Fil → Vegvisarar → Brev → Element som skal skrivast ut " #: 00000401.xhp msgctxt "" @@ -5996,7 +5996,7 @@ "114\n" "help.text" msgid "Choose File - Wizards - Letter - Recipient and sender" -msgstr "Vel Fil → Vegvisarar → Brev → Mottakar og sendar" +msgstr "Vel Fil → Vegvisarar → Brev → Mottakar og sendar " #: 00000401.xhp msgctxt "" @@ -6005,7 +6005,7 @@ "115\n" "help.text" msgid "Choose File - Wizards - Letter - Footer" -msgstr "Vel Fil → Vegvisarar → Brev → Botntekst" +msgstr "Vel Fil → Vegvisarar → Brev → Botntekst " #: 00000401.xhp msgctxt "" @@ -6014,7 +6014,7 @@ "116\n" "help.text" msgid "Choose File - Wizards - Letter - Name and Location" -msgstr "Vel Fil → Vegvisarar → Brev → Namn og adresse" +msgstr "Vel Fil → Vegvisarar → Brev → Namn og adresse " #: 00000401.xhp msgctxt "" @@ -6023,7 +6023,7 @@ "120\n" "help.text" msgid "Choose File - Wizards - Fax" -msgstr "Vel Fil → Vegvisarar → Faks" +msgstr "Vel Fil → Vegvisarar → Faks " #: 00000401.xhp msgctxt "" @@ -6032,7 +6032,7 @@ "121\n" "help.text" msgid "Choose File - Wizards - Fax - Page Design" -msgstr "Vel Fil → Vegvisarar → Faks → Sideutforming" +msgstr "Vel Fil → Vegvisarar → Faks → Sideutforming " #: 00000401.xhp msgctxt "" @@ -6041,7 +6041,7 @@ "209\n" "help.text" msgid "Choose File - Wizards - Fax - Items to include" -msgstr "Vel Fil → Vegvisarar → Faks → Postar som skal takast med" +msgstr "Vel Fil → Vegvisarar → Faks → Postar som skal takast med " #: 00000401.xhp msgctxt "" @@ -6050,7 +6050,7 @@ "122\n" "help.text" msgid "Choose File - Wizards - Fax - Sender and Recipient" -msgstr "Vel Fil → Vegvisarar → Faks → Sendar og mottakar" +msgstr "Vel Fil → Vegvisarar → Faks → Sendar og mottakar " #: 00000401.xhp msgctxt "" @@ -6059,7 +6059,7 @@ "123\n" "help.text" msgid "Choose File - Wizards - Fax - Footer" -msgstr "Vel Fil → Vegvisarar → Faks → Botntekst" +msgstr "Vel Fil → Vegvisarar → Faks → Botntekst " #: 00000401.xhp msgctxt "" @@ -6068,7 +6068,7 @@ "124\n" "help.text" msgid "Choose File - Wizards - Fax - Name and location" -msgstr "Vel Fil → Vegvisarar → Faks → Namn og aresse" +msgstr "Vel Fil → Vegvisarar → Faks → Namn og adresse " #: 00000401.xhp msgctxt "" @@ -6077,7 +6077,7 @@ "131\n" "help.text" msgid "Choose File - Wizards - Agenda" -msgstr "Vel Fil → Vegvisarar → Tidsplan" +msgstr "Vel Fil → Vegvisarar → Møteplan " #: 00000401.xhp msgctxt "" @@ -6095,7 +6095,7 @@ "133\n" "help.text" msgid "Choose File - Wizards - Agenda - General Attributes" -msgstr "Vel Fil → Vegvisarar → Tidsplan → Generell informasjon" +msgstr "Vel Fil → Vegvisarar → Møteplan → Generell informasjon " #: 00000401.xhp msgctxt "" @@ -6104,7 +6104,7 @@ "134\n" "help.text" msgid "Choose File - Wizards - Agenda - Headings" -msgstr "Vel Fil → Vegvisarar → Tidsplan → Overskrifter som skal takast med" +msgstr "Vel Fil → Vegvisarar → Møteplan → Overskrifter som skal takast med " #: 00000401.xhp msgctxt "" @@ -6113,7 +6113,7 @@ "135\n" "help.text" msgid "Choose File - Wizards - Agenda - Names" -msgstr "Vel Fil → Vegvisarar → Tidsplan → Namn" +msgstr "Vel Fil → Vegvisarar → Møteplan → Namn " #: 00000401.xhp msgctxt "" @@ -6122,7 +6122,7 @@ "205\n" "help.text" msgid "Choose File - Wizards - Agenda - Topics" -msgstr "Vel Fil → Vegvisarar → Tidsplan → Møteplanelement" +msgstr "Vel Fil → Vegvisarar → Møteplan → Møteplanelement " #: 00000401.xhp msgctxt "" @@ -6131,7 +6131,7 @@ "136\n" "help.text" msgid "Choose File - Wizards - Agenda - Title and Location" -msgstr "Vel Fil → Vegvisarar → Tidsplan → Namn og adresse" +msgstr "Vel Fil → Vegvisarar → Møteplan → Namn og adresse " #: 00000401.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 "Vel Fil → Eksporter og så filtypen «HTML-dokument» i $[officename] Draw eller $[officename] Impress. Dette er side 1 i vegvisaren." +msgstr "Vel Fil → Eksporter og så filtypen «HTML-dokument» i $[officename] Draw eller $[officename] Impress for å opna dette dialogvindauget automatisk" #: 00000401.xhp msgctxt "" @@ -9453,7 +9453,7 @@ "15\n" "help.text" msgid "Automatically after %PRODUCTNAME is first started." -msgstr "Blir opna automatisk når %PRODUCTNAME blir starta første gongen." +msgstr "Vert opna automatisk når %PRODUCTNAME vert opna første gongen." #: 00000408.xhp msgctxt "" @@ -10592,7 +10592,7 @@ "94\n" "help.text" msgid "Open the context menu of the 3D object, choose 3D Effects - Material tab " -msgstr "Opna lokalmenyen for 3D-objektet og vel Formater - 3D-effektar → Material " +msgstr "Opna sprettoppmenyen for 3D-objektet og vel Format - 3D-effektar → Material " #: 00040500.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/01.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-25 17:39+0200\n" -"PO-Revision-Date: 2014-07-31 19:58+0000\n" +"PO-Revision-Date: 2014-09-03 21:47+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406836683.000000\n" +"X-POOTLE-MTIME: 1409780864.000000\n" #: 01010000.xhp msgctxt "" @@ -972,7 +972,7 @@ "8\n" "help.text" msgid "Creates a label with your return address. Text that is currently in the Label text box is overwritten." -msgstr "Lagar ein etikett med svaradressa di. Tekst som alt er i etikettekst-boksen blir erstatta." +msgstr "Lagar ein etikett med svaradressa di. Tekst som alt er i etikettekst-boksen vert overskrive." #: 01010201.xhp msgctxt "" @@ -2554,7 +2554,7 @@ "44\n" "help.text" msgid "If a document was created using a template that cannot be found a dialog is shown that asks you how to proceed next time the document is opened." -msgstr "Viss eit dokument som har blitt oppretta frå ein mal som ikkje lengre finst, vil eit dialogvindauge bli vist der du kan velja kva som skal gjerast neste gong dette dokumentet vert opna." +msgstr "Viss eit dokument som er oppretta frå ein mal som ikkje lengre finst, vert det vist eit dialogvindauge der du kan velja kva som skal gjerast neste gong dette dokumentet vert opna." #: 01020000.xhp msgctxt "" @@ -3116,7 +3116,7 @@ "70\n" "help.text" msgid "If you are exporting to any document file type, the entire document is exported." -msgstr "Eksporterer du til ein dokumentfiltype, vil heile dokumentet bli eksportert." +msgstr "Eksporterer du til ein dokumentfiltype, vert heile dokumentet eksportert." #: 01070000.xhp msgctxt "" @@ -3460,7 +3460,7 @@ "21\n" "help.text" msgid "Displays the path and the name of the directory where the file is stored." -msgstr "Viser stigen og namnet på mappa der fila er lagra." +msgstr "Viser stien og namnet på mappa der fila er lagra." #: 01100200.xhp msgctxt "" @@ -4774,7 +4774,7 @@ "4\n" "help.text" msgid "The list box shows the installed printers. Click the printer to use for the current print job. Click the Printer details button to see some information about the selected printer. Click the Properties button to change some of the printer properties." -msgstr "Viser standardskrivaren for dokumentet. Informasjonen om skrivaren er vist under denne boksen. Viss du vel ein anna skrivar blir informasjonen oppdatert." +msgstr "Viser standardskrivaren for dokumentet. Informasjonen om skrivaren er vist under denne boksen. Viss du vel ein anna skrivar vert informasjonen oppdatert." #: 01130000.xhp msgctxt "" @@ -5668,7 +5668,7 @@ "22\n" "help.text" msgid "If you save a copy of a file that contains version information (by choosing File - Save As), the version information is not saved with the file." -msgstr "Viss du lagrar ein kopi av ei fil med Fil → Lagra som, vil ikkje eventuell versjonsinformasjon bli lagra med fila." +msgstr "Viss du lagrar ein kopi av ei fil med Fil → Lagra som, vert ikkje eventuell versjonsinformasjon lagra med fila." #: 01190000.xhp msgctxt "" @@ -5960,7 +5960,7 @@ "4\n" "help.text" msgid "If you change the content of a record in a database table that has not been saved, and then use the Undo command, the record is erased." -msgstr "Viss du endrar innhaldet av ein datapost i ein databasetabell, som ikkje har vorte lagra, og deretter brukar kommandoen Angra, vil dataposten bli sletta." +msgstr "Viss du endrar innhaldet av ein datapost i ein databasetabell, som ikkje har vorte lagra, og deretter brukar kommandoen Angra, vert dataposten sletta." #: 02010000.xhp msgctxt "" @@ -6570,7 +6570,7 @@ "31\n" "help.text" msgid "Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the Multiply or the Divide operation, the operation is not applied to the target cell of an empty cell in the clipboard." -msgstr "Tomme celler frå utklippstavla vil ikkje erstatta målcellene. Viss du vel dette valet saman med gange- eller dele-funksjonen, vil ikkje desse bli utført på tomme celler frå utklippstavla." +msgstr "Tomme celler frå utklippstavla vil ikkje erstatta målcellene. Viss du vel dette valet saman med gange- eller dele-funksjonen, vert ikkje desse utførte på tomme celler frå utklippstavla." #: 02070000.xhp msgctxt "" @@ -6615,7 +6615,7 @@ "36\n" "help.text" msgid "Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the Insert All option is also selected. " -msgstr "Set inn celleområdet som ei lenkje, slik at endringar som blir gjort i celler i kjeldefila blir oppdatert i målfila. Om du vil sikra at endringar som er gjort i tomme celler i kjeldefila blir oppdatert i målfila så sjekk at òg Set inn alt er valt." +msgstr "Set inn celleområdet som ei lenkje, slik at endringar som vert gjort i celler i kjeldefila vert oppdatert i målfila. Om du vil sikra at endringar som er gjort i tomme celler i kjeldefila vert oppdatert i målfila så sjekk at òg Set inn alt er valt." #: 02070000.xhp msgctxt "" @@ -6624,7 +6624,7 @@ "37\n" "help.text" msgid "You can also link sheets within the same spreadsheet. When you link to other files, a DDE link is automatically created. A DDE link is inserted as a matrix formula and can only be modified as a whole. " -msgstr "Du kan òg lenkja ark innanfor det same reknearket. Når du lenkjer til andre filer, vil ei DDE-lenkje automatisk bli laga. Ei DDE-lenkje vert sett inn som ein matriseformel, og den må redigerast som éi eining. " +msgstr "Du kan òg lenkja ark innanfor det same reknearket. Når du lenkjer til andre filer, vert det laga ei DDE-lenkje automatisk. Ei DDE-lenkje vert sett inn som ein matriseformel, og den må redigerast som éi eining. " #: 02070000.xhp msgctxt "" @@ -6660,7 +6660,7 @@ "60\n" "help.text" msgid "Inserted cells replace the target cells. " -msgstr "Celler som blir sett inn erstattar målcellene." +msgstr "Celler som vert sette inn erstattar målcellene." #: 02070000.xhp msgctxt "" @@ -6678,7 +6678,7 @@ "62\n" "help.text" msgid "Target cells are shifted downward when you insert cells from the clipboard. " -msgstr "Målcellene blir flytta nedover når du set inn celler frå utklippstavla." +msgstr "Målcellene vert flytt nedover når du set inn celler frå utklippstavla." #: 02070000.xhp msgctxt "" @@ -6696,7 +6696,7 @@ "64\n" "help.text" msgid "Target cells are shifted to the right when you insert cells from the clipboard. " -msgstr "Målcellene blir flytta til høgre når du set inn celler frå utklippstavla." +msgstr "Målcellene vert flytt til høgre når du set inn celler frå utklippstavla." #: 02090000.xhp msgctxt "" @@ -9142,7 +9142,7 @@ "25\n" "help.text" msgid "The Navigator lists the main components of the master document. If you rest the mouse pointer over a name of a sub-document in the list, the full path of the sub-document is displayed." -msgstr "«Dokumentstruktur» viser hovudkomponentane i hovuddokumentet. Viss du held musepeikaren over namnet på eit underdokument i lista, vert heile stigen til underdokumentet vist." +msgstr "«Dokumentstruktur» viser hovudkomponentane i hovuddokumentet. Viss du held musepeikaren over namnet på eit underdokument i lista, vert heile stien til underdokumentet vist." #: 02110000.xhp msgctxt "" @@ -9204,7 +9204,7 @@ "8\n" "help.text" msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the index dialog is opened." -msgstr "Redigerer innhaldet av komponenten som er valt i «Dokumentstruktur»lista Viss utvalet er ei fil, vil fila bli opna for redigering. Viss utvalet er eit register, vert dialogvindauget for register opna." +msgstr "Redigerer innhaldet av komponenten som er valt i «Dokumentstruktur»lista Viss utvalet er ei fil, vert fila opna for redigering. Viss utvalet er eit register, vert dialogvindauget for register opna." #: 02110000.xhp msgctxt "" @@ -9619,7 +9619,7 @@ "2\n" "help.text" msgid "Lets you edit the properties of each link in the current document, including the path to the source file. This command is not available if the current document does not contain links to other files." -msgstr "Let deg redigera eigenskapane til kvar lenkje i dokumentet, inkludert stigen til kjeldefila. Denne kommandoen er ikkje tilgjengeleg dersom dokumentet ikkje innheld lenkjer til andre filer." +msgstr "Let deg redigera eigenskapane til kvar lenkje i dokumentet, inkludert stien til kjeldefila. Denne kommandoen er ikkje tilgjengeleg dersom dokumentet ikkje inneheld lenkjer til andre filer." #: 02180000.xhp msgctxt "" @@ -9743,7 +9743,7 @@ "16\n" "help.text" msgid "Automatically updates the contents of the link when you open the file. Any changes made in the source file are then displayed in the file containing the link. Linked graphic files can only be updated manually. This option is not available for a linked graphic file." -msgstr "Oppdaterer automatisk innhaldet i lenkja når du opnar fila. Endringar som er gjort i kjeldefila blir då vist i fila som inneheld lenkja. Lenkte biletfiler kan berre oppdaterast manuelt. Dette er ikkje tilgjengeleg for ei lenkt biletfil." +msgstr "Oppdaterer automatisk innhaldet i lenkja når du opnar fila. Endringar som er gjort i kjeldefila vert då viste i fila som inneheld lenkja. Lenkte biletfiler kan berre oppdaterast manuelt. Dette er ikkje tilgjengeleg for ei lenkt biletfil." #: 02180000.xhp msgctxt "" @@ -9788,7 +9788,7 @@ "20\n" "help.text" msgid "Updates the selected link so that the most recently saved version of the linked file is displayed in the current document." -msgstr "Oppdaterer lenkja slik at den siste lagra versjonen av den lenkte fila blir vist i dokumentet." +msgstr "Oppdaterer lenkja slik at den siste lagra versjonen av den lenkte fila vert vist i dokumentet." #: 02180000.xhp msgctxt "" @@ -9824,7 +9824,7 @@ "24\n" "help.text" msgid "Breaks the link between the source file and the current document. The most recently updated contents of the source file are kept in the current document." -msgstr "Bryt lenkja mellom kjeldefila og dokumentet du arbeider med. Detsiste oppdaterte innhaldet av kjeldefila blir teke vare på i det gjeldande dokumentet." +msgstr "Bryt lenkja mellom kjeldefila og dokumentet du arbeider med. Det siste oppdaterte innhaldet av kjeldefila vert teke vare på i det gjeldande dokumentet." #: 02180100.xhp msgctxt "" @@ -10686,7 +10686,7 @@ "42\n" "help.text" msgid "Draws a hotspot that is based on a freeform polygon. Click this icon and move to where you want to draw the hotspot. Drag a freeform line and release to close the shape. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "Teikna eit frihands lenkjeområde som er mangekant-forma. Trykk på denne knappen og gå til det som skal bli lenkjeområdet. Teikna ei frihandslinje og slepp museknappen for å lukka forma. Etterpå kan du skriva inn adressa og teksten for lenkjeområdet og velja ramma du vil opna nettadressa i." +msgstr "Teikna eit frihands lenkjeområde som er mangekant-forma. Trykk på denne knappen og gå til det som skal verta lenkjeområdet. Teikna ei frihandslinje og slepp museknappen for å lukka forma. Etterpå kan du skriva inn adressa og teksten for lenkjeområdet og velja ramma du vil opna nettadressa i." #: 02220000.xhp msgctxt "" @@ -10984,7 +10984,7 @@ "32\n" "help.text" msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser. If you do not enter any text, the Address is displayed." -msgstr "Teksten du skriv inn her blir vist når du flytter musepeikaren over lenkjeområdet i nettlesaren. Om du ikkje skriv inn nokon tekst, vert adressavist." +msgstr "Teksten du skriv inn her vert vist når du flyttar musepeikaren over lenkjeområdet i nettlesaren. Om du ikkje skriv inn nokon tekst, vert adressavist." #: 02220000.xhp msgctxt "" @@ -11143,7 +11143,7 @@ "10\n" "help.text" msgid "Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name that is recognized by all browsers from the list." -msgstr "Skriv inn namnet på målramma der du vil opna adressa. Du kan også velje eit standardnamn på ramma. Dette blir kjent igjen av alle nettlesarane på lista." +msgstr "Skriv inn namnet på målramma der du vil opna adressa. Du kan også velje eit standardnamn på ramma. Dette vert kjend igjen av alle nettlesarane på lista." #: 02220100.xhp msgctxt "" @@ -11834,7 +11834,7 @@ "7\n" "help.text" msgid "After you accept or reject a change, the entries of the list are re-ordered according to \"Accepted\" or \"Rejected\" status." -msgstr "Etter at du har godtatt eller avvist ei endring, vil oppføringane i lista bli sorterte på nytt etter «godtatt»- eller «avvist»-status." +msgstr "Etter at du har godtatt eller avvist ei endring, vert oppføringane i lista sorterte på nytt etter «godtatt»- eller «avvist»-status." #: 02230401.xhp msgctxt "" @@ -12395,7 +12395,7 @@ "2\n" "help.text" msgid "Imports changes made to copies of the same document into the original document. Changes made to footnotes, headers, frames and fields are ignored. Identical changes are merged automatically." -msgstr "Importerer endringar som er gjort i kopiar av det same dokumentet inn i det originale dokumentet. Endringar som er gjort i botnteksten, toppteksten, rammer og felt blir ignorerte. Like endringar vert fletta automatisk." +msgstr "Importerer endringar som er gjort i kopiar av det same dokumentet inn i det originale dokumentet. Endringar som er gjort i botnteksten, toppteksten, rammer og felt vert ignorerte. Like endringar vert fletta automatisk." #: 02240000.xhp msgctxt "" @@ -12421,7 +12421,7 @@ "2\n" "help.text" msgid "Compares the current document with a document that you select. The contents of the selected document are marked as deletions in the dialog that opens. If you want, you can insert the contents of the selected file into the current document by selecting the relevant deleted entries, clicking Reject, and then clicking Insert." -msgstr "Samanliknar dokumentet med eit anna. Innhaldet i det valde dokumentet blir markert som sletta i dialogvindauget som vert opna. Du kan setja innhaldet i den valde fila inn i det gjeldande dokumentet ved å velja dei sletta elementa som er relevante for deg. Dette vert gjort ved å trykkja Forkast først og så Set inn." +msgstr "Samanliknar dokumentet med eit anna. Innhaldet i det valde dokumentet vert markert som sletta i dialogvindauget som vert opna. Du kan setja innhaldet i den valde fila inn i det gjeldande dokumentet ved å velja dei sletta elementa som er relevante for deg. Dette vert gjort ved å trykkja Forkast først og så Set inn." #: 02240000.xhp msgctxt "" @@ -13181,7 +13181,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 "Du kan også bruka snartasten «CmdCtrl + Shift + J» for å skifta mellom normal og full skjermvising i Writer og Calc." +msgstr "Du kan også bruka snøggtastane «CmdCtrl + Shift + J» for å skifta mellom normal og full skjermvising i Writer og Calc." #: 03110000.xhp msgctxt "" @@ -13190,7 +13190,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 "Du kan framleis nytta snartastar i Fullskjermvising sjølv om menyane er utilgjengelege. For å opna menyen Vis, trykk «Alt + V»." +msgstr "Du kan framleis nytta snøggtastar i fullskjermvising sjølv om menyane er utilgjengelege. For å opna menyen Vis, trykk «Alt + V»." #: 03150100.xhp msgctxt "" @@ -14415,7 +14415,7 @@ "bm_id3152937\n" "help.text" msgid "formulas; starting formula editor$[officename] Math startMath formula editorequations in formula editoreditors;formula editor" -msgstr "formlar; starta formelredigering$[officename] Math; startaMath; formelredigeringlikningar;formelredigeringmatematiske uttrykk;formelredigeringredigera;formlar" +msgstr "formlar; starta formelredigering$[officename] Math, startaMath; formelredigeringlikningar i formelredigeringmatematiske uttrykk;formelredigeringredigera;formlar" #: 04160300.xhp msgctxt "" @@ -15269,7 +15269,7 @@ "42\n" "help.text" msgid "Select the underlining style that you want to apply. To apply the underlining to words only, select the Individual Words box." -msgstr "Vel den understrekingsstilen du vil bruka. Kryss av for Enkeltord om du vil at berre ord skal bli understreka." +msgstr "Vel den understrekingsstilen du vil bruka. Kryss av for Enkeltord om du vil at berre ord skal verta understreka." #: 05020200.xhp msgctxt "" @@ -16798,7 +16798,7 @@ "par_id1002200811423518\n" "help.text" msgid "The above listed formatting codes work with your language version of %PRODUCTNAME. However, when you need to switch the locale of %PRODUCTNAME to another locale, you will need to know the formatting codes used in that other locale." -msgstr "Formateringskodene som er lista opp ovanfor vil fungera i den språkversjonen av %PRODUCTNAME du bruker. Om du skifter plasseringa av %PRODUCTNAME til ein annan språkvariant, må du vite kva formateringskoder som vert brukte der." +msgstr "Formateringskodane som er lista opp ovanfor vil fungera i den språkversjonen av %PRODUCTNAME du brukar. Om du skifter plasseringa av %PRODUCTNAME til ein annan språkvariant, må du vita kva formateringskodar som vert brukte der." #: 05020301.xhp msgctxt "" @@ -19087,7 +19087,7 @@ "10\n" "help.text" msgid "Prevents the characters in the list from starting or ending a line. The characters are relocated to either the previous or the next line. To edit the list of restricted characters, choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Asian Layout." -msgstr "Hindrar at teikna i lista kan starta eller avslutta ei linje. Teikna vil bli plasserte anten på linja før eller på linja etter. Du kan endra lista med Verktøy → Innstillingar → Språkinnstillingar → Språk → Asiatisk oppsett." +msgstr "Hindrar at teikna i lista kan starta eller avslutta ei linje. Teikna vert plasserte anten på linja før eller på linja etter. Du kan endra lista med Verktøy → Innstillingar → Språkinnstillingar → Språk → Asiatisk oppsett." #: 05020700.xhp msgctxt "" @@ -19105,7 +19105,7 @@ "6\n" "help.text" msgid "Prevents commas and periods from breaking the line. Instead, these characters are added to the end of the line, even in the page margin." -msgstr "Hindrar at komma og punktum bryt linja. Desse teikna blir i staden lagt på slutten av linja sjølv om det blir i margen." +msgstr "Hindrar at komma og punktum bryt linja. Desse teikna vert i staden lagde på slutten av linja sjølv om det vert i margen." #: 05020700.xhp msgctxt "" @@ -19166,7 +19166,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 "Avsnittsstilen for det valde avsnittet vert vist på verktøylina Formatering, og framheva i Stilar og formatering-vindauget. " +msgstr "Avsnittsstilen for det valde avsnittet vert vist på verktøylina Formatering og framheva i vindauget Stilar og formatering. " #: 05030100.xhp msgctxt "" @@ -19755,7 +19755,7 @@ "18\n" "help.text" msgid "Aligns the decimal point of a number to the center of the tab stop and text to the left of the tab." -msgstr "Justerer tal slik at desimalteiknet ligg midt på tabulatoren. Eventuell tekst blir plassert til venstre for tabulatoren." +msgstr "Justerer tal slik at desimalteiknet ligg midt på tabulatoren. Eventuell tekst vert plassert til venstre for tabulatoren." #: 05030300.xhp msgctxt "" @@ -20391,7 +20391,7 @@ "38\n" "help.text" msgid "Set the transparency for the background color or graphic of a frame, where 100% is completely transparent and 0% is opaque. When you increase the transparency of the background, the underlying text or objects become visible through the background of the frame." -msgstr "Vel kor gjennomsiktig bakgrunnen eller rammegrafikkken skal vera. 100% er fullstendig gjennomsiktig og 0% er ikkje gjennomsiktig. Når du gjer teksten meir gjennomsiktig blir tekst og objekt som ligg under synleg gjennom bakgrunnen til ramma." +msgstr "Vel kor gjennomsiktig bakgrunnen eller rammegrafikkken skal vera. 100% er fullstendig gjennomsiktig og 0% er ikkje gjennomsiktig. Når du gjer teksten meir gjennomsiktig vert tekst og objekt som ligg under synleg gjennom bakgrunnen til ramma." #: 05030600.xhp msgctxt "" @@ -20798,7 +20798,7 @@ "16\n" "help.text" msgid "If the last line of a justified paragraph consists of one word, the word is stretched to the width of the paragraph." -msgstr "Dersom siste linja i eit blokkjustert avsnitt inneheld eit ord, blir ordet strekt ut til breidda av avsnittet." +msgstr "Dersom siste linja i eit blokkjustert avsnitt inneheld eit ord, vert ordet strekt ut til breidda av avsnittet." #: 05030700.xhp msgctxt "" @@ -21217,7 +21217,7 @@ "14\n" "help.text" msgid "Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated." -msgstr "Oppdaterer stilen når du brukar direkte formatering på alle avsnitt som nyttar denne stilen i dokumentet ditt. Formateringa av alle avsnitt som nyttar denne stilen blir automatisk oppdatert." +msgstr "Oppdaterer stilen når du brukar direkte formatering på alle avsnitta som nyttar denne stilen i dokumentet. Formateringa av alle avsnitt som nyttar denne stilen vert automatisk oppdatert." #: 05040100.xhp msgctxt "" @@ -21225,7 +21225,7 @@ "par_id0107200910584081\n" "help.text" msgid "Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated." -msgstr "Oppdaterer stilen når du bruker direkte formatering i eit avsnitt som bruker denne stilen. Formateringa av alle avsnitta som nyttar denne stilen vert oppdatert automatisk." +msgstr "Oppdaterer stilen når du brukar direkte formatering i eit avsnitt som brukar denne stilen. Formateringa av alle avsnitta som nyttar denne stilen vert oppdatert automatisk." #: 05040100.xhp msgctxt "" @@ -21243,7 +21243,7 @@ "6\n" "help.text" msgid "Select an existing style that you want to follow the current style in your document. For paragraph styles, the next style is applied to the paragraph that is created when you press Enter. For page styles, the next style is applied when a new page is created." -msgstr "Vel ein eksisterande stil som du vil skal følgja etter den gjeldande stilen i dokumentet ditt. For avsnittstilar vil den neste stilen brukast på avsnittet du lagar ved å trykkja «Enter». For sidestilar vil den neste stilen bli gjeldande når ei ny side vert laga." +msgstr "Vel ein eksisterande stil som du vil skal følgja etter den gjeldande stilen i dokumentet ditt. For avsnittstilar vil den neste stilen brukast på avsnittet du lagar ved å trykkja «Enter». For sidestilar vert den neste stilen gjeldande når ei ny side vert laga." #: 05040100.xhp msgctxt "" @@ -23760,7 +23760,7 @@ "2\n" "help.text" msgid "Makes the selected text bold. If the cursor is in a word, the entire word is made bold. If the selection or word is already bold, the formatting is removed." -msgstr "Gjer den merka teksten om til halvfeit skrift. Viss skrivemerket er i eit ord vil heile ordet bli i halvfeit skrift. Viss den merka teksten eller ordet allereie er halvfeit så blir formateringa fjerna." +msgstr "Gjer den merka teksten om til halvfeit skrift. Viss skrivemerket er i eit ord vert heile ordet i halvfeit skrift. Viss den merka teksten eller ordet allereie er halvfeit så vert formateringa fjerna." #: 05110100.xhp msgctxt "" @@ -23803,7 +23803,7 @@ "2\n" "help.text" msgid "Makes the selected text italic. If the cursor is in a word, the entire word is made italic. If the selection or word is already italic, the formatting is removed." -msgstr "Gjer den merka teksten om til kursiv skrift. Viss skrivemerket er i eit ord vil heile ordet bli i kursiv. Viss den merka teksten eller ordet allereie er i kursiv så blir formateringa fjerna." +msgstr "Gjer den merka teksten om til kursiv skrift. Viss skrivemerket er i eit ord vert heile ordet i kursiv. Viss den merka teksten eller ordet allereie er i kursiv så vert formateringa fjerna." #: 05110200.xhp msgctxt "" @@ -23932,7 +23932,7 @@ "2\n" "help.text" msgid "Adds a shadow to the selected text, or if the cursor is in a word, to the entire word." -msgstr "Legg ein skygge til teksten. Viss skrivemerket er i eit ord, vil det bli lagt skygge til heile ordet." +msgstr "Legg ein skygge til teksten. Viss skrivemerket er i eit ord, vert det lagt skygge til heile ordet." #: 05110600m.xhp msgctxt "" @@ -24357,7 +24357,7 @@ "7\n" "help.text" msgid "The name is also displayed in the Status Bar when you select the object." -msgstr " Namnet blir også vist i statuslinja når du vel objektet. " +msgstr " Namnet vert også vist i statuslinja når du vel objektet. " #: 05190000.xhp msgctxt "" @@ -24998,7 +24998,7 @@ "22\n" "help.text" msgid "Updates the selected line style using the current settings. To change the name of the selected line style, enter a new name when prompted." -msgstr "Oppdaterer den valde linjestilen ved å bruka gjeldande innstillingar. For å endra namnet på ein valt linjestil kan du skriva inn eit nytt namn når du blir beden om det." +msgstr "Oppdaterer den valde linjestilen ved å bruka gjeldande innstillingar. For å endra namnet på ein vald linjestil, kan du skriva inn eit nytt namn når du vert beden om det." #: 05200200.xhp msgctxt "" @@ -25560,7 +25560,7 @@ "42\n" "help.text" msgid "Click in the position grid to specify the offset for tiling the bitmap." -msgstr "Klikk i tutenettet for å angje forskyvinga av bileta som vert lagde ved sida av kvarandre." +msgstr "Klikk i rutenettet for å setja forskyvinga av bileta som vert lagde ved sida av kvarandre." #: 05210100.xhp msgctxt "" @@ -25650,7 +25650,7 @@ "48\n" "help.text" msgid "Specify the offset for tiling the bitmap in terms of rows and columns." -msgstr "Angje forskyvinga for bileta som vert lagde side om side, ved hjelp av av rader og kolonnar." +msgstr "Vel forskyvinga for bileta som vert lagde side om side, ved hjelp av av rader og kolonnar." #: 05210100.xhp msgctxt "" @@ -26095,7 +26095,7 @@ "4\n" "help.text" msgid "Define or modify a hatching pattern." -msgstr "Angje eller endra eit skraveringsmønster." +msgstr "Definera eller endra eit skraveringsmønster." #: 05210400.xhp msgctxt "" @@ -26471,7 +26471,7 @@ "14\n" "help.text" msgid "Locate the bitmap that you want to import, and then click Open. The bitmap is added to the end of the list of available bitmaps." -msgstr "Finn biletet som du vil importera og trykk Opna. Biletet blir lagt til i botnen av lista over mønster." +msgstr "Finn biletet som du vil importera og trykk Opna. Biletet vert lagt til i botnen av lista over mønster." #: 05210500.xhp msgctxt "" @@ -26559,7 +26559,7 @@ "4\n" "help.text" msgid "Set the properties of the shadow that you want to apply." -msgstr "Angje eigenskapane for skyggen." +msgstr "Set eigenskapane for skyggen." #: 05210600.xhp msgctxt "" @@ -27216,7 +27216,7 @@ "24\n" "help.text" msgid "Set the anchor type and the anchor position." -msgstr "Angjev ankertypen og ankerposisjonen." +msgstr "Set ankertypen og ankerplasseringa." #: 05220000.xhp msgctxt "" @@ -27330,7 +27330,7 @@ "4\n" "help.text" msgid "Specify the location of the selected object on the page." -msgstr "Angje plasseringa av det valde objekt på sida." +msgstr "Bestem plasseringa av det valde objekt på sida." #: 05230100.xhp msgctxt "" @@ -27402,7 +27402,7 @@ "20\n" "help.text" msgid "Specify the amount by which you want to resize the selected object with respect to the selected base point ." -msgstr "Angje kor mykje du vil endra storleiken på det valde objektet i høve til grunnpunktet." +msgstr "Vel kor mykje du vil endra storleiken på det valde objektet i høve til grunnpunktet." #: 05230100.xhp msgctxt "" @@ -27622,7 +27622,7 @@ "4\n" "help.text" msgid "The selected object is rotated around a pivot point that you specify. The default pivot point is at the center of the object." -msgstr "Det valde objektet vert rotert rundt eit omdreiingspunkt som du angjev. Omdreiingspunktet er som standard i midten av objektet." +msgstr "Det valde objektet vert rotert rundt eit oppgjeve omdreiingspunkt. Omdreiingspunktet er som standard i midten av objektet." #: 05230300.xhp msgctxt "" @@ -27703,7 +27703,7 @@ "12\n" "help.text" msgid "Specify the number of degrees that you want to rotate the selected object, or click in the rotation grid." -msgstr "Angje kor mange grader det valde objektet skal roterast, eller bruk rotasjonsgitteret." +msgstr "Vel kor mange grader det valde objektet skal roterast, eller bruk rotasjonsrutenettet." #: 05230300.xhp msgctxt "" @@ -27879,7 +27879,7 @@ "2\n" "help.text" msgid "Specify the properties of the selected callout." -msgstr "Angje eigenskapane for den valde snakkebobla." +msgstr "Vel eigenskapane for den valde snakkebobla." #: 05230500.xhp msgctxt "" @@ -29546,7 +29546,7 @@ "15\n" "help.text" msgid "Select the effect that you want to apply, and then set the properties of the effect." -msgstr "Vel effekten som du vil bruka, og angje deretter eigenskapane til effekten." +msgstr "Vel effekten som du vil bruka, og set deretter eigenskapane til effekten." #: 05320000.xhp msgctxt "" @@ -29821,7 +29821,7 @@ "37\n" "help.text" msgid "Specify the increment value for scrolling the text." -msgstr "Angje stegverdien for rulling av teksten." +msgstr "Vel stegverdien for rulling av teksten." #: 05320000.xhp msgctxt "" @@ -29875,7 +29875,7 @@ "35\n" "help.text" msgid "Specify the amount time to wait before repeating the effect." -msgstr "Angje tida som skal gå før effekten vert gjenteke." +msgstr "Vel kor lang tid det skal gå før effekten vert gjenteke." #: 05320000.xhp msgctxt "" @@ -30254,7 +30254,7 @@ "42\n" "help.text" msgid "Indents from the left edge of the cell by the amount that you enter." -msgstr "Innrykker frå den venstre kanten av cella så mykje som du angjev." +msgstr "Innrykket frå den venstre sida vert sett så langt inn som du har bestemt." #: 05340300.xhp msgctxt "" @@ -31292,7 +31292,7 @@ "5\n" "help.text" msgid "Define the shape properties for the selected 3D object." -msgstr "Angje formeigenskapane for det valde 3D-objektet." +msgstr "Vel formeigenskapane for det valde 3D-objektet." #: 05350200.xhp msgctxt "" @@ -31690,7 +31690,7 @@ "5\n" "help.text" msgid "Specify the type of shading to apply to the selected 3D object." -msgstr "Angje skyggetypen som skal brukast på det valde 3D-objektet." +msgstr "Vel skyggetypen som skal brukast på det valde 3D-objektet." #: 05350300.xhp msgctxt "" @@ -32353,7 +32353,7 @@ "34\n" "help.text" msgid "Click the respective buttons to define the texture for the object Y axis." -msgstr "Trykk på dei tilhøyrande knappane for å angje teksturen for Y-aksen til objektet." +msgstr "Trykk på dei tilhøyrande knappane for å velja teksturen for Y-aksen til objektet." #: 05350500.xhp msgctxt "" @@ -32743,7 +32743,7 @@ "5\n" "help.text" msgid "Specify the horizontal distribution for the selected objects." -msgstr "Angje den vassrette fordelinga av dei merkte objekta." +msgstr "Vel den vassrette fordelinga av dei merkte objekta." #: 05360000.xhp msgctxt "" @@ -32851,7 +32851,7 @@ "17\n" "help.text" msgid "Specify the vertical distribution for the selected objects." -msgstr "Angje den loddrette fordelinga til dei valde objekta." +msgstr "Vel den loddrette fordelinga av dei valde objekta." #: 05360000.xhp msgctxt "" @@ -35078,7 +35078,7 @@ "14\n" "help.text" msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field. To remove an item from the list, select the item, and then click Delete." -msgstr "Listar opp orda eller forkortingane som startar med to store bokstavar som ikkje automatisk blir retta på. Alle ord som startar med to store bokstavar er lista opp i dette feltet. Du fjernar eit ord frå lista ved å merkja det og trykkja Slett." +msgstr "Listar opp orda eller forkortingane som byrjar med to store bokstavar som ikkje automatisk vert retta på. Alle ord som byrjar med to store bokstavar er lista opp i dette feltet. Du fjernar eit ord frå lista ved å merkja det og trykkja Slett." #: 06040300.xhp msgctxt "" @@ -35148,7 +35148,7 @@ "16\n" "help.text" msgid "Specify the AutoCorrect options for quotation marks and for options that are specific to the language of the text." -msgstr "Angje innstillingane for autoretting av hermeteikn og for språkavhengige innstillingar." +msgstr "Set innstillingane for autoretting av hermeteikn og for språkavhengige innstillingar." #: 06040400.xhp msgctxt "" @@ -35468,7 +35468,7 @@ "93\n" "help.text" msgid "Set the options for completing frequently occurring words while you type." -msgstr "Angje innstillingane for fullføring av ofte brukte ord medan du skriv." +msgstr "Set innstillingane for fullføring av ofte brukte ord medan du skriv." #: 06040600.xhp msgctxt "" @@ -36118,7 +36118,7 @@ "61\n" "help.text" msgid "Select the level(s) that you want to modify, and then specify the formatting that you want to use." -msgstr "Vel nivået eller nivåa du vil endra, og angje formateringa du vil bruka." +msgstr "Vel nivået eller nivåa du vil endra og vel så formateringa du vil bruka." #: 06050500.xhp msgctxt "" @@ -36325,7 +36325,7 @@ "94\n" "help.text" msgid "Bullets are resized to fit the current line height. If you want, you can define a Character Style that uses a different font size for bullets. " -msgstr "Punktteikna vert skalerte til å passa linjehøgda. Det er også mogleg å angje ein eigen teiknstil for punktteikna og gje dei ein annan skriftstorleik." +msgstr "Punktteikna vert skalerte til å passa linjehøgda. Det er også mogleg å definera ein eigen teiknstil for punktteikna og gje dei ein annan skriftstorleik." #: 06050500.xhp msgctxt "" @@ -37924,7 +37924,7 @@ "8\n" "help.text" msgid "Adds the selected library as a read-only file. The library is reloaded each time you start %PRODUCTNAME." -msgstr "Leggjer til det valde biblioteket som ei skrivebeskytta fil. Biblioteket blir lasta på nytt kvar gang du startar %PRODUCTNAME." +msgstr "Leggjer til det valde biblioteket som ei skrivebeskytta fil. Biblioteket vert lasta på nytt kvar gang du opnar %PRODUCTNAME." #: 06130500.xhp msgctxt "" @@ -38133,7 +38133,7 @@ "par_idN106CC\n" "help.text" msgid "To specify the keyboard accelerator for a menu" -msgstr "Angje snartast for ein meny" +msgstr "Slik tilordnar du ein snøggtast for ein meny" #: 06140100.xhp msgctxt "" @@ -38141,7 +38141,7 @@ "par_idN108C6\n" "help.text" msgid "A keyboard accelerator allows you to select a menu command when you press Alt+ an underlined letter in a menu command. For example, to select the Save All command by pressing Alt+V, enter Sa~ve All." -msgstr "Med ein snartast kan du velja ein menykommando når du trykker tasten «Alt» og ein understreka bokstav i ein menykommando. Viss du for eksempel vil at kommandoen Lagra alle skal kunna opnast ved å trykka «Alt + G», kan du skriva inn «La~gra alle»." +msgstr "Med ein snøggtast kan du velja ein menykommando når du trykker tasten «Alt» og ein understreka bokstav i ein menykommando. Viss du for eksempel vil at kommandoen Lagra alle skal kunna opnast ved å trykka «Alt + G», kan du skriva inn «La~gra alle»." #: 06140100.xhp msgctxt "" @@ -38534,7 +38534,7 @@ "bm_id2322763\n" "help.text" msgid "keyboard;assigning/editing shortcut keyscustomizing;keyboardediting;shortcut keysstyles;keyboard shortcuts" -msgstr "tastatur;tildela/redigera snartastartipassa;tastaturendra;snartastarstilar;snartastar" +msgstr "tastatur;tildela/redigera snøggtastartipassa;tastaturendra;snøggtastarstilar;snøggtastar" #: 06140200.xhp msgctxt "" @@ -38561,7 +38561,7 @@ "21\n" "help.text" msgid "You can assign or edit shortcut keys for the current application or for all $[officename] applications." -msgstr "Du kan tildela eller redigera snartastar for det gjeldande programmet eller for alle $[officename]-program." +msgstr "Du kan tildela eller redigera snøggtastar for det gjeldande programmet eller for alle $[officename]-programma." #: 06140200.xhp msgctxt "" @@ -38570,7 +38570,7 @@ "29\n" "help.text" msgid "Avoid assigning shortcut keys that are currently used by your operating system." -msgstr "Unngå å bruka snartastar som er brukte av operativsystemet." +msgstr "Ikkje bruk snøggtastar som er brukte av operativsystemet." #: 06140200.xhp msgctxt "" @@ -38642,7 +38642,7 @@ "6\n" "help.text" msgid "Lists the function categories and the $[officename] functions that you can assign shortcut keys to." -msgstr "Lister opp funksjonskategoriane og $[officename]-funksjonane som kan bruka snartastar." +msgstr "Lister opp funksjonskategoriane og $[officename]-funksjonane som kan bruka snøggtastar." #: 06140200.xhp msgctxt "" @@ -38660,7 +38660,7 @@ "8\n" "help.text" msgid "Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category." -msgstr "Lister opp dei tilgjengelege funksjonskategoriane. Du kan leggja snartastar til stilar ved å opna kategorien «Stilar»." +msgstr "Lister opp dei tilgjengelege funksjonskategoriane. Du kan leggja snøggtastar til stilar ved å opna kategorien «Stilar»." #: 06140200.xhp msgctxt "" @@ -40710,7 +40710,7 @@ "par_idN10546\n" "help.text" msgid "Define options for the Hangul/Hanja conversion." -msgstr "Angje innstillingane for Hangul/Hanja-omgjering." +msgstr "Definer innstillingane for Hangul/Hanja-omgjering." #: 06201000.xhp msgctxt "" @@ -41466,7 +41466,7 @@ "par_id7096774\n" "help.text" msgid "If updates are available, the updates can either be installed automatically, or you must respond with some action:" -msgstr "Dersom det finst oppdateringar, kan oppdateringane bli installerte automatisk, eller du må bekrefte det:" +msgstr "Dersom det finst oppdateringar, kan oppdateringane installerast automatisk, eller du må bekrefte det:" #: extensionupdate.xhp msgctxt "" @@ -41514,7 +41514,7 @@ "par_id5189062\n" "help.text" msgid "All extensions which can be directly downloaded are downloaded now. The progress is shown in the Download and Installation dialog. If an extension cannot be downloaded, a message is displayed. The operation continues for the remaining extensions." -msgstr "Alle utvidingane som kan lastast ned direkte, er nå lasta ned. Framgangen blir vist i vindauget «Nedlasting og installering». Dersom ei utviding ikkje kan lastast ned, blir det vist ei melding om dette. Handlinga held fram for dei andre utvidingane." +msgstr "Alle utvidingane som kan lastast ned direkte, er nå lasta ned. Framgangen vert vist i vindauget «Nedlasting og installering». Dersom ei utviding ikkje kan lastast ned, vert det vist ei melding om dette. Handlinga held fram for dei andre utvidingane." #: extensionupdate.xhp msgctxt "" @@ -41538,7 +41538,7 @@ "par_id6854457\n" "help.text" msgid "After the last extension has been downloaded, the installation begins. First all installed extensions for which an update could be downloaded successfully, are removed. Then the updated extensions are installed. If an error occurs, a message that the installation failed is displayed, but the operation proceeds." -msgstr "Installasjonen byrjar når den siste utvidinga er lasta ned. Først blir alle eksisterande utvidingar som det er lasta ned oppdatering for fjerna. Deretter blir dei oppdaterte utvidingane installerte. Dersom det oppstår feil, blir det vist ei feilmelding, men installeringa held fram." +msgstr "Installasjonen byrjar når den siste utvidinga er lasta ned. Først vert alle eksisterande utvidingar som det er lasta ned oppdatering for fjerna. Deretter vert dei oppdaterte utvidingane installerte. Dersom det oppstår feil, vert det vist ei feilmelding, men installeringa held fram." #: extensionupdate.xhp msgctxt "" @@ -41562,7 +41562,7 @@ "par_id641193\n" "help.text" msgid "By default, only the downloadable extensions are shown in the dialog. Mark Show all Updates to see also other extensions and error messages." -msgstr "I normaloppsettet blir bare dei utvidingane som kan lastast ned viste i dialogvindauget. Kryss av for Vis alle oppdateringar for også å sjå andre utvidingar og feilmeldingar." +msgstr "I normaloppsettet vert berre dei utvidingane som kan lastast ned viste i dialogvindauget. Kryss av for Vis alle oppdateringar for også å sjå andre utvidingar og feilmeldingar." #: extensionupdate.xhp msgctxt "" @@ -42756,7 +42756,7 @@ "par_id1502121\n" "help.text" msgid "By default, downloads will be stored to your desktop. You can change the folder where the downloaded file will be stored in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Online Update." -msgstr "I standardoppsettet vil nedlastingane bli lagra på skrivebordet. Du kan endre mappa som den nedlasta fila blir lagra i frå %PRODUCTNAME → InnstillingarVerktøy → Innstillingar → %PRODUCTNAME → Nettoppdatering." +msgstr "I standardoppsettet vert nedlastingane lagra på skrivebordet. Du kan endre mappa som den nedlasta fila vert lagra i frå %PRODUCTNAME → InnstillingarVerktøy → Innstillingar → %PRODUCTNAME → Nettoppdatering." #: online_update_dialog.xhp msgctxt "" @@ -44351,7 +44351,7 @@ "par_id5616626\n" "help.text" msgid "Specify how to handle hyperlinks from your PDF file to other files." -msgstr "Angje korleis lenkjer i PDF-fila til andre filer skal handterast." +msgstr "Vel korleis lenkjer i PDF-fila til andre filer skal handterast." #: ref_pdf_export.xhp msgctxt "" @@ -45795,7 +45795,7 @@ "par_id18616\n" "help.text" msgid "Declares the item as relevant." -msgstr "Angje at elementet skal vera relevant." +msgstr "Viser at elementet er relevant." #: xformsdatatab.xhp msgctxt "" @@ -45811,7 +45811,7 @@ "par_id4569231\n" "help.text" msgid "Declares the item as read-only." -msgstr "Angje at elementet skal vera skriveverna." +msgstr "Viser at elementet er skriveverna." #: xformsdatatab.xhp msgctxt "" @@ -45827,7 +45827,7 @@ "par_id3341776\n" "help.text" msgid "Declares the item as a constraint." -msgstr "Angje at elementet skal vera ein skranke." +msgstr "Viser at elementet er avgrensa." #: xformsdatatab.xhp msgctxt "" @@ -45931,7 +45931,7 @@ "par_id2318796\n" "help.text" msgid "Specifies a regular expression pattern. Strings validated against the data type must conform to this pattern to be valid. The XSD data type syntax for regular expressions is different from the regular expression syntax used elseswhere in %PRODUCTNAME, for example in the Find & Replace dialog." -msgstr "Angje eit regulært uttrykk. Tekststrenger som vert kontrollert mot datatypen, må følgja dette mønsteret for å vera gyldige. Syntaksen for regulære uttrykk i samband med XSD-datatypar er forskjellig frå den syntaksen som vert brukt andre stader i %PRODUCTNAME; for eksempel i dialogvindauget «Søk og erstatt»." +msgstr "Spesifiserer eit regulært uttrykk. Tekststrenger som vert kontrollert mot datatypen, må følgja dette mønsteret for å vera gyldige. Syntaksen for regulære uttrykk i samband med XSD-datatypar er forskjellig frå den syntaksen som vert brukt andre stader i %PRODUCTNAME; for eksempel i dialogvindauget «Søk og erstatt»." #: xformsdatatab.xhp msgctxt "" @@ -45995,7 +45995,7 @@ "par_id3394573\n" "help.text" msgid "Specifies an exclusive upper bound for values." -msgstr "Angje ei eksklusiv øvre grense for verdiar." +msgstr "Bestemmer ei eksklusiv øvre grense for verdiar." #: xformsdatatab.xhp msgctxt "" @@ -46011,7 +46011,7 @@ "par_id8147221\n" "help.text" msgid "Specifies an inclusive lower bound for values." -msgstr "Angje ei inklusiv nedre grense for verdiar." +msgstr "Bestemmer ei inklusiv nedre grense for verdiar." #: xformsdatatab.xhp msgctxt "" @@ -46027,7 +46027,7 @@ "par_id9759514\n" "help.text" msgid "Specifies an exclusive lower bound for values." -msgstr "Angje ei eksklusiv nedre grense for verdiar." +msgstr "Bestemmer ei eksklusiv nedre grense for verdiar." #: xformsdatatab.xhp msgctxt "" @@ -46043,7 +46043,7 @@ "par_id1589098\n" "help.text" msgid "Specifies the number of characters for a string." -msgstr "Angje kor mange teikn i ein tekststreng." +msgstr "Bestemmer kor mange teikn i ein tekststreng." #: xformsdatatab.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/02.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/02.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:08+0200\n" -"PO-Revision-Date: 2014-07-31 19:58+0000\n" +"PO-Revision-Date: 2014-09-03 21:47+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406836700.000000\n" +"X-POOTLE-MTIME: 1409780872.000000\n" #: 01110000.xhp msgctxt "" @@ -1012,7 +1012,7 @@ "21\n" "help.text" msgid "Creates a combo box. A combo box is a single-line list box with a drop-down list from which users choose an option. You can assign the \"read-only\" property to the combo box so that users cannot enter other entries than those found in the list. If the form is bound to a database and the database connection is active, the Combo Box Wizard will automatically appear after you insert the combo box in the document." -msgstr "Lagar ein kombinasjonsboks. Ein kombinasjonsboks er ein ei-linjers listeboks med ei nedtrekksliste som du kan bruka for å velje eit alternativ. Du kan angje at kombinasjonsboksen skal vera «skriveverna», slik at brukarane ikkje kan leggja til andre oppføringar enn dei som er i lista frå før. Viss skjemaet er kopla til ein database, og databasekoplinga er aktiv, vil Kombinasjonsboksvegvisaren automatisk starta etter at kombinasjonsboksen er sett inn i dokumentet." +msgstr "Lagar ein kombinasjonsboks. Ein kombinasjonsboks er ein ei-linjers listeboks med ei nedtrekksliste som du kan bruka for å velje eit alternativ. Du kan setja kombinasjonsboksen til å vera «skriveverna», slik at brukarane ikkje kan leggja til andre oppføringar enn dei som er i lista frå før. Viss skjemaet er kopla til ein database, og databasekoplinga er aktiv, vil Kombinasjonsboksvegvisaren automatisk starta etter at kombinasjonsboksen er sett inn i dokumentet." #: 01170000.xhp msgctxt "" @@ -1759,7 +1759,7 @@ "137\n" "help.text" msgid "If Automatic Control Focus is activated, the first form control will be selected when you open the document. If the button is not activated, the text will be selected after opening. The Tab Order that you have specified determines which is the first form control." -msgstr "Viss automatisk fokuskontroll er slått på vil det første kontrollelementet bli valt når du opnar eit nytt dokument. Viss det ikkje er på vil teksten bli valt etter opning. Tabulatorrekkjefølgja bestemmer kva som er den første kontrollelementet i skjemaet." +msgstr "Viss automatisk fokuskontroll er slått på vert det første kontrollelementet vald når du opnar eit nytt dokument. Viss det ikkje er på, vert teksten vald etter opninga av dokumentet. Tabulatorrekkjefølgja bestemmer kva som er det første kontrollelementet i skjemaet." #: 01170001.xhp msgctxt "" @@ -1821,7 +1821,7 @@ "92\n" "help.text" msgid "The selected control is transformed into a text box." -msgstr "Kontrollelementet blir gjort om til eit tekstfelt." +msgstr "Det merkte kontrollelementet vert gjort om til eit tekstfelt." #: 01170001.xhp msgctxt "" @@ -1839,7 +1839,7 @@ "94\n" "help.text" msgid "The selected control is transformed into a button." -msgstr "Kontrollelementet blir gjort om til ein knapp." +msgstr "Det merkte kontrollelementet vert gjort om til ein knapp." #: 01170001.xhp msgctxt "" @@ -1857,7 +1857,7 @@ "96\n" "help.text" msgid "The selected control is transformed into a label." -msgstr "Kontrollelementet blir gjort om til ein etikett." +msgstr "Det merkte kontrollelementet vert gjort om til ein etikett." #: 01170001.xhp msgctxt "" @@ -1875,7 +1875,7 @@ "98\n" "help.text" msgid "The selected control is transformed into a list box." -msgstr "Kontrollelementet blir gjort om til ei liste." +msgstr "Det merkte kontrollelementet vert gjort om til ei liste." #: 01170001.xhp msgctxt "" @@ -1893,7 +1893,7 @@ "100\n" "help.text" msgid "The selected control is transformed into a check box." -msgstr "Kontrollelementet blir gjort om til ein avkryssingsboks." +msgstr "Det mwrkte kontrollelementet vert gjort om til ein avkryssingsboks." #: 01170001.xhp msgctxt "" @@ -1911,7 +1911,7 @@ "102\n" "help.text" msgid "The selected control is transformed into an option button." -msgstr "Kontrollelementet blir gjort om til ein valknapp." +msgstr "Det merkte kontrollelementet vert gjort om til ein valknapp." #: 01170001.xhp msgctxt "" @@ -1929,7 +1929,7 @@ "104\n" "help.text" msgid "The selected control is transformed into a combo box." -msgstr "Kontrollelementet blir gjort om til ein kombinasjonsboks." +msgstr "Det merkte kontrollelementet vert gjort om til ein kombinasjonsboks." #: 01170001.xhp msgctxt "" @@ -1947,7 +1947,7 @@ "106\n" "help.text" msgid "The selected control is transformed into an image button." -msgstr "Kontrollelementet blir gjort om til ein biletknapp." +msgstr "Det merkte kontrollelementet vert gjort om til ein biletknapp." #: 01170001.xhp msgctxt "" @@ -1965,7 +1965,7 @@ "108\n" "help.text" msgid "The selected control is transformed into a file selection." -msgstr "Kontrollelementet blir gjort om til eit filval." +msgstr "Det merkte kontrollelementet vert gjort om til eit filval." #: 01170001.xhp msgctxt "" @@ -1983,7 +1983,7 @@ "110\n" "help.text" msgid "The selected control is transformed into a date field." -msgstr "Kontrollelementet blir gjort om til eit datofelt." +msgstr "Det merkte kontrollelementet vert gjort om til eit datofelt." #: 01170001.xhp msgctxt "" @@ -2001,7 +2001,7 @@ "112\n" "help.text" msgid "The selected control is transformed into a time field." -msgstr "Kontrollelementet blir gjort om til eit klokkeslettfelt." +msgstr "Det merkte kontrollelementet vert gjort om til eit klokkeslettfelt." #: 01170001.xhp msgctxt "" @@ -2019,7 +2019,7 @@ "114\n" "help.text" msgid "The selected control is transformed into a numerical field." -msgstr "Kontrollelementet blir gjort om til eit talfelt." +msgstr "Det merkte kontrollelementet vert gjort om til eit talfelt." #: 01170001.xhp msgctxt "" @@ -2037,7 +2037,7 @@ "116\n" "help.text" msgid "The selected control is transformed into a currency field." -msgstr "Kontrollelementet blir gjort om til eit valutafelt." +msgstr "Det merkte kontrollelementet vert gjort om til eit valutafelt." #: 01170001.xhp msgctxt "" @@ -2055,7 +2055,7 @@ "118\n" "help.text" msgid "The selected control is transformed into a pattern field." -msgstr "Kontrollelementet blir gjort om til eit mønsterfelt." +msgstr "Det merkte kontrollelementet vert gjort om til eit mønsterfelt." #: 01170001.xhp msgctxt "" @@ -2073,7 +2073,7 @@ "120\n" "help.text" msgid "The selected control is transformed into an image control." -msgstr "Kontrollelementet blir gjort om til eit biletfelt." +msgstr "Det merkte kontrollelementet vert gjort om til eit biletfelt." #: 01170001.xhp msgctxt "" @@ -2091,7 +2091,7 @@ "122\n" "help.text" msgid "The selected control is transformed into a formatted field." -msgstr "Kontrollelementet blir gjort om til eit formatert felt." +msgstr "Det merkte kontrollelementet vert gjort om til eit formatert felt." #: 01170002.xhp msgctxt "" @@ -2730,7 +2730,7 @@ "172\n" "help.text" msgid "If you export the current form document to HTML format, the default control values are exported, not the current control values. Default values are determined - depending on the type of control - by the properties' Default value (for example, in text fields), Default status (for check boxes and option fields), and Default selection (for list boxes)." -msgstr "Viss du eksporterer skjemadokumentet til HTML, blir standardverdiane til kontrollelementa eksportert, ikkje verdiane som er skrive inn. Standardverdiane er valde i eigenskapane, avhengig av typen kontrollelement. Tekstfelt har for eksempel Standardverdi, avkryssingsboksar og alternativfelt har Standardstatus, medan listeboksar har Standardval." +msgstr "Viss du eksporterer skjemadokumentet til HTML, vert standardverdiane til kontrollelementa eksportert, ikkje verdiane som er skrive inn. Standardverdiane er valde i eigenskapane, avhengig av typen kontrollelement. Tekstfelt har for eksempel Standardverdi, avkryssingsboksar og alternativfelt har Standardstatus, medan listeboksar har Standardval." #: 01170101.xhp msgctxt "" @@ -3923,7 +3923,7 @@ "120\n" "help.text" msgid "Defines the list entries visible in the document. Open this list and type your text. Use Shift+Enter for a new line. With list and combo boxes, you can define the list entries that will be visible in the document. Open the List entries field and type your text. Please note the tips referring to the keyboard controls." -msgstr "Angje kva listeoppføringar som skal vera synlege i dokumentet. Opna denne lista og skriv inn teksten. Med liste- og kombinasjonsboksar kan du velja kva listeoppføringar som skal vera synlege i dokumentet. Opna feltet Listeoppføringar og skriv inn teksten. Merk at tips viser til kontrollelementa og tastaturet." +msgstr "Definerer kva listeoppføringar som skal vera synlege i dokumentet. Opna denne lista og skriv inn teksten. Med liste- og kombinasjonsboksar kan du velja kva listeoppføringar som skal vera synlege i dokumentet. Opna feltet Listeoppføringar og skriv inn teksten. Merk at tips viser til kontrollelementa og tastaturet." #: 01170101.xhp msgctxt "" @@ -4302,7 +4302,7 @@ "10\n" "help.text" msgid "On the Properties tab page, this option specifies the name for the control field. On the Form Properties tab page, this option specifies the name for the form. Each control field and each form has a Name property through which it can be identified. The name will appear in the Form Navigator and, using the name, the control field can be referred to from a macro. The default settings already specify a name which is constructed from using the field's label and number." -msgstr "Angje namnet på kontrollfeltet på fanen for eigenskapar. Angje namnet på skjemaet på fanen for skjemaeigenskapar. Alle kontrollfelt og alle skjema har eigenskapen Namn, som gjer at dei kan identifiserast. Namnet kjem fram i skjemastrukturen, og kontrollfeltet kan verta vist til frå ein makro ved hjelp av namnet. Det er frå før skrive inn eit namn i standardinnstillingane. Kontrollfeltet vert identifisert med namnet, som er bygd opp av etiketten og nummeret til feltet." +msgstr "Vel namnet på kontrollfeltet på fanen for eigenskapar. Vel namnet på skjemaet på fanen for skjemaeigenskapar. Alle kontrollfelt og alle skjema har eigenskapen Namn, som gjer at dei kan identifiserast. Namnet kjem fram i skjemastrukturen, og kontrollfeltet kan verta vist til frå ein makro ved hjelp av namnet. Det er frå før skrive inn eit namn i standardinnstillingane. Kontrollfeltet vert identifisert med namnet, som er bygd opp av etiketten og nummeret til feltet." #: 01170101.xhp msgctxt "" @@ -4506,7 +4506,7 @@ "203\n" "help.text" msgid "For a Reset type button, the Default selection entry defines the status of the list box if the reset button is activated by the user." -msgstr "For knappar av tilbakestillingstypen vil Standardval angje status for listeboksen viss ein brukar aktiverer tilbakestillingsknappen." +msgstr "For knappar av tilbakestillingstypen vil Standardval definere status for listeboksen viss ein brukar aktiverer tilbakestillingsknappen." #: 01170101.xhp msgctxt "" @@ -4549,7 +4549,7 @@ "199\n" "help.text" msgid "For a Reset type button, the Default value entry defines the status of the control if the reset button is activated by the user." -msgstr "For tilbakestillingsknappar vil Standardverdi angje status for kontrollelementet når knappen vert aktivert av ein brukar." +msgstr "For tilbakestillingsknappar vil Standardverdi definere status for kontrollelementet når knappen vert aktivert av ein brukar." #: 01170101.xhp msgctxt "" @@ -4939,7 +4939,7 @@ "157\n" "help.text" msgid "If the text box is used as a password input, enter the ASCII-code of the display character. This character is displayed instead of the characters typed by the user for the password. If the user enters a password, you can determine the characters that will be displayed instead of the characters typed by the user. Under Password character, enter the ASCII code of the desired character. You can use the values from 0 to 255." -msgstr "Dersom tekstboksen blir brukt til å skriva inn passord, kan du skriva inn ASCII-koden til teiknet som skal visast i staden for teikna som blir skrivne inn. Dersom brukaren skriv inn i et passord, kan du velja kva teikn som skal visast i staden for dei som brukaren skriv inn. Skriv inn ASCII-koden til teikna du vil bruka under Passordteikn. Du kan bruka verdiar frå 0 til 255." +msgstr "Dersom tekstboksen vert brukt til å skriva inn passord, kan du skriva inn ASCII-koden til teiknet som skal visast i staden for teikna som vert skrivne inn. Dersom brukaren skriv inn i et passord, kan du velja kva teikn som skal visast i staden for dei som brukaren skriv inn. Skriv inn ASCII-koden til teikna du vil bruka under Passordteikn. Du kan bruka verdiar frå 0 til 255." #: 01170101.xhp msgctxt "" @@ -5343,7 +5343,7 @@ "141\n" "help.text" msgid "You can enter a reference value for the web form, which will be remitted to a server when sending the form. With database forms, the value entered is written in the database field, assigned to the control field. You can assign a reference value to option buttons and check boxes. The reference value will be remitted to a server when sending the web form. With database forms the value entered here will be written in the database assigned to the control field." -msgstr "Du kan skriva inn ein referanseverdi for nettskjemaet. Verdien blir send saman med skjemaet til tenaren.Dersom det er eit databaseskjema blir verdien du skriv inn overført til databasefeltet som høyrer til kontrollfeltet. Du kan tildela ein referanseverdi til valknappar og avkryssingsboksar. Referanseverdien vert send tilbake til tenaren når nettskjemaet vert sendt. Med databaseskjema vert verdien som er sett inn her skriven i databasen tildelt til kontrollfeltet." +msgstr "Du kan skriva inn ein referanseverdi for nettskjemaet. Verdien vert send saman med skjemaet til tenaren. Dersom det er eit databaseskjema vert verdien du skriv inn overført til databasefeltet som høyrer til kontrollfeltet. Du kan tildela ein referanseverdi til valknappar og avkryssingsboksar. Referanseverdien vert send tilbake til tenaren når nettskjemaet vert sendt. Med databaseskjema vert verdien som er sett inn her skriven i databasen tildelt til kontrollfeltet." #: 01170102.xhp msgctxt "" @@ -5388,7 +5388,7 @@ "207\n" "help.text" msgid "For database forms, you can also characterize the status of an option or a check box by a reference value, storing it in the database. If you have a set of three options, for example \"in progress\", \"completed\", and \"resubmission\", with the respective reference values, \"ToDo\", \"OK\", and \"RS\", these reference values appear in the database if the respective option is clicked." -msgstr "I databaseskjema kan du også angje tilstanden til eit alternativ eller ein avkryssingsboks som ein referanseverdi i databasen. Viss du for eksempel har dei tre alternativa «under arbeid», «ferdig» og «må gjerast på nytt», med referanseverdiane «UA», «OK» og «PN», kan desse referanseverdiane visast i databasen når det tilhøyrande alternativet vert vald." +msgstr "I databaseskjema kan du også karakterisere tilstanden til eit alternativ eller ein avkryssingsboks som ein referanseverdi i databasen. Viss du for eksempel har dei tre alternativa «under arbeid», «ferdig» og «må gjerast på nytt», med referanseverdiane «UA», «OK» og «PN», kan desse referanseverdiane visast i databasen når det tilhøyrande alternativet vert vald." #: 01170102.xhp msgctxt "" @@ -7929,7 +7929,7 @@ "55\n" "help.text" msgid "The After resetting event occurs after a form has been reset." -msgstr "Hendinga Etter tilbakestilling finn stad når eit skjema er blitt tilbakestilt." +msgstr "Hendinga Etter tilbakestilling finn stad når eit skjema vert tilbakestilt." #: 01170202.xhp msgctxt "" @@ -8287,7 +8287,7 @@ "19\n" "help.text" msgid "Defines whether the data source is to be an existing database table or query, or if the form is to be generated based on an SQL statement." -msgstr "Avgjer om datakjelda skal vera ein eksisterande datadasetabell eller ei spørjing, eller om skjemaet skal bli laga ut frå ei SQL-setning." +msgstr "Avgjer om datakjelda skal vera ein eksisterande databasetabell eller ei spørjing, eller om skjemaet skal lagast ut frå ei SQL-setning." #: 01170203.xhp msgctxt "" @@ -8638,7 +8638,7 @@ "73\n" "help.text" msgid "The subform should show the appropriate data from the orders table (\"Orders\") for each customer ID (Customer_ID -> x). This is only possible if each order is uniquely assigned to one customer in the orders table. Alternatively, you can use another field called Customer_ID; however, to make sure that this field is not confused with the same field from the main form, the field is called Customer_Number." -msgstr "Underskjemaet bør visa data frå ordretabellen («Ordre») for kvar kunde-ID (KundeID → x). Dette er berre mogleg dersom kvar ordre er unikt tilordna éin kunde i ordretabellen. Du kan også bruka eit anna felt kalla «KundeID», men for å hindra at det blir forveksla med det same feltet frå hovudskjemaet, kallar vi det «Kundenummer»." +msgstr "Underskjemaet bør visa data frå ordretabellen («Ordre») for kvar kunde-ID (KundeID → x). Dette er berre mogleg dersom kvar ordre er unikt tilordna éin kunde i ordretabellen. Du kan også bruka eit anna felt kalla «KundeID», men for å hindra at det vert forveksla med det same feltet frå hovudskjemaet, kallar vi det «Kundenummer»." #: 01170203.xhp msgctxt "" @@ -10374,7 +10374,7 @@ "bm_id3148983\n" "help.text" msgid "fonts; specifying severalalternative fontscharacters; alternative fonts" -msgstr "skrifttypar; angje fleirealternative skrifttyparteikn; alternative skrifttypar" +msgstr "skrifttypar; gjev fleirealternative skrifttyparteikn; alternative skrifttypar" #: 02020000.xhp msgctxt "" @@ -12160,7 +12160,7 @@ "2\n" "help.text" msgid "Exports the current document directly as PDF. No settings dialog is shown." -msgstr "Eksporter dokumentet direkte til PDF (portabelt dokument-format). Det blir ikkje vist eit dialogvindauge som gir høve til eigne innstillingar." +msgstr "Eksporter dokumentet direkte til PDF (portabelt dokument-format). Det vert ikkje vist eit dialogvindauge som gir høve til eigne innstillingar." #: 08010000.xhp msgctxt "" @@ -13953,7 +13953,7 @@ "32\n" "help.text" msgid "Specifies a format from the list, if the format information of certain data fields is not accepted. The formats supplied here are only available for certain database fields, such as numeric or Boolean fields. If you select a database field in text format, you will not be able to select any format from the selection list, since the text format will be automatically maintained." -msgstr "Vel eit format frå lista viss formatinformasjonen til visse datafelt ikkje blir godtekne. Desse formata er berre tilgjengelege for særskilde databasefelt, som talfelt eller Boolske felt. Om du vel eit databasefelt i tekstformat kan du ikkje velja noko format frå lista, sidan tekstformatet vert halde fast på automatisk." +msgstr "Vel eit format frå lista viss formatinformasjonen til visse datafelt ikkje vert godtekne. Desse formata er berre tilgjengelege for særskilde databasefelt, som talfelt eller Boolske felt. Om du vel eit databasefelt i tekstformat kan du ikkje velja noko format frå lista, sidan tekstformatet vert halde fast på automatisk." #: 12070100.xhp msgctxt "" @@ -14194,7 +14194,7 @@ "14\n" "help.text" msgid "Lists the database columns that you selected to be inserted into the document. You can also enter text here. This text will be also inserted into the document. The entries' order in the selection field corresponds to the data order in the document." -msgstr "Listar opp databasekolonnane du valde å setja inn i dokumentet. Du kan òg skriva tekst her. Denne teksten blir òg sett inn i dokumentet. Rekkjefølgja på oppføringane i utvalsfeltet samsvarar med datarekjefølgja i dokumentet." +msgstr "Listar opp databasekolonnane du valde å setja inn i dokumentet. Du kan òg skriva tekst her. Denne teksten vert òg sett inn i dokumentet. Rekkjefølgja på oppføringane i utvalsfeltet samsvarar med datarekjefølgja i dokumentet." #: 12070200.xhp msgctxt "" @@ -15076,7 +15076,7 @@ "115\n" "help.text" msgid "Specifies that fields will be found that contain no data." -msgstr "Dette gjer at felt som ikkje inneheld data blir funne." +msgstr "Dette gjer at felt som ikkje inneheld data vert funne." #: 12100200.xhp msgctxt "" @@ -15094,7 +15094,7 @@ "117\n" "help.text" msgid "Specifies that fields will be found that contain data." -msgstr "Dette gjer at felt som inneheld data vil bli funne." +msgstr "Dette gjer at felt som inneheld data vil verta funne." #: 12100200.xhp msgctxt "" @@ -16443,7 +16443,7 @@ "2\n" "help.text" msgid "Clears the query and removes all tables from the design window." -msgstr "Slettar spørjinga. Alle tabellar blir fjerna frå utformingsvindauget." +msgstr "Slettar spørjinga. Alle tabellar vert fjerna frå utformingsvindauget." #: 14020000.xhp msgctxt "" @@ -17690,7 +17690,7 @@ "79\n" "help.text" msgid "Specifies the degree of brightness, in percent, above which the pixels are to be solarized." -msgstr "Vel kor lyst biletet skal visast (i prosent). Alle biletpunkt som er lysare enn det du vel, blir solariserte." +msgstr "Vel kor lyst biletet skal visast (i prosent). Alle biletpunkta som er lysare enn det du vel, vert solariserte." #: 24010000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/04.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/04.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/04.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/04.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2014-03-15 15:04+0000\n" +"POT-Creation-Date: 2014-05-02 00:10+0200\n" +"PO-Revision-Date: 2014-08-29 14:47+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1394895870.000000\n" +"X-POOTLE-MTIME: 1409323648.000000\n" #: 01010000.xhp msgctxt "" @@ -22,7 +22,7 @@ "tit\n" "help.text" msgid "General Shortcut Keys in $[officename]" -msgstr "Generelle snartastar i $[officename]" +msgstr "Generelle snøggtastar i $[officename]" #: 01010000.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3149991\n" "help.text" msgid "keyboard;general commands shortcut keys;general text input fields AutoComplete function in text and list boxes macros; interrupting" -msgstr "tastatur;generelle kommandoar bookmark_value>snartastar;generelleskrivefelt for tekstautomatisk fullføring i tekst og listeboksarmakroar; avbryta" +msgstr "tastatur;generelle kommandoar bookmark_value>snøggtastar;generelleskrivefelt for tekstautomatisk fullføring i tekst- og listeboksarmakroar; avbryta" #: 01010000.xhp msgctxt "" @@ -39,7 +39,7 @@ "1\n" "help.text" msgid "General Shortcut Keys in $[officename]" -msgstr "Generelle snartastar i $[officename]" +msgstr "Generelle snøggtastar i $[officename]" #: 01010000.xhp msgctxt "" @@ -57,7 +57,7 @@ "4\n" "help.text" msgid "A great deal of your application's functionality can be called up by using shortcut keys. For example, the Command+OCtrl+O shortcut keys are shown next to the Open entry in the File menu. If you want to access this function by using the shortcut keys, press and hold down CommandCtrl and then press the O key. Release both keys after the dialog appears." -msgstr "Du kan bruka snartastar for å få tilgang til mange av funksjonane i eit program. For eksempel vert snartasten Cmd + O Ctrl + O vist ved sida av oppføringa Opna i menyen Fil. Dersom du vil bruka denne funksjonen ved hjelp av snartastane, kan du trykka og halde nede CmdCtrl og deretter trykka på «O». Når dialogvindauget kjem fram, kan du sleppa begge tastane." +msgstr "Du kan bruka snøggtastar for å få tilgang til mange av funksjonane i eit program. For eksempel vert snøggtasten Cmd + O Ctrl + O vist ved sida av oppføringa Opna i menyen Fil. Dersom du vil bruka denne funksjonen ved hjelp av snøggtastane, kan du trykka og halde nede CmdCtrl og deretter trykka på «O». Når dialogvindauget kjem fram, kan du sleppa begge tastane." #: 01010000.xhp msgctxt "" @@ -93,7 +93,7 @@ "9\n" "help.text" msgid "Using Shortcut Keys to Control Dialogs" -msgstr "Bruka snartastar i dialogvindauge" +msgstr "Bruka snøggtastar i dialogvindauge" #: 01010000.xhp msgctxt "" @@ -120,7 +120,7 @@ "105\n" "help.text" msgid "Shortcut Keys for Mouse Actions" -msgstr "Snartastar for musehandlingar" +msgstr "Snøggtastar for musehandlingar" #: 01010000.xhp msgctxt "" @@ -273,7 +273,7 @@ "12\n" "help.text" msgid "List of General Shortcut Keys in $[officename]" -msgstr "Liste over generelle snartastar i $[officename]" +msgstr "Liste over generelle snøggtastar i $[officename]" #: 01010000.xhp msgctxt "" @@ -290,7 +290,7 @@ "hd_id31541231\n" "help.text" msgid "Shortcut keys for controlling dialogs" -msgstr "Snartastar for kontroll av dialogvindauge" +msgstr "Snøggtastar for kontroll av dialogvindauge" #: 01010000.xhp msgctxt "" @@ -299,7 +299,7 @@ "14\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01010000.xhp msgctxt "" @@ -442,7 +442,7 @@ "hd_id31541232\n" "help.text" msgid "Shortcut keys for controlling documents and windows" -msgstr "Snartastar for kontroll av dokument og vindauge" +msgstr "Snøggtastar for kontroll av dokument og vindauge" #: 01010000.xhp msgctxt "" @@ -450,7 +450,7 @@ "hd_id31533671\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01010000.xhp msgctxt "" @@ -833,7 +833,7 @@ "hd_id31541233\n" "help.text" msgid "Shortcut keys for editing or formatting documents" -msgstr "Snartastar for redigering eller formatering av dokument" +msgstr "Snøggtastar for redigering eller formatering av dokument" #: 01010000.xhp msgctxt "" @@ -841,7 +841,7 @@ "hd_id31533672\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01010000.xhp msgctxt "" @@ -1138,7 +1138,7 @@ "287\n" "help.text" msgid "Shortcut keys in the Gallery" -msgstr "Snartastar i galleriet" +msgstr "Snøggtastar i galleriet" #: 01010000.xhp msgctxt "" @@ -1201,7 +1201,7 @@ "280\n" "help.text" msgid "Shortcut keys in the New Theme area of the Gallery:" -msgstr "Snartastar i «Nytt tema» i Gallery:" +msgstr "Snøggtastar i «Nytt tema» i Gallery:" #: 01010000.xhp msgctxt "" @@ -1370,7 +1370,7 @@ "263\n" "help.text" msgid "Shortcut keys in the Gallery preview area:" -msgstr "Snartastar i førehandsvisingsområdet i galleriet:" +msgstr "Snøggtastar i førehandsvisingsområdet i galleriet:" #: 01010000.xhp msgctxt "" @@ -1776,7 +1776,7 @@ "230\n" "help.text" msgid "Shortcut Keys for Drawing Objects" -msgstr "Snartastar for teikneobjekt" +msgstr "Snøggtastar for teikneobjekt" #: 01010000.xhp msgctxt "" @@ -2219,7 +2219,7 @@ "tit\n" "help.text" msgid "Database Shortcut Keys" -msgstr "Snartastar i databasar" +msgstr "Snøggtastar i databasar" #: 01020000.xhp msgctxt "" @@ -2236,7 +2236,7 @@ "1\n" "help.text" msgid "Database Shortcut Keys" -msgstr "Snartastar i databasar" +msgstr "Snøggtastar i databasar" #: 01020000.xhp msgctxt "" @@ -2245,7 +2245,7 @@ "2\n" "help.text" msgid "The following is a list of shortcut keys available within databases." -msgstr "Dette er ei liste over snartastar som er tilgjengelege i databasar." +msgstr "Dette er ei liste over snøggtastar som er tilgjengelege i databasar." #: 01020000.xhp msgctxt "" @@ -2263,7 +2263,7 @@ "4\n" "help.text" msgid "Shortcut keys for databases" -msgstr "Snartastar for databasar" +msgstr "Snøggtastar for databasar" #: 01020000.xhp msgctxt "" @@ -2281,7 +2281,7 @@ "5\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01020000.xhp msgctxt "" @@ -2429,7 +2429,7 @@ "par_idN1075E\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01020000.xhp msgctxt "" @@ -2580,7 +2580,7 @@ "par_idN1089C\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/autokorr.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/autokorr.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/autokorr.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/autokorr.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2014-03-02 13:07+0000\n" +"POT-Creation-Date: 2014-05-02 00:08+0200\n" +"PO-Revision-Date: 2014-09-03 21:47+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.0\n" +"X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1393765627.0\n" +"X-POOTLE-MTIME: 1409780870.000000\n" #: 01000000.xhp msgctxt "" @@ -110,7 +110,7 @@ "2\n" "help.text" msgid "Two capital letters at the beginning of a word and a sentence have been corrected to one capital letter" -msgstr "Der to store bokstaver stod i starten av ei setning er dette blitt retta til berre éin stor bokstav" +msgstr "Der to store bokstaver stod i byrjinga av ei setning er dette retta til berre éin stor bokstav" #: 03000000.xhp msgctxt "" @@ -329,7 +329,7 @@ "3\n" "help.text" msgid "AutoCorrect has corrected your text so that the multiple spaces you have entered have now been reduced to one single space." -msgstr " Autorettinga har retta fleire mellomrom etter kvarandre til å bli enkle mellomrom." +msgstr " Autorettinga har retta teksten slik at der det stod fleire mellomrom etter kvarandre er desse gjort om til eitt mellomrom." #: 10000000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/autopi.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/autopi.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-05 21:29+0000\n" +"PO-Revision-Date: 2014-09-03 21:47+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407274192.000000\n" +"X-POOTLE-MTIME: 1409780865.000000\n" #: 01000000.xhp msgctxt "" @@ -4102,7 +4102,7 @@ "par_idN106F3\n" "help.text" msgid "Form Wizard - Set data entry" -msgstr "Skjemavegvisar → Angje datainnskriving" +msgstr "Skjemavegvisar → Set datainnskriving" #: 01090400.xhp msgctxt "" @@ -4110,7 +4110,7 @@ "tit\n" "help.text" msgid "Form Wizard - Set Data Entry" -msgstr "Skjemavegvisar → Angje datainnskriving" +msgstr "Skjemavegvisar → Set datainnskriving" #: 01090400.xhp msgctxt "" @@ -4118,7 +4118,7 @@ "par_idN10543\n" "help.text" msgid "Form Wizard - Set Data Entry" -msgstr "Skjemavegvisar - Angje datainnskriving" +msgstr "Skjemavegvisar - Set datainnskriving" #: 01090400.xhp msgctxt "" @@ -4126,7 +4126,7 @@ "par_idN10553\n" "help.text" msgid "Specifies the data handling mode for the new form." -msgstr "Angje korleis data skal handterast i det nye skjemaet." +msgstr "Bestem korleis data skal handterast i det nye skjemaet." #: 01090400.xhp msgctxt "" @@ -4238,7 +4238,7 @@ "par_idN10553\n" "help.text" msgid "Specifies the form style." -msgstr "Angje skjemastilen." +msgstr "Viser skjemastilen." #: 01090500.xhp msgctxt "" @@ -4334,7 +4334,7 @@ "tit\n" "help.text" msgid "Form Wizard - Set Name" -msgstr "Skjemavegvisar → Angje namn" +msgstr "Skjemavegvisar → Set namn" #: 01090600.xhp msgctxt "" @@ -4646,7 +4646,7 @@ "4\n" "help.text" msgid "Displays the names of the fields to be included in the report. At the right you can enter a label for each field that will be printed in the report." -msgstr "Viser namna på felta som skal takast med i rapporten. Til høgre kan du skriva inn ein etikett for kvart felt som blir skrive ut i rapporten." +msgstr "Viser namna på felta som skal takast med i rapporten. Til høgre kan du skriva inn ein etikett for kvart felt som vert skrive ut i rapporten." #: 01100150.xhp msgctxt "" @@ -5421,7 +5421,7 @@ "4\n" "help.text" msgid "Creates standard HTML pages from export pages." -msgstr "Lag HTML-sider av sidene som blir eksporterte." +msgstr "Lag HTML-sider av sidene som vert eksporterte." #: 01110200.xhp msgctxt "" @@ -5439,7 +5439,7 @@ "6\n" "help.text" msgid "Creates standard HTML pages with frames. The exported page will be placed in the main frame, and the frame to the left will display a table of contents in the form of hyperlinks." -msgstr "Lag rammer. Den eksporterte sida blir plassert i hovudramma. Ramma til venstre viser ei innhaldsliste med hyperlenkjer." +msgstr "Lag rammer. Den eksporterte sida vert plassert i hovudramma. Ramma til venstre viser ei innhaldsliste med hyperlenkjer." #: 01110200.xhp msgctxt "" @@ -5547,7 +5547,7 @@ "22\n" "help.text" msgid "Defines the amount of time for each slide display." -msgstr "Vel kor lenge kvart lysbilete blir vist." +msgstr "Vel kor lenge kvart lysbilete vert vist." #: 01110200.xhp msgctxt "" @@ -5619,7 +5619,7 @@ "30\n" "help.text" msgid "Used by WebCast export to create HTML pages and Perl scripts." -msgstr "Dette valet blir brukt av programmet for nettkringkasting til å eksportera sider i HTML-format og som Perl-skript." +msgstr "Dette valet vert brukt av programmet for nettkringkasting til å eksportera sider i HTML-format og som Perl-skript." #: 01110200.xhp msgctxt "" @@ -5673,7 +5673,7 @@ "36\n" "help.text" msgid "Specifies the URL (absolute or relative) for the generated Perl scripts." -msgstr "Skriv inn ein nettadresse (absolutt eller relativ) for Perl-skripta som blir laga." +msgstr "Skriv inn ein nettadresse (absolutt eller relativ) for Perl-skripta som vert laga." #: 01110200.xhp msgctxt "" @@ -5880,7 +5880,7 @@ "58\n" "help.text" msgid "In the URL for listeners text box, enter the file name of the HTML document that will be used by the audience. In URL for presentation, enter the URL of the directory that will be used for the presentation and, in URL for Perl scripts, enter the URL for the CGI script directory. You can now define further settings on the following pages of the Wizard or start the export process by clicking the Create button." -msgstr "I tekstfeltet URL for lyttarar skriv du inn filnamnet til HTML-dokumentet som publikum skal ha tilgang til. I URL for presentasjon skriv du inn nettadressa til mappa som skal brukast i presentasjonen, og i URL for Perl-skript skriv du inn nettadressa til mappa med CGI-skript. Nå kan du angje fleire innstillingar på dei neste sidene i vegvisaren, eller starta eksporten ved å trykke på Lagknappen." +msgstr "I tekstfeltet URL for lyttarar skriv du inn filnamnet til HTML-dokumentet som publikum skal ha tilgang til. I URL for presentasjon skriv du inn nettadressa til mappa som skal brukast i presentasjonen, og i URL for Perl-skript skriv du inn nettadressa til mappa med CGI-skript. Nå kan du gjera fleire innstillingar på dei neste sidene i vegvisaren, eller starta eksporten ved å trykkja på knappen Lag." #: 01110200.xhp msgctxt "" @@ -5979,7 +5979,7 @@ "69\n" "help.text" msgid "Login on your server as root and switch to the //user/local/http/cgi-bin/ directory. You can define the corresponding rights using the chmod command." -msgstr "Logg deg på teneaen som «root» og gå til mappa«//usr/local/http/cgi-bin/». Bruk kommandoen «chmod» til å angje dei riktige filtillatingane." +msgstr "Logg deg på teneaen som «root» og gå til mappa «//usr/local/http/cgi-bin/». Bruk kommandoen «chmod» til å setja dei tilsvarande rettane." #: 01110200.xhp msgctxt "" @@ -6861,7 +6861,7 @@ "10\n" "help.text" msgid "Specifies that you want an option field to be selected as a default after opening the form. Choose the option field from the box." -msgstr "Oppgi om du vil at valfeltet skal veljast som standard etter at skjemaet blir opna. Vel valfelt frå boksen." +msgstr "Oppgi om du vil at valfeltet skal veljast som standard etter at skjemaet vert opna. Vel valfelt frå boksen." #: 01120200.xhp msgctxt "" @@ -7119,7 +7119,7 @@ "4\n" "help.text" msgid "Specifies the label for the option box. You will see the label of the group box displayed in the form. The text you enter here will correspond to the Label property of the group box." -msgstr "Skriv inn namnet du vil ha på valboksen. Namnet på gruppeboksen blir vist som ein etikett i skjemaet. Teksten du skriv inn her samsvarar med eigenskapen Etiketti grupperingsramma." +msgstr "Skriv inn namnet du vil ha på valboksen. Namnet på gruppeboksen vert vist som ein etikett i skjemaet. Teksten du skriv inn her samsvarar med eigenskapen Etiketti grupperingsramma." #: 01130000.xhp msgctxt "" @@ -7297,7 +7297,7 @@ "40\n" "help.text" msgid "Creates a log file in your work directory showing which documents have been converted." -msgstr "Lag ei loggfil i arbeidskatalogen som viser kva filer som har blitt konverterte." +msgstr "Lagar ei loggfil i arbeidskatalogen som viser kva filer som er konverterte." #: 01130100.xhp msgctxt "" @@ -7717,7 +7717,7 @@ "50\n" "help.text" msgid "Specifies that sheet protection will be disabled during conversion and thereafter re-enabled. If sheet protection is covered by a password, you will see a dialog for entering the password." -msgstr "Vel om arkvernaren skal skruast av medan konverteringa føregår, og så skruast på igjen. Viss arket er passordverna, får du sjå ein dialogboks der du blir beden om passordet." +msgstr "Vel om arkvernaren skal skruast av medan konverteringa føregår, og så skruast på igjen. Viss arket er passordverna, kjem det opp ein dialogboks der du vert beden om passordet." #: 01150000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/explorer/database.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/explorer/database.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-24 20:12+0000\n" +"PO-Revision-Date: 2014-09-03 21:47+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406232727.000000\n" +"X-POOTLE-MTIME: 1409780873.000000\n" #: 02000000.xhp msgctxt "" @@ -10441,7 +10441,7 @@ "par_idN1056F\n" "help.text" msgid "Enter the path to the text file or files. If you just want one text file, you can use any extension of the file name. If you enter a folder name, the text files in that folder must have the extension *.csv to be recognized as files of the text database." -msgstr "Skriv inn stien til tekstfilene. Viss du berre vil bruka ei enkelt tekstfil, kan fila ha kva etternamn som helst. Viss du vil ha med alle filene i ei mappe, må alle filene ha etternamnet «*.csv» for å bli gjenkjent som filer i ein tekstdatabase." +msgstr "Skriv inn stien til tekstfilene. Viss du berre vil bruka ei enkelt tekstfil, kan fila ha kva etternamn som helst. Viss du vil ha med alle filene i ei mappe, må alle filene ha etternamnet «*.csv» for å verta gjenkjende som filer i ein tekstdatabase." #: dabawiz02text.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.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-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-08-17 09:13+0000\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" +"PO-Revision-Date: 2014-09-03 21:47+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408266825.000000\n" +"X-POOTLE-MTIME: 1409780867.000000\n" #: aaa_start.xhp msgctxt "" @@ -1557,7 +1557,7 @@ "1\n" "help.text" msgid "Adding Texture to Chart Bars" -msgstr "Leggja til overflate på diagramsøyler" +msgstr "Leggja til tekstur på diagramsøyler" #: chart_barformat.xhp msgctxt "" @@ -7504,7 +7504,7 @@ "14\n" "help.text" msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the Show Report button on the main dialog of the Error Report Tool to view what will get sent in the main file." -msgstr "Feilrapporten inneheld fleire filer. Hovudfila inneheld informasjon om feilen som har oppstått, operativsystem og versjon, minnebruk og beskrivinga di. Trykk på knappen Vis rapport i hovuddialogvindauget til feilrapporteringsverktøyet for å sjå på det som blir sendt i hovudfia." +msgstr "Feilrapporten inneheld fleire filer. Hovudfila inneheld informasjon om feilen som har oppstått, operativsystem og versjon, minnebruk og beskrivinga di. Trykk på knappen Vis rapport i hovuddialogvindauget til feilrapporteringsverktøyet for å sjå på det som vert sendt i hovudfia." #: error_report.xhp msgctxt "" @@ -7547,7 +7547,7 @@ "2\n" "help.text" msgid "Choose File - Save as. You will see the Save as dialog." -msgstr "Vel Fil → Lagra som. Dialogvindauget Lagra somblir opna." +msgstr "Vel Fil → Lagra som. Dialogvindauget Lagra som vert opna." #: export_ms.xhp msgctxt "" @@ -9285,7 +9285,7 @@ "48\n" "help.text" msgid "You should create the same directory structure on your hard disk as that which exists in the web space hosted by your Internet provider. Call the root directory for the homepage on your hard disk \"homepage\", for example. The start file is then \"index.html\", the full path being \"C:\\homepage\\index.html\" (assuming Windows operating system). The URL on your Internet provider's server might then be as follows: \"http://www.myprovider.com/mypage/index.html\". With relative addressing, you indicate the link relative to the location of the output document. For example, if you placed all the graphics for your homepage in a subfolder called \"C:\\homepage\\images\", you would need to give the following path to access the graphic \"picture.gif\": \"images\\picture.gif\". This is the relative path, starting from the location of the file \"index.html\". On the provider's server, you would place the picture in the folder \"mypage/images\". When you transfer the document \"index.html\" to the provider's server through the File - Save As dialog, and if you have marked the option Copy local graphics to Internet under %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility, $[officename] will automatically copy the graphic to the correct directory on the server." -msgstr "Du må laga den same mappestrukturen på harddisken som den du brukar på nettstaden der filene vert lagra. Kall rota for heimesida på harddisken for eksempel for «heimesida». Du kan då bruke startfila «index.html». I Windows vert då den fulle stien til denne mappa «C:\\heimesida\\index.html». Adressa på Internettenaren kan då bli slik: ««http://www.nettstaden_min.no/sida_mi/index.html». Med relativ adressering vert lenkja sett opp relativt til plasseringa av dokumentet lenkja ligg i. Legg du for eksempel alle bileta for heimesida i mappa «C:\\heimesida\\bilete», og dette biletet skal leggjast inn i «index.html», vert lenkjeadressa til biletet «solnedgang.png» «bilete\\solnedgang.png». Dette er den relative stien som byrjar der fila «index.html» er plassert. På nettenaren legg du dette biletet i mappa «sida_mi/bilete». Når du overfører dokumentet «index.html» til nettenaren via Fil - Lagra som og du har merkt av for Kopier lokale bilete til Internett i %PRODUCTNAME → InnstillingarVerktøy → Innstillingar → Last inn/lagra → HTML-komptibilitet vil $[officename] kopiera bileta automatisk til den rette mappa på tenaren." +msgstr "Du må laga den same mappestrukturen på harddisken som den du brukar på nettstaden der filene vert lagra. Kall rota for heimesida på harddisken for eksempel for «heimesida». Du kan då bruke startfila «index.html». I Windows vert då den fulle stien til denne mappa «C:\\heimesida\\index.html». Adressa på Internettenaren kan då verta slik: ««http://www.nettstaden_min.no/sida_mi/index.html». Med relativ adressering vert lenkja sett opp relativt til plasseringa av dokumentet lenkja ligg i. Legg du for eksempel alle bileta for heimesida i mappa «C:\\heimesida\\bilete», og dette biletet skal leggjast inn i «index.html», vert lenkjeadressa til biletet «solnedgang.png» «bilete\\solnedgang.png». Dette er den relative stien som byrjar der fila «index.html» er plassert. På nettenaren legg du dette biletet i mappa «sida_mi/bilete». Når du overfører dokumentet «index.html» til nettenaren via Fil - Lagra som og du har merkt av for Kopier lokale bilete til Internett i %PRODUCTNAME → InnstillingarVerktøy → Innstillingar → Last inn/lagra → HTML-komptibilitet vil $[officename] kopiera bileta automatisk til den rette mappa på tenaren." #: hyperlink_rel_abs.xhp msgctxt "" @@ -10152,7 +10152,7 @@ "9\n" "help.text" msgid "Linux / NetBSD: Using the dead-keys. In an xterm window first press the (´) or (`) key. The character should not appear on the screen. Now press a letter, such as \"e\". The e is given an accent, é or è. If not, then check in the XF86Config file if a \"nodeadkeys\" XkbdVariant has been loaded there and replace it. You may also have set the environment variable SAL_NO_DEADKEYS, which deactivates the dead-keys." -msgstr "Linux / NetBSD: Bruke dødtastane. I eit xterm-vindauge trykker du først på tasten (´) eller (`). Teiknet skal ikkje kome fram på skjermen. Deretter trykker du ein bokstav, for eksempel «e». Aksentteiknet blir nå lagt til bokstaven og skriv é eller è på skjermen. Dersom dette ikkje skjer, må du kontrollere om XF86Config-fila inneheld ein \"nodeadkeys\" XkbdVariant og bytte ut den. Du kan også ha aktivert miljøvariabelen SAL_NO_DEADKEYS, som deaktiverer dødtastane." +msgstr "Linux / NetBSD: Bruke dødtastane. I eit xterm-vindauge trykker du først på tasten (´) eller (`). Teiknet skal ikkje kome fram på skjermen. Deretter trykker du ein bokstav, for eksempel «e». Aksentteiknet vert nå lagt til bokstaven og skriv é eller è på skjermen. Dersom dette ikkje skjer, må du kontrollere om XF86Config-fila inneheld ein \"nodeadkeys\" XkbdVariant og bytte ut den. Du kan også ha aktivert miljøvariabelen SAL_NO_DEADKEYS, som deaktiverer dødtastane." #: insert_specialchar.xhp msgctxt "" @@ -10266,7 +10266,7 @@ "tit\n" "help.text" msgid "Shortcuts (%PRODUCTNAME Accessibility)" -msgstr "Snartastar (tilgjenge i %PRODUCTNAME)" +msgstr "Snøggtastar (tilgjenge i %PRODUCTNAME)" #: keyboard.xhp msgctxt "" @@ -10274,7 +10274,7 @@ "bm_id3158421\n" "help.text" msgid "accessibility;general shortcuts shortcut keys; %PRODUCTNAME accessibility" -msgstr "tilgjenge; generelle snartastarsnartastar; tilgjenge i %PRODUCTNAME" +msgstr "tilgjenge; generelle snøggtastarsnøggtastar; tilgjenge i %PRODUCTNAME" #: keyboard.xhp msgctxt "" @@ -10283,7 +10283,7 @@ "52\n" "help.text" msgid "Shortcuts (%PRODUCTNAME Accessibility)" -msgstr "Snartastar (%PRODUCTNAME tilgjenge)" +msgstr "Snøggtastar (tilgjengelege i %PRODUCTNAME)" #: keyboard.xhp msgctxt "" @@ -11056,7 +11056,7 @@ "118\n" "help.text" msgid "Shortcuts in the Query Design Window" -msgstr "Snartastar i vindauget for spørjingsutforming" +msgstr "Snøggtastar i vindauget for spørjingsutforming" #: keyboard.xhp msgctxt "" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programmera i %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Funksjonen for opptak av makroar er berre tilgjengeleg for tekstdokument i %PRODUCTNAME Writer og rekneark i %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" @@ -16929,7 +16921,7 @@ "par_idN10A78\n" "help.text" msgid "Select a key combination from the Shortcut keys list box and click Modify." -msgstr "Merk ein tastekombinasjon i listeboksen Snartastar og trykk på Endra." +msgstr "Merk ein tastekombinasjon i listeboksen Snøggtastar og trykk på Endra." #: scripting.xhp msgctxt "" @@ -18591,7 +18583,7 @@ "27\n" "help.text" msgid "You can set a tab stop by clicking on the ruler or by selecting Format - Paragraph - Tabs. Both methods affect the current paragraph or all selected paragraphs." -msgstr "Du kan setja ein tabulator ved å klikka på linjalen eller ved å velja Formater → Avsnitt → Tabulatorar. Metodane påverkar det aktuelle avsnittet eller alle merkte avsnitt." +msgstr "Du kan setja ein tabulator ved å klikka på linjalen eller ved å velja Format → Avsnitt → Tabulatorar. Metodane påverkar det aktuelle avsnittet eller alle merkte avsnitt." #: tabs.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/shared/optionen.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/shared/optionen.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-17 10:38+0000\n" +"PO-Revision-Date: 2014-09-03 21:47+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408271922.000000\n" +"X-POOTLE-MTIME: 1409780870.000000\n" #: 01000000.xhp msgctxt "" @@ -985,7 +985,7 @@ "par_id0915200911205367\n" "help.text" msgid "Currently, the ODF 1.2 (Extended) format enables files of Draw and Impress to contain comments. Those comments can be inserted by Insert - Comment in the latest software version. The comments get lost when loading files into prior software versions that were saved by the latest software version." -msgstr "For tida bruker formatet ODF 1.2 (Utvida) merknader frå Draw- og Impress-filer. Desse merknadane kan bli sette inn ved hjelp av kommandoen Set inn - Merknad i den siste programversjonen. Merknadane går tapt når du lastar filene inn som tidlegare versjonar lagra frå den siste programversjonen." +msgstr "For tida brukar formatet ODF 1.2 (Utvida) merknader frå Draw- og Impress-filer. Desse merknadane kan setjast inn ved hjelp av kommandoen Set inn → Merknad i den siste programversjonen. Merknadane går tapt når du lastar filene inn som tidlegare versjonar lagra frå den siste programversjonen." #: 01010200.xhp msgctxt "" @@ -993,7 +993,7 @@ "par_id7198400\n" "help.text" msgid "Some companies or organizations may require ODF documents in the ODF 1.0/1.1 format. You can select that format to save in the listbox. This older format cannot store all new features, so the new format ODF 1.2 (Extended) is recommended where possible." -msgstr "Ein del firma og organisasjonar krev at dokumenta er i ODF-formatet 1.0/1.1. Du kan velje dette formatet i listeboksen. Dette eldre formatet kan ikkje lagra alle dei nye funksjonane i ODF 1.2 (Utvida), så det blir tilrådd å bruke det nyate formatet når det er mogleg." +msgstr "Ein del firma og organisasjonar krev at dokumenta er i ODF-formatet 1.0/1.1. Du kan velja dette formatet i listeboksen. Dette eldre formatet kan ikkje lagra alle dei nye funksjonane i ODF 1.2 (Utvida), så det vert tilrådd å bruka det nyaste formatet når det er mogleg." #: 01010200.xhp msgctxt "" @@ -3647,7 +3647,7 @@ "64\n" "help.text" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." -msgstr "Viser namna på valbare skrifter med den aktuelle skrifta. Dette gjeld til dømes skrifter i boksen Skrift på verktøylinja Formatering" +msgstr "Viser namna på valbare skrifttypar med den aktuelle skrifta. Dette gjeld til dømes skrifter i boksen Skrift på verktøylinja Formatering" #: 01010800.xhp msgctxt "" @@ -8602,7 +8602,7 @@ "par_idN10867\n" "help.text" msgid "If the option is on, the floating objects are positioned as in Writer versions prior to StarOffice 8 or OpenOffice.org 2.0. If the option is off, the floating objects are positioned using an alternative method that is similar to the method used by Microsoft Word." -msgstr "Dersom dette valet er på, vil det flytande objektet bli plassert slik som i Writer før StarOffice 8 eller OpenOffice.org 2.0. Dersom dette valet er slått av, vil det bli brukt ein metode som er nokså lik den Microsoft Word brukar." +msgstr "Dersom dette valet er på, vert det flytande objektet plassert slik som i Writer før StarOffice 8 eller OpenOffice.org 2.0. Dersom dette valet er slått av, vert det brukt ein metode som er nokså lik den Microsoft Word brukar." #: 01041000.xhp msgctxt "" @@ -8818,7 +8818,7 @@ "par_idN10593\n" "help.text" msgid "Defines the options to be applied to the selected object type. These options are identical to those in the Insert - Caption menu, which is available when an object is selected. Below the settings is a preview of the object category, together with numbering type." -msgstr "Bestemmer kva innstillingar som skal bli brukte i den valde objekttypen. Desse innstillingane er identiske med dei som finst i menyen Set inn → Bilettekst, som er tilgjengelig når eit objekt er vald. Under innstillingane ser du ei førehandsvising av objektkategorien saman med nummereringstypen." +msgstr "Bestemmer kva innstillingar som skal brukast i den valde objekttypen. Desse innstillingane er identiske med dei som finst i menyen Set inn → Bilettekst, som er tilgjengelig når eit objekt er vald. Under innstillingane ser du ei førehandsvising av objektkategorien saman med nummereringstypen." #: 01041100.xhp msgctxt "" @@ -9542,7 +9542,7 @@ "25\n" "help.text" msgid "You can type and edit comments with the Insert - Comment command. Comments that are permanently displayed can be edited by clicking the comment box. Click the Navigator and under the Comments entry you can view all comments in the current document. By double clicking a comment in Navigator, the cursor will jump to the corresponding cell containing the comment." -msgstr "Du kan skrive og redigere merknader ved hjelp av kommandoen Set inn - Merknad. Merknader som blir viste permanent, kan redigerast ved å klikke i merknadsboksen. Kikk på avigatoren. Under merknaden kan du sjå alle merknadane i det gjeldande dokumentet. Derom du dobbeltklikkar på ein merknad, vil markøren hoppe til den cella som inneheld merknaden." +msgstr "Du kan skrive og redigere merknader ved hjelp av kommandoen Set inn - Merknad. Merknadar som vert viste permanent, kan redigerast ved å klikka i merknadsboksen. Kikk på navigatoren. Under merknaden kan du sjå alle merknadane i det gjeldande dokumentet. Derom du dobbeltklikkar på ein merknad, vil markøren hoppe til den cella som inneheld merknaden." #: 01060100.xhp msgctxt "" @@ -9719,7 +9719,7 @@ "par_id0909200810585870\n" "help.text" msgid "If checked, all sheets are shown with the same zoom factor. If not checked, each sheet can have its own zoom factor." -msgstr "Dersom denne er avkryssa, vil alle arka bli viste med same forstørringa. Er det ikkje avkryssa her, kan kvart ark bli vist med ulik forstørring." +msgstr "Dersom denne er avkryssa, vert alle arka viste med same forstørringa. Er det ikkje avkryssa her, kan kvart ark verta vist med ulik forstørring." #: 01060100.xhp msgctxt "" @@ -10351,7 +10351,7 @@ "6\n" "help.text" msgid "Specifies whether formulas with iterative references (formulas that are continuously repeated until the problem is solved) are calculated after a specific number of repetitions. If the Iterations box is not marked, an iterative reference in the table will cause an error message." -msgstr "Bestemmer om formlar med sirkelreferanser (formlar som blit gjentatt til problemet er løyst) skal reknast ut med eit bestemt tal på gjentakingar. Dersom boksen Repetisjonar ikkje er avmerka, vil ein sirkelreferanse i tabellen føre til at det blir vist ei feilmelding." +msgstr "Bestemmer om formlar med sirkelreferanser (formlar som vert gjentekne til problemet er løyst) skal reknast ut med eit bestemt tal på gjentakingar. Dersom boksen Repetisjonar ikkje er avmerka, vil ein sirkelreferanse i tabellen føre til at det vert vist ei feilmelding." #: 01060500.xhp msgctxt "" @@ -10378,7 +10378,7 @@ "61\n" "help.text" msgid "Now type a selling price (for example, 100) in cell B5. The net price should be shown in cell B6 and the value-added tax should be shown in cell B7." -msgstr "Skriv inn ein salspris (for eksempel 100) i celle B5. Nettoprisen skal visast i celle B6 og momsen blir vist i celle B7." +msgstr "Skriv inn ein salspris (for eksempel 100) i celle B5. Nettoprisen skal visast i celle B6 og momsen vert vist i celle B7." #: 01060500.xhp msgctxt "" @@ -10396,7 +10396,7 @@ "63\n" "help.text" msgid "Switch on the iterations to correctly calculate the formulas, otherwise a 'Circular reference' error message appears in the Status Bar." -msgstr "Slå på repetisjonar for å rekne ut formlane på rett måte. Dersom du ikkje gjer dette, bli feilmeldinga «Feil: Sirkelreferanse» vist i statuslinja" +msgstr "Slå på repetisjonar for å rekne ut formlane på rett måte. Dersom du ikkje gjer dette, vert feilmeldinga «Feil: Sirkelreferanse» vist i statuslinja" #: 01060500.xhp msgctxt "" @@ -10603,7 +10603,7 @@ "52\n" "help.text" msgid "Sets 1/1/1904 as day zero. Use this setting for spreadsheets that are imported in a foreign format." -msgstr "Set 01.01.1904 som dag null. Bruk denne innstillinga for rekneark som blir importerte frå eit eksternt format." +msgstr "Set 01.01.1904 som dag null. Bruk denne innstillinga for rekneark som vert importerte frå eit eksternt format." #: 01060500.xhp msgctxt "" @@ -10657,7 +10657,7 @@ "31\n" "help.text" msgid "Specifies whether to make calculations using the rounded values displayed in the sheet. Charts will be shown with the displayed values. If the Precision as shown option is not marked, the displayed numbers are rounded, but they are calculated internally using the non-rounded number." -msgstr "Set eit merke her for å gjer utrekningane med dei avrunda verdiane som blir viste i arket. Diagrammer vil bruke verdiane som blir viste. Dersom det ikkje er merka av for Presisjon som vist, vil tala som blir viste vere avrunda, mens interne utrekningar vil bruke dei nøyaktige tala." +msgstr "Set eit merke her for å gjera utrekningane med dei avrunda verdiane som vert viste i arket. Diagramma vil bruka verdiane som vert viste. Dersom det ikkje er merka av for Presisjon som vist, vil tala som vert viste vera avrunda, medan interne utrekningar vil bruka dei nøyaktige tala." #: 01060500.xhp msgctxt "" @@ -10835,7 +10835,7 @@ "par_id315343818\n" "help.text" msgid "You can specify the maximum number of decimal places that are shown by default for cells with General number format. If not enabled, cells with General number format show as many decimal places as the column width allows." -msgstr "Du kan her velje kor mange desimalplassar som normalt blir viste i celler med generelt talformat. Dersom denne ikkje er aktivert, vil det bli vist så mange desimalar som det er plass til i cella." +msgstr "Du kan her velje kor mange desimalplassar som normalt vert viste i celler med generelt talformat. Dersom denne ikkje er aktivert, vert det vist så mange desimalar som det er plass til i cella." #: 01060500.xhp msgctxt "" @@ -11614,7 +11614,7 @@ "29\n" "help.text" msgid "%PRODUCTNAME creates dotted guides that extend beyond the box containing the selected object and which cover the entire work area, helping you position the object. " -msgstr "%PRODUCTNAME viser prikka hjelpelinjer som strekker seg ut over boksen med det valde objektet. Hjelpelinjene dekker heile arbeidsområdet, slik at det blir enklare for deg å plassere objektet." +msgstr "%PRODUCTNAME viser prikka hjelpelinjer som strekkjer seg ut over boksen med det valde objektet. Hjelpelinjene dekkjer heile arbeidsområdet, slik at det vert enklare for deg å plassera objektet." #: 01070100.xhp msgctxt "" @@ -12651,7 +12651,7 @@ "1\n" "help.text" msgid "%PRODUCTNAME Draw Options" -msgstr "Innstillingar for %PRODUCTNAME Math" +msgstr "Innstillingar for %PRODUCTNAME Draw" #: 01080000.xhp msgctxt "" @@ -13370,7 +13370,7 @@ "par_idN10685\n" "help.text" msgid "Select the language used for the user interface, for example menus, dialogs, help files. You must have installed at least one additional language pack or a multi-language version of %PRODUCTNAME." -msgstr "Vel det språket som skal bli brukt i brukargrensesnittet, for eksempel i menyar, dialogvindauge og hjelpetekstar. Du må ha installert ein fleirspråkleg versjon av %PRODUCTNAME eller ha minst ei ekstra språkpakke for å kunne gjere dette." +msgstr "Vel det språket som skal brukast i brukargrensesnittet, for eksempel i menyar, dialogvindauge og hjelpetekstar. Du må ha installert ein fleirspråkleg versjon av %PRODUCTNAME eller ha minst éi ekstra språkpakke for å kunne gjera dette." #: 01140000.xhp msgctxt "" @@ -13378,7 +13378,7 @@ "par_id0125201009445727\n" "help.text" msgid "The \"Default\" entry selects the language of the user interface for the operating system. If this language is not available in the %PRODUCTNAME installation, the language of the %PRODUCTNAME installation is the default language." -msgstr "Innslaget «Forvald» i språklista vel språket som er sett i operativsystemet. Dersom dette språket ikkje er tilgjengeleg i %PRODUCTNAME , vil språket vald i installasjonen for %PRODUCTNAME bli sett som «normalspråket»." +msgstr "Innslaget «Forvald» i språklista vel språket som er sett i operativsystemet. Dersom dette språket ikkje er tilgjengeleg i %PRODUCTNAME , vert språket vald i installasjonen for %PRODUCTNAME sett som «normalspråket»." #: 01140000.xhp msgctxt "" @@ -13489,7 +13489,7 @@ "par_id3145121\n" "help.text" msgid "Specifies the date acceptance patterns for the current locale. Calc spreadsheet and Writer table cell input needs to match locale dependent date acceptance patterns before it is recognized as a valid date. Default locale dependent date acceptance patterns are generated build time, but it is possible to add more or modify them in this edit box." -msgstr "Spesifiserer datomønsteret for det gjeldande lokale språket. Tabellceller i Calc og Writer må ha inndata som høver til datomønsteret for lokale innstillingar for å kunne oppfatte innslaget som ein gyldig dato. Mønsteret for dei forvalde datoinnstillingane blir sett når programmet blir installert, men kan endrast i denne redigeringsboksen. " +msgstr "Spesifiserer datomønsteret for det gjeldande lokale språket. Tabellceller i Calc og Writer må ha inndata som høver til datomønsteret for lokale innstillingar for å kunne oppfatte innslaget som ein gyldig dato. Mønsteret for dei forvalde datoinnstillingane vert sett når programmet vert installert, men kan endrast i denne redigeringsboksen. " #: 01140000.xhp msgctxt "" @@ -13497,7 +13497,7 @@ "par_id3148492\n" "help.text" msgid "Additionally to the date acceptance patterns defined here, every locale accepts input in an ISO 8601 Y-M-D pattern, and since %PRODUCTNAME 3.5 that also leads to the YYYY-MM-DD format being applied." -msgstr "I tillegg til datomønsteret som blir definert her, vil alle lokale innstillingar godta inndata etter mønsteret i ISO 8601 Y-M-D, og frå og med %PRODUCTNAME 3.5 er også formatet YYYY-MM-DD akseptert." +msgstr "I tillegg til datomønsteret som vert definert her, vil alle lokale innstillingar godta inndata etter mønsteret i ISO 8601 Y-M-D, og frå og med %PRODUCTNAME 3.5 er også formatet YYYY-MM-DD akseptert." #: 01140000.xhp msgctxt "" @@ -13717,7 +13717,7 @@ "3\n" "help.text" msgid "The Searching in Japanese and Asian Layout tab pages are only visible if the Asian language support option in the Languages tab page is activated and the Options dialog is re-opened. The Complex Text Layout tab page is only visible if the CTL support is enabled." -msgstr "Kategoriane Søk på japansk og Asiatisk oppsett blir berre viste bare når du vel Bruk for asiatiske språk i kategorien Språk og opnar dialogvindauget Innstillingar på nytt. Fanen Kompleks tekstvising blir berre vist når Bruk for kompleks tekst (CTL) er vald." +msgstr "Kategoriane Søk på japansk og Asiatisk oppsett vert viste berre når du vel Bruk for asiatiske språk i kategorien Språk og opnar dialogvindauget Innstillingar på nytt. Fanen Kompleks tekstvising vert berre vist når Bruk for kompleks tekst (CTL) er vald." #: 01150100.xhp msgctxt "" @@ -13895,7 +13895,7 @@ "18\n" "help.text" msgid "Defines the default settings for 'first' and 'last' characters. In the dialog that appears when you choose Format -Asian Typography, you can specify whether the list of forbidden characters applies to those at the beginning or end of a line in a paragraph." -msgstr "Bestemmer standardinnstillingane for første og siste teikn. I dialogvindauget som blir vist når du vel Format → Avsnitt → Asiatisk typografi kan du velje om lista over ugyldige teikn skal gjelde teikn i byrjinga eller slutten av eit avsnitt." +msgstr "Bestemmer standardinnstillingane for første og siste teikn. I dialogvindauget som vert vist når du vel Format → Avsnitt → Asiatisk typografi kan du velje om lista over ugyldige teikn skal gjelde teikn i byrjinga eller slutten av eit avsnitt." #: 01150100.xhp msgctxt "" @@ -14133,7 +14133,7 @@ "8\n" "help.text" msgid "Select the type of text cursor movement and text selection for mixed text (right-to-left mixed with left-to-right text direction)." -msgstr "Vel korleis skrivemerket skal flyttast og brukast til å merke tekst i blanda tekst (når tekst som blir skriven frå venstre mot høgre blir blanda med tekst som blir skriven frå høgre mot venstre)." +msgstr "Vel korleis skrivemerket skal flyttast og brukast til å merke tekst i blanda tekst (når tekst som vert skriven frå venstre mot høgre vert blanda med tekst som vert skriven frå høgre mot venstre)." #: 01150300.xhp msgctxt "" @@ -14151,7 +14151,7 @@ "10\n" "help.text" msgid "Pressing the Right Arrow key moves the text cursor toward the end of the current text. Pressing the Left Arrow key moves the text cursor toward the beginning of the current text." -msgstr "Når du trykker «Pil høgre», blir skrivemerket flytt til slutten av teksten. Når du trykker «Pil venstre», blir skrivemerket flytt til byrjinga av teksten." +msgstr "Når du trykkjer «Pil høgre», vert skrivemerket flytt til slutten av teksten. Når du trykkjer «Pil venstre», vert skrivemerket flytt til byrjinga av teksten." #: 01150300.xhp msgctxt "" @@ -14169,7 +14169,7 @@ "12\n" "help.text" msgid "Pressing the Right Arrow key moves the text cursor in the right-hand direction. Pressing the Left Arrow key moves the text cursor in the left-hand direction." -msgstr "Skrivemerket blir flytt mot høgre når du trykker «Pil høgre» og mot venstre når du trykker «Pil venstre»." +msgstr "Skrivemerket vert flytt mot høgre når du trykkjer «Pil høgre» og mot venstre når du trykkjer «Pil venstre»." #: 01150300.xhp msgctxt "" @@ -14424,7 +14424,7 @@ "par_idN10561\n" "help.text" msgid "Add, modify, or remove entries to the list of registered databases. You must register a database within %PRODUCTNAME in order to see it in the View - Data sources window." -msgstr "Du kan legge til, endre eller fjerne oppføringar i lista over registrerte databaser. Databasen vil bare bli vist i vindauget Vis → Datakjelder dersom den er registrert i %PRODUCTNAME." +msgstr "Du kan leggja til, endra eller fjerna oppføringar i lista over registrerte databasar. Databasen vert berre vist i vindauget Vis → Datakjelder dersom han er registrert i %PRODUCTNAME." #: 01160200.xhp msgctxt "" @@ -14760,7 +14760,7 @@ "par_idN1059F\n" "help.text" msgid "Specifies the location of Java classes or Java class libraries. The new classpath becomes valid after you restart %PRODUCTNAME." -msgstr "Angir plasseringa til Java-klasser eller Java-klassebibliotek. Den nye klassestigen blir tatt i bruk når du har starta %PRODUCTNAME på nytt." +msgstr "Angir plasseringa til Java-klasser eller Java-klassebibliotek. Den nye klassestien vert tatt i bruk når du har starta %PRODUCTNAME på nytt." #: javaclasspath.xhp msgctxt "" @@ -14768,7 +14768,7 @@ "par_idN105D9\n" "help.text" msgid "Java classes that are accessed through the classpath do not undergo a security check." -msgstr "Java-klasser som du gir tilgang til ved å angi ein klassestig, blir ikkje kontrollert med omsyn til tryggleik." +msgstr "Java-klasser som du gir tilgang til ved å angi ein klassestig, vert ikkje kontrollert med omsyn til tryggleik." #: javaclasspath.xhp msgctxt "" @@ -14912,7 +14912,7 @@ "par_idN1060C\n" "help.text" msgid "These changes take effect after you restart %PRODUCTNAME." -msgstr "Desse endringane blir tatt i bruk etter at du har starta %PRODUCTNAME på nytt." +msgstr "Desse endringane vert tatt i bruk etter at du har starta %PRODUCTNAME på nytt." #: javaparameters.xhp msgctxt "" @@ -15016,7 +15016,7 @@ "par_idN10567\n" "help.text" msgid "Select the macro security level from one of four options. The options differ according to the security level. Macros that are allowed to run on a higher security level are also allowed to run in all lower levels." -msgstr "Vel mellom eitt av dei fire tilgjengelege nivåa for makrotryggleik. Skilnaden på alternativa er tryggleiksnivået som blir bruk. Makroar som får lov til å køyre på eit høgt tryggleiksnivå, får også lov til å køyre på alle lågare tryggleiksnivå." +msgstr "Vel mellom eitt av dei fire tilgjengelege nivåa for makrotryggleik. Skilnaden på alternativa er tryggleiksnivået som vert bruk. Makroar som får lov til å køyre på eit høgt tryggleiksnivå, får også lov til å køyre på alle lågare tryggleiksnivå." #: macrosecurity_sl.xhp msgctxt "" @@ -15112,7 +15112,7 @@ "par_idN105D9\n" "help.text" msgid "A macro can be set to auto-start, and it can perform potentially damaging actions, as for example delete or rename files. This setting is not recommended when you open documents from other authors." -msgstr "Ein makro kan bli set til å starte automatisk, og kan utføre handlingar som kan gjere skade, for eksempel slette eller gi filer nytt namn. Denne innstillinga blir ikkje tilrådd når du opnar dokumenter du har mottatt frå andre." +msgstr "Ein makro kan setjast til å starta automatisk, og kan utføra handlingar som kan gjere skade, for eksempel sletta eller gje filer nytt namn. Denne innstillinga vert ikkje tilrådd når du opnar dokument du har mottatt frå andre." #: macrosecurity_ts.xhp msgctxt "" @@ -15200,7 +15200,7 @@ "par_idN105B1\n" "help.text" msgid "Document macros are only executed if they have been opened from one of the following locations." -msgstr "Dokumentmakroar blir berre køyrde dersom dei blir opna frå ein av dei følgjande stadene." +msgstr "Dokumentmakroar vert berre køyrde dersom dei vert opna frå ein av desse stadene." #: macrosecurity_ts.xhp msgctxt "" @@ -15256,7 +15256,7 @@ "par_idN10564\n" "help.text" msgid "Specifies the user information and server settings for when you send form letters as e-mail messages." -msgstr "Angir brukarinformasjon og innstillingar for tenarar som blir brukte til å sende standardbrev som e-post." +msgstr "Angir brukarinformasjon og innstillingar for tenarar som vert brukte til å senda standardbrev som e-post." #: mailmerge.xhp msgctxt "" @@ -15400,7 +15400,7 @@ "par_idN10637\n" "help.text" msgid "When available, uses a secure connection to send e-mails." -msgstr "Dersom den er tilgjengeleg, vil ei sikker tilkopling bli brukt til å sende e-post." +msgstr "Dersom ho er tilgjengeleg, vert ei sikker tilkopling brukt til å senda e-post." #: mailmerge.xhp msgctxt "" @@ -15496,7 +15496,7 @@ "par_id476699\n" "help.text" msgid "If you disable the check, the icon is removed from the menu bar." -msgstr "Dersom du slår av denne oppdateringsfunksjonen, vil knappen bli fjerna frå menylinja." +msgstr "Dersom du slår av denne oppdateringsfunksjonen, vert knappen fjerna frå menylinja." #: online_update.xhp msgctxt "" @@ -15504,7 +15504,7 @@ "par_id4057130\n" "help.text" msgid "Online Update is a module that can be selected or deselected to be installed. Choose the customized installation in the Setup of %PRODUCTNAME." -msgstr "Nettoppdatering er ein modul du kan velje om du vil installere eller ikkje. Du kan bruke tilpasss installasjon i installasjonsprogrammet for %PRODUCTNAME til å installere det." +msgstr "Nettoppdatering er ein modul du kan velje om du vil installera eller ikkje. Du kan bruka tilpassa installasjon i installasjonsprogrammet for %PRODUCTNAME til å installere han." #: online_update.xhp msgctxt "" @@ -15912,7 +15912,7 @@ "par_idN10545\n" "help.text" msgid "The View Certificate dialog opens when you click the View Certificate button on the Trusted Sources tab page of the Macro Security dialog." -msgstr "Dialogvindauget «Vis sertifikat» blir opna når du trykker på knappen «Vis sertifikat» i kategorien Kjelder du stoler på i dialogvinduet Makrotrygglek." +msgstr "Dialogvindauget «Vis sertifikat» vert opna når du trykkjer på knappen «Vis sertifikat» i kategorien Kjelder du stolar på i dialogvinduet Makrotrygglek." #: viewcertificate.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/simpress/01.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/simpress/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/simpress/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-25 17:41+0200\n" -"PO-Revision-Date: 2014-07-31 20:00+0000\n" +"PO-Revision-Date: 2014-08-28 20:45+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406836844.000000\n" +"X-POOTLE-MTIME: 1409258744.000000\n" #: 01170000.xhp msgctxt "" @@ -4091,7 +4091,7 @@ "5\n" "help.text" msgid "Load" -msgstr "Opna" +msgstr "Last inn" #: 05120000.xhp msgctxt "" @@ -4100,7 +4100,7 @@ "6\n" "help.text" msgid "Displays the Load Slide Design dialog, where you can select additional slide designs." -msgstr "Viser dialogvindauget Opna lysbiletutforming der du kan velja fleire lysbiletutformingar." +msgstr "Viser dialogvindauget Last inn lysbiletutforming der du kan velja fleire lysbiletutformingar." #: 05120100.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/simpress/02.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/simpress/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/simpress/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/simpress/02.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407876203.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/simpress/04.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/simpress/04.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/simpress/04.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/simpress/04.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-12 20:54+0000\n" +"PO-Revision-Date: 2014-08-29 15:49+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407876862.000000\n" +"X-POOTLE-MTIME: 1409327397.000000\n" #: 01020000.xhp msgctxt "" @@ -22,7 +22,7 @@ "tit\n" "help.text" msgid "Shortcut Keys for $[officename] Impress" -msgstr "Snartastar for $[officename] Impress" +msgstr "Snøggtastar for $[officename] Impress" #: 01020000.xhp msgctxt "" @@ -39,7 +39,7 @@ "1\n" "help.text" msgid "Shortcut Keys for $[officename] Impress" -msgstr "Snartastar for $[officename] Impress" +msgstr "Snøggtastar for $[officename] Impress" #: 01020000.xhp msgctxt "" @@ -75,7 +75,7 @@ "4\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01020000.xhp msgctxt "" @@ -307,7 +307,7 @@ "35\n" "help.text" msgid "Shortcut Keys in Slide Shows" -msgstr "Snartastar i presentasjonar" +msgstr "Snøggtastar i presentasjonar" #: 01020000.xhp msgctxt "" @@ -316,7 +316,7 @@ "36\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01020000.xhp msgctxt "" @@ -548,7 +548,7 @@ "60\n" "help.text" msgid "Shortcut Keys in the Normal View" -msgstr "Snartastar i «Normalvising»" +msgstr "Snøggtastar i «Normalvising»" #: 01020000.xhp msgctxt "" @@ -557,7 +557,7 @@ "61\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01020000.xhp msgctxt "" @@ -809,7 +809,7 @@ "87\n" "help.text" msgid "Shortcut Keys when Editing Text" -msgstr "Snartastar ved redigering av tekst" +msgstr "Snøggtastar ved redigering av tekst" #: 01020000.xhp msgctxt "" @@ -818,7 +818,7 @@ "88\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01020000.xhp msgctxt "" @@ -1421,7 +1421,7 @@ "88\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01020000.xhp msgctxt "" @@ -1740,7 +1740,7 @@ "par_idN110AA\n" "help.text" msgid "Shortcut Keys" -msgstr "Snartastar" +msgstr "Snøggtastar" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/simpress/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/simpress/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:10+0200\n" -"PO-Revision-Date: 2014-08-25 19:12+0000\n" +"PO-Revision-Date: 2014-08-29 15:51+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408993969.000000\n" +"X-POOTLE-MTIME: 1409327474.000000\n" #: 3d_create.xhp msgctxt "" @@ -1075,7 +1075,7 @@ "58\n" "help.text" msgid "Choose Format - Page, and then click on the Background tab." -msgstr "Vel Formater → Side og klikk på fanen bakgrunn." +msgstr "Vel Format → Side og klikk på fanen bakgrunn." #: background.xhp msgctxt "" @@ -1263,7 +1263,7 @@ "14\n" "help.text" msgid "Shortcut keys for presentations" -msgstr "Snartastar for presentasjonar" +msgstr "Snøggtastar for presentasjonar" #: footer.xhp msgctxt "" @@ -1728,7 +1728,7 @@ "tit\n" "help.text" msgid "Importing HTML Pages Into Presentations" -msgstr "" +msgstr "Importera HTML-sider inn i presentasjonar" #: html_import.xhp msgctxt "" @@ -1745,7 +1745,7 @@ "1\n" "help.text" msgid "Importing HTML Pages Into Presentations " -msgstr "" +msgstr "Importera HTML-sider inn i presentasjonar" #: html_import.xhp msgctxt "" @@ -1754,7 +1754,7 @@ "2\n" "help.text" msgid "You can import any text file, including text in HTML documents, into a slide." -msgstr "" +msgstr "Du kan importera alle typar tekstfiler inn i eit lysbilete – også tekst i HTML-dokument." #: html_import.xhp msgctxt "" @@ -1763,7 +1763,7 @@ "11\n" "help.text" msgid "To insert text from a file into a slide:" -msgstr "" +msgstr "Slik set du inn tekst frå ei fil inn i eit lysbilete:" #: html_import.xhp msgctxt "" @@ -1772,7 +1772,7 @@ "4\n" "help.text" msgid "In the slide where you want to insert the text, choose Insert - File." -msgstr "" +msgstr "Vel Set inn → Fil når du er i det lysbiletet du vil setja inn teksten i." #: html_import.xhp msgctxt "" @@ -1781,7 +1781,7 @@ "5\n" "help.text" msgid "Select \"Text\" or \"HTML Document\" as the File type." -msgstr "" +msgstr "Vel «Tekst» eller «HTML-dokument» som Filtype." #: html_import.xhp msgctxt "" @@ -1790,7 +1790,7 @@ "12\n" "help.text" msgid "Locate the file containing the text that you want to add, and then click Insert." -msgstr "" +msgstr "Finn den fila som inneheld teksten du vil leggja til og trykk på Set inn." #: html_import.xhp msgctxt "" @@ -1799,7 +1799,7 @@ "6\n" "help.text" msgid "If the text file contains more text than can be inserted into a single slide, you can divide the text over several slides." -msgstr "" +msgstr "Viss tekstfila inneheld meir tekst enn det er plass til i eitt lysbilete, kan du fordela teksten over fleire lysbilete." #: html_import.xhp msgctxt "" @@ -1808,7 +1808,7 @@ "7\n" "help.text" msgid "Double-click in the inserted text to enter edit mode." -msgstr "" +msgstr "Dobbeltklikk i teksten som er sett inn for å gå inn i redigeringsmodus." #: html_import.xhp msgctxt "" @@ -1817,7 +1817,7 @@ "8\n" "help.text" msgid "Select all of the text that lies below the visible slide area and press Command Ctrl+X." -msgstr "" +msgstr "Merk all teksten som ligg utføre det synlege lysbiletområdet og trykkCmdCtrl + X." #: html_import.xhp msgctxt "" @@ -1826,7 +1826,7 @@ "9\n" "help.text" msgid "Choose Insert – Slide, and then press Command Ctrl+V." -msgstr "" +msgstr "Vel Set inn → Lysbilete og trykk CmdCtrl + V." #: html_import.xhp msgctxt "" @@ -1835,7 +1835,7 @@ "10\n" "help.text" msgid "Repeat steps 1 to 3 until all of the text is on slides." -msgstr "" +msgstr "Gjenta eventuelt steg 1 til 3 til all teksten er set inn i lysbilete." #: individual.xhp msgctxt "" @@ -1968,7 +1968,7 @@ "78\n" "help.text" msgid "Options for Running a Slide Show" -msgstr "" +msgstr "Innstillingar for køyring av lysbiletframvising" #: individual.xhp msgctxt "" @@ -2083,7 +2083,7 @@ "tit\n" "help.text" msgid "Using Shortcut Keys in $[officename] Impress" -msgstr "Bruk av snartastar i $[officename] Impress" +msgstr "Bruk av snøggtastar i $[officename] Impress" #: keyboard.xhp msgctxt "" @@ -2100,7 +2100,7 @@ "1\n" "help.text" msgid "Using Shortcut Keys in $[officename] Impress" -msgstr "Bruk av snartastar i $[officename] Impress" +msgstr "Bruk av snøggtastar i $[officename] Impress" #: keyboard.xhp msgctxt "" @@ -2109,7 +2109,7 @@ "11\n" "help.text" msgid "You can use the keyboard to access $[officename] Impress commands as well as to navigate through the workspace. $[officename] Impress uses the same shortcut keys as $[officename] Draw to create drawing objects." -msgstr "Du kan bruka tastaturet for å få tilgang til kommandoar i $[officename] Impress og for å navigere gjennom arbeidsområdet. $[officename] Impress brukar dei same snartastane som $[officename] Draw for å laga teikneobjekt." +msgstr "Du kan bruka tastaturet for å få tilgang til kommandoar i $[officename] Impress og for å navigere gjennom arbeidsområdet. $[officename] Impress brukar dei same snøggtastane som $[officename] Draw for å laga teikneobjekt." #: keyboard.xhp msgctxt "" @@ -2199,7 +2199,7 @@ "3\n" "help.text" msgid "Return to previous slide" -msgstr "" +msgstr "Gå tilbake til førre lysbilete" #: keyboard.xhp msgctxt "" @@ -2208,7 +2208,7 @@ "2\n" "help.text" msgid "OptionAlt+PageUp" -msgstr "" +msgstr "OptionAlt + PageUp" #: keyboard.xhp msgctxt "" @@ -2217,7 +2217,7 @@ "12\n" "help.text" msgid "Go to a specific slide" -msgstr "" +msgstr "Gå til eit bestemt lysbilete" #: keyboard.xhp msgctxt "" @@ -2226,7 +2226,7 @@ "13\n" "help.text" msgid "Type the page number of the slide, and then press Enter." -msgstr "" +msgstr "Skriv inn sidenummeret for lysbiletet og trykk på Enter." #: keyboard.xhp msgctxt "" @@ -2235,7 +2235,7 @@ "12\n" "help.text" msgid "Stop slide show" -msgstr "" +msgstr "Stoppa lysbiletframvisinga" #: keyboard.xhp msgctxt "" @@ -2244,7 +2244,7 @@ "13\n" "help.text" msgid "Esc or -." -msgstr "" +msgstr "Esc eller -." #: keyboard.xhp msgctxt "" @@ -2262,7 +2262,7 @@ "21\n" "help.text" msgid "When you first switch to Slide Sorter, press Enter to change the keyboard focus to the workspace. Otherwise, press F6 to navigate to the workspace, and then press Enter." -msgstr "" +msgstr "Når du første gongen byter til «Lysbiletsortering», trykk på Enter for å skifta tastaturfokus til arbeidsområdet. Elles kan du trykkja F6 for å navigera til arbeidsområdet og så trykkja Enter." #: keyboard.xhp msgctxt "" @@ -2271,7 +2271,7 @@ "22\n" "help.text" msgid "Selecting and deselecting slides" -msgstr "" +msgstr "Merking og oppheving av merking av lysbilete" #: keyboard.xhp msgctxt "" @@ -2280,7 +2280,7 @@ "15\n" "help.text" msgid "Use the arrow keys to navigate to the slide that you want to select, and then press the Spacebar. To add to the selection, use the arrow keys to navigate to the slide(s) that you want to add, and press Spacebar again. To deselect a slide, navigate to the slide, and then press Spacebar." -msgstr "" +msgstr "Bruk piltastane for å navigere til lysbiletet du vil merka og trykk på mellomromstasten. Bruk den same metoden for å leggja fleire lysbilete til det merkte lysbiletet. Du fjernar merkinga for eit lysbilete ved å navigere til lysbiletet og trykkja på Mellomromstast." #: keyboard.xhp msgctxt "" @@ -2289,7 +2289,7 @@ "23\n" "help.text" msgid "Copying a slide:" -msgstr "" +msgstr "Kopiere eit lysbilete:" #: keyboard.xhp msgctxt "" @@ -2428,7 +2428,7 @@ "9\n" "help.text" msgid "Inserting Layers" -msgstr "" +msgstr "Setja inn lag" #: layer_new.xhp msgctxt "" @@ -2444,7 +2444,7 @@ "par_idN10643\n" "help.text" msgid "Right-click the layer tab area at the bottom." -msgstr "" +msgstr "Høgreklikk på lagfaneområdet nedst." #: layer_new.xhp msgctxt "" @@ -2575,7 +2575,7 @@ "22\n" "help.text" msgid "Select a layer, and then choose Format - Layer." -msgstr "Merk eit lag og vel Formater → Lag." +msgstr "Merk eit lag og vel Format → Lag." #: layer_tipps.xhp msgctxt "" @@ -2665,7 +2665,7 @@ "17\n" "help.text" msgid "Select a layer, and then choose Format - Layer." -msgstr "Merk eit lag og vel Formater → Lag." +msgstr "Merk eit lag og vel Format → Lag." #: layer_tipps.xhp msgctxt "" @@ -2719,7 +2719,7 @@ "35\n" "help.text" msgid "In the Properties area, clear the Locked check box." -msgstr "" +msgstr "Fjern krysset i boksen Låst i området Eigenskapar." #: layer_tipps.xhp msgctxt "" @@ -2736,7 +2736,7 @@ "tit\n" "help.text" msgid "About Layers" -msgstr "" +msgstr "Om lag" #: layers.xhp msgctxt "" @@ -2753,7 +2753,7 @@ "9\n" "help.text" msgid "About Layers" -msgstr "" +msgstr "Om lag" #: layers.xhp msgctxt "" @@ -2762,7 +2762,7 @@ "3\n" "help.text" msgid "Layers are available in $[officename] Draw, not in $[officename] Impress. Layers allow you to assemble elements on a page that are related. Think of layers as individual workspaces that you can hide from view, hide from printing, or lock." -msgstr "" +msgstr "Lag er tilgjengelege i $[officename] Draw, ikkje i $[officename] Impress. Ved hjelp av lag kan du samla relaterte element. Tenk på lag som individuelle arbeidsområde som du kan gøyma for vising på skjerm eller i utskrift, eller låsa." #: layers.xhp msgctxt "" @@ -2770,7 +2770,7 @@ "par_id7036957\n" "help.text" msgid "Layers do not determine the stacking order of objects on your page, except for the Controls layer which is always in front of other layers." -msgstr "" +msgstr "Lag bestemmer ikkje stablingsrekkjefølgja for objekt på sida, unntatt for laget Kontrollelement som alltid er framføre andre lag." #: layers.xhp msgctxt "" @@ -2778,7 +2778,7 @@ "par_id1614734\n" "help.text" msgid "The stacking order of objects on your page is determined by the sequence in which you add the objects. You can rearrange the stacking order by Modify - Arrange." -msgstr "" +msgstr "Stablingsrekkjefølgja for objekt på sida vert bestem av kva rekkjefølgje du legg inn objekta. Du kan endra stablingsrekkjefølgja med Endra → Still opp." #: layers.xhp msgctxt "" @@ -2786,7 +2786,7 @@ "par_id398876\n" "help.text" msgid "The areas on a layer that do not contain objects are transparent." -msgstr "" +msgstr "Dei lagområda som ikkje inneheld objekt er gjennomsiktige." #: layers.xhp msgctxt "" @@ -2795,7 +2795,7 @@ "12\n" "help.text" msgid "$[officename] Draw provides three default layers:" -msgstr "" +msgstr "$[officename] Draw har tre standardlag:" #: layers.xhp msgctxt "" @@ -3094,7 +3094,7 @@ "5\n" "help.text" msgid "On the Drawing toolbar, open the Curves toolbar Icon and select the CurveIcon tool." -msgstr "" +msgstr "Opna verktøylinja Kurver Ikon på verktøylinja «Teikning» og vel verktøyet KurveIkon." #: line_draw.xhp msgctxt "" @@ -3103,7 +3103,7 @@ "6\n" "help.text" msgid "Click where you want the curve to start, and drag in the direction where you want the curve to go. The control line will indicate the direction." -msgstr "" +msgstr "Klikk der du vil at kurven skal byrja og dra i den retninga du vil at kurven skal gå. Kontrollinja vil visa retninga." #: line_draw.xhp msgctxt "" @@ -3220,7 +3220,7 @@ "tit\n" "help.text" msgid "Editing Curves" -msgstr "" +msgstr "Redigera kurver" #: line_edit.xhp msgctxt "" @@ -3228,7 +3228,7 @@ "bm_id3150441\n" "help.text" msgid "curves; editingediting; curvessplitting;curvesclosing;shapesdeleting;pointsconverting;pointspoints;adding/converting/deleting" -msgstr "" +msgstr "kurver; redigeraredigera; kurverdele;kurverlukke;figurarsletta;punktkonvertere;punktpunkt;leggja til/gjera om /sletta" #: line_edit.xhp msgctxt "" @@ -3610,7 +3610,7 @@ "13\n" "help.text" msgid "Applying a Slide Design to a Slide Master" -msgstr "" +msgstr "Bruka eit lysbiletoppsett på ei hovudutforming" #: masterpage.xhp msgctxt "" @@ -3619,7 +3619,7 @@ "14\n" "help.text" msgid "Every slide in a presentation has exactly one slide master, also known as master page. A slide master determines the text formatting style for the title and outline and the background design for all slides that use this slide master." -msgstr "" +msgstr "Alle lysbilete i ein presentasjon har nøyaktig eitt tittellysbilete (hovudutforming). Denne hovudutforminga bestemmer tekststilen for overskrifta og disposisjonen og bakgrunnsoppsettet for alle lysbilete som brukar denne hovudutforminga." #: masterpage.xhp msgctxt "" @@ -3628,7 +3628,7 @@ "25\n" "help.text" msgid "To apply a new slide master" -msgstr "" +msgstr "Bruka ei ny hovudutforming" #: masterpage.xhp msgctxt "" @@ -3637,7 +3637,7 @@ "19\n" "help.text" msgid "Select Format - Slide Design." -msgstr "" +msgstr "Vel Format → Lysbiletutforming." #: masterpage.xhp msgctxt "" @@ -3646,7 +3646,7 @@ "20\n" "help.text" msgid "Click Load." -msgstr "Trykk på Start." +msgstr "Trykk på Last inn." #: masterpage.xhp msgctxt "" @@ -3655,7 +3655,7 @@ "21\n" "help.text" msgid "Under Categories, select a slide design category." -msgstr "" +msgstr "Vel ein kategori for lysbiletoppsettet under Kategoriar." #: masterpage.xhp msgctxt "" @@ -3664,7 +3664,7 @@ "26\n" "help.text" msgid "Under Templates, select a template with the design that you want to apply. To preview the template, click More, and then select the Preview box." -msgstr "" +msgstr "Vel ein mal med det oppsettet du vil bruke i Malar. Klikk på feltet Førehandsvising for å sjå korleis malen ser ut.." #: masterpage.xhp msgctxt "" @@ -3691,7 +3691,7 @@ "18\n" "help.text" msgid "To apply the slide design to all of the slides in your presentation, select the Exchange background page check box, and then click OK." -msgstr "" +msgstr "For å bruka lysbiletutforminga på alle lysbileta i presentasjonen, kryss av i feltet Byt bakgrunnsside og trykk på OK." #: masterpage.xhp msgctxt "" @@ -3700,7 +3700,7 @@ "29\n" "help.text" msgid "To apply the slide design to the current slide only, clear the Exchange background page check box, and then click OK." -msgstr "" +msgstr "For å bruka lysbildeoppsettet berre på det gjeldande lysbiletet, fjern krysset i Byt bakgrunnsside-feltet og trykk på OK." #: masterpage.xhp msgctxt "" @@ -3717,7 +3717,7 @@ "tit\n" "help.text" msgid "Moving Objects" -msgstr "" +msgstr "Flytta objekt" #: move_object.xhp msgctxt "" @@ -3734,7 +3734,7 @@ "5\n" "help.text" msgid "Moving Objects" -msgstr "" +msgstr "Flytta objekt" #: move_object.xhp msgctxt "" @@ -3743,7 +3743,7 @@ "6\n" "help.text" msgid "You can move selected objects in your slide by dragging them, using the arrow keys, or by copying the objects and pasting them in another location." -msgstr "" +msgstr "Du kan flytta dei merkte objekta i lysbiletet ved å dra dei, bruka piltastane eller ved å kopiera objekta og lima dei inn på ein annan stad." #: move_object.xhp msgctxt "" @@ -3752,7 +3752,7 @@ "7\n" "help.text" msgid "The arrow keys let you move objects more precisely than with the mouse." -msgstr "" +msgstr "Du kan flytta objekta meir nøyaktig med piltastane enn med musa." #: orgchart.xhp msgctxt "" @@ -3867,7 +3867,7 @@ "48\n" "help.text" msgid "To add text to the shapes on your flowchart" -msgstr "" +msgstr "Slik legg du til tekst til figuren på flytdiagrammet" #: orgchart.xhp msgctxt "" @@ -3885,7 +3885,7 @@ "50\n" "help.text" msgid "Double-click the shape, and type or paste your text." -msgstr "" +msgstr "Dobbeltklikk på figuren og skriv eller lim inn teksten." #: orgchart.xhp msgctxt "" @@ -3894,7 +3894,7 @@ "51\n" "help.text" msgid "Click the Text icon on the Drawing bar, and drag a text object over the shape. Type or paste your text into the text object." -msgstr "" +msgstr "Trykk på ikonet TekstTeikning-linja og dra eit tekstobjekt over figuren. Skriv eller lim inn din eigen tekst i tekstobjektet." #: orgchart.xhp msgctxt "" @@ -3903,7 +3903,7 @@ "52\n" "help.text" msgid "To add a color fill to a shape:" -msgstr "" +msgstr "Slik legg du til ein fyllfarge i ein figur:" #: orgchart.xhp msgctxt "" @@ -3912,7 +3912,7 @@ "53\n" "help.text" msgid "Select the shape, and choose Format - Area." -msgstr "" +msgstr "Merk figuren og vel Format → Område." #: orgchart.xhp msgctxt "" @@ -3921,7 +3921,7 @@ "54\n" "help.text" msgid "Select Color, and then click a color in the list." -msgstr "" +msgstr "Vel Farge og trykk på ein farge i lista." #: orgchart.xhp msgctxt "" @@ -3930,7 +3930,7 @@ "56\n" "help.text" msgid "To add some hot spots that call other slides:" -msgstr "" +msgstr "Slik legg du til lenkjeområde som opnar andre lysbilete:" #: orgchart.xhp msgctxt "" @@ -3939,7 +3939,7 @@ "57\n" "help.text" msgid "Assign interactions to some objects on your slide." -msgstr "" +msgstr "Tildel samhandlingar for nokre objekt i lysbiletet." #: orgchart.xhp msgctxt "" @@ -3947,7 +3947,7 @@ "par_idN10898\n" "help.text" msgid "Select the object, then choose Slide Show - Interaction." -msgstr "" +msgstr "Merk objektet og vel deretter Lysbiletframvising → Samhandling." #: orgchart.xhp msgctxt "" @@ -3955,7 +3955,7 @@ "par_idN108A0\n" "help.text" msgid "Select an interaction in the dialog. For example, select to go to the next slide when the user clicks the object." -msgstr "" +msgstr "Vel ei samhandling i dialogvindauget. For eksempel, vel å gå til det neste lysbiletet når brukaren trykkjer på objektet." #: orgchart.xhp msgctxt "" @@ -3981,7 +3981,7 @@ "tit\n" "help.text" msgid "Copying Slides From Other Presentations" -msgstr "" +msgstr "Kopiera lysbilete frå andre presentasjonar" #: page_copy.xhp msgctxt "" @@ -3998,7 +3998,7 @@ "1\n" "help.text" msgid "Copying Slides From Other Presentations" -msgstr "" +msgstr "Kopiera lysbilete frå andre presentasjonar" #: page_copy.xhp msgctxt "" @@ -4132,7 +4132,7 @@ "tit\n" "help.text" msgid "Loading Color, Gradient, and Hatching Lists" -msgstr "" +msgstr "Lasting av farge-, fargeovergang- og skraveringslister" #: palette_files.xhp msgctxt "" @@ -4140,7 +4140,7 @@ "bm_id3154510\n" "help.text" msgid "colors;loading listsgradients;loading listshatching;loading listsloading;colors/gradients/hatchings" -msgstr "" +msgstr "fargar;lasta inn listerfargeovergangar;lasta inn listerskraveringar;lasta inn listerlasta inn;fargar/fargeoverganar/skraveringar" #: palette_files.xhp msgctxt "" @@ -4149,7 +4149,7 @@ "48\n" "help.text" msgid "Loading Color, Gradient, and Hatching Lists" -msgstr "" +msgstr "Lasta inn fargelister, fargeovergangslister og skraveringslister" #: palette_files.xhp msgctxt "" @@ -4158,7 +4158,7 @@ "73\n" "help.text" msgid "You can use lists to organize colors, gradients, or hatching patterns. $[officename] provides several lists that you can load and use in your document. If you want, you can add or delete elements from a list, or even create custom lists." -msgstr "" +msgstr "Du kan bruka lister for å organisera fargar, fargeovergangar og skraveringsmønster. $[officename] har fleire lister som du kan henta inn og bruka i dokumentet ditt. Viss du vil, kan du leggja til eller sletta element frå ei liste eller til og med laga dine eigne lister." #: palette_files.xhp msgctxt "" @@ -4167,7 +4167,7 @@ "74\n" "help.text" msgid "To load a color list:" -msgstr "" +msgstr "Slik opnar du ei fargeliste:" #: palette_files.xhp msgctxt "" @@ -4176,7 +4176,7 @@ "47\n" "help.text" msgid "Choose Format - Area, and then click the Colors tab." -msgstr "" +msgstr "Vel Format → Område og trykk på fana Fargar." #: palette_files.xhp msgctxt "" @@ -4185,7 +4185,7 @@ "75\n" "help.text" msgid "Click the Load Color List button." -msgstr "" +msgstr "Trykk på knappen Last inn fargeliste." #: palette_files.xhp msgctxt "" @@ -4194,7 +4194,7 @@ "76\n" "help.text" msgid "Locate the color list that you want to load, and then click Open. A color list file has the format [filename].soc." -msgstr "" +msgstr "Finn fargelista som du vil opna og trykk på Opna. Ei fargelistefil har formatet [filnamn].soc." #: palette_files.xhp msgctxt "" @@ -4203,7 +4203,7 @@ "77\n" "help.text" msgid "To save a color list, click the Save Color List button, enter a filename, and then click Save." -msgstr "" +msgstr "Trykk på knappen Lagra fargeliste og skriv inn eit namn på lista og trykk på Lagre for å lagra fargelista." #: palette_files.xhp msgctxt "" @@ -4220,7 +4220,7 @@ "71\n" "help.text" msgid "The CMYK list is optimized for print colors. The colors in the Web and the HTML lists are optimized for displays using a resolution of 256 colors. The palettes libreoffice.soc and tango.soc contain the official LibreOffice and Tango colors respectively." -msgstr "" +msgstr "CMYK-lista er optimert for fargar i utskrift. Fargane i Web-lista og HTML-lista er optimert for bruk på skjermar med 256 fargar. Palettane libreoffice.soc og tango.soc inneheld dei offisielle fargane for LibreOffice og Tango." #: palette_files.xhp msgctxt "" @@ -4229,7 +4229,7 @@ "78\n" "help.text" msgid "To load a gradient list:" -msgstr "" +msgstr "Slik opnar du ei fargeovergangsliste:" #: palette_files.xhp msgctxt "" @@ -4238,7 +4238,7 @@ "79\n" "help.text" msgid "Choose Format - Area, and then click the Gradients tab." -msgstr "" +msgstr "Vel Format → Flate og trykk på fanen Fargeovergangar." #: palette_files.xhp msgctxt "" @@ -4683,7 +4683,7 @@ "bm_id3145253\n" "help.text" msgid "presentations;rehearse timingsrehearse timingstimings; rehearse timingsautomatic slide changes;rehearse timingsrecording;display times for slides" -msgstr "" +msgstr "presentasjonar;mål tidsbrukmål tidsbruktidsbruk; mål tidsbrukautomatisk lysbiletskift;mål tidsbrukopptak;vis tidsbruk for lysbilete" #: rehearse_timings.xhp msgctxt "" @@ -4692,7 +4692,7 @@ "17\n" "help.text" msgid "Rehearse Timings of Slide Changes" -msgstr "" +msgstr "Øv på tidsbruk og lysbiletskift" #: rehearse_timings.xhp msgctxt "" @@ -4701,7 +4701,7 @@ "1\n" "help.text" msgid "$[officename] assists you in defining the right rehearse timings for automatic slide changes." -msgstr "" +msgstr "$[officename] hjelper deg med å finna dei rette tidspunkta for automatisk lysbiletskift." #: rehearse_timings.xhp msgctxt "" @@ -4710,7 +4710,7 @@ "16\n" "help.text" msgid "Prepare the slides, start the show using a special icon, tell your imaginary audience what you want to tell for the first slide, then advance to the next slide and so on. $[officename] records the display time for each slide, so the next time you play the show with automatic slide changes, the timing will be as recorded." -msgstr "" +msgstr "Gjer klar lysbileta, start visinga ved å bruka eit spesielt ikon, fortel det imaginære publikumet det du vil fortelja medan du viser det første lysbilde, gå så vidare og gjer det same med det neste lysbildet og så vidare. $[officename] registrerer skjermtida for kvart lysbilete, så neste gong du spelar av presentasjonen med automatiske lysbiletskift, vert kvart lysbilete vist så lenge som du bestemte." #: rehearse_timings.xhp msgctxt "" @@ -4719,7 +4719,7 @@ "2\n" "help.text" msgid "To record a show with rehearse timings" -msgstr "" +msgstr "Slik spelar du inn ein presentasjon med tidtaking" #: rehearse_timings.xhp msgctxt "" @@ -4728,7 +4728,7 @@ "4\n" "help.text" msgid "Open a presentation, and switch to Slide Sorter View." -msgstr "" +msgstr "Opna ein presentasjon og skift til visinga Lysbiletsortering." #: rehearse_timings.xhp msgctxt "" @@ -4737,7 +4737,7 @@ "6\n" "help.text" msgid "Start the show with the Rehearse Timings icon Icon in the Slide View bar. You see the first slide, and a timer in the bottom corner." -msgstr "" +msgstr "Start visinga ved å klikka på ikonet Øv på tidsbruk Ikon på linja for lysbiletvisinga. Du ser det første lysbiletet og ei stoppeklokke i det nedste hjørnet." #: rehearse_timings.xhp msgctxt "" @@ -4746,7 +4746,7 @@ "8\n" "help.text" msgid "When it's time to advance to the next slide, click the timer. To keep the default setting for this slide, click the slide, but not the timer. Continue for all slides in your presentation." -msgstr "" +msgstr "Når det er på tide å gå til det neste lysbiletet, trykk på stoppeklokka. For å behalda standardinnstillingane for dette lysbiletet, kan du trykkja på lysbiletet, men ikkje på stoppeklokka. Hald fram slik med alle lysbileta i presentasjonen." #: rehearse_timings.xhp msgctxt "" @@ -4755,7 +4755,7 @@ "10\n" "help.text" msgid "$[officename] has recorded the display time for each slide. Save your presentation." -msgstr "" +msgstr "$[officename] har registrert visingstida for kvart lysbilete. Lagra presentasjonen." #: rehearse_timings.xhp msgctxt "" @@ -4764,7 +4764,7 @@ "12\n" "help.text" msgid "If you want the whole presentation to auto-repeat, open the menu Slide Show - Slide Show Settings. Click Auto and OK." -msgstr "" +msgstr "Viss du vil at heile presentasjonen automatisk skal køyrast på nytt, opna menyen Lysbiletframvising → Innstillingar for lysbiletframvising. Trykk på Auto og OK." #: rehearse_timings.xhp msgctxt "" @@ -4781,7 +4781,7 @@ "tit\n" "help.text" msgid "Selecting Underlying Objects" -msgstr "" +msgstr "Merking av underliggjande objekt" #: select_object.xhp msgctxt "" @@ -4798,7 +4798,7 @@ "7\n" "help.text" msgid "Selecting Underlying Objects" -msgstr "" +msgstr "Merking av underliggjande objekt" #: select_object.xhp msgctxt "" @@ -4807,7 +4807,7 @@ "9\n" "help.text" msgid "To select an object that is covered by other objects, hold down OptionAlt and click through the objects until you reach the underlying object. To cycle through the objects in reverse order, hold down OptionAlt+Shift when you click." -msgstr "" +msgstr "For å velja eit objekt som er dekka av andre objekt, kan du halda nede OptionAlt og trykkja gjennom objekta til du når det underliggjande objektet. For å gå gjennom objekta i omvendt rekkjefølgje, kan du halda nede OptionAlt + Shift når du trykkjer." #: select_object.xhp msgctxt "" @@ -4816,7 +4816,7 @@ "10\n" "help.text" msgid "To select an object that is covered by another object using the keyboard, press Tab to cycle through the objects on the slide. To cycle through the objects in reverse order, press Shift+Tab." -msgstr "" +msgstr "Viss du vil merka eit objekt som er dekka av eit anna objekt ved hjelp av tastaturet, trykk Tabulator-tasten for å gå gjennom objekta på lysbiletet. Hald nede Shift-tasten medan du bruker Tabulator-tasten for å gå gjennom objekta i omvendt rekkjefølgje." #: show.xhp msgctxt "" @@ -4824,7 +4824,7 @@ "tit\n" "help.text" msgid "Showing a Slide Show" -msgstr "" +msgstr "Visa ei lysbiletframvising" #: show.xhp msgctxt "" @@ -4832,7 +4832,7 @@ "bm_id5592516\n" "help.text" msgid "running slide showsshowing;slide showsslide shows; startingpresentations; startingstarting; slide showsautomatic slide showsslide transitions;automaticautomatic slide transition" -msgstr "" +msgstr "køyra lysbiletframvisingvisa;lysbiletframvisinglysbiletframvisingar; startapresentasjonar; startastarta; lysbiletframvisingautomatisk lysbiletframvisninglysbiletovergang;automatiskautomatisk lysbiletovergang" #: show.xhp msgctxt "" @@ -4840,7 +4840,7 @@ "hd_id4901272\n" "help.text" msgid "Showing a Slide Show" -msgstr "" +msgstr "Visa ei lysbiletframvising" #: show.xhp msgctxt "" @@ -4848,7 +4848,7 @@ "par_id9636829\n" "help.text" msgid "Different ways exist to start a slide show. Once a slide show is running, you can take control pressing keys or clicking the mouse buttons." -msgstr "" +msgstr "Det finst fleire måtar å starta ei lysbiletframvising på. Når ei lysbiletframvising køyrer, kan du styra presentasjonen med tastatur eller mus." #: show.xhp msgctxt "" @@ -4856,7 +4856,7 @@ "par_id7076937\n" "help.text" msgid "By default, a slide show always starts with the first slide. You advance manually through slides up to the last slide. You can change these settings." -msgstr "" +msgstr "Som standard byrjar ein presentasjon alltid med det første lysbiletet. Du flytter manuelt gjennom lysbileta til siste lysbiletet er nådd. Du kan endra desse innstillingane." #: show.xhp msgctxt "" @@ -4864,7 +4864,7 @@ "hd_id9954527\n" "help.text" msgid "Running a Slide Show" -msgstr "" +msgstr "Køyra ei lysbiletframvising" #: show.xhp msgctxt "" @@ -4872,7 +4872,7 @@ "par_id6860255\n" "help.text" msgid "Choose Slide Show - Slide Show to run the show." -msgstr "" +msgstr "Vel Lysbiletframvising → Lysbiletframvising for å køyra presentasjonen." #: show.xhp msgctxt "" @@ -4880,7 +4880,7 @@ "par_id4199957\n" "help.text" msgid "If you want all shows to start from the current slide instead of the first slide, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress - General and click Always with current page." -msgstr "" +msgstr "Viss du vil at alle lysbiletframvisingane skal byrja med det gjeldande lysbiletet, vel %PRODUCTNAME → InnstillingarVerktøy → Innstillingar → %PRODUCTNAME Impress → Generelt og trykk på Alltid med gjeldande lysbilete." #: show.xhp msgctxt "" @@ -4888,7 +4888,7 @@ "par_id3209936\n" "help.text" msgid "Click to advance to the next effect or to the next slide." -msgstr "" +msgstr "Klikk for å gå fram til den neste effekten eller til det neste lysbiletet." #: show.xhp msgctxt "" @@ -4896,7 +4896,7 @@ "par_id8702658\n" "help.text" msgid "Press Esc to abort the show before the end." -msgstr "" +msgstr "Trykk Esc for å avbryta presentasjonen før han er ferdig." #: show.xhp msgctxt "" @@ -4904,7 +4904,7 @@ "par_id3741264\n" "help.text" msgid "Many more keys are available to control a slide show. You can also right-click to open a context menu with useful commands." -msgstr "" +msgstr "Mange fleire tastar er tilgjengelege for å styra ei lysbiletframvising. Du kan også høgre-klikka for å opna ein meny med nyttige kommandoar." #: show.xhp msgctxt "" @@ -4912,7 +4912,7 @@ "hd_id5694143\n" "help.text" msgid "Showing an automatic slide show (kiosk mode)" -msgstr "" +msgstr "Visa ei lysbiletframvising automatisk (kioskmodus)" #: show.xhp msgctxt "" @@ -4920,7 +4920,7 @@ "par_id5829645\n" "help.text" msgid "For an automatic change to the next slide, you must assign a slide transition to each slide." -msgstr "" +msgstr "For å byta automatisk til det neste lysbiletet, må du velja ein lysbiletovergang for kvart lysbilete." #: show.xhp msgctxt "" @@ -4928,7 +4928,7 @@ "par_id2361522\n" "help.text" msgid "On the Task Pane, click Slide Transition to open that tab page." -msgstr "" +msgstr "Klikk på Lysbiletovergang på oppgåvepanelet for å opna denne fanen." #: show.xhp msgctxt "" @@ -4936,7 +4936,7 @@ "par_id9168980\n" "help.text" msgid "In the Advance slide area, click Automatically after, and select a time duration." -msgstr "" +msgstr "Trykk på Gå til neste lysbilete i området Lysbiletovergang og vel ei tid." #: show.xhp msgctxt "" @@ -4944,7 +4944,7 @@ "par_id9766533\n" "help.text" msgid "Click Apply to All Slides." -msgstr "" +msgstr "Trykk Bruk på alle lysbilete." #: show.xhp msgctxt "" @@ -4952,7 +4952,7 @@ "par_id6081728\n" "help.text" msgid "You can assign a different time for every slide to advance to the next slide. The rehearse timings feature can assist you to get the timing right." -msgstr "" +msgstr "Du kan bruka ulike tider for når kvart lysbilete skal byta til det neste lysbilete. Funksjonen Øv på tidsbruk kan hjelpa deg med å få høveleg tid mellom bileta." #: show.xhp msgctxt "" @@ -4960,7 +4960,7 @@ "par_id9219641\n" "help.text" msgid "To advance to the first slide, after all slides have been shown, you must set the slide show to repeat automatically." -msgstr "" +msgstr "For å gå fram til det første lysbiletet etter at alle lysbileta er viste, må du setja lysbiletframvisinga til automatisk å visast om igjen." #: show.xhp msgctxt "" @@ -4968,7 +4968,7 @@ "par_id3174230\n" "help.text" msgid "Choose Slide Show - Slide Show Settings." -msgstr "" +msgstr "Vel Lysbiletframvising → Innstillingar for lysbiletframvising" #: show.xhp msgctxt "" @@ -4976,7 +4976,7 @@ "par_id1336405\n" "help.text" msgid "In the Type area, click Auto and select a pause time between shows." -msgstr "" +msgstr "Trykk på Auto i typeområdet og vel kor lang pausen skal vera mellom visingane." #: show.xhp msgctxt "" @@ -4984,7 +4984,7 @@ "par_id4959257\n" "help.text" msgid "When you create a new slide show using the Presentation Wizard, you can select the duration of slides and of the pause, on the third wizard page." -msgstr "" +msgstr "Når du lagar ein ny presentasjon ved hjelp av Presentasjonsvegvisaren kan du på den tredje sida velja kor lenge lysbiletet skal visast og kor lang pausen skal vera." #: show.xhp msgctxt "" @@ -4992,7 +4992,7 @@ "hd_id1906491\n" "help.text" msgid "Running a slide show from a file" -msgstr "" +msgstr "Køyra ei lysbiletframvising frå ei fil" #: show.xhp msgctxt "" @@ -5000,7 +5000,7 @@ "par_id4799340\n" "help.text" msgid "You can start %PRODUCTNAME from a command prompt, followed by the parameter -show and an Impress filename. For example, to start the file filename.odp from the command prompt, enter the following command:" -msgstr "" +msgstr "Du kan starta %PRODUCTNAME frå ei kommandolinje og bruka parameteren -show og eit Impress-filnamn. Viss du for eksempel vil starta fila filnamn.odp frå ei kommandolinje, skriv du denne kommandoen:" #: show.xhp msgctxt "" @@ -5008,7 +5008,7 @@ "par_id1502121\n" "help.text" msgid "soffice -show filename.odp" -msgstr "" +msgstr "soffice -show filnamn.odp" #: show.xhp msgctxt "" @@ -5016,7 +5016,7 @@ "par_id8266853\n" "help.text" msgid "This assumes that soffice is in the program path of your system, and that filename.odp is located in the current directory." -msgstr "" +msgstr "Føresetnaden er at office er i filstien til datamaskinen og at filnamn.odt finst i den gjeldande mappa." #: table_insert.xhp msgctxt "" @@ -5024,7 +5024,7 @@ "tit\n" "help.text" msgid "Including Spreadsheets in Slides" -msgstr "" +msgstr "Setja inn rekneark i lysbilete" #: table_insert.xhp msgctxt "" @@ -5041,7 +5041,7 @@ "1\n" "help.text" msgid "Including Spreadsheets in Slides" -msgstr "" +msgstr "Setja inn rekneark i lysbilete" #: table_insert.xhp msgctxt "" @@ -5049,7 +5049,7 @@ "par_id4231086\n" "help.text" msgid "You can apply different methods to insert spreadsheet cells into your Impress slides or Draw pages:" -msgstr "" +msgstr "Du kan bruka ulike metodar for å setja inn reknearkceller i eit Impress-lysbilete eller i Draw-sider:" #: table_insert.xhp msgctxt "" @@ -5057,7 +5057,7 @@ "par_id9209875\n" "help.text" msgid "Insert a native table - you enter the data into the cells and apply fancy formatting using the Table Design section on the Tasks pane." -msgstr "" +msgstr "Set inn ein innebygd tabell – du skriv inn data i cellene og brukar smart formatering ved hjelp av bolken «Tabelloppsett» i oppgåvepanelet." #: table_insert.xhp msgctxt "" @@ -5065,7 +5065,7 @@ "par_id3044526\n" "help.text" msgid "Insert a new table as an OLE object or insert an existing file as an OLE object - you can specify the link to a file to be a live link to the latest data saved in a spreadsheet file." -msgstr "" +msgstr "Set inn ein ny tabell som eit OLE-objekt eller set inn ei eksisterande fil som eit OLE-objekt – du kan spesifisera fillenkja til å vera ei aktiv lenkje til dei dataane som sist vart lagra i ei reknearkfil." #: table_insert.xhp msgctxt "" @@ -5073,7 +5073,7 @@ "par_id137333\n" "help.text" msgid "Enter the number of columns for the new table." -msgstr "" +msgstr "Skriv inn kor mange kolonnar det skal vera i den nye tabellen." #: table_insert.xhp msgctxt "" @@ -5081,7 +5081,7 @@ "par_id8626667\n" "help.text" msgid "Enter the number of rows for the new table." -msgstr "" +msgstr "Skriv inn kor mange rader det skal vera i den nye tabellen." #: table_insert.xhp msgctxt "" @@ -5089,7 +5089,7 @@ "par_id0916200803551581\n" "help.text" msgid "Define the vertical alignment of selected or all cell contents. Split or merge cells." -msgstr "" +msgstr "Definerer den loddrette justeringa av innhaldet i dei merkte cellene eller alle cellene. Del eller flett celler." #: table_insert.xhp msgctxt "" @@ -5097,7 +5097,7 @@ "par_id0916200803551553\n" "help.text" msgid "All selected cells are merged into one cell." -msgstr "" +msgstr "Alle merkte celler vert fletta inn i éi celle." #: table_insert.xhp msgctxt "" @@ -5105,7 +5105,7 @@ "par_id0916200803551535\n" "help.text" msgid "The selected cell is split into several cells. You see the Split Cells dialog box." -msgstr "" +msgstr "Den merkte cella er delt opp i fleire celler. Dialogvindauget «Del celler» er opna." #: table_insert.xhp msgctxt "" @@ -5113,7 +5113,7 @@ "par_id0916200803551651\n" "help.text" msgid "The cell contents are align at the top of the cells." -msgstr "" +msgstr "Celleinnhaldet er justert øvst i cellene." #: table_insert.xhp msgctxt "" @@ -5121,7 +5121,7 @@ "par_id0916200803551697\n" "help.text" msgid "The cell contents are aligned vertically centered in the cells." -msgstr "" +msgstr "Celleinnhaldet er justert loddrett sentrert i cellene." #: table_insert.xhp msgctxt "" @@ -5129,7 +5129,7 @@ "par_id0916200803551632\n" "help.text" msgid "The cell contents are aligned at the bottom of the cells." -msgstr "" +msgstr "Celleinnhaldet er justert nedst i cellene." #: table_insert.xhp msgctxt "" @@ -5145,7 +5145,7 @@ "par_id0916200803551734\n" "help.text" msgid "Choose commands for the selected or all rows." -msgstr "" +msgstr "Vel kommandoar for den merkte rada eller alle radene." #: table_insert.xhp msgctxt "" @@ -5153,7 +5153,7 @@ "par_id0916200804080035\n" "help.text" msgid "Distributes the height of the selected or all rows to the same size. The height of the table is not changed." -msgstr "" +msgstr "Fordeler høgda av dei merkte radene eller alle radene til same storleik. Høgda på tabellen vert ikkje endra." #: table_insert.xhp msgctxt "" @@ -5161,7 +5161,7 @@ "par_id0916200804080063\n" "help.text" msgid "If currently no cell is selected, all rows will be selected. If currently cells are selected, all rows containing the selected cells will be selected." -msgstr "" +msgstr "Viss ingen celler er merkte, vert alle radene merkte. Viss det er merkte celler, vert alle radene som inneheld dei merkte cellene merkte." #: table_insert.xhp msgctxt "" @@ -5169,7 +5169,7 @@ "par_id091620080408008\n" "help.text" msgid "If currently no cell is selected, a new row will be inserted at the bottom of the table. If currently cells are selected, as many new rows as the selection has will be inserted below the selection." -msgstr "" +msgstr "Viss det ikkje er merkte celler, vert det sett inn ei ny rad nedst i tabellen. Viss det er merkte celler, vert det sett inn like mange rader som dei som er merkte under det merkte området." #: table_insert.xhp msgctxt "" @@ -5177,7 +5177,7 @@ "par_id0916200804080050\n" "help.text" msgid "All rows of the current selection will be deleted." -msgstr "" +msgstr "Alle radene i det gjeldande utvalet vert sletta." #: table_insert.xhp msgctxt "" @@ -5185,7 +5185,7 @@ "par_id0916200804163012\n" "help.text" msgid "Choose commands for the selected or all columns." -msgstr "" +msgstr "Vel kommandoar for dei merkte kolonnane eller alle kolonnane." #: table_insert.xhp msgctxt "" @@ -5193,7 +5193,7 @@ "par_id0916200804163092\n" "help.text" msgid "Distributes the width of the selected or all columns to the same size. The width of the table is not changed." -msgstr "" +msgstr "Fordeler breidda til den merkte kolonnen eller alle kolonnane til same storleik. Breidda på tabellen vert ikkje endra." #: table_insert.xhp msgctxt "" @@ -5201,7 +5201,7 @@ "par_id0916200804163046\n" "help.text" msgid "If currently no cell is selected, all columns will be selected. If currently cells are selected, all columns containing the selected cells will be selected." -msgstr "" +msgstr "Viss det ikkje er merkte celler, vert alle kolonnane merkte. Viss det er merkte celler, vert alle kolonnane som inneheld dei merkte cellene merkte." #: table_insert.xhp msgctxt "" @@ -5209,7 +5209,7 @@ "par_id0916200804163128\n" "help.text" msgid "If currently no cell is selected, a new column will be inserted at the right border of the table. If currently cells are selected, as many new columns as the selection has will be inserted right of the selection." -msgstr "" +msgstr "Viss det ikkje er merkte celler, vert det sett inn ein ny kolonne til høgre i tabellen. Viss det er merkte celler, vert det sett inn like mange kolonnar som det er merkte kolonnar til høgre for dei merkte kolonnane." #: table_insert.xhp msgctxt "" @@ -5217,7 +5217,7 @@ "par_id0916200804163127\n" "help.text" msgid "All columns of the current selection will be deleted." -msgstr "" +msgstr "Alle kolonnane i den gjeldande merkinga vert slettet." #: table_insert.xhp msgctxt "" @@ -5225,7 +5225,7 @@ "par_id0916200804163151\n" "help.text" msgid "Align the table within the page or slide." -msgstr "" +msgstr "Juster tabellen innføre sida eller lysbiletet." #: table_insert.xhp msgctxt "" @@ -5233,7 +5233,7 @@ "hd_id8594317\n" "help.text" msgid "Inserting a native table" -msgstr "" +msgstr "Setja inn ein innebygd tabell" #: table_insert.xhp msgctxt "" @@ -5241,7 +5241,7 @@ "par_id7184972\n" "help.text" msgid "Go to the Impress slide or Draw page where you want to insert the table." -msgstr "" +msgstr "Gå til det Impress-lysbiletet eller den Draw-sida som du vil setja tabellen inn i." #: table_insert.xhp msgctxt "" @@ -5249,7 +5249,7 @@ "par_id248115\n" "help.text" msgid "Choose Insert - Table or use the Table icon on the Standard toolbar to insert a table." -msgstr "" +msgstr "Vel Set inn → Tabell eller bruk tabellsymbolet på standardverktøylinja for å setja inn ein tabell." #: table_insert.xhp msgctxt "" @@ -5257,7 +5257,7 @@ "par_id2748496\n" "help.text" msgid "Double-click the table and enter or paste the data into the cells." -msgstr "" +msgstr "Dobbeltklikk på tabellen og skriv inn eller lim inn data i cellene." #: table_insert.xhp msgctxt "" @@ -5265,7 +5265,7 @@ "par_id8270210\n" "help.text" msgid "Select some cell contents and right-click to open the context menu. Choose commands to change the cell's contents, like font size and line spacing." -msgstr "" +msgstr "Merk ein del av celleinnhaldet og høgreklikk for å opna sprettoppmenyen. Vel kommandoar for å endra innhald i cella, som for eksempel teiknstorleik og linjeavstand." #: table_insert.xhp msgctxt "" @@ -5273,7 +5273,7 @@ "par_id6820276\n" "help.text" msgid "Right-click the table border to open the table's context menu. Use the table's context menu to enter a name and description for the table, or to distribute the rows or columns equally, among other commands." -msgstr "" +msgstr "Høgreklikk på tabellkanten for å opna sprettoppmenyen for tabellen. Bruk denne menyen for mellom anna å skriva inn eit namn og ein omtale for tabellen, eller for å fordela radene og kolonnane jamt i tabellen." #: table_insert.xhp msgctxt "" @@ -5281,7 +5281,7 @@ "par_id0916200803551725\n" "help.text" msgid "Select some cells and right-click to open a context menu, where you can insert or delete rows and columns, among other commands." -msgstr "" +msgstr "Merk nokre celler og høgreklikk for å opna ein sprettoppmeny der du mellom anna kan setja inn eller sletta rader og kolonnar." #: table_insert.xhp msgctxt "" @@ -5289,7 +5289,7 @@ "par_id091620080355171\n" "help.text" msgid "To select a rectangular area of cells, point to a cell in one corner of the rectangle, hold down the mouse button, and drag the mouse to the opposite corner of the rectangle, then release the mouse button." -msgstr "" +msgstr "For å merka eit rektangulært celleområde peikar du på ei celle i eit hjørne av rektanglet og held museknappen nede medan du drar musa til det motsette hjørnet av rektanglet og sleppa museknappen der." #: table_insert.xhp msgctxt "" @@ -5297,7 +5297,7 @@ "par_id0916200803551880\n" "help.text" msgid "To select one cell, point to that cell, hold down the mouse button, and drag the mouse to the next cell and back, then release the mouse button." -msgstr "" +msgstr "For å merkja éi celle, peik på cella, hald nede museknappen og dra musa til den neste cella og tilbake igjen og deretter sleppa museknappen." #: table_insert.xhp msgctxt "" @@ -5306,7 +5306,7 @@ "2\n" "help.text" msgid "Inserting a new spreadsheet as an OLE object" -msgstr "" +msgstr "Setja inn eit nytt rekneark som eit OLE-objekt" #: table_insert.xhp msgctxt "" @@ -5315,7 +5315,7 @@ "7\n" "help.text" msgid "You can add a blank $[officename] Calc spreadsheet to a slide as an OLE object." -msgstr "" +msgstr "Du kan leggja til eit tomt $[officename] Calc-rekneark til eit lysbilete som eit OLE-objekt." #: table_insert.xhp msgctxt "" @@ -5324,7 +5324,7 @@ "3\n" "help.text" msgid "Go to the slide where you want to insert the spreadsheet." -msgstr "" +msgstr "Gå til lysbiletet du vil setja inn reknearket i." #: table_insert.xhp msgctxt "" @@ -5333,7 +5333,7 @@ "18\n" "help.text" msgid "Choose Insert - OLE- Object. Click Create new and select the %PRODUCTNAME Spreadsheet. Click OK. Click in the spreadsheet to enter your data." -msgstr "" +msgstr "Vel Set inn → Objekt → OLE-objekt. Sjå etter at det er merkt av for Lag ny og vel @PRODUCTNAME-rekneark. Trykk på OK. Trykk i reknearket for å skriva inn data i reknearket." #: table_insert.xhp msgctxt "" @@ -5341,7 +5341,7 @@ "par_id2466505\n" "help.text" msgid "Click outside the spreadsheet to view the slide." -msgstr "" +msgstr "Trykk utføre reknearket for å visa lysbiletet." #: table_insert.xhp msgctxt "" @@ -5350,7 +5350,7 @@ "9\n" "help.text" msgid "To resize the spreadsheet without resizing the cells, double-click the spreadsheet, and then drag a corner handle. To resize the cells of the spreadsheet, click the spreadsheet, and then drag a corner handle." -msgstr "" +msgstr "Du kan endra storleiken på reknearket utan å endra storleiken på cellene ved å dobbeltklikka på reknearket og så dra i eit hjørnehandtak. Du kan endra storleiken på cellene i reknearket ved å klikka på reknearket og så dra i eit hjørnehandtak." #: table_insert.xhp msgctxt "" @@ -5359,7 +5359,7 @@ "11\n" "help.text" msgid "Inserting a spreadsheet from a file" -msgstr "" +msgstr "Setja inn eit rekneark frå ei fil" #: table_insert.xhp msgctxt "" @@ -5368,7 +5368,7 @@ "19\n" "help.text" msgid "When you insert an existing spreadsheet into your slide, changes that are made to the original spreadsheet file are not updated on your slide. You can, however, make changes to the spreadsheet in your slide." -msgstr "" +msgstr "Når du set inn eit eksisterande rekneark i lysbiletet, vil endringar som vert gjort på den opphavlege reknearksfila ikkje verta oppdaterte på lysbiletet. Du kan derimot gjera endringar i reknearket på lysbiletet." #: table_insert.xhp msgctxt "" @@ -5377,7 +5377,7 @@ "12\n" "help.text" msgid "Go to the slide where you want to insert the spreadsheet." -msgstr "" +msgstr "Gå til det lysbildet som du vil setja reknearket inn i." #: table_insert.xhp msgctxt "" @@ -5386,7 +5386,7 @@ "13\n" "help.text" msgid "Choose Insert - Object - OLE Object." -msgstr "" +msgstr "Vel Set inn → Objekt → OLE-objekt" #: table_insert.xhp msgctxt "" @@ -5395,7 +5395,7 @@ "14\n" "help.text" msgid "Select Create from file, and click Search." -msgstr "" +msgstr "Kryss av for Lag frå fil og trykk på Søk." #: table_insert.xhp msgctxt "" @@ -5404,7 +5404,7 @@ "20\n" "help.text" msgid "Locate the file you want to insert, and then click OK." -msgstr "" +msgstr "Finn den fila som du vil setja inn og trykk på OK." #: table_insert.xhp msgctxt "" @@ -5412,7 +5412,7 @@ "par_id1616565\n" "help.text" msgid "Enable the Link to file checkbox to insert the file as a live link." -msgstr "" +msgstr "Kryss av for Lenke til fila for å setja inn fila som ei aktiv lenkje." #: table_insert.xhp msgctxt "" @@ -5421,7 +5421,7 @@ "21\n" "help.text" msgid "The entire spreadsheet is inserted into your slide. If you want to change the sheet that is displayed, double-click the spreadsheet, and then select a different sheet." -msgstr "" +msgstr "Heile reknearket vert sett inn i lysbiletet. Viss du vil byta arket som vert vist, dobbeltklikk på reknearket og vel så eit anna ark." #: table_insert.xhp msgctxt "" @@ -5430,7 +5430,7 @@ "15\n" "help.text" msgid "Format - Slide Layout" -msgstr "" +msgstr "Format → Lysbiletutforming" #: table_insert.xhp msgctxt "" @@ -5439,7 +5439,7 @@ "16\n" "help.text" msgid "Insert - Object - OLE Object" -msgstr "" +msgstr "Set inn → Objekt → OLE-objekt" #: text2curve.xhp msgctxt "" @@ -5447,7 +5447,7 @@ "tit\n" "help.text" msgid "Converting Text Characters into Drawing Objects" -msgstr "" +msgstr "Omgjering av tekstteikn til teikneobjekt" #: text2curve.xhp msgctxt "" @@ -5455,7 +5455,7 @@ "bm_id3150717\n" "help.text" msgid "text; converting to curvescharacters; converting to curvessign conversion to curvesconverting; text to curvesdraw objects;converting text tocurves;converting text to" -msgstr "" +msgstr "tekst; gjera om til kurverteikn; gjera om til kurvergjera om teikn til kurvergjera om; tekst til kurverteikneobjekt;gjera om tekst tilkurver;gjera om tekst til" #: text2curve.xhp msgctxt "" @@ -5464,7 +5464,7 @@ "3\n" "help.text" msgid "Converting Text Characters into Drawing Objects" -msgstr "" +msgstr "Omgjering av tekstteikn til teikneobjekt" #: text2curve.xhp msgctxt "" @@ -5473,7 +5473,7 @@ "21\n" "help.text" msgid "You can convert text characters into curves that you can edit and resize as you would any drawing object. Once you convert text into a drawing object, you can no longer edit the content of the text." -msgstr "" +msgstr "Du kan gjera om tekstteikn til kurver som du kan redigera og endra storleiken på, akkurat som du ville gjort med andre teikneobjekt. Når du gjer om tekst til eit teikneobjekt, kan du ikkje redigera innhaldet i teksten." #: text2curve.xhp msgctxt "" @@ -5482,7 +5482,7 @@ "22\n" "help.text" msgid "To convert text into a drawing object:" -msgstr "" +msgstr "Slik gjer du om tekst til eit teikneobjekt:" #: text2curve.xhp msgctxt "" @@ -5491,7 +5491,7 @@ "4\n" "help.text" msgid "Select the text that you want to convert, and do one of the following:" -msgstr "" +msgstr "Merk teksten som du vil gjera om og gjer eitt av følgjande:" #: text2curve.xhp msgctxt "" @@ -5500,7 +5500,7 @@ "5\n" "help.text" msgid "In $[officename] Draw, choose Modify - Convert - To Curve." -msgstr "" +msgstr "I $[officename] Draw, vel Endra → Gjer om → Til kurve." #: text2curve.xhp msgctxt "" @@ -5509,7 +5509,7 @@ "23\n" "help.text" msgid "In $[officename] Impress, right-click the border of the text object, and then choose Convert - To Curve." -msgstr "" +msgstr "I $[officename] Impress, høgreklikk på objektet og vel så Gjer om → Til kurve." #: text2curve.xhp msgctxt "" @@ -5518,7 +5518,7 @@ "6\n" "help.text" msgid "If your text contains more than one character, the converted text becomes a grouped object. Double-click the group to edit individual objects. Press Esc when finished." -msgstr "" +msgstr "Viss teksten inneheld meir enn eitt teikn, vert den omgjorde teksten eit gruppert objekt. Dobbeltklikk på gruppa for å redigera enkelte objekt. Trykk Esc-tasten når du er ferdig." #: text2curve.xhp msgctxt "" @@ -5527,7 +5527,7 @@ "7\n" "help.text" msgid "Now, click the Points icon on the Drawing bar. Click the object. You can see all the Bézier points of the object. On the Edit Points bar, you can find various icons for editing, inserting and deleting points." -msgstr "" +msgstr "Trykk nå på symbolet Punkt på verktøylinja Teikning. Trykk på objektet. Du kan sjå alle bézierpunkta til objektet. På verktøylinja Rediger punkt kan du finna eit utval av ulike symbol for å redigera, setja inn og sletta punkt." #: vectorize.xhp msgctxt "" @@ -5535,7 +5535,7 @@ "tit\n" "help.text" msgid "Converting Bitmap Images into Vector Graphics" -msgstr "" +msgstr "Gjera om bilete til vektorgrafikk" #: vectorize.xhp msgctxt "" @@ -5552,7 +5552,7 @@ "26\n" "help.text" msgid "Converting Bitmap Images into Vector Graphics" -msgstr "" +msgstr "Omgjering av bilete til vektorgrafikk" #: vectorize.xhp msgctxt "" @@ -5561,7 +5561,7 @@ "27\n" "help.text" msgid "A vector graphic can be resized without losing the quality of the graphic. In $[officename] Draw and Impress, you can convert a bitmap image into a vector graphic." -msgstr "" +msgstr "Du kan endra storleiken på vektorgrafikk utan at kvaliteten på biletet vert dårlegare. I $[officename] Draw og Impress kan du gjera om eit bilete til vektorgrafikk." #: vectorize.xhp msgctxt "" @@ -5570,7 +5570,7 @@ "28\n" "help.text" msgid "Select the bitmap image that you want to convert." -msgstr "" +msgstr "Merk biletet du vil gjera om." #: vectorize.xhp msgctxt "" @@ -5588,7 +5588,7 @@ "37\n" "help.text" msgid "In $[officename] Draw, choose Modify - Convert - To Polygon." -msgstr "" +msgstr "I $[officename] Draw, vel Endra → Gjer om → Til mangekant." #: vectorize.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/simpress.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/simpress.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/simpress.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/simpress.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408991913.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/smath/01.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/smath/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/smath/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/smath/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-31 20:03+0000\n" +"PO-Revision-Date: 2014-08-30 16:29+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406837036.000000\n" +"X-POOTLE-MTIME: 1409416197.000000\n" #: 02080000.xhp msgctxt "" @@ -2617,7 +2617,7 @@ "41\n" "help.text" msgid "Inserts a square root symbol with one placeholder. You can also type sqrt() in the Commands window." -msgstr "Set inn eit plussteikn med éin plasshaldar. Du kan også skriva + i kommandovindauget." +msgstr "Set inn eit kvadratrotteikn med éin plasshaldar. Du kan også skriva sqrt() i kommandovindauget." #: 03090400.xhp msgctxt "" @@ -6369,7 +6369,7 @@ "36\n" "help.text" msgid "This differs slightly for competing or mutually influencing attributes. This is often the case with font attributes. For example, which color does the b have in \"color yellow color red (a + color green b)\", or which size does it have in \"size *4 (a + size /2 b)\"? Given a base size of 12, does it have the size 48, 6 or even 24 (which could be seen as a combination)? The following are basic resolution rules, which will be followed consistently in the future. In general, the rules apply to all group operations. This only has a visible effect on the font attributes, like \"bold\", \"ital\", \"phantom\", \"size\", \"color\" and \"font\":" -msgstr "Dette er litt anleis når det gjeld eigenskaper som er i konkurranse med eller påverkar kvarandre. Dette er vanleg når det gjeld skrifteigenskapar. Vi kan visa dette med eit par eksempel: Kva farge har bokstaven b i uttrykket «color yellow color red (a + color green b)», og kva storleik har den i uttrykket «size *4 (a + size /2 b)»? Viss grunnstorleiken er 12, får den då storleiken 48, 6 eller til og med 24 (som er ein tenkeleg kombinasjon)? Nedføre vert dei grunnleggende reglene som vetrt brukte til å avgjera slike tvilstilfelle viste. Desse reglane vil bli følgd konsekvent frå nå av. Hovudregelen er at desse reglane gjeld alle gruppeoperasjonar. Dette har berre synleg virknad på skrifteigenskapane, det vil seia «bold», «ital», «phantom», «size», «color» og «font»:" +msgstr "Dette er litt annleis når det gjeld eigenskapar som er i konkurranse med eller påverkar kvarandre. Dette er vanleg når det gjeld skrifteigenskapar. Vi kan visa dette med eit par eksempel: Kva farge har bokstaven b i uttrykket «color yellow color red (a + color green b)», og kva storleik har han i uttrykket «size *4 (a + size /2 b)»? Viss grunnstorleiken er 12, får han då storleiken 48, 6 eller til og med 24 (som er ein tenkjeleg kombinasjon)? Nedføre vert dei grunnleggjande reglane som vert brukte til å avgjera slike tvilstilfelle viste. Desse reglane vert følgde konsekvent frå nå av. Hovudregelen er at desse reglane gjeld alle gruppeoperasjonar. Dette har berre synleg verknad på skrifteigenskapane, det vil seia «bold», «ital», «phantom», «size», «color» og «font»:" #: 03091100.xhp msgctxt "" @@ -8479,14 +8479,13 @@ msgstr "Ikon" #: 03091503.xhp -#, fuzzy msgctxt "" "03091503.xhp\n" "par_id3158644\n" "114\n" "help.text" msgid "Superset" -msgstr "Overmengde" +msgstr "Grunnmengd" #: 03091503.xhp msgctxt "" @@ -8497,14 +8496,13 @@ msgstr "Ikon" #: 03091503.xhp -#, fuzzy msgctxt "" "03091503.xhp\n" "par_id3158791\n" "116\n" "help.text" msgid "Superset or equal to" -msgstr "Overmengde eller lik" +msgstr "Grunnmengd eller lik" #: 03091503.xhp msgctxt "" @@ -8537,7 +8535,7 @@ "bm_id3156617\n" "help.text" msgid "functions operators;list of" -msgstr "" +msgstr "funksjonsoperatorar;liste over" #: 03091504.xhp msgctxt "" @@ -9648,14 +9646,13 @@ msgstr "Ikon" #: 03091506.xhp -#, fuzzy msgctxt "" "03091506.xhp\n" "par_id3161333\n" "343\n" "help.text" msgid "Phantom character" -msgstr "Usynlege teikn" +msgstr "Usynleg teikn" #: 03091506.xhp msgctxt "" @@ -10087,7 +10084,7 @@ "226\n" "help.text" msgid "Nabla vector" -msgstr "" +msgstr "Nabla-vektor" #: 03091507.xhp msgctxt "" @@ -10563,7 +10560,7 @@ "265\n" "help.text" msgid "Left and right line with upper edges" -msgstr "" +msgstr "Loddrett linje til venstre og høgre, med ein liten hake øvst" #: 03091508.xhp msgctxt "" @@ -10571,7 +10568,7 @@ "par_idN12F9F\n" "help.text" msgid "\\lbrace \\rbrace or \\{ \\}" -msgstr "" +msgstr "\\lbrace \\rbrace eller \\{ \\}" #: 03091508.xhp msgctxt "" @@ -11126,7 +11123,7 @@ "46\n" "help.text" msgid "There exists" -msgstr "" +msgstr "Det eksisterer" #: 03091600.xhp msgctxt "" @@ -11152,7 +11149,7 @@ "46\n" "help.text" msgid "There does not exist" -msgstr "" +msgstr "Det eksisterer ikkje" #: 03091600.xhp msgctxt "" @@ -11178,7 +11175,7 @@ "47\n" "help.text" msgid "For all" -msgstr "" +msgstr "For alle" #: 03091600.xhp msgctxt "" @@ -11204,7 +11201,7 @@ "58\n" "help.text" msgid "h Bar" -msgstr "" +msgstr "h-linje" #: 03091600.xhp msgctxt "" @@ -11230,7 +11227,7 @@ "60\n" "help.text" msgid "Lambda Bar" -msgstr "" +msgstr "Lambda-linje" #: 03091600.xhp msgctxt "" @@ -11256,7 +11253,7 @@ "48\n" "help.text" msgid "Real Part" -msgstr "" +msgstr "Reel del" #: 03091600.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/smath/guide.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/smath/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/smath/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/smath/guide.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2013-12-17 12:19+0000\n" +"POT-Creation-Date: 2014-05-02 00:14+0200\n" +"PO-Revision-Date: 2014-08-29 16:35+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.0\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1387282754.0\n" +"X-POOTLE-MTIME: 1409330101.000000\n" #: align.xhp msgctxt "" @@ -84,7 +84,7 @@ "5\n" "help.text" msgid "Empty character strings are a simple way to ensure that texts and formulas are left-aligned. They are defined using double inverted commas \"\" . Make sure you do not use any typographic inverted commas. Example:" -msgstr "Bruk av tomme teiknstrengar er ein enkel måte du kan bruka til å venstrejustera tekst og formlar. Tomme tegnstrengar lagar ein med angis med doble falske hermeteikn: \"\" . Pass på at du ikkje brukar andre typar hermeteikn. Eit døme:" +msgstr "Bruk av tomme teiknstrengar er ein enkel måte å venstrejustera tekst og formlar på. Dei vert definerte ved å bruka doble falske hermeteikn: \"\" . Pass på at du ikkje brukar andre hermeteikn. Eit døme:" #: align.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/swriter/00.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/swriter/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/swriter/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407858025.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/swriter/01.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/swriter/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/swriter/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-25 17:42+0200\n" -"PO-Revision-Date: 2014-08-12 16:22+0000\n" +"PO-Revision-Date: 2014-08-29 15:51+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407860524.000000\n" +"X-POOTLE-MTIME: 1409327489.000000\n" #: 01120000.xhp msgctxt "" @@ -3882,7 +3882,7 @@ "3\n" "help.text" msgid "To enable this feature, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids, and ensure that the Hidden paragraphs check box in the Display of area is selected." -msgstr "Du aktiverer denne funksjonen ved å velje %PRODUCTNAME → InnstillingarVerktøy → Innstillingar%PRODUCTNAME Writer → Formateringsstøtte og merke av i Gøymde avsnitt i feltet Vising av." +msgstr "Du aktiverer denne funksjonen ved å velja %PRODUCTNAME → InnstillingarVerktøy → Innstillingar%PRODUCTNAME Writer → Formateringsstøtte og merkja av i Gøymde avsnitt i feltet Vising av." #: 03140000.xhp msgctxt "" @@ -7307,7 +7307,7 @@ "14\n" "help.text" msgid "Inserts a text field that is hidden when the condition that you specify is met. To use this function, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids and clear the Fields: Hidden text check box." -msgstr "Set inn eit tekstfelt som er gøymd når dei spesifiserte vilkåra er oppfylde. For å bruka denne funksjonen vel du %PRODUCTNAME → PreferencesVerktøy → Innstillingar%PRODUCTNAME Writer → Formateringsstøtte og fjernar merket framføre Felt: Gøymd tekst." +msgstr "Set inn eit tekstfelt som er gøymd når dei spesifiserte vilkåra er oppfylte. For å bruka denne funksjonen vel du %PRODUCTNAME → InnstillingarVerktøy → Innstillingar%PRODUCTNAME Writer → Formateringsstøtte og fjernar merket framføre Felt: Gøymd tekst." #: 04090003.xhp msgctxt "" @@ -22011,7 +22011,7 @@ "par_idN1071D\n" "help.text" msgid "You can assign shortcut keys to Styles on the Tools - Customize - Keyboard tab page." -msgstr "Du kan definere snartastar til stilar på arkfanen Verktøy → Tilpass → Tastatur." +msgstr "Du kan definere snøggtastar til stilar på arkfanen Verktøy → Tilpass → Tastatur." #: 05140000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/swriter/02.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/swriter/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/swriter/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/swriter/02.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-12 16:24+0000\n" +"PO-Revision-Date: 2014-08-29 15:19+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407860689.000000\n" +"X-POOTLE-MTIME: 1409325567.000000\n" #: 02110000.xhp msgctxt "" @@ -1897,7 +1897,7 @@ "37\n" "help.text" msgid "SQRT" -msgstr "SQRT" +msgstr "KVROT" #: 14020000.xhp msgctxt "" @@ -1915,7 +1915,7 @@ "168\n" "help.text" msgid "Example: SQRT 25 displays 5.00" -msgstr "Døme: SQRT 25 viser 5,00" +msgstr "Døme: KVROT 25 viser 5,00" #: 14020000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/swriter/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/swriter/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-12 13:25+0200\n" -"PO-Revision-Date: 2014-08-12 18:56+0000\n" +"PO-Revision-Date: 2014-08-29 15:52+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407869782.000000\n" +"X-POOTLE-MTIME: 1409327520.000000\n" #: anchor_object.xhp msgctxt "" @@ -1673,7 +1673,7 @@ "15\n" "help.text" msgid "Defining Borders for Pages " -msgstr "Laga kantlinjer på objekt" +msgstr "Laga kantlinjer på objekt" #: border_page.xhp msgctxt "" @@ -2409,7 +2409,7 @@ "3\n" "help.text" msgid "Calculating the Sum of a Series of Table Cells" -msgstr "Rekning på tvers av tabellar" +msgstr "Rekna ut summen av ein serie med celler i ein tabell" #: calculate_intable.xhp msgctxt "" @@ -2770,7 +2770,7 @@ "39\n" "help.text" msgid "Using Captions" -msgstr "Setja inn bolkar" +msgstr "Bruka bilettekstar" #: captions.xhp msgctxt "" @@ -4289,7 +4289,7 @@ "1\n" "help.text" msgid "Adding Input Fields " -msgstr "Om felt" +msgstr "Leggja til innskrivingsfelt" #: fields_enter.xhp msgctxt "" @@ -11457,7 +11457,7 @@ "1\n" "help.text" msgid "Creating and Applying Page Styles " -msgstr "Setja inn og fjerna sideskift" +msgstr "Laga og leggja til sidestilar" #: pagestyles.xhp msgctxt "" @@ -12036,7 +12036,7 @@ "13\n" "help.text" msgid "Creating and applying page styles" -msgstr "Oppretta og bruka sidestilar" +msgstr "Laga og bruka sidestilar" #: printing_order.xhp msgctxt "" @@ -12351,7 +12351,7 @@ "49\n" "help.text" msgid "Place the cursor in the index. First of all, if necessary, under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids , mark Cursor in protected areas - Enable." -msgstr "Set markøren i innhaldslista. Om nødvendig må du først merka av for Markør i verna område → Aktiver i %PRODUCTNAME InnstillingarVerktøy → Innstillingar → %PRODUCTNAME Writer → Formateringsstøtte." +msgstr "Set markøren i innhaldslista. Om nødvendig må du først merkja av for Markør i verna område → Aktiver i %PRODUCTNAME InnstillingarVerktøy → Innstillingar → %PRODUCTNAME Writer → Formateringsstøtte." #: protection.xhp msgctxt "" @@ -13337,7 +13337,7 @@ "13\n" "help.text" msgid "Editing Sections" -msgstr "Setja inn bolkar" +msgstr "Redigera bolkar" #: section_edit.xhp msgctxt "" @@ -13638,7 +13638,7 @@ "40\n" "help.text" msgid "Using Sections" -msgstr "Setja inn bolkar" +msgstr "Bruka bolkar" #: sections.xhp msgctxt "" @@ -13839,7 +13839,7 @@ "bm_id3149689\n" "help.text" msgid "text; formatting bold while typing formatting; bold, while typing keyboard;bold formatting bold;formatting while typing shortcut keys;bold formatting" -msgstr "tekst; halvfeit formatering medan du skrivformatering; halvfeit, medan du skrivtastatur; halvfeit formateringhalvfeit;formatering medan du skrivsnartastar; halvfeit formatering" +msgstr "tekst; halvfeit formatering medan du skrivformatering; halvfeit, medan du skrivtastatur; halvfeit formateringhalvfeit;formatering medan du skrivsnøggtastar; halvfeit formatering" #: shortcut_writing.xhp msgctxt "" @@ -17523,7 +17523,7 @@ "9\n" "help.text" msgid "To change the formatting of a bulleted list, choose Format - Bullets and Numbering." -msgstr "For å endra formateringa av punktmerkinga, vel du Formater → Punkt og nummerering." +msgstr "For å endra formateringa av punktmerkinga, vel du Format → Punkt og nummerering." #: using_numbered_lists.xhp msgctxt "" @@ -17557,7 +17557,7 @@ "15\n" "help.text" msgid "Adding Numbering " -msgstr "Leggja til ei punktliste" +msgstr "Leggja til nummerering" #: using_numbered_lists2.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/swriter/librelogo.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/swriter/librelogo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/swriter/librelogo.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-08-12 19:08+0000\n" +"PO-Revision-Date: 2014-08-29 15:20+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407870502.000000\n" +"X-POOTLE-MTIME: 1409325618.000000\n" #: LibreLogo.xhp msgctxt "" @@ -1838,7 +1838,7 @@ "hd_2340\n" "help.text" msgid "SQRT" -msgstr "SQRT" +msgstr "KVROT" #: LibreLogo.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/swriter.po libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/swriter.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/helpcontent2/source/text/swriter.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/helpcontent2/source/text/swriter.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407877160.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/librelogo/source/pythonpath.po libreoffice-l10n-4.3.2/translations/source/nn/librelogo/source/pythonpath.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/librelogo/source/pythonpath.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/librelogo/source/pythonpath.po 2014-09-16 19:55:40.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: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-06-30 19:38+0000\n" +"PO-Revision-Date: 2014-08-29 15:22+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: none\n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404157127.000000\n" +"X-POOTLE-MTIME: 1409325772.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -630,7 +630,7 @@ "SQRT\n" "property.text" msgid "sqrt" -msgstr "kvrot|sqrt" +msgstr "kvrot|rot|sqrt" #: LibreLogo_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/nn/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/officecfg/registry/data/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407861839.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/readlicense_oo/docs.po libreoffice-l10n-4.3.2/translations/source/nn/readlicense_oo/docs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/readlicense_oo/docs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/readlicense_oo/docs.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:06+0200\n" -"PO-Revision-Date: 2014-07-01 13:23+0000\n" +"PO-Revision-Date: 2014-08-31 14:59+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404221032.000000\n" +"X-POOTLE-MTIME: 1409497156.000000\n" #: readme.xrm msgctxt "" @@ -38,7 +38,7 @@ "A6\n" "readmeitem.text" msgid "This file contains important information about the ${PRODUCTNAME} software. You are recommended to read this information very carefully before starting installation." -msgstr "Denne fila inneheld viktig informasjon om ${PRODUCTNAME}. Det blir rådd til å lese denne informasjonen nøye før installasjon." +msgstr "Denne fila inneheld viktig informasjon om ${PRODUCTNAME}. Du bør lesa denne informasjonen nøye før installasjon." #: readme.xrm msgctxt "" @@ -46,7 +46,7 @@ "A7\n" "readmeitem.text" msgid "The ${PRODUCTNAME} community is responsible for the development of this product, and invites you to consider participating as a community member. If you are a new user, you can visit the ${PRODUCTNAME} site, where you will find lots of information about the ${PRODUCTNAME} project and the communities that exist around it. Go to http://www.libreoffice.org/." -msgstr "Miljøet rundt ${PRODUCTNAME} er ansvarleg for utviklinga av dette produktet og inviterer deg til å bli ein del av samarbeidet som bidragsytar. Er du ein ny brukar, kan du besøke nettstaden til ${PRODUCTNAME}. Der vil du finne masse informasjon om prosjektet ${PRODUCTNAME} og miljøet rundt det. Besøk http://www.libreoffice.org/." +msgstr "Miljøet rundt ${PRODUCTNAME} er ansvarleg for utviklinga av dette produktet og inviterer deg til å verta ein del av samarbeidet som bidragsytar. Er du ein ny brukar, kan du kikka innom nettstaden til ${PRODUCTNAME}. Der vil du finne masse informasjon om prosjektet ${PRODUCTNAME} og miljøet rundt det. Gå til http://www.libreoffice.org/." #: readme.xrm msgctxt "" @@ -142,7 +142,7 @@ "MSOReg1\n" "readmeitem.text" msgid "Registration of ${PRODUCTNAME} as default application for Microsoft Office formats can be forced or suppressed by using the following command line switches with the installer:" -msgstr "Du kan bestemme at ${PRODUCTNAME} skal bli brukt som standardprogram når du opnar filer frå Microsoft Office-program. Under installasjonen gjer du dette ved å bruke følgjande kommandolinjeval:" +msgstr "Du kan bestemme at ${PRODUCTNAME} skal brukast som standardprogram når du opnar filer frå Microsoft Office-program. Under installasjonen gjer du dette ved å bruka desse kommandolinjevala:" #: readme.xrm msgctxt "" @@ -158,7 +158,7 @@ "MSOReg3\n" "readmeitem.text" msgid "REGISTER_NO_MSO_TYPES=1 will suppress registration of ${PRODUCTNAME} as default application for Microsoft Office formats." -msgstr "REGISTER_NO_MSO_TYPES=1 gjer at ${PRODUCTNAME} ikkje blir standardprogram for Microsoft Office-format." +msgstr "REGISTER_NO_MSO_TYPES=1 gjer at ${PRODUCTNAME} ikkje vert standardprogram for Microsoft Office-format." #: readme.xrm msgctxt "" @@ -278,7 +278,7 @@ "debianinstall4\n" "readmeitem.text" msgid "Right-click within the directory and choose \"Open in Terminal\". A terminal window will open. From the command line of the terminal window, enter the following command (you will be prompted to enter your root user's password before the command will execute):" -msgstr "Høgreklikk i mappa og vel «Opna i terminal». Eit terminalvindauge kjem fram. Frå kommandolinja i terminalvindauget, skriv den følgjande kommandoen (du blir beden om å oppgi passordet til superbrukar/administrator før køyring av kommandoen):" +msgstr "Høgreklikk i mappa og vel «Opna i terminal». Eit terminalvindauge kjem fram. Skriv den følgjande kommandoen (du vert beden om å oppgi passordet til superbrukar/administrator før køyring av kommandoen) i kommandolinja i terminalvindauget:" #: readme.xrm msgctxt "" @@ -342,7 +342,7 @@ "rpminstall4\n" "readmeitem.text" msgid "Right-click within the directory and choose \"Open in Terminal\". A terminal window will open. From the command line of the terminal window, enter the following command (you will be prompted to enter your root user's password before the command will execute):" -msgstr "Høgreklikk i mappa og vel «Opna i terminal». Eit terminalvindauge kjem fram. Frå kommandolinja i terminalvindauget, skriv den følgjande kommandoen (du blir beden om å oppgi passordet til superbrukar/administrator før køyring av kommandoen):" +msgstr "Høgreklikk i mappa og vel «Opna i terminal». Eit terminalvindauge kjem fram. Skriv den følgjande kommandoen (du vert beden om å oppgi passordet til superbrukar/administrator før køyring av kommandoen) i kommandolinja i terminalvindauget: " #: readme.xrm msgctxt "" @@ -398,7 +398,7 @@ "otherinstall1\n" "readmeitem.text" msgid "It should be easily possible to install ${PRODUCTNAME} on other Linux distributions not specifically covered in these installation instructions. The main aspect for which differences might be encountered is desktop integration." -msgstr "Det er tolleg enkelt å installere ${PRODUCTNAME} på andre Linux-distribusjonar som ikkje blir dekka av installasjonsrettleiinga. Integrasjonen av programvaren på skrivebordet kan variere." +msgstr "Det er tolleg enkelt å installera ${PRODUCTNAME} på andre Linux-distribusjonar som ikkje vert dekka av installasjonsrettleiinga. Integrasjonen av programvaren på skrivebordet kan variere." #: readme.xrm msgctxt "" @@ -502,7 +502,7 @@ "linuxlangpackB\n" "readmeitem.text" msgid "After adjusting those settings, click on OK. The dialog box will close, and you will see an information message telling you that your changes will only be activated after you exit ${PRODUCTNAME} and start it again (remember to also exit the QuickStarter if it is started)." -msgstr "Etter å ha justert innstillingane, trykk på OK. Dialogvindauget vil bli lukka og ei melding om at innstillingane vil bli aktiverte ved neste oppstart av ${PRODUCTNAME} blir vist. Start programmet på nytt (hugs også å lukke snarstart.)" +msgstr "Etter å ha justert innstillingane, trykk på OK. Dialogvindauget vert lukka og ei melding om at innstillingane vert aktiverte ved neste oppstart av ${PRODUCTNAME} vert vist. Start programmet på nytt (hugs også å lukke snøggstarten.)" #: readme.xrm msgctxt "" @@ -590,7 +590,7 @@ "w32e1\n" "readmeitem.text" msgid "Only shortcut keys (key combinations) not used by the operating system can be used in ${PRODUCTNAME}. If a key combination in ${PRODUCTNAME} does not work as described in the ${PRODUCTNAME} Help, check if that shortcut is already used by the operating system. To rectify such conflicts, you can change the keys assigned by your operating system. Alternatively, you can change almost any key assignment in ${PRODUCTNAME}. For more information on this topic, refer to the ${PRODUCTNAME} Help or the Help documention of your operating system." -msgstr "Berre snartastar (tastekombinasjonar) som ikkje er brukt i operativsystemet kan bli brukte i ${PRODUCTNAME}. Dersom ein tastekombinasjon i ${PRODUCTNAME} ikkje verkar som det står i hjelptekstane, sjå etter om snartastane er i bruk av operativsystemet. For å løyse slike konfliktar, kan du endre tastetilordningane i operativsystemet. Du kan også endre nesten alle tastekombinasjonane i ${PRODUCTNAME}. For meir informasjon om dette emnet, sjå hjelpa i ${PRODUCTNAME} eller dokumentasjonen for operativsystemet." +msgstr "Berre snøggtastar (tastekombinasjonar) som ikkje er brukte i operativsystemet kan brukast i ${PRODUCTNAME}. Dersom ein tastekombinasjon i ${PRODUCTNAME} ikkje verkar som det står i hjelptekstane, sjå etter om snartastane er i bruk av operativsystemet. For å løyse slike konfliktar, kan du endra tastetilordningane i operativsystemet. Du kan også endra nesten alle tastekombinasjonane i ${PRODUCTNAME}. For meir informasjon om dette emnet, sjå hjelpa i ${PRODUCTNAME} eller dokumentasjonen for operativsystemet." #: readme.xrm msgctxt "" @@ -614,7 +614,7 @@ "pji76w\n" "readmeitem.text" msgid "File locking is enabled by default in ${PRODUCTNAME}. On a network that uses the Network File System protocol (NFS), the locking daemon for NFS clients must be active. To disable file locking, edit the soffice script and change the line \"export SAL_ENABLE_FILE_LOCKING\" to \"# export SAL_ENABLE_FILE_LOCKING\". If you disable file locking, the write access of a document is not restricted to the user who first opens the document." -msgstr "Låsing av filer er slått på som standard i ${PRODUCTNAME}. På eit nettverk som bruker Network File System protocol (NFS), må låsetenesta NFS-klientar vere aktivert. For å slå av fillåsing, rediger skriptet soffice og endra linja «export SAL_ENABLE_FILE_LOCKING» til «# export SAL_ENABLE_FILE_LOCKING». Dersom låsing av filer er slått av, vil skrivetilgangen ikkje bli avgrensa til den første brukaren som opnar dokumentet." +msgstr "Låsing av filer er slått på som standard i ${PRODUCTNAME}. På eit nettverk som brukar Network File System protocol (NFS), må låsetenesta NFS-klientar vere aktivert. For å slå av fillåsing, rediger skriptet soffice og endra linja «export SAL_ENABLE_FILE_LOCKING» til «# export SAL_ENABLE_FILE_LOCKING». Dersom låsing av filer er slått av, vil skrivetilgangen ikkje verta avgrensa til den første brukaren som opnar dokumentet." #: readme.xrm msgctxt "" @@ -710,7 +710,7 @@ "gettinginvolved1\n" "readmeitem.text" msgid "Getting Involved" -msgstr "Bli involvert" +msgstr "Engasjer deg" #: readme.xrm msgctxt "" @@ -726,7 +726,7 @@ "gettingimvolved3\n" "readmeitem.text" msgid "As a user, you are already a valuable part of the suite's development process and we would like to encourage you to take an even more active role with a view to being a long-term contributor to the community. Please join and check out the contributing page at http://www.libreoffice.org/contribution/" -msgstr "Som brukar er du alt ein verdifull del av utviklingsprosessen og vi vil oppmuntre deg til å ta ei aktiv rolle som bidragsytar i miljøet. Bli med og les meir på sida for bidragsytarar http://www.libreoffi ce.org/contribution/" +msgstr "Som brukar er du alt ein verdifull del av utviklingsprosessen og vi vil oppmuntra deg til å ta ei aktiv rolle som bidragsytar i miljøet. Bli med og les meir på sida for bidragsytarar http://www.libreoffi ce.org/contribution/" #: readme.xrm msgctxt "" @@ -798,7 +798,7 @@ "joining0\n" "readmeitem.text" msgid "Joining one or more Projects" -msgstr "Bli med i eit eller fleire prosjekt" +msgstr "Bli med i eitt eller fleire prosjekt" #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/sc/source/ui/src.po libreoffice-l10n-4.3.2/translations/source/nn/sc/source/ui/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/sc/source/ui/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/sc/source/ui/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-01 19:42+0000\n" +"PO-Revision-Date: 2014-08-31 15:02+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404243760.000000\n" +"X-POOTLE-MTIME: 1409497336.000000\n" #: condformatdlg.src msgctxt "" @@ -3953,7 +3953,7 @@ "Should they be updated?" msgstr "" "Denne fila inneheld lenkjer til andre filer.\n" -"Skal desse bli oppdaterte?" +"Skal desse oppdaterast?" #: globstr.src msgctxt "" @@ -4381,7 +4381,7 @@ "\n" msgstr "" "Dette vil avslutta endring av opptaket.\n" -"All informasjon om endringa blir sletta.\n" +"All informasjon om endringa vert sletta.\n" "\n" "Vil du avslutta endring av opptaket?\n" "\n" @@ -4393,7 +4393,7 @@ "STR_CLOSE_ERROR_LINK\n" "string.text" msgid "The document can not be closed while a link is being updated." -msgstr "Dokumentet kan ikkje lukkast medan ei lenkje blir oppdatert." +msgstr "Det er ikkje råd å lukka dokumentet medan ei lenkje vert oppdatert." #: globstr.src msgctxt "" @@ -6687,9 +6687,9 @@ "\n" "Please be warned that re-saving this document will permanently delete those sheets that have not been loaded!" msgstr "" -"Kunne ikkje hente inn alle arka sidan det maksimale talet på ark er overskride.\n" +"Ikkje alle arka er henta inn fordi det maksimale talet på ark er overskride.\n" "\n" -"Dersom du lagrar dette dokumentet på nytt, blir alle arka som ikkje blei henta inn sletta for alltid." +"Dersom du lagrar dette dokumentet på nytt, vert alle arka som ikkje er henta inn sletta for alltid." #: scerrors.src msgctxt "" @@ -6776,7 +6776,7 @@ "The document contains information not recognized by this program version.\n" "Resaving the document will delete this information!" msgstr "" -"Dokumentet inneheld informasjon som ikkje blir gjenkjent i denne versjonen av programmet.\n" +"Dokumentet inneheld informasjon som ikkje vert gjenkjent i denne versjonen av programmet.\n" "Dersom du lagrar dokumentet på nytt, vert denne informasjonen sletta." #: scerrors.src @@ -7757,7 +7757,7 @@ "7\n" "string.text" msgid "Method used to form differences: Type = 0 denotes US method (NASD), Type = 1 denotes the European method." -msgstr "Metoden som blir brukt til å rekna ut skilnadene: Type=0 brukar den amerikanske metoden (NASD), Type=1 brukar den europeiske metoden." +msgstr "Metode som vert brukt til å rekna ut skilnadane: Type=0 brukar den amerikanske metoden (NASD), Type=1 brukar den europeiske metoden." #: scfuncs.src msgctxt "" @@ -8432,7 +8432,7 @@ "5\n" "string.text" msgid "The payment period. The total number of periods in which the annuity is paid." -msgstr "Betalingsperiode. Totalt tal på periodar der livrente blir betalt." +msgstr "Betalingsperiode. Totalt tal på periodar der livrente vert betalt." #: scfuncs.src msgctxt "" @@ -8450,7 +8450,7 @@ "7\n" "string.text" msgid "Regular payments. The constant amount of annuity that is paid in each period." -msgstr "Faste utbetalingar. Den konstante mengda livrente som blir utbetalt i kvar periode." +msgstr "Faste utbetalingar. Den konstante mengda livrente som vert utbetalt i kvar periode." #: scfuncs.src msgctxt "" @@ -8531,7 +8531,7 @@ "5\n" "string.text" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "Betalingsperiode. Det totale talet på periodar der livrente (pensjon) blir betalt." +msgstr "Betalingsperiode. Det totale talet på periodar der livrente (pensjon) vert betalt." #: scfuncs.src msgctxt "" @@ -8729,7 +8729,7 @@ "5\n" "string.text" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "Betalingsperiode. Det totale talet på periodar der livrente (pensjon) blir betalt." +msgstr "Betalingsperiode. Det totale talet på periodar der livrente (pensjon) vert betalt." #: scfuncs.src msgctxt "" @@ -8810,7 +8810,7 @@ "3\n" "string.text" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "Betalingsperiode. Det totale talet på periodar der livrente (pensjon) blir betalt." +msgstr "Betalingsperiode. Det totale talet på periodar der livrente (pensjon) vert betalt." #: scfuncs.src msgctxt "" @@ -8963,7 +8963,7 @@ "7\n" "string.text" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "Betalingsperiode. Det totale talet på periodar der livrente (pensjon) blir betalt." +msgstr "Betalingsperiode. Det totale talet på periodar der livrente (pensjon) vert betalt." #: scfuncs.src msgctxt "" @@ -9080,7 +9080,7 @@ "7\n" "string.text" msgid "The payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "Betalingsperiode. Det totale talet på periodar som det blir betalt livrente (pensjon) i." +msgstr "Betalingsperiode. Det totale talet på periodar som det vert betalt livrente (pensjon) i." #: scfuncs.src msgctxt "" @@ -9179,7 +9179,7 @@ "5\n" "string.text" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "Betalingsperiode. Det totale talet på periodar der livrente (pensjon) blir betalt." +msgstr "Betalingsperiode. Det totale talet på periodar der livrente (pensjon) vert betalt." #: scfuncs.src msgctxt "" @@ -9296,7 +9296,7 @@ "5\n" "string.text" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "Betalingsperiode. Det totale talet på periodar der livrente (pensjon) blir betalt." +msgstr "Betalingsperiode. Det totale talet på periodar der livrente (pensjon) vert betalt." #: scfuncs.src msgctxt "" @@ -10259,7 +10259,7 @@ "3\n" "string.text" msgid "The number of periods used in the calculation." -msgstr "Talet på periodar som blir brukte i utrekninga." +msgstr "Talet på periodar som vert brukte i utrekninga." #: scfuncs.src msgctxt "" @@ -13013,7 +13013,7 @@ "7\n" "string.text" msgid "If given and not equal to zero then rounded up according to amount when a negative number and significance." -msgstr "Dersom dette argumentet er gitt og ulikt null, blir negative tal runda av oppover mot null." +msgstr "Dersom dette argumentet er gitt og ulikt null, vert negative tal runda av oppover mot null." #: scfuncs.src msgctxt "" @@ -13166,7 +13166,7 @@ "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 "Dersom dette argumentet er gitt og ulikt null, blir negative tal runda av nedover." +msgstr "Dersom dette argumentet er gitt og ulikt null, vert negative tal runda av nedover." #: scfuncs.src msgctxt "" @@ -20962,7 +20962,7 @@ "5\n" "string.text" msgid "Value 1, value 2,... The list of arguments from which a value is chosen." -msgstr "Verdi 1, verdi 2, … Ei liste over argument som ein verdi blir vald frå." +msgstr "Verdi 1, verdi 2, … Ei liste over argument som ein verdi vert vald frå." #: scfuncs.src msgctxt "" @@ -21106,7 +21106,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 "Gir talet på ark i ein gitt referanse. Dersom ingen parametrar er gitte, blir talet på ark i heile dokumentet returnert." +msgstr "Gjev talet på ark i ein gjeven referanse. Dersom ingen parameterar er gjevne, vert talet på ark i heile dokumentet returnert." #: scfuncs.src msgctxt "" @@ -21367,7 +21367,7 @@ "9\n" "string.text" msgid "The index of the subrange if referring to a multiple range." -msgstr "Indeksen til delområdet dersom det blir vist til eit fleirområde." +msgstr "Indeksen til delområdet dersom det vert vist til eit fleirområde." #: scfuncs.src msgctxt "" @@ -21376,7 +21376,7 @@ "1\n" "string.text" msgid "Returns the contents of a cell that is referenced in text form." -msgstr "Gir celleinnhaldet som det blir referert til i tekstform." +msgstr "Returnerer celleinnhaldet som det vert referert til i tekstform." #: scfuncs.src msgctxt "" @@ -21637,7 +21637,7 @@ "11\n" "string.text" msgid "The number of columns in the moved reference." -msgstr "Tal på kolonnar i referansen som er blitt flytta." +msgstr "Tal på kolonnar i referansen som er flytt." #: scfuncs.src msgctxt "" @@ -23041,7 +23041,7 @@ "7\n" "string.text" msgid "If the text is shorter than the specified length, zeros are added to the left of the string." -msgstr "Dersom talet er kortare enn den valde lengda, blir nullar lagde til den venstre sida av tekststrengen." +msgstr "Dersom talet er kortare enn den valde lengda, vert det lagt til nullar til den venstre sida av tekststrengen." #: scfuncs.src msgctxt "" @@ -23194,7 +23194,7 @@ "5\n" "string.text" msgid "The more this value increases, the more the Roman numeral is simplified. The value must be in the 0 - 4 range." -msgstr "Jo høgare denne verdien er, jo enklare blir romartalet vist. Verdien må vera mellom 0 og 4." +msgstr "Dess høgare denne verdien er, dess enklare vert romartalet vist. Verdien må vera mellom 0 og 4." #: scfuncs.src msgctxt "" @@ -24981,7 +24981,7 @@ "STR_ACC_CSVGRID_DESCR\n" "string.text" msgid "This sheet shows how the data will be arranged in the document." -msgstr "Dette arket viser korleis dataa blir fordelte i dokumentet." +msgstr "Dette arket viser korleis dataane vert fordelte i dokumentet." #: scstring.src msgctxt "" @@ -25085,7 +25085,7 @@ "STR_ACC_DATAPILOT_ROW_DESCR\n" "string.text" msgid "Fields that you drop here will be displayed as rows in the final pivot table." -msgstr "Felt du slepp her vil bli viste som rader i den endelege pivottabellen." +msgstr "Felt du slepp her vert viste som rader i den endelege pivottabellen." #: scstring.src msgctxt "" @@ -25093,7 +25093,7 @@ "STR_ACC_DATAPILOT_COL_DESCR\n" "string.text" msgid "Fields that you drop here will be displayed as columns in the final pivot table." -msgstr "Felt du slepp her vil bli viste som kolonnar i den endelege pivottabellen." +msgstr "Felt du slepp her vert viste som kolonnar i den endelege pivottabellen." #: scstring.src msgctxt "" @@ -25101,7 +25101,7 @@ "STR_ACC_DATAPILOT_DATA_DESCR\n" "string.text" msgid "Fields that you drop here will be used for calculations in the final pivot table." -msgstr "Felt du slepp her vil bli brukte til utrekningar i den endelege pivottabellen." +msgstr "Felt du slepp her vert brukte til utrekningar i den endelege pivottabellen." #: scstring.src msgctxt "" @@ -25117,7 +25117,7 @@ "STR_ACC_DATAPILOT_PAGE_DESCR\n" "string.text" msgid "Fields that you drop here will be available as filter lists at the top of the final pivot table." -msgstr "Felt du slepp her vil bli tilgjengelege som filterlister øvst i den endelege pivottabellen." +msgstr "Felt du slepp her vert tilgjengelege som filterlister øvst i den endelege pivottabellen." #: scstring.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/scaddins/source/analysis.po libreoffice-l10n-4.3.2/translations/source/nn/scaddins/source/analysis.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/scaddins/source/analysis.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/scaddins/source/analysis.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:06+0200\n" -"PO-Revision-Date: 2014-07-04 19:59+0000\n" +"PO-Revision-Date: 2014-08-31 15:02+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404503970.000000\n" +"X-POOTLE-MTIME: 1409497363.000000\n" #: analysis.src msgctxt "" @@ -599,7 +599,7 @@ "1\n" "string.text" msgid "Returns the square root of a number which has been multiplied by pi" -msgstr "Gir kvadratrota av eit tal som er blitt multiplisert med pi" +msgstr "Gjev kvadratrota av eit tal som er multiplisert med pi" #: analysis.src msgctxt "" @@ -5972,7 +5972,7 @@ "1\n" "string.text" msgid "Returns the number of coupons payable between the settlement and maturity dates" -msgstr "Gir talet på kupongar som blir betalte mellom oppgjersdatoen og forfallsdatoen" +msgstr "Gjev talet på kupongar som vert betalte mellom oppgjersdatoen og forfallsdatoen" #: analysis.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/scaddins/source/pricing.po libreoffice-l10n-4.3.2/translations/source/nn/scaddins/source/pricing.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/scaddins/source/pricing.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/scaddins/source/pricing.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:06+0200\n" -"PO-Revision-Date: 2014-08-11 15:03+0000\n" +"PO-Revision-Date: 2014-08-31 15:04+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407769400.000000\n" +"X-POOTLE-MTIME: 1409497444.000000\n" #: pricing.src msgctxt "" @@ -590,7 +590,7 @@ "1\n" "string.text" msgid "Probability that an asset will at maturity end up between two barrier levels, assuming it follows dS/S = mu dt + vol dW (if the last two optional parameters (strike, put/call) are specified, the probability of S_T in [strike, upper barrier] for a call and S_T in [lower barrier, strike] for a put will be returned)" -msgstr "Sannsynet for at eit aktivum vil vere mellom dei to grenseverdiane ved utløpet, føresett at det følgjer dS/S = mu dt + vol dW (dersom dei to siste valfrie parametra (strike, put/call) er spesifiserte, vil sannsynet for S_T i [strike, upper barrier] for eit oppkall og S_T i [lower barrier, strike] for ein put bli returnert)" +msgstr "Sannsynet for at eit aktivum vil vera mellom dei to grenseverdiane ved utløpet, føresett at det følgjer dS/S = mu dt + vol dW (dersom dei to siste valfrie parametera (strike, put/call) er spesifiserte, vil sannsynet for S_T i [strike, upper barrier] for eit oppkall og S_T i [lower barrier, strike] for ein put verta returnert)" #: pricing.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/scp2/source/ooo.po libreoffice-l10n-4.3.2/translations/source/nn/scp2/source/ooo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/scp2/source/ooo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/scp2/source/ooo.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-03 19:53+0000\n" +"PO-Revision-Date: 2014-08-31 13:16+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404417236.000000\n" +"X-POOTLE-MTIME: 1409491005.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -3638,7 +3638,7 @@ "STR_DESC_MODULE_OPTIONAL\n" "LngText.text" msgid "Common components and additional programs shared by all %PRODUCTNAME programs." -msgstr "Felleskomponentar og ekstraprogram som blir brukte av alle %PRODUCTNAME-programma." +msgstr "Felleskomponentar og ekstraprogram som vert brukte av alle %PRODUCTNAME-programma." #: module_ooo.ulf msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/sd/source/core.po libreoffice-l10n-4.3.2/translations/source/nn/sd/source/core.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/sd/source/core.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/sd/source/core.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:04+0200\n" -"PO-Revision-Date: 2014-04-24 16:04+0000\n" +"PO-Revision-Date: 2014-08-31 15:04+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1398355464.000000\n" +"X-POOTLE-MTIME: 1409497472.000000\n" #: glob.src msgctxt "" @@ -386,7 +386,7 @@ "The action will be aborted." msgstr "" "Ikkje nok minne.\n" -"Denne handlinga vil bli avbroten." +"Denne handlinga vert avbroten." #: glob.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/nn/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-08-11 15:07+0000\n" +"PO-Revision-Date: 2014-08-31 15:04+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407769661.000000\n" +"X-POOTLE-MTIME: 1409497494.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -2498,7 +2498,7 @@ "Note: All objects on this level will be deleted!" msgstr "" "Er du sikker på at du vil sletta nivået «$»?\n" -"Merknad: Alle objekt på dette nivået vil bli sletta." +"Merknad: Alle objekt på dette nivået vert sletta." #: strings.src msgctxt "" @@ -2625,7 +2625,7 @@ "The format of the new pages will be adapted.\n" "Do you want to adapt the objects, too?" msgstr "" -"Formatet på dei nye sidene blir tilpassa.\n" +"Formatet på dei nye sidene vert tilpassa.\n" "Vil du tilpassa objekta òg?" #: strings.src diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/sd/uiconfig/simpress/ui.po libreoffice-l10n-4.3.2/translations/source/nn/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/sd/uiconfig/simpress/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/sd/uiconfig/simpress/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407861853.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/sfx2/source/appl.po libreoffice-l10n-4.3.2/translations/source/nn/sfx2/source/appl.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/sfx2/source/appl.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/sfx2/source/appl.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-07-01 20:12+0000\n" +"PO-Revision-Date: 2014-08-31 15:05+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404245524.000000\n" +"X-POOTLE-MTIME: 1409497526.000000\n" #: app.src msgctxt "" @@ -102,7 +102,7 @@ "MSG_ERR_NO_ABS_URI_REF\n" "errorbox.text" msgid "\"$(ARG1)\" is not an absolute URL that can be passed to an external application to open it." -msgstr "«$(ARG1)» er ikkje ein absolutt URL som kan bli send til eit eksternt program og opna frå dette." +msgstr "«$(ARG1)» er ikkje ein absolutt URL som kan sendast til eit eksternt program og opna frå dette." #: app.src msgctxt "" @@ -690,7 +690,7 @@ "\n" msgstr "" "Dette vil avslutta endring av opptaket.\n" -"All informasjon om endringa blir sletta.\n" +"All informasjon om endringa vert sletta.\n" "\n" "Vil du avslutta endring av opptaket?\n" "\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/sfx2/source/dialog.po libreoffice-l10n-4.3.2/translations/source/nn/sfx2/source/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/sfx2/source/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/sfx2/source/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-01 20:13+0000\n" +"PO-Revision-Date: 2014-08-31 13:18+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404245605.000000\n" +"X-POOTLE-MTIME: 1409491137.000000\n" #: dialog.src msgctxt "" @@ -570,8 +570,8 @@ "The value entered does not match the specified type.\n" "The value will be stored as text." msgstr "" -"Verdien som blei vald stemmer ikkje med den oppgjevne typen.\n" -"Verdien blir lagra som tekst." +"Den innskrivne verdien stemmer ikkje med den oppgjevne typen.\n" +"Verdien vert lagra som tekst." #: filedlghelper.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/sfx2/source/doc.po libreoffice-l10n-4.3.2/translations/source/nn/sfx2/source/doc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/sfx2/source/doc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/sfx2/source/doc.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-04 19:46+0000\n" +"PO-Revision-Date: 2014-08-31 13:19+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404503219.000000\n" +"X-POOTLE-MTIME: 1409491184.000000\n" #: doc.src msgctxt "" @@ -404,7 +404,7 @@ "STR_TEMPL_RESET\n" "string.text" msgid "The template \"$(TEMPLATE)\" has not been found. Should the template be looked for the next time the document is opened ?" -msgstr "Fann ikkje malen «$(TEMPLATE)». Vil du at malen skal søkjast etter neste gong dokumentet blir opna?" +msgstr "Fann ikkje malen «$(TEMPLATE)». Vil du at malen skal søkjast etter neste gong dokumentet vert opna?" #: doc.src msgctxt "" @@ -1030,7 +1030,7 @@ "RID_CNT_STR_WAITING\n" "string.text" msgid "The templates are being initialized for first-time usage." -msgstr "Desse malane blir klargjorde for første gongs bruk." +msgstr "Desse malane vert klargjorde for første gongs bruk." #: templatelocnames.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/nn/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407769468.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/svl/source/misc.po libreoffice-l10n-4.3.2/translations/source/nn/svl/source/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/svl/source/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/svl/source/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407769694.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/svtools/source/control.po libreoffice-l10n-4.3.2/translations/source/nn/svtools/source/control.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/svtools/source/control.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/svtools/source/control.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:02+0200\n" -"PO-Revision-Date: 2014-07-01 20:23+0000\n" +"PO-Revision-Date: 2014-08-31 15:06+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404246230.000000\n" +"X-POOTLE-MTIME: 1409497613.000000\n" #: calendar.src msgctxt "" @@ -302,7 +302,7 @@ "STR_SVT_FONTMAP_BOTH\n" "string.text" msgid "The same font will be used on both your printer and your screen." -msgstr "Den same skrifta blir brukt både på utskrifta og på skjermen." +msgstr "Den same skrifta vert brukt både på utskrifta og på skjermen." #: ctrltool.src msgctxt "" @@ -326,7 +326,7 @@ "STR_SVT_FONTMAP_SIZENOTAVAILABLE\n" "string.text" msgid "This font size has not been installed. The closest available size will be used." -msgstr "Denne skriftstorleiken er ikkje installert. Den næraste tilgjengelege storleiken blir brukt i staden." +msgstr "Denne skriftstorleiken er ikkje installert. Den næraste tilgjengelege storleiken vert brukt i staden." #: ctrltool.src msgctxt "" @@ -334,7 +334,7 @@ "STR_SVT_FONTMAP_STYLENOTAVAILABLE\n" "string.text" msgid "This font style will be simulated or the closest matching style will be used." -msgstr "Denne skriftstilen vil bli simulert, eller den næraste, tilsvarande stilen vil bli brukt." +msgstr "Denne skriftstilen vil verta simulert, eller den næraste, tilsvarande stilen vert brukt." #: ctrltool.src msgctxt "" @@ -342,7 +342,7 @@ "STR_SVT_FONTMAP_NOTAVAILABLE\n" "string.text" msgid "This font has not been installed. The closest available font will be used." -msgstr "Denne skrifta er ikkje installert. Den næraste tilgjengelege skrifta vil bli brukt i staden." +msgstr "Denne skrifta er ikkje installert. Den næraste tilgjengelege skrifta vert brukt i staden." #: filectrl.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/svtools/source/dialogs.po libreoffice-l10n-4.3.2/translations/source/nn/svtools/source/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/svtools/source/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/svtools/source/dialogs.po 2014-09-16 19:55:40.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: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2013-12-04 14:41+0000\n" +"POT-Creation-Date: 2014-05-02 00:02+0200\n" +"PO-Revision-Date: 2014-08-31 15:07+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1386168069.0\n" +"X-POOTLE-MTIME: 1409497675.000000\n" #: addresstemplate.src msgctxt "" @@ -876,7 +876,7 @@ "ERRCODE_SO_E_CLASSDIFF&S_MAX\n" "string.text" msgid "Source of the OLE link has been converted." -msgstr "Kjelda til OLE-lenkja har blitt gjort om." +msgstr "Kjelda til OLE-lenkja er gjort om." #: so3res.src msgctxt "" @@ -1101,7 +1101,7 @@ "ERRCODE_SO_INVALIDVERB & S_MAX\n" "string.text" msgid "The action is not defined. The default action will be executed." -msgstr "Inga handling er definert. Standardhandlinga vil bli utførd." +msgstr "Inga handling er definert. Standardhandlinga vert utførd." #: so3res.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/svtools/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/nn/svtools/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/svtools/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/svtools/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-06-25 17:37+0200\n" -"PO-Revision-Date: 2014-07-04 19:39+0000\n" +"PO-Revision-Date: 2014-08-31 13:24+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: none\n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404502764.000000\n" +"X-POOTLE-MTIME: 1409491479.000000\n" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -905,7 +905,7 @@ "label\n" "string.text" msgid "For the modified default print job format to take effect, %PRODUCTNAME must be restarted." -msgstr "Endringane i standardformatet for utskriftsjobbar blir tatt i bruk ved neste oppstart av %PRODUCTNAME." +msgstr "Endringane i standardformatet for utskriftsjobbar vert tatt i bruk ved neste oppstart av %PRODUCTNAME." #: restartdialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/svx/source/form.po libreoffice-l10n-4.3.2/translations/source/nn/svx/source/form.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/svx/source/form.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/svx/source/form.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:06+0200\n" -"PO-Revision-Date: 2014-07-04 19:22+0000\n" +"PO-Revision-Date: 2014-08-31 15:08+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404501771.000000\n" +"X-POOTLE-MTIME: 1409497727.000000\n" #: datanavi.src msgctxt "" @@ -1070,7 +1070,7 @@ "RID_STR_DELETECONFIRM_RECORDS\n" "string.text" msgid "# records will be deleted." -msgstr "# datapostar vil bli sletta." +msgstr "# datapostar vert sletta." #: fmstring.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/svx/source/items.po libreoffice-l10n-4.3.2/translations/source/nn/svx/source/items.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/svx/source/items.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/svx/source/items.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-07-01 20:33+0000\n" +"PO-Revision-Date: 2014-08-31 13:25+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404246795.000000\n" +"X-POOTLE-MTIME: 1409491505.000000\n" #: svxerr.src msgctxt "" @@ -222,7 +222,7 @@ "ERRCODE_SVX_VBASIC_STORAGE_EXIST & ERRCODE_RES_MASK\n" "string.text" msgid "The original VBA Basic Code contained in the document will not be saved." -msgstr "Den opphavlege VBA Basic-koden som fanst i dokumentet blir ikkje lagra." +msgstr "Den opphavlege VBA Basic-koden som fanst i dokumentet vert ikkje lagra." #: svxerr.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/svx/source/svdraw.po libreoffice-l10n-4.3.2/translations/source/nn/svx/source/svdraw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/svx/source/svdraw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/svx/source/svdraw.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:06+0200\n" -"PO-Revision-Date: 2014-08-05 21:38+0000\n" +"PO-Revision-Date: 2014-08-29 14:57+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407274710.000000\n" +"X-POOTLE-MTIME: 1409324220.000000\n" #: svdstr.src msgctxt "" @@ -1710,7 +1710,7 @@ "STR_DragMethMirrorDiag\n" "string.text" msgid "Flip %1 diagonal" -msgstr "Spegl %1 på skrå" +msgstr "Spegelvend %1 på skrå" #: svdstr.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/sw/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/nn/sw/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/sw/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/sw/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-04 19:19+0000\n" +"PO-Revision-Date: 2014-08-31 15:10+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404501554.000000\n" +"X-POOTLE-MTIME: 1409497815.000000\n" #: app.src msgctxt "" @@ -879,7 +879,7 @@ "STR_DEL_AUTOFORMAT_MSG\n" "string.text" msgid "The following AutoFormat entry will be deleted:" -msgstr "Følgjande autoformatoppføring vil bli sletta:" +msgstr "Desse autoformatoppføringane vert sletta:" #: app.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/sw/source/ui/chrdlg.po libreoffice-l10n-4.3.2/translations/source/nn/sw/source/ui/chrdlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/sw/source/ui/chrdlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/sw/source/ui/chrdlg.po 2014-09-16 19:55:40.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: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2013-01-06 16:05+0000\n" +"POT-Creation-Date: 2014-05-02 00:02+0200\n" +"PO-Revision-Date: 2014-08-31 15:11+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1357488324.0\n" +"X-POOTLE-MTIME: 1409497902.000000\n" #: chrdlg.src msgctxt "" @@ -38,4 +38,4 @@ "MSG_ILLEGAL_PAGENUM\n" "infobox.text" msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages." -msgstr "Det kan ikkje bli brukt sidetal på den gjeldande sida. Du kan bruke like tal på venstresider og oddetal på høgresider." +msgstr "Det kan ikkje brukast sidetal på denne sida. Du kan bruka like tal på venstresider og oddetal på høgresider." diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/sw/source/ui/docvw.po libreoffice-l10n-4.3.2/translations/source/nn/sw/source/ui/docvw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/sw/source/ui/docvw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/sw/source/ui/docvw.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:02+0200\n" -"PO-Revision-Date: 2014-08-11 15:08+0000\n" +"PO-Revision-Date: 2014-08-31 15:12+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407769734.000000\n" +"X-POOTLE-MTIME: 1409497932.000000\n" #: access.src msgctxt "" @@ -158,7 +158,7 @@ "STR_ACCESS_ANNOTATION_BUTTON_DESC\n" "string.text" msgid "Activate this button to open a list of actions which can be performed on this comment and other comments" -msgstr "Slå på denne knappen for å opna ei liste med handlingar som kan bli brukte på denne og andre merknader" +msgstr "Slå på denne knappen for å opna ei liste med handlingar som kan brukast på denne og andre merknader" #: access.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/nn/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:57+0200\n" -"PO-Revision-Date: 2014-08-12 16:46+0000\n" +"PO-Revision-Date: 2014-08-28 20:25+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: none\n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407862019.000000\n" +"X-POOTLE-MTIME: 1409257548.000000\n" #: abstractdialog.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "The abstract contains the selected number of paragraphs from the included outline levels." -msgstr "Samandraget inneheld det valde talet på avsnitt frå deidisposisjonsnivåene som er tekne med." +msgstr "Samandraget inneheld det valde talet på avsnitt frå dei disposisjonsnivåa som er tekne med." #: abstractdialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/swext/mediawiki/help.po libreoffice-l10n-4.3.2/translations/source/nn/swext/mediawiki/help.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/swext/mediawiki/help.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/swext/mediawiki/help.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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:05+0200\n" -"PO-Revision-Date: 2013-06-06 19:56+0000\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-08-31 13:29+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1370548568.0\n" +"X-POOTLE-MTIME: 1409491747.000000\n" #: help.tree msgctxt "" @@ -374,7 +374,7 @@ "par_id9046601\n" "help.text" msgid "If you have enabled the master password feature on the Security tab page of the Tools - Options - %PRODUCTNAME dialog, then the software can store your password and automatically insert the data where necessary. Enable the \"Save password\" checkbox to store your password." -msgstr "Viss du har slått på funksjonen for hovudpassord i fanen «Tryggleik» i dialogvindauget Verktøy → Innstillingar → %PRODUCTNAME , kan programmet lagra passordet ditt og automatisk sette det inn når det blir bruk for det. Kryss av for «Lagra passord» for å lagra passordet." +msgstr "Viss du har slått på funksjonen for hovudpassord i fanen «Tryggleik» i dialogvindauget Verktøy → Innstillingar → %PRODUCTNAME , kan programmet lagra passordet ditt og automatisk sette det inn når det vert bruk for det. Kryss av for «Lagra passord» for å lagra passordet." #: wikiformats.xhp msgctxt "" @@ -406,7 +406,7 @@ "par_id5630664\n" "help.text" msgid "The OpenDocument format used by Writer and the WikiMedia format are quite different. Only a subset of all features can be transformed from one format to the other." -msgstr "OpenDocument-formatet som blir brukt av Writer er ganske ulikt frå MediaWiki- formatet. Berre visse funksjonar kan overførast frå det eine formatet til det andre." +msgstr "OpenDocument-formatet som vert brukt av Writer er ganske ulikt MediaWiki-formatet. Berre visse funksjonar kan overførast frå det eine formatet til det andre." #: wikiformats.xhp msgctxt "" @@ -574,7 +574,7 @@ "par_id8253730\n" "help.text" msgid "OpenDocument and especially LibreOffice represent tables that have joined cells that span rows as tables with nested tables. In contrast, the wiki model of table is to declare column and row spans for such joined cells." -msgstr "OpenDocument, og spesielt LibreOffice, kan bruke tabellar med sammanslåtte celler som går over fleire rader. Dette blir gjort ved hjelp av nøsta tabellar. Dette i motsetning til Wiki-ar, som bruker HTML-funksjonen «span» til dette. " +msgstr "OpenDocument, og spesielt LibreOffice, kan bruka tabellar med samanslåtte celler som går over fleire rader. Dette vert gjort ved hjelp av nøsta tabellar. Dette i motsetning til Wiki-ar, som brukar HTML-funksjonen «span» til dette. " #: wikiformats.xhp msgctxt "" @@ -582,7 +582,7 @@ "par_id8163090\n" "help.text" msgid "If only columns of the same row are joined, the result of the transformation resembles the source document very well." -msgstr "Dersom berre kolonnar som er i same rad er samanslåtte blir resultatet av overføringa likt kjeldedokumentet." +msgstr "Dersom berre kolonnar som er i same rad er slått saman, vert resultatet av overføringa likt kjeldedokumentet." #: wikiformats.xhp msgctxt "" @@ -598,7 +598,7 @@ "par_id1831110\n" "help.text" msgid "Irrespective of custom table styles for border and background, a table is always exported as \"prettytable\", which renders in the Wiki engine with simple borders and bold header." -msgstr "Uansett kva for eigendefinert tabellstil som blir brukt for kantar og bakgrunnar, blir tabellar alltid eksporterte som «prettytable/fin tabell», som er ein tabell med enkle kantlinjer og feit overskrift." +msgstr "Same kva for eigendefinert tabellstil som vert brukt for kantar og bakgrunnar, vert tabellar alltid eksporterte som «prettytable/fin tabell», som er ein tabell med enkle kantlinjer og feit overskrift." #: wikiformats.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/uui/source.po libreoffice-l10n-4.3.2/translations/source/nn/uui/source.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/uui/source.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/uui/source.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:07+0200\n" -"PO-Revision-Date: 2014-07-03 21:14+0000\n" +"PO-Revision-Date: 2014-08-31 13:29+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404422059.000000\n" +"X-POOTLE-MTIME: 1409491772.000000\n" #: alreadyopen.src msgctxt "" @@ -624,7 +624,7 @@ "(ERRCODE_UUI_IO_UNSUPPORTEDOVERWRITE & ERRCODE_RES_MASK)\n" "string.text" msgid "%PRODUCTNAME cannot keep files from being overwritten when this transmission protocol is used. Do you want to continue anyway?" -msgstr "%PRODUCTNAME kan ikkje hindra at filer blir skrivne over dersom du brukar denne overføringsprotokollen. Vil du halda fram likevel?" +msgstr "%PRODUCTNAME kan ikkje hindra at filer vert skrivne over dersom du brukar denne overføringsprotokollen. Vil du halda fram likevel?" #: ids.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/wizards/source/formwizard.po libreoffice-l10n-4.3.2/translations/source/nn/wizards/source/formwizard.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/wizards/source/formwizard.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/wizards/source/formwizard.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-03 21:08+0000\n" +"PO-Revision-Date: 2014-08-31 15:14+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404421735.000000\n" +"X-POOTLE-MTIME: 1409498097.000000\n" #: dbwizres.src msgctxt "" @@ -415,8 +415,8 @@ "Binary fields are always listed and selectable from the left list.\n" "If possible, they are interpreted as images." msgstr "" -"Binære felt blir alltid lista opp, og kan dessutan veljast i lista til venstre.\n" -"Om mogleg, blir desse tolka som bilete." +"Binære felt vert alltid lista opp, og kan dessutan veljast i lista til venstre.\n" +"Om mogleg, vert desse tolka som bilete." #: dbwizres.src msgctxt "" @@ -704,7 +704,7 @@ "RID_DB_FORM_WIZARD_START + 45\n" "string.text" msgid "Existing data will not be displayed " -msgstr "Eksisterande data vil ikkje bli vist " +msgstr "Eksisterande data vert ikkje viste " #: dbwizres.src msgctxt "" @@ -2044,7 +2044,7 @@ "RID_DB_REPORT_WIZARD_START + 75\n" "string.text" msgid "Note: The dummy text will be replaced by data from the database when the report is created." -msgstr "Merknad: Dømeteksten vil bli bytt ut med data frå databasen når rapporten blir laga." +msgstr "Merknad: Dømeteksten vert bytt ut med data frå databasen når rapporten vert laga." #: dbwizres.src msgctxt "" @@ -4459,7 +4459,7 @@ "RID_WEBWIZARDDIALOG_START +76\n" "string.text" msgid "The FTP target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?" -msgstr "FTP-målmappa «%FILENAME» er ikkje tom. Nokre filer kan bli skrivne over. Vil du halda fram?" +msgstr "FTP-målmappa «%FILENAME» er ikkje tom. Nokre filer kan verta skrivne over. Vil du halda fram?" #: dbwizres.src msgctxt "" @@ -4467,7 +4467,7 @@ "RID_WEBWIZARDDIALOG_START +77\n" "string.text" msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?" -msgstr "Den lokale målmappa «%FILENAME» er ikkje tom. Nokre filer kan bli skrivne over. Vil du halda fram?" +msgstr "Den lokale målmappa «%FILENAME» er ikkje tom. Nokre filer kan verta skrivne over. Vil du halda fram?" #: dbwizres.src msgctxt "" @@ -4847,9 +4847,9 @@ "\n" "Do you really want to delete these settings? " msgstr "" -"Dei valde innstillingane vil bli sletta.\n" +"Dei valde innstillingane vert sletta.\n" "\n" -"Vil du verkeleg sletta desse innstillingane? " +"Vil du sletta desse innstillingane? " #: dbwizres.src msgctxt "" @@ -5325,7 +5325,7 @@ "RID_AGENDAWIZARDDIALOG_START +17\n" "string.text" msgid "Placeholders will be used in empty fields. You can replace placeholders with text later." -msgstr "Plasshaldarar vil bli brukte i tomme felt. Du kan byta ut desse plasshaldarane med tekst seinare." +msgstr "Plasshaldarar vert brukte i tomme felt. Du kan byta ut desse plasshaldarane med tekst seinare." #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/wizards/source/importwizard.po libreoffice-l10n-4.3.2/translations/source/nn/wizards/source/importwizard.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/wizards/source/importwizard.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/wizards/source/importwizard.po 2014-09-16 19:55:40.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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2013-12-02 17:08+0000\n" +"POT-Creation-Date: 2014-05-02 00:06+0200\n" +"PO-Revision-Date: 2014-08-31 15:19+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.0\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1386004134.0\n" +"X-POOTLE-MTIME: 1409498365.000000\n" #: importwi.src msgctxt "" @@ -414,7 +414,7 @@ "sLogfileHelpText\n" "string.text" msgid "A log file will be created in your work directory" -msgstr "Det vil bli oppretta ei loggfil i arbeidsmappa di" +msgstr "Det vil verta oppretta ei loggfil i arbeidsmappa di" #: importwi.src msgctxt "" @@ -430,7 +430,7 @@ "sSumInclusiveSubDir\n" "string.text" msgid "All subdirectories will be taken into account" -msgstr "Alle undermapper vil bli rekna med" +msgstr "Alle undermapper vert rekna med" #: importwi.src msgctxt "" @@ -438,7 +438,7 @@ "sSumSaveDokumente\n" "string.text" msgid "These will be exported to the following directory:" -msgstr "Desse vil bli eksporterte til følgjande mappe:" +msgstr "Desse vert eksporterte til denne mappa:" #: importwi.src msgctxt "" @@ -446,7 +446,7 @@ "sSumMSTextDocuments\n" "string.text" msgid "All Word documents contained in the following directory will be imported:" -msgstr "Alle Word-dokument som ligg i følgjande mappe vil bli importerte:" +msgstr "Alle Word-dokument som ligg i denne mappe vert importerte:" #: importwi.src msgctxt "" @@ -454,7 +454,7 @@ "sSumMSTableDocuments\n" "string.text" msgid "All Excel documents contained in the following directory will be imported:" -msgstr "Alle Excel-dokument som ligg i følgjande mappe vil bli importerte:" +msgstr "Alle Excel-dokument som ligg i denne mappa vert importerte:" #: importwi.src msgctxt "" @@ -470,7 +470,7 @@ "sSumMSTextTemplates\n" "string.text" msgid "All Word templates contained in the following directory will be imported:" -msgstr "Alle Word-malar som ligg i følgjande mappe vil bli importerte:" +msgstr "Alle Word-malar som ligg i denne mappa vert importerte:" #: importwi.src msgctxt "" @@ -478,7 +478,7 @@ "sSumMSTableTemplates\n" "string.text" msgid "All Excel templates contained in the following directory will be imported:" -msgstr "Alle Excel-malar som ligg i følgjande mappe vil bli importerte:" +msgstr "Alle Excel-malar som ligg i denne mappa vert importerte:" #: importwi.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nn/xmlsecurity/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/nn/xmlsecurity/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nn/xmlsecurity/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nn/xmlsecurity/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:06+0200\n" -"PO-Revision-Date: 2014-05-09 18:31+0000\n" +"PO-Revision-Date: 2014-08-31 13:31+0000\n" "Last-Translator: Kolbjørn \n" "Language-Team: LANGUAGE \n" "Language: nn\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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1399660283.000000\n" +"X-POOTLE-MTIME: 1409491869.000000\n" #: certpage.ui msgctxt "" @@ -226,8 +226,8 @@ "Use this setting only if you are certain that all documents that will be opened are safe." msgstr "" "_Låg (ikkje tilrådd).\n" -"Alle makroar blir køyrde utan stadfesting.\n" -"Bruk denne innstillinga berre dersom du er viss på at alle dokument som skal opnast er trygge." +"Alle makroar vert køyrde utan stadfesting.\n" +"Bruk denne innstillinga berre dersom du er viss på at alle dokumenta som skal opnast er trygge." #: securitylevelpage.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nr/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/nr/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nr/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nr/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-16 15:13+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -662,7 +662,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -671,7 +671,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -680,7 +680,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/nso/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/nso/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/nso/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/nso/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 11:11+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -663,7 +663,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -672,7 +672,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -681,7 +681,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/oc/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/oc/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/oc/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/oc/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-02-01 16:39+0000\n" "Last-Translator: Cédric \n" "Language-Team: LANGUAGE \n" @@ -49,7 +49,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,7 +94,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -229,7 +229,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -661,7 +661,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -670,7 +670,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -679,7 +679,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/om/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/om/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/om/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/om/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-09-21 19:35+0200\n" "Last-Translator: Diriba Kuma \n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -659,7 +659,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -668,7 +668,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -677,7 +677,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/om/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/om/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/om/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/om/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-09-04 22:09+0000\n" "Last-Translator: Diriba Kuma \n" "Language-Team: LANGUAGE \n" @@ -13060,14 +13060,6 @@ msgid "Programming in %PRODUCTNAME" msgstr " %PRODUCTNAME keessatti saganteessuu" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Faankishinummaan kuusuu maakroo Kitaabessaa %PRODUCTNAME keessaa fi wardiileef Calc %PRODUCTNAME keessaa galmeewwan barruuf qofa jirreessa." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/or/basctl/uiconfig/basicide/ui.po libreoffice-l10n-4.3.2/translations/source/or/basctl/uiconfig/basicide/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/or/basctl/uiconfig/basicide/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/or/basctl/uiconfig/basicide/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407768732.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/or/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/or/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/or/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/or/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2013-06-21 10:31+0000\n" "Last-Translator: mgiri \n" "Language-Team: Oriya \n" @@ -49,7 +49,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,7 +94,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -229,7 +229,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -661,7 +661,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -670,7 +670,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -679,7 +679,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pa-IN/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/pa-IN/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pa-IN/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pa-IN/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-15 08:58+0200\n" "Last-Translator: ipunj \n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -659,7 +659,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -668,7 +668,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -677,7 +677,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pl/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/pl/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pl/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pl/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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:08+0200\n" -"PO-Revision-Date: 2014-06-03 13:44+0000\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" +"PO-Revision-Date: 2014-09-03 19:07+0000\n" "Last-Translator: Konrad \n" "Language-Team: LANGUAGE \n" "Language: pl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401803083.000000\n" +"X-POOTLE-MTIME: 1409771229.000000\n" #: AbiWord.xcu msgctxt "" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokument BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "Dokument tekstowy BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokument BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "Arkusz kalkulacyjny BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokument BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "Rysunek BeagleWorks/WordPerfect Works v1" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokument ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "Dokument tekstowy ClarisWorks/AppleWorks" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokument ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "Arkusz kalkulacyjny ClarisWorks/AppleWorks" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokument ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "Rysunek ClarisWorks/AppleWorks" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokument GreatWorks" +msgid "GreatWorks Text Document" +msgstr "Dokument tekstowy GreatWorks" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokument GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "Arkusz kalkulacyjny GreatWorks" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokument GreatWorks" +msgid "GreatWorks Drawing" +msgstr "Rysunek GreatWorks" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works dla Dokument Mac (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "Dokument tekstowy Microsoft Works for Mac (v1 - v4)" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works dla Dokument Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "Arkusz kalkulacyjny Microsoft Works for Mac (v1 - v4)" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works dla Dokument Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "Rysunek Microsoft Works for Mac (v1 - v4)" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pl/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/pl/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pl/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pl/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-07-12 03:00+0000\n" "Last-Translator: Konrad \n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programowanie makr w %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Funkcja nagrywania makr jest dostępna tylko w przypadku dokumentów tekstowych programu %PRODUCTNAME Writer i arkuszy kalkulacyjnych programu %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pl/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/pl/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pl/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pl/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407675516.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pt/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/pt/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pt/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pt/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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:08+0200\n" -"PO-Revision-Date: 2014-05-31 15:59+0000\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" +"PO-Revision-Date: 2014-09-03 11:54+0000\n" "Last-Translator: Sérgio \n" "Language-Team: LANGUAGE \n" "Language: pt\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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401551999.000000\n" +"X-POOTLE-MTIME: 1409745253.000000\n" #: AbiWord.xcu msgctxt "" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "Documento de texto BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "Folha de cálculo BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "Desenho do BeagleWorks/WordPerfect Works v1" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "Documento de texto ClarisWorks/AppleWorks" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "Folha de cálculo ClarisWorks/AppleWorks" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "Desenho ClarisWorks/AppleWorks" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento GreatWorks" +msgid "GreatWorks Text Document" +msgstr "Documento de texto GreatWorks" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "Folha de cálculo GreatWorks" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento GreatWorks" +msgid "GreatWorks Drawing" +msgstr "Desenho GreatWorks" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Documento do Microsoft Works para Mac (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "Documento de texto Microsoft Works para Mac (v1 - v4)" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Documento do Microsoft Works para Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "Folha de cálculo Microsoft Works para Mac (v1 - v4)" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Documento do Microsoft Works para Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "Desenho Microsoft Works para Mac (v1 - v4)" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pt/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-4.3.2/translations/source/pt/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pt/helpcontent2/source/text/sbasic/shared.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pt/helpcontent2/source/text/sbasic/shared.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408017028.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po libreoffice-l10n-4.3.2/translations/source/pt/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pt/helpcontent2/source/text/scalc/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408017168.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pt/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/pt/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pt/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pt/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-07-30 13:38+0000\n" "Last-Translator: Sérgio \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1406727529.000000\n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programação no %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "A funcionalidade de gravação de macros só está disponível para documentos de texto no %PRODUCTNAME Writer e para folhas de cálculo no %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pt-BR/cui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/pt-BR/cui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pt-BR/cui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pt-BR/cui/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,17 +4,17 @@ "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-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-05-31 15:29+0000\n" -"Last-Translator: Olivier \n" +"PO-Revision-Date: 2014-09-03 11:17+0000\n" +"Last-Translator: André Marcelo \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401550199.000000\n" +"X-POOTLE-MTIME: 1409743070.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -9896,7 +9896,7 @@ "label\n" "string.text" msgid "Remove _from memory after" -msgstr "Remover _de memória após" +msgstr "Remover _da memória após" #: optmemorypage.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pt-BR/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/pt-BR/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pt-BR/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pt-BR/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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:08+0200\n" -"PO-Revision-Date: 2014-05-31 21:05+0000\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" +"PO-Revision-Date: 2014-09-03 11:35+0000\n" "Last-Translator: Olivier \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401570324.000000\n" +"X-POOTLE-MTIME: 1409744147.000000\n" #: AbiWord.xcu msgctxt "" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "Documento de texto BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "Planilha BeagleWorks/WordPerfect Works v1" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Documento BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "Desenho do BeagleWorks/WordPerfect Works v1" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "Documento de texto ClarisWorks/AppleWorks" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "Planilha ClarisWorks/AppleWorks" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Documento ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "Desenho ClarisWorks/AppleWorks" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento GreatWorks" +msgid "GreatWorks Text Document" +msgstr "Documento de texto GreatWorks" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "Planilha GreatWorks" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Documento GreatWorks" +msgid "GreatWorks Drawing" +msgstr "Desenho GreatWorks" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works para documento Mac (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "Documento de texto Microsoft Works para Mac (v1 - v4)" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works para documento Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "Planilha Microsoft Works para Mac (v1 - v4)" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works para documento Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "Desenho Microsoft Works para Mac (v1 - v4)" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/pt-BR/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pt-BR/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.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: 2014-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-06-14 19:23+0000\n" "Last-Translator: Olivier \n" "Language-Team: Brazilian Portuguese \n" @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1402773827.000000\n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programar no %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "A funcionalidade de gravação de macros só está disponível para documentos de texto no %PRODUCTNAME Writer e para planilhas no %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pt-BR/sc/source/ui/src.po libreoffice-l10n-4.3.2/translations/source/pt-BR/sc/source/ui/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pt-BR/sc/source/ui/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pt-BR/sc/source/ui/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,17 +4,17 @@ "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-21 12:05+0000\n" -"Last-Translator: Olivier \n" +"PO-Revision-Date: 2014-09-03 11:21+0000\n" +"Last-Translator: André Marcelo \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403352344.000000\n" +"X-POOTLE-MTIME: 1409743270.000000\n" #: condformatdlg.src msgctxt "" @@ -9810,7 +9810,7 @@ "11\n" "string.text" msgid "End. The last period of the depreciation using the same time unit as for the useful life." -msgstr "Fim.·O·último·período·de·depreciação·na·mesma·unidade·de·tempo·que·a·vida·útil." +msgstr "Fim. O último período de depreciação na mesma unidade de tempo que a vida útil." #: scfuncs.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pt-BR/svx/source/dialog.po libreoffice-l10n-4.3.2/translations/source/pt-BR/svx/source/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pt-BR/svx/source/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pt-BR/svx/source/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,17 +4,17 @@ "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-07-10 19:33+0200\n" -"PO-Revision-Date: 2014-07-12 21:48+0000\n" -"Last-Translator: Olivier \n" +"PO-Revision-Date: 2014-09-03 11:27+0000\n" +"Last-Translator: André Marcelo \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1405201717.000000\n" +"X-POOTLE-MTIME: 1409743630.000000\n" #: bmpmask.src msgctxt "" @@ -552,7 +552,7 @@ "Click 'Finish' to see your documents." msgstr "" "A recuperação dos documentos foi concluída.\n" -"Clique 'Finalizar' para ver os documentos." +"Clique em 'Concluir' para ver os documentos." #: docrecovery.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pt-BR/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/pt-BR/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pt-BR/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pt-BR/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:57+0200\n" -"PO-Revision-Date: 2014-08-12 22:32+0000\n" -"Last-Translator: Olivier \n" +"PO-Revision-Date: 2014-09-03 11:29+0000\n" +"Last-Translator: André Marcelo \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407882750.000000\n" +"X-POOTLE-MTIME: 1409743750.000000\n" #: abstractdialog.ui msgctxt "" @@ -12304,7 +12304,7 @@ "label\n" "string.text" msgid "Number of Tables:" -msgstr "Número·de·tabelas:" +msgstr "Número de tabelas:" #: statisticsinfopage.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/pt-BR/vcl/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/pt-BR/vcl/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/pt-BR/vcl/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/pt-BR/vcl/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,17 +4,17 @@ "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-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-05-23 12:56-0300\n" -"Last-Translator: Olivier Hallot \n" +"PO-Revision-Date: 2014-09-03 11:17+0000\n" +"Last-Translator: André Marcelo \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385814737.0\n" +"X-POOTLE-MTIME: 1409743031.000000\n" #: cupspassworddialog.ui msgctxt "" @@ -140,7 +140,7 @@ "label\n" "string.text" msgid "Location:" -msgstr "Localização: " +msgstr "Localização:" #: printdialog.ui msgctxt "" @@ -653,7 +653,7 @@ "2\n" "stringlist.text" msgid "top to bottom, then left" -msgstr "de cima para baixo, e depois esquerda" +msgstr "de cima para baixo, e depois para a esquerda" #: printdialog.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ro/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ro/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ro/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ro/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-07-16 15:00+0000\n" "Last-Translator: Ákos \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Document BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Document BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Document BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Document ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Document ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Document ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Document GreatWorks" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Document GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Document GreatWorks" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Document Microsoft Works for Mac (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Document Microsoft Works for Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Document Microsoft Works for Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ro/sc/source/ui/src.po libreoffice-l10n-4.3.2/translations/source/ro/sc/source/ui/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ro/sc/source/ui/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ro/sc/source/ui/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407431702.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ro/sc/source/ui/StatisticsDialogs.po libreoffice-l10n-4.3.2/translations/source/ro/sc/source/ui/StatisticsDialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ro/sc/source/ui/StatisticsDialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ro/sc/source/ui/StatisticsDialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407431748.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ro/sc/uiconfig/scalc/ui.po libreoffice-l10n-4.3.2/translations/source/ro/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ro/sc/uiconfig/scalc/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ro/sc/uiconfig/scalc/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407432474.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ru/cui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ru/cui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ru/cui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ru/cui/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2014-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-07-13 05:44+0000\n" +"PO-Revision-Date: 2014-08-29 15:30+0000\n" "Last-Translator: Helen \n" "Language-Team: Russian \n" "Language: ru\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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1405230257.000000\n" +"X-POOTLE-MTIME: 1409326202.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -12608,7 +12608,7 @@ "label\n" "string.text" msgid "Pre-installed Theme (if available)" -msgstr "Предустановленная темы (при наличии)" +msgstr "Предустановленная тема (при наличии)" #: personalization_tab.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ru/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ru/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ru/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ru/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: filters\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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-21 07:32+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Документ BeagleWorks/WordPerfect Works в.1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Документ BeagleWorks/WordPerfect Works (в.1)" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Документ BeagleWorks/WordPerfect Works (в.1)" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Документ ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Документ ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Документ ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Документ GreatWorks" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Документ GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Документ GreatWorks" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Документ Microsoft Works для Mac (в.1-4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Документ Microsoft Works для Mac (в.1-4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Документ Microsoft Works для Mac (в.1-4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ru/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/ru/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ru/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ru/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-07-16 20:11+0000\n" "Last-Translator: bormant \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1405541485.000000\n" @@ -13057,14 +13057,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Программирование в %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Возможность записи макросов доступна только для текстовых документов в %PRODUCTNAME Writer и для электронных таблиц в %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ru/helpcontent2/source/text/swriter/00.po libreoffice-l10n-4.3.2/translations/source/ru/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ru/helpcontent2/source/text/swriter/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ru/helpcontent2/source/text/swriter/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:10+0200\n" -"PO-Revision-Date: 2014-07-03 21:05+0000\n" +"PO-Revision-Date: 2014-08-27 20:12+0000\n" "Last-Translator: bormant \n" "Language-Team: LANGUAGE \n" "Language: ru\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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404421551.000000\n" +"X-POOTLE-MTIME: 1409170341.000000\n" #: 00000004.xhp msgctxt "" @@ -700,7 +700,7 @@ "63\n" "help.text" msgid "Choose Insert - Cross-reference" -msgstr "" +msgstr "Выберите команду Вставка - Перекрёстная ссылка" #: 00000404.xhp msgctxt "" @@ -1661,7 +1661,7 @@ "47\n" "help.text" msgid "Choose Format - Image" -msgstr "" +msgstr "Выберите Формат - Изображение" #: 00000405.xhp msgctxt "" @@ -1714,7 +1714,7 @@ "51\n" "help.text" msgid "Choose Format - Image - Type tab" -msgstr "" +msgstr "Выберите вкладку Формат - Изображение - Тип" #: 00000405.xhp msgctxt "" @@ -1750,7 +1750,7 @@ "56\n" "help.text" msgid "Choose Format - Image - Wrap tab" -msgstr "" +msgstr "Выберите вкладку Формат - Изображение - Обтекание" #: 00000405.xhp msgctxt "" @@ -1795,7 +1795,7 @@ "63\n" "help.text" msgid "Choose Format - Image - Hyperlink tab" -msgstr "" +msgstr "Выберите вкладку Формат - Изображение - Гиперссылка" #: 00000405.xhp msgctxt "" @@ -1822,7 +1822,7 @@ "65\n" "help.text" msgid "Choose Format - Image - Options tab" -msgstr "" +msgstr "Выберите вкладку Формат - Изображение - Параметры" #: 00000405.xhp msgctxt "" @@ -1858,7 +1858,7 @@ "70\n" "help.text" msgid "Choose Format - Image - Picture tab " -msgstr "" +msgstr "Выберите вкладку Формат - Изображение - Изображение" #: 00000405.xhp msgctxt "" @@ -1867,7 +1867,7 @@ "72\n" "help.text" msgid "Choose Insert/Format - Image - Macro tab" -msgstr "" +msgstr "Выберите вкладку Вставка/Формат - Изображение - Макрос" #: 00000405.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ru/helpcontent2/source/text/swriter/01.po libreoffice-l10n-4.3.2/translations/source/ru/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ru/helpcontent2/source/text/swriter/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ru/helpcontent2/source/text/swriter/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-25 17:42+0200\n" -"PO-Revision-Date: 2014-07-16 20:13+0000\n" +"PO-Revision-Date: 2014-08-27 21:40+0000\n" "Last-Translator: bormant \n" "Language-Team: LANGUAGE \n" "Language: ru\n" @@ -12,9 +12,9 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1405541624.000000\n" +"X-POOTLE-MTIME: 1409175612.000000\n" #: 01120000.xhp msgctxt "" @@ -847,7 +847,7 @@ "29\n" "help.text" msgid "Jumps to the previous item in the document. To specify the type of item to jump to, click the Navigation icon, and then click an item category - for example, \"Images\". Jumps to the previous item in the document. To specify the type of item to jump to, click the Navigation icon, and then click an item category - for example, \"Images\"." -msgstr "" +msgstr "Переход к предыдущему элементу документа. Чтобы задать тип элемента, щёлкните значок Навигация, затем щёлкните вид элемента, например, «Изображения». Переход к предыдущему элементу документа. Чтобы задать тип элемента, щёлкните значок Навигация, затем щёлкните вид элемента, например, «Изображения»." #: 02110000.xhp msgctxt "" @@ -882,7 +882,7 @@ "32\n" "help.text" msgid "Jumps to the next item in the document. To specify the type of item to jump to, click the Navigation icon, and then click an item category - for example, \"Images\". Jumps to the next item in the document. To specify the type of item to jump to, click the Navigation icon, and then click an item category - for example, \"Images\"." -msgstr "" +msgstr "Переход к следующему элементу документа. Чтобы задать тип элемента, щёлкните значок Навигация, затем щёлкните вид элемента, например, «Изображения». Переход к следующему элементу документа. Чтобы задать тип элемента, щёлкните значок Навигация, затем щёлкните вид элемента, например, «Изображения»." #: 02110000.xhp msgctxt "" @@ -1971,7 +1971,7 @@ "63\n" "help.text" msgid "Creates a new AutoText entry only from the text in the selection that you made in the current document. Graphics, tables and other objects are not included. You must first enter a name before you see this command." -msgstr "" +msgstr "Создаёт элемент автотекста из выделенного текста текущего документа. Изображения, таблицы и иные объекты не включаются. Чтобы увидеть эту команду, сперва нужно ввести имя." #: 02120000.xhp msgctxt "" @@ -2921,7 +2921,7 @@ "par_id3155341\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Значок" #: 02140000.xhp msgctxt "" @@ -2956,7 +2956,7 @@ "par_id3145117\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Значок" #: 02140000.xhp msgctxt "" @@ -3143,7 +3143,7 @@ "par_id3150023\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Значок" #: 02150000.xhp msgctxt "" @@ -3178,7 +3178,7 @@ "par_id3154029\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Значок" #: 02150000.xhp msgctxt "" @@ -3384,7 +3384,7 @@ "par_id3147420\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Значок" #: 02160000.xhp msgctxt "" @@ -3419,7 +3419,7 @@ "par_id3153298\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Значок" #: 02160000.xhp msgctxt "" @@ -3489,7 +3489,7 @@ "par_id3150677\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Значок" #: 02160000.xhp msgctxt "" @@ -11011,7 +11011,7 @@ "32\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: 04120201.xhp msgctxt "" @@ -13939,7 +13939,7 @@ "5\n" "help.text" msgid "Enter a name for the table." -msgstr "" +msgstr "Введите имя таблицы." #: 04150000.xhp msgctxt "" @@ -13975,7 +13975,7 @@ "12\n" "help.text" msgid "Enter the number of columns that you want in the table." -msgstr "" +msgstr "Введите количество столбцов таблицы." #: 04150000.xhp msgctxt "" @@ -13993,7 +13993,7 @@ "14\n" "help.text" msgid "Enter the number of rows that you want in the table." -msgstr "" +msgstr "Введите количество строк таблицы." #: 04150000.xhp msgctxt "" @@ -14029,7 +14029,7 @@ "43\n" "help.text" msgid "Includes a heading row in the table." -msgstr "" +msgstr "Добавляет к таблице строку заголовка." #: 04150000.xhp msgctxt "" @@ -14063,7 +14063,7 @@ "par_idN10758\n" "help.text" msgid "Select the number of rows that you want to use for the heading." -msgstr "" +msgstr "Выберите количество строк в заголовке." #: 04150000.xhp msgctxt "" @@ -18500,7 +18500,7 @@ "34\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18509,7 +18509,7 @@ "35\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18518,7 +18518,7 @@ "36\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18545,7 +18545,7 @@ "39\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18554,7 +18554,7 @@ "40\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18563,7 +18563,7 @@ "41\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18572,7 +18572,7 @@ "42\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18581,7 +18581,7 @@ "43\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18626,7 +18626,7 @@ "48\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18635,7 +18635,7 @@ "49\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18662,7 +18662,7 @@ "52\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18671,7 +18671,7 @@ "53\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18680,7 +18680,7 @@ "54\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18689,7 +18689,7 @@ "55\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18698,7 +18698,7 @@ "56\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18725,7 +18725,7 @@ "59\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18752,7 +18752,7 @@ "62\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -18779,7 +18779,7 @@ "65\n" "help.text" msgid "x" -msgstr "" +msgstr "x" #: 05060700.xhp msgctxt "" @@ -20980,7 +20980,7 @@ "5\n" "help.text" msgid "Enter the column number of the column you want to change the width of." -msgstr "" +msgstr "Введите номер столбца, ширину которого желаете изменить." #: 05120100.xhp msgctxt "" @@ -20998,7 +20998,7 @@ "7\n" "help.text" msgid "Enter the width that you want for the selected column(s)." -msgstr "" +msgstr "Задайте ширину для выбранных столбцов." #: 05120200.xhp msgctxt "" @@ -23328,7 +23328,7 @@ "6\n" "help.text" msgid "Includes the first row of the original table as the first row of the second table." -msgstr "" +msgstr "Добавляет первую строку исходной таблицы как первую строку таблицы назначения." #: 05190000.xhp msgctxt "" @@ -24610,7 +24610,7 @@ "6\n" "help.text" msgid "Displays footnotes at the bottom of the page." -msgstr "" +msgstr "Показывает сноски внизу страницы." #: 06080100.xhp msgctxt "" @@ -24628,7 +24628,7 @@ "8\n" "help.text" msgid "Displays footnotes at the end of the document as endnotes." -msgstr "" +msgstr "Показывает сноски в конце документа, как концевые сноски." #: 06080100.xhp msgctxt "" @@ -24664,7 +24664,7 @@ "38\n" "help.text" msgid "Select the paragraph style for the footnote text." -msgstr "" +msgstr "Выберите стиль абзаца для текста сноски." #: 06080100.xhp msgctxt "" @@ -24682,7 +24682,7 @@ "40\n" "help.text" msgid "Select the page style that you want to use for footnotes." -msgstr "" +msgstr "Выберите стиль страницы для сносок." #: 06080100.xhp msgctxt "" @@ -24727,7 +24727,7 @@ "64\n" "help.text" msgid "Select the character style that you want to use for footnote anchors in the text area of your document." -msgstr "" +msgstr "Выберите стиль символов для символов привязки сносок в области текста документа." #: 06080100.xhp msgctxt "" @@ -24745,7 +24745,7 @@ "56\n" "help.text" msgid "Select the character style that you want to use for the footnote numbers in the footnote area." -msgstr "" +msgstr "Выберите стиль символов для номеров сносок в области сносок." #: 06080100.xhp msgctxt "" @@ -24969,7 +24969,7 @@ "23\n" "help.text" msgid "Select the character style that you want to use for endnote anchors in the text area of your document." -msgstr "" +msgstr "Выберите стиль символов для символов привязки концевых сносок в области текста документа." #: 06080200.xhp msgctxt "" @@ -24987,7 +24987,7 @@ "19\n" "help.text" msgid "Select the character style that you want to use for the endnote numbers in the endnote area." -msgstr "" +msgstr "Выберите стиль символов для номеров сносок в области концевых сносок." #: 06090000.xhp msgctxt "" @@ -27740,7 +27740,7 @@ "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusaddfie.xhp msgctxt "" @@ -27756,7 +27756,7 @@ "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusaddfie.xhp msgctxt "" @@ -27948,7 +27948,7 @@ "par_idN10558\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusgrelin.xhp msgctxt "" @@ -27964,7 +27964,7 @@ "par_idN1055F\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusgrelin.xhp msgctxt "" @@ -28404,7 +28404,7 @@ "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_newaddblo.xhp msgctxt "" @@ -28420,7 +28420,7 @@ "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_newaddblo.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-4.3.2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: UI\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2014-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-07-16 11:02+0000\n" +"PO-Revision-Date: 2014-08-30 13:43+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1405508568.000000\n" +"X-POOTLE-MTIME: 1409406222.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -21553,7 +21553,7 @@ "Label\n" "value.text" msgid "Insert Frame Manually" -msgstr "Врезка" +msgstr "Вставить врезку интерактивно" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ru/sw/source/ui/utlui.po libreoffice-l10n-4.3.2/translations/source/ru/sw/source/ui/utlui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ru/sw/source/ui/utlui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ru/sw/source/ui/utlui.po 2014-09-16 19:55:40.000000000 +0000 @@ -1,17 +1,20 @@ #. extracted from sw/source/ui/utlui msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: utlui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-07-01 14:09+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2014-05-02 00:02+0200\n" +"PO-Revision-Date: 2014-08-29 12:38+0000\n" +"Last-Translator: bormant \n" +"Language-Team: Russian \n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1409315923.000000\n" #: poolfmt.src msgctxt "" @@ -1216,6 +1219,14 @@ #: poolfmt.src msgctxt "" +"poolfmt.src\n" +"STR_POOLCOLL_HTML_BLOCKQUOTE\n" +"string.text" +msgid "Quotations" +msgstr "Блочная цитата" + +#: poolfmt.src +msgctxt "" "poolfmt.src\n" "STR_POOLCOLL_HTML_PRE\n" "string.text" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/rw/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/rw/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/rw/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/rw/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-16 15:32+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -663,7 +663,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -672,7 +672,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -681,7 +681,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sa-IN/accessibility/source/helper.po libreoffice-l10n-4.3.2/translations/source/sa-IN/accessibility/source/helper.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sa-IN/accessibility/source/helper.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sa-IN/accessibility/source/helper.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407915184.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sa-IN/basctl/source/basicide.po libreoffice-l10n-4.3.2/translations/source/sa-IN/basctl/source/basicide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sa-IN/basctl/source/basicide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sa-IN/basctl/source/basicide.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407915270.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sa-IN/basctl/uiconfig/basicide/ui.po libreoffice-l10n-4.3.2/translations/source/sa-IN/basctl/uiconfig/basicide/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sa-IN/basctl/uiconfig/basicide/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sa-IN/basctl/uiconfig/basicide/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407915316.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sa-IN/basic/source/classes.po libreoffice-l10n-4.3.2/translations/source/sa-IN/basic/source/classes.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sa-IN/basic/source/classes.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sa-IN/basic/source/classes.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407915347.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sa-IN/chart2/source/controller/dialogs.po libreoffice-l10n-4.3.2/translations/source/sa-IN/chart2/source/controller/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sa-IN/chart2/source/controller/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sa-IN/chart2/source/controller/dialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407915415.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sa-IN/chart2/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sa-IN/chart2/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sa-IN/chart2/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sa-IN/chart2/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407915439.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sa-IN/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/sa-IN/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sa-IN/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sa-IN/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 11:23+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -662,7 +662,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -671,7 +671,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -680,7 +680,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/basctl/source/basicide.po libreoffice-l10n-4.3.2/translations/source/sat/basctl/source/basicide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/basctl/source/basicide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/basctl/source/basicide.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514383.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/basctl/source/dlged.po libreoffice-l10n-4.3.2/translations/source/sat/basctl/source/dlged.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/basctl/source/dlged.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/basctl/source/dlged.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514394.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/basctl/uiconfig/basicide/ui.po libreoffice-l10n-4.3.2/translations/source/sat/basctl/uiconfig/basicide/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/basctl/uiconfig/basicide/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/basctl/uiconfig/basicide/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514406.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/basic/source/classes.po libreoffice-l10n-4.3.2/translations/source/sat/basic/source/classes.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/basic/source/classes.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/basic/source/classes.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514418.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/chart2/source/controller/dialogs.po libreoffice-l10n-4.3.2/translations/source/sat/chart2/source/controller/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/chart2/source/controller/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/chart2/source/controller/dialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514443.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/chart2/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sat/chart2/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/chart2/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/chart2/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514459.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po libreoffice-l10n-4.3.2/translations/source/sat/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514496.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po libreoffice-l10n-4.3.2/translations/source/sat/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514552.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/connectivity/registry/macab/org/openoffice/Office/DataAccess.po libreoffice-l10n-4.3.2/translations/source/sat/connectivity/registry/macab/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/connectivity/registry/macab/org/openoffice/Office/DataAccess.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/connectivity/registry/macab/org/openoffice/Office/DataAccess.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514574.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po libreoffice-l10n-4.3.2/translations/source/sat/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514620.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/cui/source/customize.po libreoffice-l10n-4.3.2/translations/source/sat/cui/source/customize.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/cui/source/customize.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/cui/source/customize.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514666.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/cui/source/dialogs.po libreoffice-l10n-4.3.2/translations/source/sat/cui/source/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/cui/source/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/cui/source/dialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514679.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/cui/source/options.po libreoffice-l10n-4.3.2/translations/source/sat/cui/source/options.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/cui/source/options.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/cui/source/options.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514691.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/cui/source/tabpages.po libreoffice-l10n-4.3.2/translations/source/sat/cui/source/tabpages.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/cui/source/tabpages.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/cui/source/tabpages.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514704.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/cui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sat/cui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/cui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/cui/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514735.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/core/resource.po libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/core/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/core/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/core/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514747.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ext/macromigration.po libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ext/macromigration.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ext/macromigration.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ext/macromigration.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514760.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/sdbtools/resource.po libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/sdbtools/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/sdbtools/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/sdbtools/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514772.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514784.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ui/browser.po libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ui/browser.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ui/browser.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ui/browser.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514795.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514818.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ui/misc.po libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ui/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ui/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ui/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514841.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ui/querydesign.po libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ui/querydesign.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ui/querydesign.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ui/querydesign.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514853.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ui/tabledesign.po libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ui/tabledesign.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ui/tabledesign.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ui/tabledesign.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514875.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ui/uno.po libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ui/uno.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/source/ui/uno.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/source/ui/uno.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514887.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dbaccess/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dbaccess/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514900.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/desktop/source/app.po libreoffice-l10n-4.3.2/translations/source/sat/desktop/source/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/desktop/source/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/desktop/source/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514912.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/desktop/source/deployment/gui.po libreoffice-l10n-4.3.2/translations/source/sat/desktop/source/deployment/gui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/desktop/source/deployment/gui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/desktop/source/deployment/gui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514923.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/desktop/source/deployment/manager.po libreoffice-l10n-4.3.2/translations/source/sat/desktop/source/deployment/manager.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/desktop/source/deployment/manager.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/desktop/source/deployment/manager.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514934.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/desktop/source/deployment/registry/help.po libreoffice-l10n-4.3.2/translations/source/sat/desktop/source/deployment/registry/help.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/desktop/source/deployment/registry/help.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/desktop/source/deployment/registry/help.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514989.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/desktop/source/deployment/registry.po libreoffice-l10n-4.3.2/translations/source/sat/desktop/source/deployment/registry.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/desktop/source/deployment/registry.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/desktop/source/deployment/registry.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408514956.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/desktop/source/deployment/unopkg.po libreoffice-l10n-4.3.2/translations/source/sat/desktop/source/deployment/unopkg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/desktop/source/deployment/unopkg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/desktop/source/deployment/unopkg.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515034.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/desktop/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sat/desktop/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/desktop/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/desktop/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515046.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/af_ZA.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/af_ZA.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/af_ZA.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/af_ZA.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515056.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/bn_BD.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/bn_BD.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/bn_BD.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/bn_BD.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515112.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/br_FR.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/br_FR.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/br_FR.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/br_FR.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515123.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/bs_BA.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/bs_BA.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/bs_BA.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/bs_BA.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515134.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/en/dialog/registry/data/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/en/dialog/registry/data/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/en/dialog/registry/data/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/en/dialog/registry/data/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515199.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/et_EE.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/et_EE.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/et_EE.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/et_EE.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515222.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/gu_IN.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/gu_IN.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/gu_IN.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/gu_IN.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515254.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/he_IL.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/he_IL.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/he_IL.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/he_IL.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515265.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/hi_IN.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/hi_IN.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/hi_IN.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/hi_IN.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515275.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/hr_HR.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/hr_HR.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/hr_HR.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/hr_HR.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515285.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515319.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/hu_HU/dialog.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/hu_HU/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/hu_HU/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/hu_HU/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515307.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/is.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/is.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/is.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/is.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515330.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/kmr_Latn.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/kmr_Latn.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/kmr_Latn.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/kmr_Latn.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515352.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/lt_LT.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/lt_LT.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/lt_LT.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/lt_LT.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515373.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/lv_LV.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/lv_LV.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/lv_LV.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/lv_LV.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515384.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/nl_NL.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/nl_NL.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/nl_NL.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/nl_NL.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515405.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/oc_FR.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/oc_FR.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/oc_FR.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/oc_FR.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515426.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515471.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/pt_BR/dialog.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/pt_BR/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/pt_BR/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/pt_BR/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515460.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515526.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/ru_RU/dialog.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/ru_RU/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/ru_RU/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/ru_RU/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515515.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/sr.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/sr.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/sr.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/sr.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515570.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/sw_TZ.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/sw_TZ.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/sw_TZ.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/sw_TZ.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515592.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/th_TH.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/th_TH.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/th_TH.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/th_TH.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515613.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/vi.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/vi.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/vi.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/vi.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515636.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/zu_ZA.po libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/zu_ZA.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/dictionaries/zu_ZA.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/dictionaries/zu_ZA.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515648.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/editeng/source/accessibility.po libreoffice-l10n-4.3.2/translations/source/sat/editeng/source/accessibility.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/editeng/source/accessibility.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/editeng/source/accessibility.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515658.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/editeng/source/editeng.po libreoffice-l10n-4.3.2/translations/source/sat/editeng/source/editeng.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/editeng/source/editeng.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/editeng/source/editeng.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515669.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/editeng/source/items.po libreoffice-l10n-4.3.2/translations/source/sat/editeng/source/items.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/editeng/source/items.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/editeng/source/items.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515683.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/editeng/source/misc.po libreoffice-l10n-4.3.2/translations/source/sat/editeng/source/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/editeng/source/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/editeng/source/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515694.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/editeng/source/outliner.po libreoffice-l10n-4.3.2/translations/source/sat/editeng/source/outliner.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/editeng/source/outliner.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/editeng/source/outliner.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515704.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/extensions/source/propctrlr.po libreoffice-l10n-4.3.2/translations/source/sat/extensions/source/propctrlr.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/extensions/source/propctrlr.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/extensions/source/propctrlr.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515751.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/extensions/source/update/check/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/sat/extensions/source/update/check/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/extensions/source/update/check/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/extensions/source/update/check/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515787.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/extensions/source/update/check.po libreoffice-l10n-4.3.2/translations/source/sat/extensions/source/update/check.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/extensions/source/update/check.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/extensions/source/update/check.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515775.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/extensions/uiconfig/sabpilot/ui.po libreoffice-l10n-4.3.2/translations/source/sat/extensions/uiconfig/sabpilot/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/extensions/uiconfig/sabpilot/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/extensions/uiconfig/sabpilot/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515810.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/extensions/uiconfig/sbibliography/ui.po libreoffice-l10n-4.3.2/translations/source/sat/extensions/uiconfig/sbibliography/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/extensions/uiconfig/sbibliography/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/extensions/uiconfig/sbibliography/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515821.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/extensions/uiconfig/spropctrlr/ui.po libreoffice-l10n-4.3.2/translations/source/sat/extensions/uiconfig/spropctrlr/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/extensions/uiconfig/spropctrlr/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/extensions/uiconfig/spropctrlr/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515832.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/extensions/uiconfig.po libreoffice-l10n-4.3.2/translations/source/sat/extensions/uiconfig.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/extensions/uiconfig.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/extensions/uiconfig.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515798.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/extras/source/gallery/share.po libreoffice-l10n-4.3.2/translations/source/sat/extras/source/gallery/share.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/extras/source/gallery/share.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/extras/source/gallery/share.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515843.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/sat/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-08-20 06:24+0000\n" "Last-Translator: chandrakantd \n" "Language-Team: LANGUAGE \n" @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515855.000000\n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -667,7 +667,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -676,7 +676,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -685,7 +685,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/filter/source/config/fragments/types.po libreoffice-l10n-4.3.2/translations/source/sat/filter/source/config/fragments/types.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/filter/source/config/fragments/types.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/filter/source/config/fragments/types.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515878.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/filter/source/pdf.po libreoffice-l10n-4.3.2/translations/source/sat/filter/source/pdf.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/filter/source/pdf.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/filter/source/pdf.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515901.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/filter/source/t602.po libreoffice-l10n-4.3.2/translations/source/sat/filter/source/t602.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/filter/source/t602.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/filter/source/t602.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515912.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/filter/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sat/filter/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/filter/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/filter/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515936.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/forms/source/resource.po libreoffice-l10n-4.3.2/translations/source/sat/forms/source/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/forms/source/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/forms/source/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515946.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/formula/source/core/resource.po libreoffice-l10n-4.3.2/translations/source/sat/formula/source/core/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/formula/source/core/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/formula/source/core/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515963.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/formula/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/sat/formula/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/formula/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/formula/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515973.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/fpicker/source/office.po libreoffice-l10n-4.3.2/translations/source/sat/fpicker/source/office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/fpicker/source/office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/fpicker/source/office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515984.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/fpicker/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sat/fpicker/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/fpicker/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/fpicker/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408515995.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/framework/source/classes.po libreoffice-l10n-4.3.2/translations/source/sat/framework/source/classes.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/framework/source/classes.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/framework/source/classes.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516006.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-4.3.2/translations/source/sat/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/instsetoo_native/inc_openoffice/windows/msi_languages.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/instsetoo_native/inc_openoffice/windows/msi_languages.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-08-26 04:30+0200\n" +"POT-Creation-Date: 2014-09-04 14:52+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/librelogo/source/pythonpath.po libreoffice-l10n-4.3.2/translations/source/sat/librelogo/source/pythonpath.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/librelogo/source/pythonpath.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/librelogo/source/pythonpath.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516030.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po libreoffice-l10n-4.3.2/translations/source/sat/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516053.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/mysqlc/source.po libreoffice-l10n-4.3.2/translations/source/sat/mysqlc/source.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/mysqlc/source.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/mysqlc/source.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516041.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-l10n-4.3.2/translations/source/sat/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516065.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-4.3.2/translations/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516128.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/sat/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/officecfg/registry/data/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/officecfg/registry/data/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516113.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/readlicense_oo/docs.po libreoffice-l10n-4.3.2/translations/source/sat/readlicense_oo/docs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/readlicense_oo/docs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/readlicense_oo/docs.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516141.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/reportbuilder/java/org/libreoffice/report/function/metadata.po libreoffice-l10n-4.3.2/translations/source/sat/reportbuilder/java/org/libreoffice/report/function/metadata.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/reportbuilder/java/org/libreoffice/report/function/metadata.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/reportbuilder/java/org/libreoffice/report/function/metadata.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516152.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/reportdesign/source/core/resource.po libreoffice-l10n-4.3.2/translations/source/sat/reportdesign/source/core/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/reportdesign/source/core/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/reportdesign/source/core/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516163.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/reportdesign/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/sat/reportdesign/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/reportdesign/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/reportdesign/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516175.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/reportdesign/source/ui/inspection.po libreoffice-l10n-4.3.2/translations/source/sat/reportdesign/source/ui/inspection.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/reportdesign/source/ui/inspection.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/reportdesign/source/ui/inspection.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516187.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/reportdesign/source/ui/report.po libreoffice-l10n-4.3.2/translations/source/sat/reportdesign/source/ui/report.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/reportdesign/source/ui/report.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/reportdesign/source/ui/report.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516199.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/reportdesign/uiconfig/dbreport/ui.po libreoffice-l10n-4.3.2/translations/source/sat/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/reportdesign/uiconfig/dbreport/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/reportdesign/uiconfig/dbreport/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516210.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/source/ui/drawfunc.po libreoffice-l10n-4.3.2/translations/source/sat/sc/source/ui/drawfunc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/source/ui/drawfunc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sc/source/ui/drawfunc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516254.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/source/ui/miscdlgs.po libreoffice-l10n-4.3.2/translations/source/sat/sc/source/ui/miscdlgs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/source/ui/miscdlgs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sc/source/ui/miscdlgs.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516276.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/source/ui/navipi.po libreoffice-l10n-4.3.2/translations/source/sat/sc/source/ui/navipi.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/source/ui/navipi.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sc/source/ui/navipi.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516287.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/source/ui/sidebar.po libreoffice-l10n-4.3.2/translations/source/sat/sc/source/ui/sidebar.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/source/ui/sidebar.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sc/source/ui/sidebar.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516298.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/source/ui/src.po libreoffice-l10n-4.3.2/translations/source/sat/sc/source/ui/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/source/ui/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sc/source/ui/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516321.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/source/ui/StatisticsDialogs.po libreoffice-l10n-4.3.2/translations/source/sat/sc/source/ui/StatisticsDialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/source/ui/StatisticsDialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sc/source/ui/StatisticsDialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516333.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/source/ui/styleui.po libreoffice-l10n-4.3.2/translations/source/sat/sc/source/ui/styleui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/source/ui/styleui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sc/source/ui/styleui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516343.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/uiconfig/scalc/ui.po libreoffice-l10n-4.3.2/translations/source/sat/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sc/uiconfig/scalc/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sc/uiconfig/scalc/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516368.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/accessories.po libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/accessories.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/accessories.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/accessories.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516427.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/extensions.po libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/extensions.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/extensions.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/extensions.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516482.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/gnome.po libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/gnome.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/gnome.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/gnome.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516494.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/impress.po libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/impress.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/impress.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/impress.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516515.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/kde.po libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/kde.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/kde.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/kde.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516526.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/onlineupdate.po libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/onlineupdate.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/onlineupdate.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/onlineupdate.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516549.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/ooo.po libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/ooo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/ooo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/ooo.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516561.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/python.po libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/python.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/python.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/python.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516572.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/writer.po libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/writer.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/scp2/source/writer.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/scp2/source/writer.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516617.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/core.po libreoffice-l10n-4.3.2/translations/source/sat/sd/source/core.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/core.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sd/source/core.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516640.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/filter/html.po libreoffice-l10n-4.3.2/translations/source/sat/sd/source/filter/html.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/filter/html.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sd/source/filter/html.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516652.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/ui/accessibility.po libreoffice-l10n-4.3.2/translations/source/sat/sd/source/ui/accessibility.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/ui/accessibility.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sd/source/ui/accessibility.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516664.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/ui/animations.po libreoffice-l10n-4.3.2/translations/source/sat/sd/source/ui/animations.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/ui/animations.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sd/source/ui/animations.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516675.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/ui/annotations.po libreoffice-l10n-4.3.2/translations/source/sat/sd/source/ui/annotations.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/ui/annotations.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sd/source/ui/annotations.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516685.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/sat/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516698.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/sat/sd/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sd/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516709.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/ui/slideshow.po libreoffice-l10n-4.3.2/translations/source/sat/sd/source/ui/slideshow.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/ui/slideshow.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sd/source/ui/slideshow.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516721.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/ui/view.po libreoffice-l10n-4.3.2/translations/source/sat/sd/source/ui/view.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/source/ui/view.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sd/source/ui/view.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516733.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/uiconfig/sdraw/ui.po libreoffice-l10n-4.3.2/translations/source/sat/sd/uiconfig/sdraw/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/uiconfig/sdraw/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sd/uiconfig/sdraw/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516746.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/uiconfig/simpress/ui.po libreoffice-l10n-4.3.2/translations/source/sat/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sd/uiconfig/simpress/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sd/uiconfig/simpress/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516760.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sfx2/source/appl.po libreoffice-l10n-4.3.2/translations/source/sat/sfx2/source/appl.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sfx2/source/appl.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sfx2/source/appl.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516783.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sfx2/source/dialog.po libreoffice-l10n-4.3.2/translations/source/sat/sfx2/source/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sfx2/source/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sfx2/source/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516818.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sfx2/source/doc.po libreoffice-l10n-4.3.2/translations/source/sat/sfx2/source/doc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sfx2/source/doc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sfx2/source/doc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516829.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sfx2/source/sidebar.po libreoffice-l10n-4.3.2/translations/source/sat/sfx2/source/sidebar.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sfx2/source/sidebar.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sfx2/source/sidebar.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516850.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sfx2/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sat/sfx2/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sfx2/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sfx2/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516874.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/shell/source/win32/shlxthandler/res.po libreoffice-l10n-4.3.2/translations/source/sat/shell/source/win32/shlxthandler/res.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/shell/source/win32/shlxthandler/res.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/shell/source/win32/shlxthandler/res.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516885.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/starmath/source.po libreoffice-l10n-4.3.2/translations/source/sat/starmath/source.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/starmath/source.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/starmath/source.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-08-26 04:30+0200\n" +"POT-Creation-Date: 2014-09-04 14:52+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/sat/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516913.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svl/source/misc.po libreoffice-l10n-4.3.2/translations/source/sat/svl/source/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svl/source/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svl/source/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516925.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svtools/source/contnr.po libreoffice-l10n-4.3.2/translations/source/sat/svtools/source/contnr.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svtools/source/contnr.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svtools/source/contnr.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516935.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svtools/source/control.po libreoffice-l10n-4.3.2/translations/source/sat/svtools/source/control.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svtools/source/control.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svtools/source/control.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516947.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svtools/source/misc.po libreoffice-l10n-4.3.2/translations/source/sat/svtools/source/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svtools/source/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svtools/source/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408516987.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svtools/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sat/svtools/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svtools/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svtools/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517008.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/inc.po libreoffice-l10n-4.3.2/translations/source/sat/svx/inc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/inc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/inc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517020.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/dialog.po libreoffice-l10n-4.3.2/translations/source/sat/svx/source/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/source/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517060.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/form.po libreoffice-l10n-4.3.2/translations/source/sat/svx/source/form.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/form.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/source/form.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517094.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/gallery2.po libreoffice-l10n-4.3.2/translations/source/sat/svx/source/gallery2.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/gallery2.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/source/gallery2.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517107.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/items.po libreoffice-l10n-4.3.2/translations/source/sat/svx/source/items.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/items.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/source/items.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517118.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/sidebar/area.po libreoffice-l10n-4.3.2/translations/source/sat/svx/source/sidebar/area.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/sidebar/area.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/source/sidebar/area.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517141.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/sidebar/line.po libreoffice-l10n-4.3.2/translations/source/sat/svx/source/sidebar/line.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/sidebar/line.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/source/sidebar/line.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517152.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/sidebar/paragraph.po libreoffice-l10n-4.3.2/translations/source/sat/svx/source/sidebar/paragraph.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/sidebar/paragraph.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/source/sidebar/paragraph.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517164.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/sidebar/text.po libreoffice-l10n-4.3.2/translations/source/sat/svx/source/sidebar/text.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/sidebar/text.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/source/sidebar/text.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517176.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/sidebar.po libreoffice-l10n-4.3.2/translations/source/sat/svx/source/sidebar.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/sidebar.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/source/sidebar.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517129.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/src.po libreoffice-l10n-4.3.2/translations/source/sat/svx/source/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/source/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517187.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/stbctrls.po libreoffice-l10n-4.3.2/translations/source/sat/svx/source/stbctrls.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/stbctrls.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/source/stbctrls.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517199.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/svdraw.po libreoffice-l10n-4.3.2/translations/source/sat/svx/source/svdraw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/svdraw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/source/svdraw.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517212.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/tbxctrls.po libreoffice-l10n-4.3.2/translations/source/sat/svx/source/tbxctrls.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/source/tbxctrls.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/source/tbxctrls.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517236.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sat/svx/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/svx/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/svx/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517263.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/dbui.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/dbui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/dbui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/dbui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517287.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/dialog.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517299.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/docvw.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/docvw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/docvw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/docvw.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517311.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/inc.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/inc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/inc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/inc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517321.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/lingu.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/lingu.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/lingu.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/lingu.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517333.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/misc.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517345.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/ribbar.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/ribbar.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/ribbar.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/ribbar.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517358.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/smartmenu.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/smartmenu.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/smartmenu.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/smartmenu.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517369.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/uiview.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/uiview.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/uiview.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/uiview.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517380.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/utlui.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/utlui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/utlui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/utlui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517396.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/wrtsh.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/wrtsh.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/uibase/wrtsh.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/uibase/wrtsh.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517406.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/undo.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/undo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/undo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/undo.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517418.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/unocore.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/unocore.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/core/unocore.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/core/unocore.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517428.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517441.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/config.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/config.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/config.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/config.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517465.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/dbui.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/dbui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/dbui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/dbui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517476.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/dochdl.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/dochdl.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/dochdl.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/dochdl.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517498.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/docvw.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/docvw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/docvw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/docvw.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517509.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/envelp.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/envelp.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/envelp.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/envelp.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517520.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/fldui.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/fldui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/fldui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/fldui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517531.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/index.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/index.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/index.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/index.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517567.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/misc.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517579.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/shells.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/shells.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/shells.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/shells.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517601.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/sidebar.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/sidebar.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/sidebar.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/sidebar.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517613.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/utlui.po libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/utlui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/source/ui/utlui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/source/ui/utlui.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-08-26 04:30+0200\n" +"POT-Creation-Date: 2014-09-04 14:52+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/sat/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517678.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/sysui/desktop/share.po libreoffice-l10n-4.3.2/translations/source/sat/sysui/desktop/share.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/sysui/desktop/share.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/sysui/desktop/share.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517734.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/uui/source.po libreoffice-l10n-4.3.2/translations/source/sat/uui/source.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/uui/source.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/uui/source.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517756.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/uui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sat/uui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/uui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/uui/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517767.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/vcl/source/src.po libreoffice-l10n-4.3.2/translations/source/sat/vcl/source/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/vcl/source/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/vcl/source/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517791.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/vcl/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sat/vcl/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/vcl/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/vcl/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517804.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/wizards/source/euro.po libreoffice-l10n-4.3.2/translations/source/sat/wizards/source/euro.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/wizards/source/euro.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/wizards/source/euro.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517816.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/wizards/source/formwizard.po libreoffice-l10n-4.3.2/translations/source/sat/wizards/source/formwizard.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/wizards/source/formwizard.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/wizards/source/formwizard.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517828.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/wizards/source/importwizard.po libreoffice-l10n-4.3.2/translations/source/sat/wizards/source/importwizard.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/wizards/source/importwizard.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/wizards/source/importwizard.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517840.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/wizards/source/template.po libreoffice-l10n-4.3.2/translations/source/sat/wizards/source/template.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/wizards/source/template.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/wizards/source/template.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517861.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/xmlsecurity/source/dialogs.po libreoffice-l10n-4.3.2/translations/source/sat/xmlsecurity/source/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/xmlsecurity/source/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/xmlsecurity/source/dialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407910002.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sat/xmlsecurity/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sat/xmlsecurity/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sat/xmlsecurity/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sat/xmlsecurity/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408517895.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/accessibility/source/helper.po libreoffice-l10n-4.3.2/translations/source/sd/accessibility/source/helper.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/accessibility/source/helper.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/accessibility/source/helper.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408442789.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/avmedia/source/viewer.po libreoffice-l10n-4.3.2/translations/source/sd/avmedia/source/viewer.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/avmedia/source/viewer.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/avmedia/source/viewer.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408442814.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/basctl/source/basicide.po libreoffice-l10n-4.3.2/translations/source/sd/basctl/source/basicide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/basctl/source/basicide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/basctl/source/basicide.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408442825.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/basctl/source/dlged.po libreoffice-l10n-4.3.2/translations/source/sd/basctl/source/dlged.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/basctl/source/dlged.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/basctl/source/dlged.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408442836.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/basctl/uiconfig/basicide/ui.po libreoffice-l10n-4.3.2/translations/source/sd/basctl/uiconfig/basicide/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/basctl/uiconfig/basicide/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/basctl/uiconfig/basicide/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408442847.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/basic/source/classes.po libreoffice-l10n-4.3.2/translations/source/sd/basic/source/classes.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/basic/source/classes.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/basic/source/classes.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408442859.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/chart2/source/controller/dialogs.po libreoffice-l10n-4.3.2/translations/source/sd/chart2/source/controller/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/chart2/source/controller/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/chart2/source/controller/dialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408442883.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/chart2/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sd/chart2/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/chart2/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/chart2/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408442897.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/connectivity/registry/macab/org/openoffice/Office/DataAccess.po libreoffice-l10n-4.3.2/translations/source/sd/connectivity/registry/macab/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/connectivity/registry/macab/org/openoffice/Office/DataAccess.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/connectivity/registry/macab/org/openoffice/Office/DataAccess.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443008.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/connectivity/source/resource.po libreoffice-l10n-4.3.2/translations/source/sd/connectivity/source/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/connectivity/source/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/connectivity/source/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443090.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/cui/source/customize.po libreoffice-l10n-4.3.2/translations/source/sd/cui/source/customize.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/cui/source/customize.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/cui/source/customize.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443101.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/cui/source/dialogs.po libreoffice-l10n-4.3.2/translations/source/sd/cui/source/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/cui/source/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/cui/source/dialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443114.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/cui/source/options.po libreoffice-l10n-4.3.2/translations/source/sd/cui/source/options.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/cui/source/options.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/cui/source/options.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443128.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/cui/source/tabpages.po libreoffice-l10n-4.3.2/translations/source/sd/cui/source/tabpages.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/cui/source/tabpages.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/cui/source/tabpages.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443152.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/cui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sd/cui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/cui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/cui/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443179.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ext/macromigration.po libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ext/macromigration.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ext/macromigration.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ext/macromigration.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443202.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/sdbtools/resource.po libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/sdbtools/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/sdbtools/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/sdbtools/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443213.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443224.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/browser.po libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/browser.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/browser.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/browser.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443235.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443257.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/misc.po libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443277.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/querydesign.po libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/querydesign.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/querydesign.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/querydesign.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443288.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/relationdesign.po libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/relationdesign.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/relationdesign.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/relationdesign.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443300.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/tabledesign.po libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/tabledesign.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/tabledesign.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/tabledesign.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443310.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/uno.po libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/uno.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/source/ui/uno.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/source/ui/uno.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443320.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dbaccess/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dbaccess/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443334.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/desktop/source/app.po libreoffice-l10n-4.3.2/translations/source/sd/desktop/source/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/desktop/source/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/desktop/source/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443344.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/desktop/source/deployment/gui.po libreoffice-l10n-4.3.2/translations/source/sd/desktop/source/deployment/gui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/desktop/source/deployment/gui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/desktop/source/deployment/gui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443356.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/desktop/source/deployment/manager.po libreoffice-l10n-4.3.2/translations/source/sd/desktop/source/deployment/manager.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/desktop/source/deployment/manager.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/desktop/source/deployment/manager.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443367.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/desktop/source/deployment/registry/help.po libreoffice-l10n-4.3.2/translations/source/sd/desktop/source/deployment/registry/help.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/desktop/source/deployment/registry/help.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/desktop/source/deployment/registry/help.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443418.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/desktop/source/deployment/registry.po libreoffice-l10n-4.3.2/translations/source/sd/desktop/source/deployment/registry.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/desktop/source/deployment/registry.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/desktop/source/deployment/registry.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443387.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/desktop/source/deployment/unopkg.po libreoffice-l10n-4.3.2/translations/source/sd/desktop/source/deployment/unopkg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/desktop/source/deployment/unopkg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/desktop/source/deployment/unopkg.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443461.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/desktop/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sd/desktop/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/desktop/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/desktop/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443472.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/af_ZA.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/af_ZA.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/af_ZA.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/af_ZA.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407921600.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/ar.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/ar.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/ar.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/ar.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443505.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/bg_BG.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/bg_BG.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/bg_BG.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/bg_BG.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443526.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/bn_BD.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/bn_BD.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/bn_BD.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/bn_BD.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443536.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/br_FR.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/br_FR.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/br_FR.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/br_FR.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443546.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/da_DK.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/da_DK.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/da_DK.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/da_DK.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443567.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/en/dialog/registry/data/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/en/dialog/registry/data/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/en/dialog/registry/data/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/en/dialog/registry/data/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443620.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/et_EE.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/et_EE.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/et_EE.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/et_EE.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443641.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/fr_FR.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/fr_FR.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/fr_FR.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/fr_FR.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443651.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/gu_IN.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/gu_IN.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/gu_IN.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/gu_IN.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443672.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/he_IL.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/he_IL.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/he_IL.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/he_IL.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443682.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/hi_IN.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/hi_IN.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/hi_IN.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/hi_IN.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443693.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/hr_HR.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/hr_HR.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/hr_HR.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/hr_HR.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443704.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443737.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/hu_HU/dialog.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/hu_HU/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/hu_HU/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/hu_HU/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443726.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/it_IT.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/it_IT.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/it_IT.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/it_IT.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443759.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/kmr_Latn.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/kmr_Latn.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/kmr_Latn.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/kmr_Latn.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443770.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/lt_LT.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/lt_LT.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/lt_LT.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/lt_LT.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443792.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/lv_LV.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/lv_LV.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/lv_LV.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/lv_LV.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443802.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/ne_NP.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/ne_NP.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/ne_NP.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/ne_NP.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443813.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/nl_NL.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/nl_NL.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/nl_NL.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/nl_NL.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443823.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/oc_FR.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/oc_FR.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/oc_FR.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/oc_FR.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443845.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/pl_PL.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/pl_PL.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/pl_PL.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/pl_PL.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443855.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443885.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/pt_BR/dialog.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/pt_BR/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/pt_BR/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/pt_BR/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443874.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/pt_PT.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/pt_PT.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/pt_PT.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/pt_PT.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443895.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/ro.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/ro.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/ro.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/ro.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443906.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443939.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/ru_RU/dialog.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/ru_RU/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/ru_RU/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/ru_RU/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443928.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/sk_SK.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/sk_SK.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/sk_SK.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/sk_SK.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443959.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/sl_SI.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/sl_SI.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/sl_SI.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/sl_SI.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443970.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/sr.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/sr.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/sr.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/sr.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443980.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/sv_SE.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/sv_SE.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/sv_SE.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/sv_SE.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408443990.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/sw_TZ.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/sw_TZ.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/sw_TZ.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/sw_TZ.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444001.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/th_TH.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/th_TH.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/th_TH.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/th_TH.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444022.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/uk_UA.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/uk_UA.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/uk_UA.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/uk_UA.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444032.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/vi.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/vi.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/vi.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/vi.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444042.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/zu_ZA.po libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/zu_ZA.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/dictionaries/zu_ZA.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/dictionaries/zu_ZA.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444052.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/editeng/source/accessibility.po libreoffice-l10n-4.3.2/translations/source/sd/editeng/source/accessibility.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/editeng/source/accessibility.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/editeng/source/accessibility.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444062.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/editeng/source/editeng.po libreoffice-l10n-4.3.2/translations/source/sd/editeng/source/editeng.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/editeng/source/editeng.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/editeng/source/editeng.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444073.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/editeng/source/items.po libreoffice-l10n-4.3.2/translations/source/sd/editeng/source/items.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/editeng/source/items.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/editeng/source/items.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444086.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/editeng/source/misc.po libreoffice-l10n-4.3.2/translations/source/sd/editeng/source/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/editeng/source/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/editeng/source/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444096.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/extensions/source/propctrlr.po libreoffice-l10n-4.3.2/translations/source/sd/extensions/source/propctrlr.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/extensions/source/propctrlr.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/extensions/source/propctrlr.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444152.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/extensions/source/update/check/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/sd/extensions/source/update/check/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/extensions/source/update/check/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/extensions/source/update/check/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444185.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/extensions/source/update/check.po libreoffice-l10n-4.3.2/translations/source/sd/extensions/source/update/check.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/extensions/source/update/check.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/extensions/source/update/check.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444174.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/extensions/uiconfig/sabpilot/ui.po libreoffice-l10n-4.3.2/translations/source/sd/extensions/uiconfig/sabpilot/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/extensions/uiconfig/sabpilot/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/extensions/uiconfig/sabpilot/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444208.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/extensions/uiconfig/sbibliography/ui.po libreoffice-l10n-4.3.2/translations/source/sd/extensions/uiconfig/sbibliography/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/extensions/uiconfig/sbibliography/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/extensions/uiconfig/sbibliography/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444218.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/extensions/uiconfig/spropctrlr/ui.po libreoffice-l10n-4.3.2/translations/source/sd/extensions/uiconfig/spropctrlr/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/extensions/uiconfig/spropctrlr/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/extensions/uiconfig/spropctrlr/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444228.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/extensions/uiconfig.po libreoffice-l10n-4.3.2/translations/source/sd/extensions/uiconfig.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/extensions/uiconfig.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/extensions/uiconfig.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444196.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/extras/source/gallery/share.po libreoffice-l10n-4.3.2/translations/source/sd/extras/source/gallery/share.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/extras/source/gallery/share.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/extras/source/gallery/share.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444239.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/sd/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-08-19 10:30+0000\n" "Last-Translator: shanmugamr \n" "Language-Team: LANGUAGE \n" @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444251.000000\n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -663,7 +663,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -672,7 +672,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -681,7 +681,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/filter/source/config/fragments/internalgraphicfilters.po libreoffice-l10n-4.3.2/translations/source/sd/filter/source/config/fragments/internalgraphicfilters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/filter/source/config/fragments/internalgraphicfilters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/filter/source/config/fragments/internalgraphicfilters.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444263.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/filter/source/config/fragments/types.po libreoffice-l10n-4.3.2/translations/source/sd/filter/source/config/fragments/types.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/filter/source/config/fragments/types.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/filter/source/config/fragments/types.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444274.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/filter/source/pdf.po libreoffice-l10n-4.3.2/translations/source/sd/filter/source/pdf.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/filter/source/pdf.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/filter/source/pdf.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444296.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/filter/source/t602.po libreoffice-l10n-4.3.2/translations/source/sd/filter/source/t602.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/filter/source/t602.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/filter/source/t602.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444306.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/filter/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sd/filter/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/filter/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/filter/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444328.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/forms/source/resource.po libreoffice-l10n-4.3.2/translations/source/sd/forms/source/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/forms/source/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/forms/source/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444338.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/formula/source/core/resource.po libreoffice-l10n-4.3.2/translations/source/sd/formula/source/core/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/formula/source/core/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/formula/source/core/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-08-26 04:30+0200\n" +"POT-Creation-Date: 2014-09-04 14:52+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/formula/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/sd/formula/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/formula/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/formula/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444362.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/fpicker/source/office.po libreoffice-l10n-4.3.2/translations/source/sd/fpicker/source/office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/fpicker/source/office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/fpicker/source/office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444373.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/fpicker/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sd/fpicker/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/fpicker/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/fpicker/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444383.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/framework/source/classes.po libreoffice-l10n-4.3.2/translations/source/sd/framework/source/classes.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/framework/source/classes.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/framework/source/classes.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444393.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-4.3.2/translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-08-26 04:30+0200\n" +"POT-Creation-Date: 2014-09-04 14:52+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/librelogo/source/pythonpath.po libreoffice-l10n-4.3.2/translations/source/sd/librelogo/source/pythonpath.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/librelogo/source/pythonpath.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/librelogo/source/pythonpath.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444417.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-l10n-4.3.2/translations/source/sd/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444451.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-4.3.2/translations/source/sd/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/officecfg/registry/data/org/openoffice/Office/UI.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/officecfg/registry/data/org/openoffice/Office/UI.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444514.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/sd/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/officecfg/registry/data/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/officecfg/registry/data/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444498.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/readlicense_oo/docs.po libreoffice-l10n-4.3.2/translations/source/sd/readlicense_oo/docs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/readlicense_oo/docs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/readlicense_oo/docs.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444526.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/reportbuilder/java/org/libreoffice/report/function/metadata.po libreoffice-l10n-4.3.2/translations/source/sd/reportbuilder/java/org/libreoffice/report/function/metadata.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/reportbuilder/java/org/libreoffice/report/function/metadata.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/reportbuilder/java/org/libreoffice/report/function/metadata.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444538.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/reportdesign/source/core/resource.po libreoffice-l10n-4.3.2/translations/source/sd/reportdesign/source/core/resource.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/reportdesign/source/core/resource.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/reportdesign/source/core/resource.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444549.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/reportdesign/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/sd/reportdesign/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/reportdesign/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/reportdesign/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444560.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/reportdesign/source/ui/inspection.po libreoffice-l10n-4.3.2/translations/source/sd/reportdesign/source/ui/inspection.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/reportdesign/source/ui/inspection.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/reportdesign/source/ui/inspection.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444572.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/reportdesign/source/ui/report.po libreoffice-l10n-4.3.2/translations/source/sd/reportdesign/source/ui/report.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/reportdesign/source/ui/report.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/reportdesign/source/ui/report.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444583.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/reportdesign/uiconfig/dbreport/ui.po libreoffice-l10n-4.3.2/translations/source/sd/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/reportdesign/uiconfig/dbreport/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/reportdesign/uiconfig/dbreport/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444594.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/source/ui/drawfunc.po libreoffice-l10n-4.3.2/translations/source/sd/sc/source/ui/drawfunc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/source/ui/drawfunc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sc/source/ui/drawfunc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444638.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/source/ui/miscdlgs.po libreoffice-l10n-4.3.2/translations/source/sd/sc/source/ui/miscdlgs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/source/ui/miscdlgs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sc/source/ui/miscdlgs.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444660.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/source/ui/navipi.po libreoffice-l10n-4.3.2/translations/source/sd/sc/source/ui/navipi.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/source/ui/navipi.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sc/source/ui/navipi.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444670.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/source/ui/sidebar.po libreoffice-l10n-4.3.2/translations/source/sd/sc/source/ui/sidebar.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/source/ui/sidebar.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sc/source/ui/sidebar.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444681.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/source/ui/src.po libreoffice-l10n-4.3.2/translations/source/sd/sc/source/ui/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/source/ui/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sc/source/ui/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408795699.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/source/ui/StatisticsDialogs.po libreoffice-l10n-4.3.2/translations/source/sd/sc/source/ui/StatisticsDialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/source/ui/StatisticsDialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sc/source/ui/StatisticsDialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444729.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/source/ui/styleui.po libreoffice-l10n-4.3.2/translations/source/sd/sc/source/ui/styleui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/source/ui/styleui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sc/source/ui/styleui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444739.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/uiconfig/scalc/ui.po libreoffice-l10n-4.3.2/translations/source/sd/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sc/uiconfig/scalc/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sc/uiconfig/scalc/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444759.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/scaddins/source/analysis.po libreoffice-l10n-4.3.2/translations/source/sd/scaddins/source/analysis.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/scaddins/source/analysis.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/scaddins/source/analysis.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444772.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/scaddins/source/pricing.po libreoffice-l10n-4.3.2/translations/source/sd/scaddins/source/pricing.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/scaddins/source/pricing.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/scaddins/source/pricing.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444794.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sccomp/source/solver.po libreoffice-l10n-4.3.2/translations/source/sd/sccomp/source/solver.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sccomp/source/solver.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sccomp/source/solver.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444805.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/accessories.po libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/accessories.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/accessories.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/accessories.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444819.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/extensions.po libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/extensions.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/extensions.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/extensions.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444875.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/gnome.po libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/gnome.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/gnome.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/gnome.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444885.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/impress.po libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/impress.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/impress.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/impress.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444906.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/kde.po libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/kde.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/kde.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/kde.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444916.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/onlineupdate.po libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/onlineupdate.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/onlineupdate.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/onlineupdate.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444937.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/ooo.po libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/ooo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/ooo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/ooo.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408444955.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/writer.po libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/writer.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/scp2/source/writer.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/scp2/source/writer.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445007.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/core.po libreoffice-l10n-4.3.2/translations/source/sd/sd/source/core.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/core.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sd/source/core.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445029.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/filter/html.po libreoffice-l10n-4.3.2/translations/source/sd/sd/source/filter/html.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/filter/html.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sd/source/filter/html.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445040.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/ui/accessibility.po libreoffice-l10n-4.3.2/translations/source/sd/sd/source/ui/accessibility.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/ui/accessibility.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sd/source/ui/accessibility.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445051.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/ui/animations.po libreoffice-l10n-4.3.2/translations/source/sd/sd/source/ui/animations.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/ui/animations.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sd/source/ui/animations.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445062.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/ui/annotations.po libreoffice-l10n-4.3.2/translations/source/sd/sd/source/ui/annotations.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/ui/annotations.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sd/source/ui/annotations.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445073.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/sd/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445086.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/ui/slideshow.po libreoffice-l10n-4.3.2/translations/source/sd/sd/source/ui/slideshow.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/ui/slideshow.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sd/source/ui/slideshow.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445107.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/ui/view.po libreoffice-l10n-4.3.2/translations/source/sd/sd/source/ui/view.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/source/ui/view.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sd/source/ui/view.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445118.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/uiconfig/sdraw/ui.po libreoffice-l10n-4.3.2/translations/source/sd/sd/uiconfig/sdraw/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/uiconfig/sdraw/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sd/uiconfig/sdraw/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445129.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/uiconfig/simpress/ui.po libreoffice-l10n-4.3.2/translations/source/sd/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sd/uiconfig/simpress/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sd/uiconfig/simpress/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445143.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/setup_native/source/mac.po libreoffice-l10n-4.3.2/translations/source/sd/setup_native/source/mac.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/setup_native/source/mac.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/setup_native/source/mac.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445154.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sfx2/source/appl.po libreoffice-l10n-4.3.2/translations/source/sd/sfx2/source/appl.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sfx2/source/appl.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sfx2/source/appl.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445165.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sfx2/source/dialog.po libreoffice-l10n-4.3.2/translations/source/sd/sfx2/source/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sfx2/source/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sfx2/source/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445198.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sfx2/source/doc.po libreoffice-l10n-4.3.2/translations/source/sd/sfx2/source/doc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sfx2/source/doc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sfx2/source/doc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445209.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sfx2/source/menu.po libreoffice-l10n-4.3.2/translations/source/sd/sfx2/source/menu.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sfx2/source/menu.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sfx2/source/menu.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445220.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sfx2/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sd/sfx2/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sfx2/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sfx2/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445253.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/shell/source/win32/shlxthandler/res.po libreoffice-l10n-4.3.2/translations/source/sd/shell/source/win32/shlxthandler/res.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/shell/source/win32/shlxthandler/res.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/shell/source/win32/shlxthandler/res.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445264.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/starmath/source.po libreoffice-l10n-4.3.2/translations/source/sd/starmath/source.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/starmath/source.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/starmath/source.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-08-26 04:30+0200\n" +"POT-Creation-Date: 2014-09-04 14:52+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/sd/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445291.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svl/source/misc.po libreoffice-l10n-4.3.2/translations/source/sd/svl/source/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svl/source/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svl/source/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445302.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svtools/source/contnr.po libreoffice-l10n-4.3.2/translations/source/sd/svtools/source/contnr.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svtools/source/contnr.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svtools/source/contnr.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445314.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svtools/source/control.po libreoffice-l10n-4.3.2/translations/source/sd/svtools/source/control.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svtools/source/control.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svtools/source/control.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445325.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svtools/source/misc.po libreoffice-l10n-4.3.2/translations/source/sd/svtools/source/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svtools/source/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svtools/source/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445363.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svtools/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sd/svtools/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svtools/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svtools/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445384.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/inc.po libreoffice-l10n-4.3.2/translations/source/sd/svx/inc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/inc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svx/inc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445396.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/dialog.po libreoffice-l10n-4.3.2/translations/source/sd/svx/source/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svx/source/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445433.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/form.po libreoffice-l10n-4.3.2/translations/source/sd/svx/source/form.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/form.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svx/source/form.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445466.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/gallery2.po libreoffice-l10n-4.3.2/translations/source/sd/svx/source/gallery2.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/gallery2.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svx/source/gallery2.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445479.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/items.po libreoffice-l10n-4.3.2/translations/source/sd/svx/source/items.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/items.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svx/source/items.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445491.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/sidebar/area.po libreoffice-l10n-4.3.2/translations/source/sd/svx/source/sidebar/area.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/sidebar/area.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svx/source/sidebar/area.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445513.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/sidebar/line.po libreoffice-l10n-4.3.2/translations/source/sd/svx/source/sidebar/line.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/sidebar/line.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svx/source/sidebar/line.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445524.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/sidebar/paragraph.po libreoffice-l10n-4.3.2/translations/source/sd/svx/source/sidebar/paragraph.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/sidebar/paragraph.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svx/source/sidebar/paragraph.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445534.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/sidebar/text.po libreoffice-l10n-4.3.2/translations/source/sd/svx/source/sidebar/text.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/sidebar/text.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svx/source/sidebar/text.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445546.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/src.po libreoffice-l10n-4.3.2/translations/source/sd/svx/source/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svx/source/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445557.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/stbctrls.po libreoffice-l10n-4.3.2/translations/source/sd/svx/source/stbctrls.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/stbctrls.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svx/source/stbctrls.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445568.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/svdraw.po libreoffice-l10n-4.3.2/translations/source/sd/svx/source/svdraw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/svdraw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svx/source/svdraw.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445580.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/tbxctrls.po libreoffice-l10n-4.3.2/translations/source/sd/svx/source/tbxctrls.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/source/tbxctrls.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svx/source/tbxctrls.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445602.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sd/svx/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/svx/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/svx/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445626.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/dbui.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/dbui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/dbui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/dbui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445649.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/dialog.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445660.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/docvw.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/docvw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/docvw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/docvw.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445671.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/inc.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/inc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/inc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/inc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445682.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/lingu.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/lingu.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/lingu.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/lingu.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445693.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/misc.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445704.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/ribbar.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/ribbar.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/ribbar.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/ribbar.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445717.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/smartmenu.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/smartmenu.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/smartmenu.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/smartmenu.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445728.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/uiview.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/uiview.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/uiview.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/uiview.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445739.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/utlui.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/utlui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/utlui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/utlui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445754.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/wrtsh.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/wrtsh.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/uibase/wrtsh.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/uibase/wrtsh.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445765.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/undo.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/undo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/undo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/undo.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445776.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/unocore.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/unocore.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/core/unocore.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/core/unocore.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445787.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445799.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/config.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/config.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/config.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/config.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445821.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/dbui.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/dbui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/dbui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/dbui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445833.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/dialog.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/dialog.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/dialog.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/dialog.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445843.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/dochdl.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/dochdl.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/dochdl.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/dochdl.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445854.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/docvw.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/docvw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/docvw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/docvw.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445866.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/envelp.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/envelp.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/envelp.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/envelp.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445878.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/fldui.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/fldui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/fldui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/fldui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445889.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/index.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/index.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/index.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/index.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445921.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/misc.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/misc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/misc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/misc.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445933.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/shells.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/shells.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/shells.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/shells.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445954.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/sidebar.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/sidebar.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/sidebar.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/sidebar.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408445965.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/utlui.po libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/utlui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/source/ui/utlui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/source/ui/utlui.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-08-26 04:30+0200\n" +"POT-Creation-Date: 2014-09-04 14:52+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/sd/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446022.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/swext/mediawiki/help.po libreoffice-l10n-4.3.2/translations/source/sd/swext/mediawiki/help.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/swext/mediawiki/help.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/swext/mediawiki/help.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446035.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-l10n-4.3.2/translations/source/sd/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446068.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/swext/mediawiki/src/registry/data/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/sd/swext/mediawiki/src/registry/data/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/swext/mediawiki/src/registry/data/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/swext/mediawiki/src/registry/data/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446056.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/sysui/desktop/share.po libreoffice-l10n-4.3.2/translations/source/sd/sysui/desktop/share.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/sysui/desktop/share.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/sysui/desktop/share.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446079.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/tubes/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sd/tubes/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/tubes/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/tubes/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446089.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/uui/source.po libreoffice-l10n-4.3.2/translations/source/sd/uui/source.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/uui/source.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/uui/source.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446101.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/uui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sd/uui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/uui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/uui/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446111.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/vcl/source/src.po libreoffice-l10n-4.3.2/translations/source/sd/vcl/source/src.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/vcl/source/src.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/vcl/source/src.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446135.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/vcl/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sd/vcl/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/vcl/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/vcl/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446146.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/wizards/source/euro.po libreoffice-l10n-4.3.2/translations/source/sd/wizards/source/euro.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/wizards/source/euro.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/wizards/source/euro.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446157.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/wizards/source/formwizard.po libreoffice-l10n-4.3.2/translations/source/sd/wizards/source/formwizard.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/wizards/source/formwizard.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/wizards/source/formwizard.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446169.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/wizards/source/importwizard.po libreoffice-l10n-4.3.2/translations/source/sd/wizards/source/importwizard.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/wizards/source/importwizard.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/wizards/source/importwizard.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446180.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/wizards/source/template.po libreoffice-l10n-4.3.2/translations/source/sd/wizards/source/template.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/wizards/source/template.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/wizards/source/template.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446190.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/xmlsecurity/source/dialogs.po libreoffice-l10n-4.3.2/translations/source/sd/xmlsecurity/source/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/xmlsecurity/source/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/xmlsecurity/source/dialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446213.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sd/xmlsecurity/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sd/xmlsecurity/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sd/xmlsecurity/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sd/xmlsecurity/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -11,7 +11,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408446223.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/si/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/si/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/si/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/si/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 11:25+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/si/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/si/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/si/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/si/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2011-07-28 13:26+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13054,14 +13054,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sid/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/sid/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sid/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sid/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: LO4-1\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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2013-08-02 00:29+0300\n" "Last-Translator: Tadele Assefa Wami \n" "Language-Team: LANGUAGE \n" @@ -49,7 +49,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,7 +94,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -229,7 +229,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -661,7 +661,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -670,7 +670,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -679,7 +679,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/cui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sk/cui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/cui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/cui/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408869151.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/dbaccess/source/ui/tabledesign.po libreoffice-l10n-4.3.2/translations/source/sk/dbaccess/source/ui/tabledesign.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/dbaccess/source/ui/tabledesign.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/dbaccess/source/ui/tabledesign.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407677020.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/dbaccess/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/sk/dbaccess/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/dbaccess/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/dbaccess/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407505505.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/extras/source/gallery/share.po libreoffice-l10n-4.3.2/translations/source/sk/extras/source/gallery/share.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/extras/source/gallery/share.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/extras/source/gallery/share.po 2014-09-16 19:55:40.000000000 +0000 @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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-05-30 13:47+0000\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:06+0200\n" +"PO-Revision-Date: 2014-08-31 17:23+0000\n" "Last-Translator: Miloš \n" "Language-Team: LANGUAGE \n" "Language: sk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369921641.0\n" +"X-POOTLE-MTIME: 1409505826.000000\n" #: gallery_names.ulf msgctxt "" @@ -54,7 +54,7 @@ "environment\n" "LngText.text" msgid "Environment" -msgstr "Okolie" +msgstr "Životné prostredie" #: gallery_names.ulf msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/sk/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-06 06:13+0000\n" "Last-Translator: Miloš \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokument BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokument BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokument BeagleWorks/WordPerfect Works v1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokument ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokument ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokument ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokument GreatWorks" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokument GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokument GreatWorks" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokument Microsoft Works pre Mac (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokument Microsoft Works pro Mac (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokument Microsoft Works pro Mac (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/sk/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-07-02 17:50+0000\n" "Last-Translator: Miloš \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1404323422.000000\n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programovanie v %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Zaznamenávanie makier je k dispozícii len pre textové dokumenty %PRODUCTNAME Writer a zošity v %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-4.3.2/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408902279.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-4.3.2/translations/source/sk/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/officecfg/registry/data/org/openoffice/Office.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/officecfg/registry/data/org/openoffice/Office.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407386601.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/reportdesign/source/ui/report.po libreoffice-l10n-4.3.2/translations/source/sk/reportdesign/source/ui/report.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/reportdesign/source/ui/report.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/reportdesign/source/ui/report.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407752617.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/sk/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408902671.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/sd/uiconfig/simpress/ui.po libreoffice-l10n-4.3.2/translations/source/sk/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/sd/uiconfig/simpress/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/sd/uiconfig/simpress/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408902947.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/sk/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.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: 2014-07-30 10:58+0200\n" -"PO-Revision-Date: 2014-05-12 14:09+0000\n" +"PO-Revision-Date: 2014-09-03 05:54+0000\n" "Last-Translator: Miloš \n" "Language-Team: none\n" "Language: sk\n" @@ -12,9 +12,9 @@ "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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1399903777.000000\n" +"X-POOTLE-MTIME: 1409723662.000000\n" #: alignmentdialog.ui msgctxt "" @@ -599,7 +599,7 @@ "label\n" "string.text" msgid "Ig_nore ~~ and ' at the end of the line" -msgstr "" +msgstr "Ig_norovať znaky ~~ a ' na konci riadku" #: smathsettings.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/svx/source/gallery2.po libreoffice-l10n-4.3.2/translations/source/sk/svx/source/gallery2.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/svx/source/gallery2.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/svx/source/gallery2.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-21 14:13+0000\n" +"PO-Revision-Date: 2014-08-31 17:12+0000\n" "Last-Translator: Miloš \n" "Language-Team: LANGUAGE \n" "Language: sk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403360007.000000\n" +"X-POOTLE-MTIME: 1409505150.000000\n" #: gallery.src msgctxt "" @@ -190,7 +190,7 @@ "RID_SVXSTR_GALLERY_ICONVIEW\n" "string.text" msgid "Icon View" -msgstr "Pohľad s ikonami" +msgstr "Zobrazenie s ikonami" #: gallery.src msgctxt "" @@ -198,7 +198,7 @@ "RID_SVXSTR_GALLERY_LISTVIEW\n" "string.text" msgid "Detailed View" -msgstr "Podrobný pohľad" +msgstr "Detailné zobrazenie" #: gallery.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/svx/source/svdraw.po libreoffice-l10n-4.3.2/translations/source/sk/svx/source/svdraw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/svx/source/svdraw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/svx/source/svdraw.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408903201.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sk/wizards/source/formwizard.po libreoffice-l10n-4.3.2/translations/source/sk/wizards/source/formwizard.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sk/wizards/source/formwizard.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sk/wizards/source/formwizard.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407752704.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sl/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/sl/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sl/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sl/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,14 +3,14 @@ msgstr "" "Project-Id-Version: LibreOffice 4.3\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-06-06 11:53+0200\n" -"PO-Revision-Date: 2014-06-01 01:19+0200\n" +"POT-Creation-Date: 2014-09-12 20:32+0200\n" +"PO-Revision-Date: 2014-09-14 16:00+0200\n" "Last-Translator: Martin Srebotnjak \n" "Language-Team: sl.libreoffice.org\n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" "X-Generator: Virtaal 0.7.1\n" "X-Accelerator-Marker: ~\n" @@ -50,8 +50,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokument BeagleWorks/WordPerfect Works razl. 1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "Dokument z besedilom BeagleWorks/WordPerfect Works razl. 1" #: Beagle_Works_Calc.xcu msgctxt "" @@ -59,8 +59,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokument BeagleWorks/WordPerfect Works razl. 1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "Preglednica BeagleWorks/WordPerfect Works razl. 1" #: Beagle_Works_Draw.xcu msgctxt "" @@ -68,8 +68,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Dokument BeagleWorks/WordPerfect Works razl. 1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "Risba BeagleWorks/WordPerfect Works razl. 1" #: BroadBand_eBook.xcu msgctxt "" @@ -95,8 +95,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokument ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "Dokument z besedilom ClarisWorks/AppleWorks" #: ClarisWorks_Calc.xcu msgctxt "" @@ -104,8 +104,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokument ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "Preglednica ClarisWorks/AppleWorks" #: ClarisWorks_Draw.xcu msgctxt "" @@ -113,8 +113,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Dokument ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "Risba ClarisWorks/AppleWorks" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -230,8 +230,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokument GreatWorks" +msgid "GreatWorks Text Document" +msgstr "Dokument z besedilom GreatWorks" #: Great_Works_Calc.xcu msgctxt "" @@ -239,8 +239,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokument GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "Preglednica GreatWorks" #: Great_Works_Draw.xcu msgctxt "" @@ -248,8 +248,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Dokument GreatWorks" +msgid "GreatWorks Drawing" +msgstr "Risba GreatWorks" #: HTML_MasterDoc.xcu msgctxt "" @@ -662,8 +662,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokument programa Microsoft Works za Mac (razl. 1–4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "Dokument z besedilom Microsoft Works za Mac (razl. 1–4)" #: Mac_Works_Calc.xcu msgctxt "" @@ -671,8 +671,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokument programa Microsoft Works za Mac (razl. 1–4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "Preglednica Microsoft Works za Mac (razl. 1–4)" #: Mac_Works_Draw.xcu msgctxt "" @@ -680,8 +680,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Dokument programa Microsoft Works za Mac (razl. 1–4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "Risba Microsoft Works za Mac (razl. 1–4)" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sl/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/sl/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sl/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sl/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: LibreOffice 4.3\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-06-23 11:24+0200\n" +"POT-Creation-Date: 2014-09-12 20:31+0200\n" "PO-Revision-Date: 2014-06-14 16:10+0200\n" "Last-Translator: Martin Srebotnjak \n" "Language-Team: sl.libreoffice.org\n" @@ -13056,14 +13056,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programiranje v %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Snemanje makra je možno samo za besedilne dokumente v programu %PRODUCTNAME Writer in za preglednice v programu %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sl/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/sl/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sl/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sl/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,14 +3,14 @@ msgstr "" "Project-Id-Version: LibreOffice 4.3\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-08-16 17:19+0200\n" +"POT-Creation-Date: 2014-09-12 20:31+0200\n" "PO-Revision-Date: 2014-08-17 00:04+0200\n" "Last-Translator: Martin Srebotnjak \n" "Language-Team: sl.libreoffice.org\n" -"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" "X-Generator: Virtaal 0.7.1\n" "X-Accelerator-Marker: ~\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sl/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/sl/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sl/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sl/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,14 +3,14 @@ msgstr "" "Project-Id-Version: LibreOffice 4.0\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-08-16 17:19+0200\n" +"POT-Creation-Date: 2014-09-12 20:31+0200\n" "PO-Revision-Date: 2014-08-17 00:03+0200\n" "Last-Translator: Martin Srebotnjak \n" "Language-Team: sl.libreoffice.org\n" -"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" "X-Generator: Virtaal 0.7.1\n" "X-Accelerator-Marker: ~\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sl/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/sl/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sl/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sl/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,14 +3,14 @@ msgstr "" "Project-Id-Version: LibreOffice 4.3\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-08-16 17:19+0200\n" +"POT-Creation-Date: 2014-09-12 20:31+0200\n" "PO-Revision-Date: 2014-08-17 00:02+0200\n" "Last-Translator: Martin Srebotnjak \n" "Language-Team: sl.libreoffice.org\n" -"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" "X-Generator: Virtaal 0.7.1\n" "X-Accelerator-Marker: ~\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sq/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/sq/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sq/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sq/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 11:28+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -664,7 +664,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -673,7 +673,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -682,7 +682,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sq/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/sq/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sq/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sq/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-01-11 18:17+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13054,14 +13054,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ss/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ss/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ss/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ss/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 11:29+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -662,7 +662,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -671,7 +671,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -680,7 +680,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/st/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/st/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/st/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/st/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 11:30+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -663,7 +663,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -672,7 +672,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -681,7 +681,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sv/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/sv/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sv/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sv/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-05 16:29+0000\n" "Last-Translator: Niklas \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1-dokument" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1-dokument" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1-dokument" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-dokument" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-dokument" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks-dokument" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-dokument" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-dokument" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks-dokument" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works för Mac-dokument (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac-dokument (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac-dokument (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sv/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/sv/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sv/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sv/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-07-13 19:41+0000\n" "Last-Translator: Niklas \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1405280492.000000\n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "Programmera i %PRODUCTNAME" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Funktionen för makroinspelning kan bara användas för textdokument i %PRODUCTNAME Writer och för kalkylblad i %PRODUCTNAME Calc." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/sw-TZ/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/sw-TZ/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/sw-TZ/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/sw-TZ/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 11:32+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -663,7 +663,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -672,7 +672,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -681,7 +681,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/basctl/source/basicide.po libreoffice-l10n-4.3.2/translations/source/ta/basctl/source/basicide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/basctl/source/basicide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/basctl/source/basicide.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407747455.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/cui/source/options.po libreoffice-l10n-4.3.2/translations/source/ta/cui/source/options.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/cui/source/options.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/cui/source/options.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407747276.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/cui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ta/cui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/cui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/cui/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407748351.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/dbaccess/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/ta/dbaccess/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/dbaccess/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/dbaccess/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407746762.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/dbaccess/source/ui/tabledesign.po libreoffice-l10n-4.3.2/translations/source/ta/dbaccess/source/ui/tabledesign.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/dbaccess/source/ui/tabledesign.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/dbaccess/source/ui/tabledesign.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407754152.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/desktop/source/deployment/gui.po libreoffice-l10n-4.3.2/translations/source/ta/desktop/source/deployment/gui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/desktop/source/deployment/gui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/desktop/source/deployment/gui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407745908.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/editeng/source/editeng.po libreoffice-l10n-4.3.2/translations/source/ta/editeng/source/editeng.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/editeng/source/editeng.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/editeng/source/editeng.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407754041.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/editeng/source/items.po libreoffice-l10n-4.3.2/translations/source/ta/editeng/source/items.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/editeng/source/items.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/editeng/source/items.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407754169.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/extensions/source/propctrlr.po libreoffice-l10n-4.3.2/translations/source/ta/extensions/source/propctrlr.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/extensions/source/propctrlr.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/extensions/source/propctrlr.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407756712.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/extensions/uiconfig/sabpilot/ui.po libreoffice-l10n-4.3.2/translations/source/ta/extensions/uiconfig/sabpilot/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/extensions/uiconfig/sabpilot/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/extensions/uiconfig/sabpilot/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407747569.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ta/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-07-19 14:15+0000\n" "Last-Translator: Elanjelian \n" "Language-Team: American English \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 ஆவணம்" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 ஆவணம்" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 ஆவணம்" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks ஆவணம்" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks ஆவணம்" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks ஆவணம்" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks ஆவணம்" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks ஆவணம்" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks ஆவணம்" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/filter/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ta/filter/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/filter/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/filter/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407746022.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/framework/source/classes.po libreoffice-l10n-4.3.2/translations/source/ta/framework/source/classes.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/framework/source/classes.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/framework/source/classes.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407756748.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-4.3.2/translations/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407746340.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/sc/uiconfig/scalc/ui.po libreoffice-l10n-4.3.2/translations/source/ta/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/sc/uiconfig/scalc/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/sc/uiconfig/scalc/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407756772.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/scp2/source/ooo.po libreoffice-l10n-4.3.2/translations/source/ta/scp2/source/ooo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/scp2/source/ooo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/scp2/source/ooo.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-Poedit-SourceCharset: utf-8\n" "X-POOTLE-MTIME: 1407747832.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/sfx2/source/appl.po libreoffice-l10n-4.3.2/translations/source/ta/sfx2/source/appl.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/sfx2/source/appl.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/sfx2/source/appl.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407756778.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/svtools/source/control.po libreoffice-l10n-4.3.2/translations/source/ta/svtools/source/control.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/svtools/source/control.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/svtools/source/control.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407756784.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/svx/source/form.po libreoffice-l10n-4.3.2/translations/source/ta/svx/source/form.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/svx/source/form.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/svx/source/form.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407756789.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/svx/source/items.po libreoffice-l10n-4.3.2/translations/source/ta/svx/source/items.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/svx/source/items.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/svx/source/items.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407756800.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/svx/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/ta/svx/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/svx/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/svx/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407756808.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/sw/source/core/uibase/lingu.po libreoffice-l10n-4.3.2/translations/source/ta/sw/source/core/uibase/lingu.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/sw/source/core/uibase/lingu.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/sw/source/core/uibase/lingu.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407756818.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/sw/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/ta/sw/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/sw/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/sw/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407754105.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/ta/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407756825.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ta/swext/mediawiki/help.po libreoffice-l10n-4.3.2/translations/source/ta/swext/mediawiki/help.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ta/swext/mediawiki/help.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ta/swext/mediawiki/help.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407746220.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/te/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/te/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/te/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/te/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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: 2014-05-30 13:08+0200\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2013-06-21 11:21+0000\n" "Last-Translator: Krishnababu \n" "Language-Team: Telugu \n" @@ -49,7 +49,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,7 +94,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -229,7 +229,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -661,7 +661,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -670,7 +670,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -679,7 +679,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/tg/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/tg/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/tg/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/tg/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-05-29 06:43+0200\n" "Last-Translator: Victor \n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -663,7 +663,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -672,7 +672,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -681,7 +681,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/tg/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/tg/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/tg/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/tg/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-07-04 18:49+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13061,14 +13061,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/th/cui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/th/cui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/th/cui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/th/cui/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407862715.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/th/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/th/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/th/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/th/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-15 08:21+0000\n" "Last-Translator: jteera \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1402820496.000000\n" @@ -49,7 +49,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,7 +94,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -229,7 +229,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -667,7 +667,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -676,7 +676,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -685,7 +685,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-4.3.2/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-4.3.1~rc2/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-08-12 17:04+0000\n" +"PO-Revision-Date: 2014-09-03 17:14+0000\n" "Last-Translator: jteera \n" "Language-Team: LANGUAGE \n" "Language: th\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407863095.000000\n" +"X-POOTLE-MTIME: 1409764467.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -18410,7 +18410,7 @@ "Label\n" "value.text" msgid "Extrusion On/Off" -msgstr "เปิด/ปิด รูปทรงสามมิติ" +msgstr "เปิด/ปิด การยื่นออกเป็นรูปทรงสามมิติ" #: GenericCommands.xcu msgctxt "" @@ -18491,7 +18491,7 @@ "Label\n" "value.text" msgid "Extrusion" -msgstr "Extrusion" +msgstr "การยื่นออกเป็นสามมิติ Extrusion" #: GenericCommands.xcu msgctxt "" @@ -18500,7 +18500,7 @@ "Label\n" "value.text" msgid "Extrusion Depth" -msgstr "Extrusion Depth" +msgstr "ความลึกของการยื่นออก" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/th/svx/source/form.po libreoffice-l10n-4.3.2/translations/source/th/svx/source/form.po --- libreoffice-l10n-4.3.1~rc2/translations/source/th/svx/source/form.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/th/svx/source/form.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407863101.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/th/svx/source/svdraw.po libreoffice-l10n-4.3.2/translations/source/th/svx/source/svdraw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/th/svx/source/svdraw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/th/svx/source/svdraw.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407862693.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/th/svx/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/th/svx/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/th/svx/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/th/svx/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407862551.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/tn/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/tn/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/tn/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/tn/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 11:39+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -664,7 +664,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -673,7 +673,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -682,7 +682,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/tr/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/tr/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/tr/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/tr/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-07-06 21:29+0000\n" "Last-Translator: Necdet \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 Belgesi" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 Belgesi" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 Belgesi" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks Belgesi" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks Belgesi" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks Belgesi" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks Belgesi" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks Belgesi" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks Belgesi" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Mac Belgesi için Microsoft Works (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Mac Belgesi için Microsoft Works (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Mac Belgesi için Microsoft Works (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/tr/formula/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/tr/formula/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/tr/formula/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/tr/formula/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408519852.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/tr/helpcontent2/source/text/shared/00.po libreoffice-l10n-4.3.2/translations/source/tr/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/tr/helpcontent2/source/text/shared/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/tr/helpcontent2/source/text/shared/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408527479.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/tr/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/tr/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/tr/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/tr/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2013-11-18 13:31+0000\n" "Last-Translator: Zeki \n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "%PRODUCTNAME ürününde programlama" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "Makro kaydedici işlevi sadece %PRODUCTNAME Metin Belgesi içindeki belgeler ve %PRODUCTNAME Hesap Tablosu içindeki tablolar için kullanılabilir." - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/tr/sc/uiconfig/scalc/ui.po libreoffice-l10n-4.3.2/translations/source/tr/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/tr/sc/uiconfig/scalc/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/tr/sc/uiconfig/scalc/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408522605.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/tr/scaddins/source/pricing.po libreoffice-l10n-4.3.2/translations/source/tr/scaddins/source/pricing.po --- libreoffice-l10n-4.3.1~rc2/translations/source/tr/scaddins/source/pricing.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/tr/scaddins/source/pricing.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408525334.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/tr/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/tr/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/tr/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/tr/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408521593.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/tr/starmath/source.po libreoffice-l10n-4.3.2/translations/source/tr/starmath/source.po --- libreoffice-l10n-4.3.1~rc2/translations/source/tr/starmath/source.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/tr/starmath/source.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408522105.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/tr/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/tr/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/tr/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/tr/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408521974.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ts/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ts/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ts/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ts/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 11:41+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -662,7 +662,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -671,7 +671,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -680,7 +680,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/tt/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/tt/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/tt/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/tt/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-11-08 17:56+0000\n" "Last-Translator: Ainur \n" "Language-Team: LANGUAGE \n" @@ -49,7 +49,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,7 +94,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -229,7 +229,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -661,7 +661,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -670,7 +670,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -679,7 +679,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ug/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ug/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ug/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ug/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-30 16:19+0200\n" "Last-Translator: Abduqadir \n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ug/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/ug/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ug/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ug/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2013-02-22 10:16+0000\n" "Last-Translator: Abduqadir \n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/extensions/source/propctrlr.po libreoffice-l10n-4.3.2/translations/source/uk/extensions/source/propctrlr.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/extensions/source/propctrlr.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/extensions/source/propctrlr.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408981602.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/uk/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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-06-20 17:12+0000\n" -"Last-Translator: Андрій \n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" +"PO-Revision-Date: 2014-09-03 22:05+0000\n" +"Last-Translator: Olexandr \n" "Language-Team: LANGUAGE \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403284328.000000\n" +"X-POOTLE-MTIME: 1409781902.000000\n" #: AbiWord.xcu msgctxt "" @@ -44,31 +44,34 @@ msgstr "BMP - Windows Bitmap" #: Beagle_Works.xcu +#, fuzzy msgctxt "" "Beagle_Works.xcu\n" "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Документ BeagleWorks/WordPerfect Works в.1" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "Текстовий документ BeagleWorks/WordPerfect Works в.1" #: Beagle_Works_Calc.xcu +#, fuzzy msgctxt "" "Beagle_Works_Calc.xcu\n" "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Документ BeagleWorks/WordPerfect Works в.1" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "Електронна таблиця BeagleWorks/WordPerfect Works в.1" #: Beagle_Works_Draw.xcu +#, fuzzy msgctxt "" "Beagle_Works_Draw.xcu\n" "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "Документ BeagleWorks/WordPerfect Works в.1" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "Малюнок BeagleWorks/WordPerfect Works в.1" #: BroadBand_eBook.xcu msgctxt "" @@ -89,31 +92,34 @@ msgstr "CGM - метафайл комп'ютерної графіки" #: ClarisWorks.xcu +#, fuzzy msgctxt "" "ClarisWorks.xcu\n" "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Документ ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "Текстовий документ ClarisWorks/AppleWorks" #: ClarisWorks_Calc.xcu +#, fuzzy msgctxt "" "ClarisWorks_Calc.xcu\n" "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Документ ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "Електронна таблиця ClarisWorks/AppleWorks" #: ClarisWorks_Draw.xcu +#, fuzzy msgctxt "" "ClarisWorks_Draw.xcu\n" "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "Документ ClarisWorks/AppleWorks" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "Малюнок ClarisWorks/AppleWorks" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -224,31 +230,34 @@ msgstr "GIF - формат обміну графікою" #: Great_Works.xcu +#, fuzzy msgctxt "" "Great_Works.xcu\n" "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Документ GreatWorks" +msgid "GreatWorks Text Document" +msgstr "Текстовий документ GreatWorks" #: Great_Works_Calc.xcu +#, fuzzy msgctxt "" "Great_Works_Calc.xcu\n" "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Документ GreatWorks" +msgid "GreatWorks Spreadsheet" +msgstr "Електронна таблиця GreatWorks" #: Great_Works_Draw.xcu +#, fuzzy msgctxt "" "Great_Works_Draw.xcu\n" "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "Документ GreatWorks" +msgid "GreatWorks Drawing" +msgstr "Малюнок GreatWorks" #: HTML_MasterDoc.xcu msgctxt "" @@ -656,31 +665,34 @@ msgstr "Microsoft Word для Mac (в.1-5)" #: Mac_Works.xcu +#, fuzzy msgctxt "" "Mac_Works.xcu\n" "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Документ Microsoft Works для Mac (в.1-4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "Текстовий документ Microsoft Works для Mac (в.1-4)" #: Mac_Works_Calc.xcu +#, fuzzy msgctxt "" "Mac_Works_Calc.xcu\n" "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Документ Microsoft Works для Mac (в.1-4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "Електронна таблиця Microsoft Works для Mac (в.1-4)" #: Mac_Works_Draw.xcu +#, fuzzy msgctxt "" "Mac_Works_Draw.xcu\n" "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Документ Microsoft Works для Mac (в.1-4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "Малюнок Microsoft Works для Mac (в.1-4)" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/sbasic/shared.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/sbasic/shared.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408812873.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/scalc/00.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/scalc/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/scalc/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/scalc/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407659080.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/scalc/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408854844.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/scalc/02.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/scalc/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/scalc/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/scalc/02.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408854969.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/shared/00.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/shared/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/shared/00.po 2014-09-16 19:55:40.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: 2014-05-30 13:09+0200\n" -"PO-Revision-Date: 2014-08-24 04:36+0000\n" -"Last-Translator: Андрій \n" +"PO-Revision-Date: 2014-08-29 10:56+0000\n" +"Last-Translator: Olexandr \n" "Language-Team: LANGUAGE \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408854980.000000\n" +"X-POOTLE-MTIME: 1409309789.000000\n" #: 00000001.xhp msgctxt "" @@ -505,13 +505,14 @@ msgstr "Дивіться також такі функції:" #: 00000001.xhp +#, fuzzy msgctxt "" "00000001.xhp\n" "par_id3147418\n" "55\n" "help.text" msgid "The search supports regular expressions. You can enter \"all.*\", for example to find the first location of \"all\" followed by any characters. If you want to search for a text that is also a regular expression, you must precede every character with a \\ character. You can switch the automatic evaluation of regular expression on and off in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate." -msgstr "" +msgstr "Пошук підтримує регулярні вирази. Наприклад, можна ввести \"all.*\", щоб знайти перше входження \"all\", після якого слідує довільна кількість символів. Щоб виконати пошук тексту, який також є регулярним виразом, слід ввести символи \\ перед кожним символом. Щоб увімкнути або вимкнути автоматичну оцінку регулярних виразів, користуйтесь командою %PRODUCTNAME - ПараметриЗасоби - Параметри - %PRODUCTNAME Calc - ОБчислення." #: 00000001.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/shared/01.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/shared/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/shared/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408805314.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/shared/05.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/shared/05.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/shared/05.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/shared/05.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407678493.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/shared/autopi.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/shared/autopi.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408854993.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-08-10 11:51+0000\n" "Last-Translator: Андрій \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407671469.000000\n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/shared/optionen.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/shared/optionen.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407671474.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/simpress/01.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/simpress/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/simpress/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408805383.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/swriter/00.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/swriter/00.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/swriter/00.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408805587.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/swriter/01.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/swriter/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/swriter/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-25 17:42+0200\n" -"PO-Revision-Date: 2014-08-24 08:09+0000\n" +"PO-Revision-Date: 2014-08-27 11:55+0000\n" "Last-Translator: Olexandr \n" "Language-Team: LANGUAGE \n" "Language: uk\n" @@ -12,9 +12,9 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408867791.000000\n" +"X-POOTLE-MTIME: 1409140512.000000\n" #: 01120000.xhp msgctxt "" @@ -4687,13 +4687,14 @@ msgstr "..." #: 04030000.xhp +#, fuzzy msgctxt "" "04030000.xhp\n" "par_id3153526\n" "19\n" "help.text" msgid "Inserts a special character as a footnote or endnote anchor." -msgstr "" +msgstr "Вставляння спеціального символу в якості прив'язки виноски або кінцевої виноски." #: 04030000.xhp msgctxt "" @@ -4705,13 +4706,14 @@ msgstr "Тип" #: 04030000.xhp +#, fuzzy msgctxt "" "04030000.xhp\n" "par_id3151256\n" "20\n" "help.text" msgid "Select whether to insert a footnote or an endnote. Endnote numbering is separate from the footnote numbering." -msgstr "" +msgstr "Виберіть, що буде додано: виноска або кінцева виноска. Нумерація кінцевих виносок не пов'язана з нумерацією виносок." #: 04030000.xhp msgctxt "" @@ -4723,13 +4725,14 @@ msgstr "Виноска" #: 04030000.xhp +#, fuzzy msgctxt "" "04030000.xhp\n" "par_id3148981\n" "21\n" "help.text" msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page." -msgstr "" +msgstr "Вставляє прив'язку виноски у документ в поточну позицію курсора і додає виноску внизу сторінки." #: 04030000.xhp msgctxt "" @@ -4741,22 +4744,24 @@ msgstr "Кінцева виноска" #: 04030000.xhp +#, fuzzy msgctxt "" "04030000.xhp\n" "par_id3152770\n" "22\n" "help.text" msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document." -msgstr "" +msgstr "Вставляє прив'язку кінцевої виноски у документ в поточну позицію курсора і додає кінцеву виноску в кінці документу." #: 04030000.xhp +#, fuzzy msgctxt "" "04030000.xhp\n" "par_id3155135\n" "25\n" "help.text" msgid "Tips for working with footnotes." -msgstr "" +msgstr "Поради щодо роботи з виносками." #: 04040000.xhp msgctxt "" @@ -4784,31 +4789,34 @@ msgstr "Вставити закладку" #: 04040000.xhp +#, fuzzy msgctxt "" "04040000.xhp\n" "par_id3149806\n" "2\n" "help.text" msgid "Inserts a bookmark at the cursor position. You can then use the Navigator to quickly jump to the marked location at a later time. In an HTML document, bookmarks are converted to anchors that you can jump to from a hyperlink. " -msgstr "" +msgstr "Вставляє закладку у позиції курсора. Потім для швидкого переходу до позначеного місця можна скористатись Навігатором. У документі HTML закладки перетворюються на прив'язки, до яких можна перейти за допомогою гіперпосилання. " #: 04040000.xhp +#, fuzzy msgctxt "" "04040000.xhp\n" "par_id3153677\n" "3\n" "help.text" msgid "To jump to a specific bookmark, press F5 to open the Navigator, click the plus sign (+) next to the Bookmark entry, and then double-click the bookmark." -msgstr "" +msgstr "Щоб швидко перейти до конкретної закладки, натисніть клавішу F5, щоб відкрити Навігатор, натисніть знак \"плюс\" (+) поруч з елементом Закладка, а потім двічі клацнути закладку." #: 04040000.xhp +#, fuzzy msgctxt "" "04040000.xhp\n" "par_id3151308\n" "4\n" "help.text" msgid "You can also right-click the Page Number field at the left end of the Status Bar at the bottom of the document window, and then choose the bookmark that you want to jump to." -msgstr "" +msgstr "Також можна клацнути правою кнопкою поле Номер сторінки ліворуч у рядку стану внизу вікна, а потім вибрати закладку для переходу." #: 04040000.xhp msgctxt "" @@ -4820,22 +4828,24 @@ msgstr "Закладки" #: 04040000.xhp +#, fuzzy msgctxt "" "04040000.xhp\n" "par_id3155178\n" "10\n" "help.text" msgid "Type the name of the bookmark that you want to create. The lower list contains all of the bookmarks in the current document. To delete a bookmark, select it in the list, and then click Delete." -msgstr "" +msgstr "Введіть назву створюваної закладки. У нижньому списку містяться назви всіх закладок, наявних у поточному документі. Щоб вилучити закладку, виберіть її у списку і натисніть кнопку Стерти." #: 04040000.xhp +#, fuzzy msgctxt "" "04040000.xhp\n" "par_id3149483\n" "13\n" "help.text" msgid "You cannot use the following characters in a bookmark name: / \\ @ : * ? \" ; , . #" -msgstr "" +msgstr "У назвах закладок не допускається використовувати такі символи: / \\ @ : * ? \" ; , . #" #: 04040000.xhp msgctxt "" @@ -4847,13 +4857,14 @@ msgstr "Видалити" #: 04040000.xhp +#, fuzzy msgctxt "" "04040000.xhp\n" "par_id3151251\n" "12\n" "help.text" msgid "To delete a bookmark, select the bookmark from the Insert Bookmark dialog and click the Delete button. No confirmation dialog will follow." -msgstr "" +msgstr "Щоб видалити закладку, виберіть її у діалоговому вікні Вставити закладку і натисніть кнопку Стерти. Діалогове вікно підтвердження не з'явиться." #: 04060000.xhp msgctxt "" @@ -4873,13 +4884,14 @@ msgstr "Заголовок" #: 04060000.xhp +#, fuzzy msgctxt "" "04060000.xhp\n" "par_id3149288\n" "2\n" "help.text" msgid "Adds a numbered caption to a selected graphic, table, frame, text frame, or drawing object. You can also access this command by right-clicking the item that you want to add the caption to. " -msgstr "" +msgstr "Додає нумеровану назву до вибраного графічного об’єкта, таблиці, рамки, врізки або малюнка. Цю команду можна також викликати, клацнувши правою кнопкою на елементі, до якого потрібно додати назву. " #: 04060000.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/swriter/02.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/swriter/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/swriter/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/swriter/02.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407659389.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/helpcontent2/source/text/swriter/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/helpcontent2/source/text/swriter/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408855054.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-4.3.2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-08-18 14:27+0000\n" +"PO-Revision-Date: 2014-08-26 17:31+0000\n" "Last-Translator: Olexandr \n" "Language-Team: translation@linux.org.ua\n" "Language: uk\n" @@ -12,9 +12,9 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408372033.000000\n" +"X-POOTLE-MTIME: 1409074305.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -7511,7 +7511,7 @@ "Label\n" "value.text" msgid "4 Bit color palette" -msgstr "Кольорова палітра (4 біти)" +msgstr "Колірна палітра (4 біти)" #: DrawImpressCommands.xcu msgctxt "" @@ -7529,7 +7529,7 @@ "Label\n" "value.text" msgid "8 Bit color palette" -msgstr "Кольорова палітра (8 біт)" +msgstr "Колірна палітра (8 біт)" #: DrawImpressCommands.xcu msgctxt "" @@ -16882,7 +16882,7 @@ "Label\n" "value.text" msgid "Color Palette" -msgstr "Кольорова палітра" +msgstr "Колірна палітра" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/sc/source/ui/navipi.po libreoffice-l10n-4.3.2/translations/source/uk/sc/source/ui/navipi.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/sc/source/ui/navipi.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/sc/source/ui/navipi.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407513479.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/scaddins/source/pricing.po libreoffice-l10n-4.3.2/translations/source/uk/scaddins/source/pricing.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/scaddins/source/pricing.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/scaddins/source/pricing.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408981494.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/scp2/source/calc.po libreoffice-l10n-4.3.2/translations/source/uk/scp2/source/calc.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/scp2/source/calc.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/scp2/source/calc.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407862858.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/sd/source/filter/html.po libreoffice-l10n-4.3.2/translations/source/uk/sd/source/filter/html.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/sd/source/filter/html.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/sd/source/filter/html.po 2014-09-16 19:55:40.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: 2014-05-02 00:04+0200\n" -"PO-Revision-Date: 2014-06-01 04:38+0000\n" -"Last-Translator: Андрій \n" +"PO-Revision-Date: 2014-08-26 17:35+0000\n" +"Last-Translator: Olexandr \n" "Language-Team: LANGUAGE \n" "Language: uk\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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401597482.000000\n" +"X-POOTLE-MTIME: 1409074547.000000\n" #: pubdlg.src msgctxt "" @@ -455,7 +455,7 @@ "PAGE6_DOCCOLORS\n" "radiobutton.text" msgid "~Apply color scheme from document" -msgstr "~Застосувати кольорову схему з документа" +msgstr "~Застосувати колірну схему з документа" #: pubdlg.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/svx/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/uk/svx/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/svx/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/svx/uiconfig/ui.po 2014-09-16 19:55:40.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: 2014-06-12 13:24+0200\n" -"PO-Revision-Date: 2014-06-21 05:41+0000\n" -"Last-Translator: Андрій \n" +"PO-Revision-Date: 2014-08-26 17:02+0000\n" +"Last-Translator: Olexandr \n" "Language-Team: LANGUAGE \n" "Language: uk\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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1403329269.000000\n" +"X-POOTLE-MTIME: 1409072578.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -2727,7 +2727,7 @@ "label\n" "string.text" msgid "Color _mode:" -msgstr "_Кольоровий режим:" +msgstr "_Колірний режим:" #: sidebargraphic.ui msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/sw/source/ui/dbui.po libreoffice-l10n-4.3.2/translations/source/uk/sw/source/ui/dbui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/sw/source/ui/dbui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/sw/source/ui/dbui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408806486.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/sw/source/ui/docvw.po libreoffice-l10n-4.3.2/translations/source/uk/sw/source/ui/docvw.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/sw/source/ui/docvw.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/sw/source/ui/docvw.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407575545.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/sw/source/ui/ribbar.po libreoffice-l10n-4.3.2/translations/source/uk/sw/source/ui/ribbar.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/sw/source/ui/ribbar.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/sw/source/ui/ribbar.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408981668.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/uk/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407575573.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uk/swext/mediawiki/help.po libreoffice-l10n-4.3.2/translations/source/uk/swext/mediawiki/help.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uk/swext/mediawiki/help.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uk/swext/mediawiki/help.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "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: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1407513424.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ur/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ur/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ur/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ur/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-09-21 22:38+0000\n" "Last-Translator: khunshan \n" "Language-Team: LANGUAGE \n" @@ -49,7 +49,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -58,7 +58,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -67,7 +67,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -94,7 +94,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -103,7 +103,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -112,7 +112,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -229,7 +229,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -238,7 +238,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -247,7 +247,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -661,7 +661,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -670,7 +670,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -679,7 +679,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/uz/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/uz/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/uz/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/uz/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 11:46+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -662,7 +662,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -671,7 +671,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -680,7 +680,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/ve/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/ve/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/ve/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/ve/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 11:48+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -664,7 +664,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -673,7 +673,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -682,7 +682,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/vi/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/vi/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/vi/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/vi/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-07-12 03:32+0200\n" "Last-Translator: vuhung \n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -660,7 +660,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -669,7 +669,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -678,7 +678,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/vi/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/vi/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/vi/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/vi/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2011-11-01 00:51+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13054,14 +13054,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/xh/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/xh/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/xh/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/xh/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 11:50+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -56,7 +56,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -65,7 +65,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -92,7 +92,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -101,7 +101,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -110,7 +110,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -227,7 +227,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -236,7 +236,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -245,7 +245,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -662,7 +662,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -671,7 +671,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -680,7 +680,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/cui/source/dialogs.po libreoffice-l10n-4.3.2/translations/source/zh-CN/cui/source/dialogs.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/cui/source/dialogs.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/cui/source/dialogs.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-01 07:44+0000\n" +"PO-Revision-Date: 2014-08-27 12:08+0000\n" "Last-Translator: 琨珑 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404200657.000000\n" +"X-POOTLE-MTIME: 1409141338.000000\n" #: colorpicker.src msgctxt "" @@ -842,7 +842,7 @@ "FT_FRAME\n" "fixedtext.text" msgid "F~rame" -msgstr "框架(~R)" +msgstr "目标框架(~R)" #: hyperdlg.src msgctxt "" @@ -994,7 +994,7 @@ "FT_FRAME\n" "fixedtext.text" msgid "F~rame" -msgstr "框架(~R)" +msgstr "目标框架(~R)" #: hyperdlg.src msgctxt "" @@ -1173,7 +1173,7 @@ "FT_FRAME\n" "fixedtext.text" msgid "F~rame" -msgstr "框架(~R)" +msgstr "目标框架(~R)" #: hyperdlg.src msgctxt "" @@ -1325,7 +1325,7 @@ "FT_FRAME\n" "fixedtext.text" msgid "F~rame" -msgstr "框架(~R)" +msgstr "目标框架(~R)" #: hyperdlg.src msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/cui/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/zh-CN/cui/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/cui/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/cui/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408879288.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/extensions/source/propctrlr.po libreoffice-l10n-4.3.2/translations/source/zh-CN/extensions/source/propctrlr.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/extensions/source/propctrlr.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/extensions/source/propctrlr.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408790138.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/zh-CN/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.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:08+0200\n" -"PO-Revision-Date: 2014-06-13 08:38+0000\n" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" +"PO-Revision-Date: 2014-09-03 09:25+0000\n" "Last-Translator: 琨珑 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" @@ -12,9 +12,9 @@ "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.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402648684.000000\n" +"X-POOTLE-MTIME: 1409736354.000000\n" #: AbiWord.xcu msgctxt "" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 文档" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "BeagleWorks/WordPerfect Works v1 文本文档" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 文档" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "BeagleWorks/WordPerfect Works v1 电子表格" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 文档" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "BeagleWorks/WordPerfect Works v1 绘图" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks 文档" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "ClarisWorks/AppleWorks 文本文档" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks 文档" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "ClarisWorks/AppleWorks 电子表格" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks 文档" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "ClarisWorks/AppleWorks 绘图" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks文档" +msgid "GreatWorks Text Document" +msgstr "GreatWorks 文本文档" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks 文档" +msgid "GreatWorks Spreadsheet" +msgstr "GreatWorks 电子表格" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks 文档" +msgid "GreatWorks Drawing" +msgstr "GreatWorks 绘图" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "Microsoft Works for Mac 文本文档 (v1 - v4)" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac 文档 (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "Microsoft Works for Mac 电子表格 (v1 - v4)" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac 文档 (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "Microsoft Works for Mac 绘图 (v1 - v4)" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/01.po libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/schart/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/schart/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408022698.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/01.po libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/shared/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408259518.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/02.po libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/02.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/shared/02.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408280411.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/autopi.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/shared/autopi.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408280715.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/explorer/database.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/shared/explorer/database.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408881797.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2014-08-17 13:10+0000\n" "Last-Translator: 琨珑 \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408281041.000000\n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "在 %PRODUCTNAME 中编程" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "宏记录功能只对 %PRODUCTNAME Writer 的文本文档和 %PRODUCTNAME Calc 的电子表格有效。" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408282224.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/01.po libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/01.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/swriter/01.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-25 17:42+0200\n" -"PO-Revision-Date: 2014-08-11 07:49+0000\n" +"PO-Revision-Date: 2014-08-27 12:05+0000\n" "Last-Translator: 琨珑 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1407743346.000000\n" +"X-POOTLE-MTIME: 1409141136.000000\n" #: 01120000.xhp msgctxt "" @@ -12256,7 +12256,7 @@ "2\n" "help.text" msgid "Specify the format of the index or table entries. The appearance of this tab changes to reflect the type of index that you selected on the Index/Table tab." -msgstr "" +msgstr "指定索引和目录条目的格式。该选项卡的外观会随着您在索引/目录中所选择的索引类型而改变。" #: 04120220.xhp msgctxt "" @@ -17143,7 +17143,7 @@ "par_idN10AA6\n" "help.text" msgid "By default, the Follow text flow option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)." -msgstr "" +msgstr "当您使用 OpenOffice.org 2.0 之前的Writer版本打开文档时,跟随文本流选项默认是被选定的。但是,当您创建或者打开 Microsoft Word 格式 (*.doc) 的文档时该选项不会被选定。" #: 05060100.xhp msgctxt "" @@ -19169,7 +19169,7 @@ "8\n" "help.text" msgid "Specify the name of the frame where you want to open the targeted file. The predefined target frame names are described here." -msgstr "" +msgstr "指定您想要打开的目标文件的框架名称。预定义的框架名称在这里有描述。" #: 05060800.xhp msgctxt "" @@ -19519,7 +19519,7 @@ "23\n" "help.text" msgid "Content vertical alignment" -msgstr "" +msgstr "内容垂直对齐" #: 05060900.xhp msgctxt "" @@ -19528,7 +19528,7 @@ "24\n" "help.text" msgid "Specifies the vertical alignment of the frame's content. Mainly it means text content, but it also affects tables and other objects anchored to the text area (anchored as character, to character or to paragraph), for example frames, graphics or drawings." -msgstr "" +msgstr "指定框架内容的垂直对齐方式。一般情况下它是指文本内容,但是它也会影响到锚定到文本区域的表格和其它对象(锚定为字符,锚定到字符,锚定到段落),比如图文框、图形和绘图对象。" #: 05060900.xhp msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/helpcontent2/source/text/swriter/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408113218.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-4.3.2/translations/source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408790259.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/librelogo/source/pythonpath.po libreoffice-l10n-4.3.2/translations/source/zh-CN/librelogo/source/pythonpath.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/librelogo/source/pythonpath.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/librelogo/source/pythonpath.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,17 +4,17 @@ "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-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-08-22 13:38+0000\n" -"Last-Translator: 琨珑 \n" +"PO-Revision-Date: 2014-08-29 00:13+0000\n" +"Last-Translator: Jim \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408714737.000000\n" +"X-POOTLE-MTIME: 1409271197.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -278,7 +278,7 @@ "FONTCOLOR\n" "property.text" msgid "fontcolor|textcolor|textcolour" -msgstr "文字颜色|字体颜色||字颜色|字色|fontcolor|textcolor|textcolour" +msgstr "文字颜色|字体颜色|字颜色|字色|fontcolor|textcolor|textcolour" #: LibreLogo_en_US.properties msgctxt "" @@ -286,7 +286,7 @@ "FONTHEIGHT\n" "property.text" msgid "fontsize|textsize|textheight" -msgstr "文字大小|字体大小|字大小|字高||fontsize|textsize|textheight" +msgstr "文字大小|字体大小|字大小|字高|fontsize|textsize|textheight" #: LibreLogo_en_US.properties msgctxt "" @@ -510,7 +510,7 @@ "LEFTSTRING\n" "property.text" msgid "“|‘" -msgstr "「|『|“|“|‘" +msgstr "「|『|“|‘" #: LibreLogo_en_US.properties msgctxt "" @@ -518,7 +518,7 @@ "RIGHTSTRING\n" "property.text" msgid "”|’" -msgstr "」|』|”|”|’" +msgstr "」|』|”|’" #: LibreLogo_en_US.properties msgctxt "" @@ -550,7 +550,7 @@ "AND\n" "property.text" msgid "and" -msgstr "且|与||and" +msgstr "且|与|and" #: LibreLogo_en_US.properties msgctxt "" @@ -822,7 +822,7 @@ "INCH\n" "property.text" msgid "in|\"" -msgstr "英寸|in|\"" +msgstr "英寸|in" #: LibreLogo_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-4.3.2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408790414.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/sc/uiconfig/scalc/ui.po libreoffice-l10n-4.3.2/translations/source/zh-CN/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/sc/uiconfig/scalc/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/sc/uiconfig/scalc/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408803466.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/scp2/source/ooo.po libreoffice-l10n-4.3.2/translations/source/zh-CN/scp2/source/ooo.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/scp2/source/ooo.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/scp2/source/ooo.po 2014-09-16 19:55:40.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-13 09:21+0000\n" +"PO-Revision-Date: 2014-08-28 00:38+0000\n" "Last-Translator: 琨珑 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1402651296.000000\n" +"X-POOTLE-MTIME: 1409186324.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -1822,7 +1822,7 @@ "STR_NAME_MODULE_LANGPACK_EN_US\n" "LngText.text" msgid "English (United States)" -msgstr "English (United States)" +msgstr "英语 (美国) [English (United States)]" #: module_langpack.ulf msgctxt "" @@ -1838,7 +1838,7 @@ "STR_NAME_MODULE_LANGPACK_DE\n" "LngText.text" msgid "German" -msgstr "German" +msgstr "德语 [German]" #: module_langpack.ulf msgctxt "" @@ -1854,7 +1854,7 @@ "STR_NAME_MODULE_LANGPACK_FR\n" "LngText.text" msgid "French" -msgstr "法语" +msgstr "法语 [French]" #: module_langpack.ulf msgctxt "" @@ -1870,7 +1870,7 @@ "STR_NAME_MODULE_LANGPACK_IT\n" "LngText.text" msgid "Italian" -msgstr "意大利语" +msgstr "意大利语 [Italian]" #: module_langpack.ulf msgctxt "" @@ -1886,7 +1886,7 @@ "STR_NAME_MODULE_LANGPACK_ES\n" "LngText.text" msgid "Spanish" -msgstr "西班牙语" +msgstr "西班牙语 [Spanish]" #: module_langpack.ulf msgctxt "" @@ -1902,7 +1902,7 @@ "STR_NAME_MODULE_LANGPACK_SV\n" "LngText.text" msgid "Swedish" -msgstr "瑞典语" +msgstr "瑞典语 [Swedish]" #: module_langpack.ulf msgctxt "" @@ -1918,7 +1918,7 @@ "STR_NAME_MODULE_LANGPACK_PT\n" "LngText.text" msgid "Portuguese" -msgstr "葡萄牙语" +msgstr "葡萄牙语 [Portuguese]" #: module_langpack.ulf msgctxt "" @@ -1934,7 +1934,7 @@ "STR_NAME_MODULE_LANGPACK_PT_BR\n" "LngText.text" msgid "Portuguese (Brazil)" -msgstr "葡萄牙语(巴西)" +msgstr "葡萄牙语 (巴西) [Portuguese (Brazil)]" #: module_langpack.ulf msgctxt "" @@ -1950,7 +1950,7 @@ "STR_NAME_MODULE_LANGPACK_JA\n" "LngText.text" msgid "Japanese" -msgstr "日本語" +msgstr "日本語 [Japanese]" #: module_langpack.ulf msgctxt "" @@ -1966,7 +1966,7 @@ "STR_NAME_MODULE_LANGPACK_KO\n" "LngText.text" msgid "Korean" -msgstr "朝鲜语" +msgstr "朝鲜语 [Korean]" #: module_langpack.ulf msgctxt "" @@ -1982,7 +1982,7 @@ "STR_NAME_MODULE_LANGPACK_ZH_CN\n" "LngText.text" msgid "Chinese (simplified)" -msgstr "中文 (简体)" +msgstr "中文 (简体) [Chinese (simplified)]" #: module_langpack.ulf msgctxt "" @@ -1998,7 +1998,7 @@ "STR_NAME_MODULE_LANGPACK_ZH_TW\n" "LngText.text" msgid "Chinese (traditional)" -msgstr "中文 (正體)" +msgstr "中文 (正體) [Chinese (traditional)]" #: module_langpack.ulf msgctxt "" @@ -2462,7 +2462,7 @@ "STR_NAME_MODULE_LANGPACK_OR\n" "LngText.text" msgid "Odia" -msgstr "Odia [奥里亚语]" +msgstr " 奥里亚语 [Odia]" #: module_langpack.ulf msgctxt "" @@ -3166,7 +3166,7 @@ "STR_NAME_MODULE_LANGPACK_EN_ZA\n" "LngText.text" msgid "English (South Africa)" -msgstr "English (South Africa)" +msgstr "英语 (南非) [English (South Africa)]" #: module_langpack.ulf msgctxt "" @@ -3182,7 +3182,7 @@ "STR_NAME_MODULE_LANGPACK_EN_GB\n" "LngText.text" msgid "English (United Kingdom)" -msgstr "English (United Kingdom)" +msgstr "英语 (英国) [English (United Kingdom)]" #: module_langpack.ulf msgctxt "" @@ -3342,7 +3342,7 @@ "STR_NAME_MODULE_LANGPACK_DGO\n" "LngText.text" msgid "Dogri" -msgstr "Dogri 语" +msgstr "多格拉语 [Dogri]" #: module_langpack.ulf msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/sd/uiconfig/simpress/ui.po libreoffice-l10n-4.3.2/translations/source/zh-CN/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/sd/uiconfig/simpress/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/sd/uiconfig/simpress/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408240462.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/svtools/uiconfig/ui.po libreoffice-l10n-4.3.2/translations/source/zh-CN/svtools/uiconfig/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/svtools/uiconfig/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/svtools/uiconfig/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408802822.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/svx/source/gallery2.po libreoffice-l10n-4.3.2/translations/source/zh-CN/svx/source/gallery2.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/svx/source/gallery2.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/svx/source/gallery2.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408629773.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/wizards/source/formwizard.po libreoffice-l10n-4.3.2/translations/source/zh-CN/wizards/source/formwizard.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-CN/wizards/source/formwizard.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-CN/wizards/source/formwizard.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408240485.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/cui/source/tabpages.po libreoffice-l10n-4.3.2/translations/source/zh-TW/cui/source/tabpages.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/cui/source/tabpages.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-TW/cui/source/tabpages.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408724703.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/zh-TW/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-TW/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2014-06-20 14:05+0800\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: LANGUAGE \n" @@ -49,8 +49,8 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 文件" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" +msgstr "" #: Beagle_Works_Calc.xcu msgctxt "" @@ -58,8 +58,8 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 文件" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" +msgstr "" #: Beagle_Works_Draw.xcu msgctxt "" @@ -67,8 +67,8 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" -msgstr "BeagleWorks/WordPerfect Works v1 文件" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" +msgstr "" #: BroadBand_eBook.xcu msgctxt "" @@ -94,8 +94,8 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks 文件" +msgid "ClarisWorks/AppleWorks Text Document" +msgstr "" #: ClarisWorks_Calc.xcu msgctxt "" @@ -103,8 +103,8 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks 文件" +msgid "ClarisWorks/AppleWorks Spreadsheet" +msgstr "" #: ClarisWorks_Draw.xcu msgctxt "" @@ -112,8 +112,8 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" -msgstr "ClarisWorks/AppleWorks 文件" +msgid "ClarisWorks/AppleWorks Drawing" +msgstr "" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -229,8 +229,8 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks 文件" +msgid "GreatWorks Text Document" +msgstr "" #: Great_Works_Calc.xcu msgctxt "" @@ -238,8 +238,8 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks 文件" +msgid "GreatWorks Spreadsheet" +msgstr "" #: Great_Works_Draw.xcu msgctxt "" @@ -247,8 +247,8 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" -msgstr "GreatWorks 文件" +msgid "GreatWorks Drawing" +msgstr "" #: HTML_MasterDoc.xcu msgctxt "" @@ -661,8 +661,8 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac 文件 (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" +msgstr "" #: Mac_Works_Calc.xcu msgctxt "" @@ -670,8 +670,8 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac 文件 (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" +msgstr "" #: Mac_Works_Draw.xcu msgctxt "" @@ -679,8 +679,8 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" -msgstr "Microsoft Works for Mac 文件 (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" +msgstr "" #: Mariner_Write.xcu msgctxt "" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/formula/source/ui/dlg.po libreoffice-l10n-4.3.2/translations/source/zh-TW/formula/source/ui/dlg.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/formula/source/ui/dlg.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-TW/formula/source/ui/dlg.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408724722.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/guide.po libreoffice-l10n-4.3.2/translations/source/zh-TW/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/guide.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-TW/helpcontent2/source/text/shared/guide.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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-06-12 13:24+0200\n" +"POT-Creation-Date: 2014-09-02 15:22+0200\n" "PO-Revision-Date: 2012-08-13 09:33+0000\n" "Last-Translator: Cheng-Chia \n" "Language-Team: LANGUAGE \n" @@ -13055,14 +13055,6 @@ msgid "Programming in %PRODUCTNAME" msgstr "在 %PRODUCTNAME 中進行程式設計" -#: macro_recording.xhp -msgctxt "" -"macro_recording.xhp\n" -"par_id7797242\n" -"help.text" -msgid "The macro recording functionality is only available for text documents in %PRODUCTNAME Writer and for spreadsheets in %PRODUCTNAME Calc." -msgstr "巨集記錄功能僅適用於 %PRODUCTNAME Writer 中的文字文件與 %PRODUCTNAME Calc 中的試算表。" - #: main.xhp msgctxt "" "main.xhp\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/sd/source/ui/app.po libreoffice-l10n-4.3.2/translations/source/zh-TW/sd/source/ui/app.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/sd/source/ui/app.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-TW/sd/source/ui/app.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408724744.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/starmath/source.po libreoffice-l10n-4.3.2/translations/source/zh-TW/starmath/source.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/starmath/source.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-TW/starmath/source.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408724753.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/starmath/uiconfig/smath/ui.po libreoffice-l10n-4.3.2/translations/source/zh-TW/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/starmath/uiconfig/smath/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-TW/starmath/uiconfig/smath/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408724799.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/sw/uiconfig/swriter/ui.po libreoffice-l10n-4.3.2/translations/source/zh-TW/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zh-TW/sw/uiconfig/swriter/ui.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zh-TW/sw/uiconfig/swriter/ui.po 2014-09-16 19:55:40.000000000 +0000 @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" "X-POOTLE-MTIME: 1408724829.000000\n" diff -Nru libreoffice-l10n-4.3.1~rc2/translations/source/zu/filter/source/config/fragments/filters.po libreoffice-l10n-4.3.2/translations/source/zu/filter/source/config/fragments/filters.po --- libreoffice-l10n-4.3.1~rc2/translations/source/zu/filter/source/config/fragments/filters.po 2014-08-26 04:07:45.000000000 +0000 +++ libreoffice-l10n-4.3.2/translations/source/zu/filter/source/config/fragments/filters.po 2014-09-16 19:55:40.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE 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" +"POT-Creation-Date: 2014-09-02 15:21+0200\n" "PO-Revision-Date: 2012-06-13 11:53+0200\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ "Beagle_Works\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Text Document" msgstr "" #: Beagle_Works_Calc.xcu @@ -57,7 +57,7 @@ "Beagle_Works_Calc\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Spreadsheet" msgstr "" #: Beagle_Works_Draw.xcu @@ -66,7 +66,7 @@ "Beagle_Works_Draw\n" "UIName\n" "value.text" -msgid "BeagleWorks/WordPerfect Works v1 Document" +msgid "BeagleWorks/WordPerfect Works v1 Drawing" msgstr "" #: BroadBand_eBook.xcu @@ -93,7 +93,7 @@ "ClarisWorks\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Text Document" msgstr "" #: ClarisWorks_Calc.xcu @@ -102,7 +102,7 @@ "ClarisWorks_Calc\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Spreadsheet" msgstr "" #: ClarisWorks_Draw.xcu @@ -111,7 +111,7 @@ "ClarisWorks_Draw\n" "UIName\n" "value.text" -msgid "ClarisWorks/AppleWorks Document" +msgid "ClarisWorks/AppleWorks Drawing" msgstr "" #: Claris_Resolve_Calc.xcu @@ -228,7 +228,7 @@ "Great_Works\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Text Document" msgstr "" #: Great_Works_Calc.xcu @@ -237,7 +237,7 @@ "Great_Works_Calc\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Spreadsheet" msgstr "" #: Great_Works_Draw.xcu @@ -246,7 +246,7 @@ "Great_Works_Draw\n" "UIName\n" "value.text" -msgid "GreatWorks Document" +msgid "GreatWorks Drawing" msgstr "" #: HTML_MasterDoc.xcu @@ -663,7 +663,7 @@ "Mac_Works\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Text Document (v1 - v4)" msgstr "" #: Mac_Works_Calc.xcu @@ -672,7 +672,7 @@ "Mac_Works_Calc\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" msgstr "" #: Mac_Works_Draw.xcu @@ -681,7 +681,7 @@ "Mac_Works_Draw\n" "UIName\n" "value.text" -msgid "Microsoft Works for Mac Document (v1 - v4)" +msgid "Microsoft Works for Mac Drawing (v1 - v4)" msgstr "" #: Mariner_Write.xcu diff -Nru libreoffice-l10n-4.3.1~rc2/vcl/generic/glyphs/scrptrun.cxx libreoffice-l10n-4.3.2/vcl/generic/glyphs/scrptrun.cxx --- libreoffice-l10n-4.3.1~rc2/vcl/generic/glyphs/scrptrun.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/vcl/generic/glyphs/scrptrun.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -207,7 +207,14 @@ // pop it from the stack if (pairIndex >= 0 && (pairIndex & 1) != 0 && parenSP >= 0) { parenSP -= 1; - startSP -= 1; + /* decrement startSP only if it is >= 0, + decrementing it unnecessarily will lead to memory corruption + while processing the above while block. + e.g. startSP = -4 , parenSP = -1 + */ + if (startSP >= 0) { + startSP -= 1; + } } } else { // if the run broke on a surrogate pair, diff -Nru libreoffice-l10n-4.3.1~rc2/vcl/osx/salframe.cxx libreoffice-l10n-4.3.2/vcl/osx/salframe.cxx --- libreoffice-l10n-4.3.1~rc2/vcl/osx/salframe.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/vcl/osx/salframe.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1060,7 +1060,7 @@ // we do not really handle Alt (see below) // we map it to MOD3, whichis actually Command if( (nKeyCode & (KEY_MOD2|KEY_MOD3)) != 0 ) - aResult.append( sal_Unicode( 0x2303 ) ); + aResult.append( sal_Unicode( 0x2325 ) ); aResult.append( it->second ); } diff -Nru libreoffice-l10n-4.3.1~rc2/vcl/osx/salnativewidgets.cxx libreoffice-l10n-4.3.2/vcl/osx/salnativewidgets.cxx --- libreoffice-l10n-4.3.1~rc2/vcl/osx/salnativewidgets.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/vcl/osx/salnativewidgets.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -550,14 +550,14 @@ #else if (rControlRegion.Top() == 0 && nPart == PART_DRAW_BACKGROUND_HORZ) { - BOOL isMain = [mpFrame->getNSWindow() isMainWindow]; + const bool bDrawActive = mpFrame ? ([mpFrame->getNSWindow() isKeyWindow] ? true : false) : true; CGFloat unifiedHeight = rControlRegion.GetHeight(); CGRect drawRect = CGRectMake(rControlRegion.Left(), rControlRegion.Top(), rControlRegion.GetWidth(), rControlRegion.GetHeight()); CUIDraw([NSWindow coreUIRenderer], drawRect, mrContext, (CFDictionaryRef)[NSDictionary dictionaryWithObjectsAndKeys: @"kCUIWidgetWindowFrame", @"widget", @"regularwin", @"windowtype", - (isMain ? @"normal" : @"inactive"), @"state", + (bDrawActive ? @"normal" : @"inactive"), @"state", [NSNumber numberWithDouble:unifiedHeight], @"kCUIWindowFrameUnifiedTitleBarHeightKey", [NSNumber numberWithBool:NO], @"kCUIWindowFrameDrawTitleSeparatorKey", [NSNumber numberWithBool:YES], @"is.flipped", Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/vcl/qa/cppunit/graphicfilter/data/gif/pass/sf_3e0068c9b19bb548826bed0599f65745-15940-minimized.gif and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/vcl/qa/cppunit/graphicfilter/data/gif/pass/sf_3e0068c9b19bb548826bed0599f65745-15940-minimized.gif differ diff -Nru libreoffice-l10n-4.3.1~rc2/vcl/source/control/ctrl.cxx libreoffice-l10n-4.3.2/vcl/source/control/ctrl.cxx --- libreoffice-l10n-4.3.1~rc2/vcl/source/control/ctrl.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/vcl/source/control/ctrl.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -368,31 +368,6 @@ pDev->OutputDevice::SetSettings( aOriginalSettings ); } -void Control::DataChanged( const DataChangedEvent& rDCEvt) -{ - // we don't want to lose some style settings for controls created with the - // toolkit - if ( IsCreatedWithToolkit() && - (rDCEvt.GetType() == DATACHANGED_SETTINGS) && - (rDCEvt.GetFlags() & SETTINGS_STYLE) ) - { - const AllSettings* pOldSettings = rDCEvt.GetOldSettings(); - - AllSettings aSettings = GetSettings(); - StyleSettings aStyleSettings = aSettings.GetStyleSettings(); - sal_uLong nNewOptions = aStyleSettings.GetOptions(); - - if ( pOldSettings && !(nNewOptions & STYLE_OPTION_MONO) && ( pOldSettings->GetStyleSettings().GetOptions() & STYLE_OPTION_MONO ) ) - { - nNewOptions |= STYLE_OPTION_MONO; - aStyleSettings.SetOptions( nNewOptions ); - aStyleSettings.SetMonoColor( pOldSettings->GetStyleSettings().GetMonoColor() ); - aSettings.SetStyleSettings( aStyleSettings ); - SetSettings( aSettings ); - } - } -} - ControlLayoutData::~ControlLayoutData() { if( m_pParent ) diff -Nru libreoffice-l10n-4.3.1~rc2/vcl/source/filter/igif/decode.cxx libreoffice-l10n-4.3.2/vcl/source/filter/igif/decode.cxx --- libreoffice-l10n-4.3.1~rc2/vcl/source/filter/igif/decode.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/vcl/source/filter/igif/decode.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -47,12 +47,14 @@ pTable = new GIFLZWTableEntry[ 4098 ]; - for( sal_uInt16 i = 0; i < nTableSize; i++ ) + for (sal_uInt16 i = 0; i < nTableSize; ++i) { pTable[i].pPrev = NULL; pTable[i].pFirst = pTable + i; pTable[i].nData = (sal_uInt8) i; } + + memset(pTable + nTableSize, 0, sizeof(GIFLZWTableEntry) * (4098 - nTableSize)); } GIFLZWDecompressor::~GIFLZWDecompressor() @@ -105,7 +107,7 @@ return pTarget; } -void GIFLZWDecompressor::AddToTable( sal_uInt16 nPrevCode, sal_uInt16 nCodeFirstData ) +bool GIFLZWDecompressor::AddToTable( sal_uInt16 nPrevCode, sal_uInt16 nCodeFirstData ) { GIFLZWTableEntry* pE; @@ -114,12 +116,16 @@ pE = pTable + nTableSize; pE->pPrev = pTable + nPrevCode; pE->pFirst = pE->pPrev->pFirst; - pE->nData = pTable[ nCodeFirstData ].pFirst->nData; + GIFLZWTableEntry *pEntry = pTable[nCodeFirstData].pFirst; + if (!pEntry) + return false; + pE->nData = pEntry->nData; nTableSize++; if ( ( nTableSize == (sal_uInt16) (1 << nCodeSize) ) && ( nTableSize < 4096 ) ) nCodeSize++; } + return true; } bool GIFLZWDecompressor::ProcessOneCode() @@ -151,17 +157,23 @@ if ( nCode < nClearCode ) { + bool bOk = true; if ( nOldCode != 0xffff ) - AddToTable( nOldCode, nCode ); + bOk = AddToTable(nOldCode, nCode); + if (!bOk) + return false; } else if ( ( nCode > nEOICode ) && ( nCode <= nTableSize ) ) { if ( nOldCode != 0xffff ) { + bool bOk; if ( nCode == nTableSize ) - AddToTable( nOldCode, nOldCode ); + bOk = AddToTable( nOldCode, nOldCode ); else - AddToTable( nOldCode, nCode ); + bOk = AddToTable( nOldCode, nCode ); + if (!bOk) + return false; } } else diff -Nru libreoffice-l10n-4.3.1~rc2/vcl/source/filter/igif/decode.hxx libreoffice-l10n-4.3.2/vcl/source/filter/igif/decode.hxx --- libreoffice-l10n-4.3.1~rc2/vcl/source/filter/igif/decode.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/vcl/source/filter/igif/decode.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -43,7 +43,7 @@ sal_uInt8 nBlockBufSize; sal_uInt8 nBlockBufPos; - void AddToTable(sal_uInt16 nPrevCode, sal_uInt16 nCodeFirstData); + bool AddToTable(sal_uInt16 nPrevCode, sal_uInt16 nCodeFirstData); bool ProcessOneCode(); public: diff -Nru libreoffice-l10n-4.3.1~rc2/vcl/source/gdi/bitmap4.cxx libreoffice-l10n-4.3.2/vcl/source/gdi/bitmap4.cxx --- libreoffice-l10n-4.3.1~rc2/vcl/source/gdi/bitmap4.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/vcl/source/gdi/bitmap4.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1190,10 +1190,11 @@ for( int y = 0; y < nHeight; y++ ) { BitmapColor aColor = pReadAcc->GetColor( y, x ); + sal_uInt8 luminance = aColor.GetLuminance(); BitmapColor aResultColor( - lcl_getDuotoneColorComponent( aColor.GetRed(), aColorOne.GetRed(), aColorTwo.GetRed() ) , - lcl_getDuotoneColorComponent( aColor.GetGreen(), aColorOne.GetGreen(), aColorTwo.GetGreen() ) , - lcl_getDuotoneColorComponent( aColor.GetBlue(), aColorOne.GetBlue(), aColorTwo.GetBlue() ) ); + lcl_getDuotoneColorComponent( luminance, aColorOne.GetRed(), aColorTwo.GetRed() ) , + lcl_getDuotoneColorComponent( luminance, aColorOne.GetGreen(), aColorTwo.GetGreen() ) , + lcl_getDuotoneColorComponent( luminance, aColorOne.GetBlue(), aColorTwo.GetBlue() ) ); pWriteAcc->SetPixel( y, x, aResultColor ); } } diff -Nru libreoffice-l10n-4.3.1~rc2/vcl/source/gdi/metaact.cxx libreoffice-l10n-4.3.2/vcl/source/gdi/metaact.cxx --- libreoffice-l10n-4.3.1~rc2/vcl/source/gdi/metaact.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/vcl/source/gdi/metaact.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -997,6 +997,12 @@ rIStm.ReadUInt16( nIndex ); Polygon aPoly; aPoly.Read( rIStm ); + if (nIndex >= maPolyPoly.Count()) + { + SAL_WARN("vcl.gdi", "svm contains polygon index " << nIndex + << " outside possible range " << maPolyPoly.Count()); + continue; + } maPolyPoly.Replace( aPoly, nIndex ); } } diff -Nru libreoffice-l10n-4.3.1~rc2/vcl/source/opengl/OpenGLContext.cxx libreoffice-l10n-4.3.2/vcl/source/opengl/OpenGLContext.cxx --- libreoffice-l10n-4.3.1~rc2/vcl/source/opengl/OpenGLContext.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/vcl/source/opengl/OpenGLContext.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -833,4 +833,9 @@ m_pWindow->Show(); } +bool OpenGLContext::supportMultiSampling() const +{ + return m_aGLWin.bMultiSampleSupported; +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-4.3.1~rc2/vcl/source/window/layout.cxx libreoffice-l10n-4.3.2/vcl/source/window/layout.cxx --- libreoffice-l10n-4.3.1~rc2/vcl/source/window/layout.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/vcl/source/window/layout.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1694,7 +1694,7 @@ if (pChild && pChild->IsVisible()) aChildReq = getLayoutRequisition(*pChild); - long nAvailHeight = rAllocation.Width(); + long nAvailHeight = rAllocation.Height(); long nAvailWidth = rAllocation.Width(); // vert. ScrollBar if (GetStyle() & WB_AUTOVSCROLL) @@ -1706,8 +1706,11 @@ // horz. ScrollBar if (GetStyle() & WB_AUTOHSCROLL) { - m_aHScroll.Show(nAvailWidth < aChildReq.Width()); - nAvailHeight -= getLayoutRequisition(m_aHScroll).Height(); + bool bShowHScroll = nAvailWidth < aChildReq.Width(); + m_aHScroll.Show(bShowHScroll); + + if (bShowHScroll) + nAvailHeight -= getLayoutRequisition(m_aHScroll).Height(); if (GetStyle() & WB_AUTOVSCROLL) m_aVScroll.Show(nAvailHeight < aChildReq.Height()); diff -Nru libreoffice-l10n-4.3.1~rc2/wizards/source/access2base/Field.xba libreoffice-l10n-4.3.2/wizards/source/access2base/Field.xba --- libreoffice-l10n-4.3.1~rc2/wizards/source/access2base/Field.xba 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/wizards/source/access2base/Field.xba 2014-09-16 19:56:04.000000000 +0000 @@ -514,7 +514,13 @@ If _ParentDatabase.Recordsets(_ParentName)._EditMode = dbEditNone Then Goto Trace_Error_Update With com.sun.star.sdbc.DataType If IsNull(pvValue) Then - If Column.IsNullable = com.sun.star.sdbc.ColumnValue.NULLABLE Then Column.updateNull() Else Goto Trace_Null +REM If Column.IsNullable = com.sun.star.sdbc.ColumnValue.NULLABLE Then Column.updateNull() Else Goto Trace_Null + If Column.IsNullable = com.sun.star.sdbc.ColumnValue.NULLABLE Then + Column.updateNull() + Goto Exit_Function + Else + Goto Trace_Null + End If End If Select Case Column.Type Case .BIT, .BOOLEAN Binary files /tmp/xYWob6es9w/libreoffice-l10n-4.3.1~rc2/writerfilter/qa/cppunittests/rtftok/data/pass/sf_edeb1eb341ad4c8608af9396952724a0-41170.rtf and /tmp/xLkGXR_TOZ/libreoffice-l10n-4.3.2/writerfilter/qa/cppunittests/rtftok/data/pass/sf_edeb1eb341ad4c8608af9396952724a0-41170.rtf differ diff -Nru libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/DomainMapper.cxx libreoffice-l10n-4.3.2/writerfilter/source/dmapper/DomainMapper.cxx --- libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/DomainMapper.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/writerfilter/source/dmapper/DomainMapper.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1336,6 +1336,8 @@ rContext->Insert(PROP_CHAR_BACK_COLOR, uno::makeAny( nColor )); else if (mnBackgroundColor) rContext->Insert(PROP_CHAR_BACK_COLOR, uno::makeAny( mnBackgroundColor )); + else + rContext->Insert(PROP_CHAR_BACK_COLOR, uno::makeAny( nIntValue )); } break; case NS_ooxml::LN_EG_RPrBase_em: diff -Nru libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx libreoffice-l10n-4.3.2/writerfilter/source/dmapper/DomainMapper_Impl.cxx --- libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1086,7 +1086,7 @@ dmapper_logger->attribute("isTextAppend", xTextAppend.is()); #endif - if(xTextAppend.is() && ! getTableManager( ).isIgnore() && pParaContext != NULL) + if (xTextAppend.is() && !getTableManager( ).isIgnore() && pParaContext != NULL) { try { @@ -1221,14 +1221,17 @@ } m_bParaChanged = false; - if(!pParaContext->IsFrameMode()) + if (!pParaContext || !pParaContext->IsFrameMode()) { // If the paragraph is in a frame, it's not a paragraph of the section itself. m_bIsFirstParaInSection = false; m_bIsLastParaInSection = false; } - // Reset the frame properties for the next paragraph - pParaContext->ResetFrameProperties(); + if (pParaContext) + { + // Reset the frame properties for the next paragraph + pParaContext->ResetFrameProperties(); + } #ifdef DEBUG_DOMAINMAPPER dmapper_logger->endElement(); @@ -1351,8 +1354,13 @@ uno::Reference< text::XTextContent > xOLE( m_xTextFactory->createInstance(sEmbeddedService), uno::UNO_QUERY_THROW ); uno::Reference< beans::XPropertySet > xOLEProperties(xOLE, uno::UNO_QUERY_THROW); - xOLEProperties->setPropertyValue(PropertyNameSupplier::GetPropertyNameSupplier().GetName( PROP_STREAM_NAME ), - uno::makeAny( rStreamName )); + OUString aCLSID = pOLEHandler->getCLSID(); + if (aCLSID.isEmpty()) + xOLEProperties->setPropertyValue(PropertyNameSupplier::GetPropertyNameSupplier().GetName( PROP_STREAM_NAME ), + uno::makeAny( rStreamName )); + else + xOLEProperties->setPropertyValue("CLSID", uno::makeAny(OUString(aCLSID))); + awt::Size aSize = pOLEHandler->getSize(); if( !aSize.Width ) aSize.Width = 1000; @@ -1394,6 +1402,9 @@ appendTextContent( xOLE, uno::Sequence< beans::PropertyValue >() ); + if (!aCLSID.isEmpty()) + pOLEHandler->importStream(m_xComponentContext, GetTextDocument(), xOLE); + } catch( const uno::Exception& ) { @@ -1498,6 +1509,7 @@ try { bool bLeft = eType == SectionPropertyMap::PAGE_LEFT; + bool bFirst = eType == SectionPropertyMap::PAGE_FIRST; if ((!bLeft && !GetSettingsTable()->GetEvenAndOddHeaders()) || (GetSettingsTable()->GetEvenAndOddHeaders())) { PropertyNameSupplier& rPropNameSupplier = PropertyNameSupplier::GetPropertyNameSupplier(); @@ -1509,7 +1521,7 @@ // If the 'Different Even & Odd Pages' flag is turned on - do not ignore it // Even if the 'Even' header/footer is blank - the flag should be imported (so it would look in LO like in Word) - if (GetSettingsTable()->GetEvenAndOddHeaders()) + if (!bFirst && GetSettingsTable()->GetEvenAndOddHeaders()) xPageStyle->setPropertyValue(rPropNameSupplier.GetName(ePropShared), uno::makeAny(false)); //set the interface @@ -1721,6 +1733,9 @@ void DomainMapper_Impl::PopFootOrEndnote() { + // In case the foot or endnote did not contain a tab. + m_bIgnoreNextTab = false; + if (!m_aTextAppendStack.empty()) m_aTextAppendStack.pop(); @@ -1931,6 +1946,7 @@ rPropNameSupplier.GetName( PROP_OPAQUE ), uno::makeAny( true ) ); } + m_bParaChanged = true; } catch ( const uno::Exception& e ) { diff -Nru libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/DomainMapperTableHandler.cxx libreoffice-l10n-4.3.2/writerfilter/source/dmapper/DomainMapperTableHandler.cxx --- libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/DomainMapperTableHandler.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/writerfilter/source/dmapper/DomainMapperTableHandler.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -29,9 +29,11 @@ #include #include #include +#include #include #include #include +#include #ifdef DEBUG_DMAPPER_TABLE_HANDLER #include @@ -886,12 +888,50 @@ return aCellProperties; } +/// Do all cells in this row have a CellHideMark property? +bool lcl_hideMarks(PropertyMapVector1& rCellProperties) +{ + for (size_t nCell = 0; nCell < rCellProperties.size(); ++nCell) + if (rCellProperties[nCell]->find(PROP_CELL_HIDE_MARK) == rCellProperties[nCell]->end()) + return false; + return true; +} + +/// Are all cells in this row empty? +bool lcl_emptyRow(TableSequence_t& rTableSeq, sal_Int32 nRow) +{ + if (nRow >= rTableSeq.getLength()) + { + SAL_WARN("writerfilter", "m_aCellProperties not in sync with m_pTableSeq?"); + return false; + } + + RowSequence_t rRowSeq = rTableSeq[nRow]; + uno::Reference xTextRangeCompare(rRowSeq[0][0]->getText(), uno::UNO_QUERY); + try + { + for (sal_Int32 nCell = 0; nCell < rRowSeq.getLength(); ++nCell) + // See SwXText::Impl::ConvertCell(), we need to compare the start of + // the start and the end of the end. However for our text ranges, only + // the starts are set, so compareRegionStarts() does what we need. + if (xTextRangeCompare->compareRegionStarts(rRowSeq[nCell][0], rRowSeq[nCell][1]) != 0) + return false; + } + catch (lang::IllegalArgumentException& e) + { + SAL_WARN("writerfilter", "compareRegionStarts() failed: " << e.Message); + return false; + } + return true; +} + RowPropertyValuesSeq_t DomainMapperTableHandler::endTableGetRowProperties() { #ifdef DEBUG_DMAPPER_TABLE_HANDLER dmapper_logger->startElement("getRowProperties"); #endif + static const int MINLAY = 23; // sw/inc/swtypes.hxx, minimal possible size of frames. RowPropertyValuesSeq_t aRowProperties( m_aRowProperties.size() ); PropertyMapVector1::const_iterator aRowIter = m_aRowProperties.begin(); PropertyMapVector1::const_iterator aRowIterEnd = m_aRowProperties.end(); @@ -911,6 +951,14 @@ if (aIter != aRowIter->get()->end()) aRowIter->get()->erase(aIter); + if (lcl_hideMarks(m_aCellProperties[nRow]) && lcl_emptyRow(*m_pTableSeq, nRow)) + { + // We have CellHideMark on all cells, and also all cells are empty: + // Set the row height to minimal as Word does. + (*aRowIter)->Insert(PROP_SIZE_TYPE, uno::makeAny(text::SizeType::FIX)); + (*aRowIter)->Insert(PROP_HEIGHT, uno::makeAny(static_cast(ConversionHelper::convertTwipToMM100(MINLAY)))); + } + aRowProperties[nRow] = (*aRowIter)->GetPropertyValues(); #ifdef DEBUG_DMAPPER_TABLE_HANDLER ((*aRowIter)->dumpXml( dmapper_logger )); diff -Nru libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/OLEHandler.cxx libreoffice-l10n-4.3.2/writerfilter/source/dmapper/OLEHandler.cxx --- libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/OLEHandler.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/writerfilter/source/dmapper/OLEHandler.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -24,9 +24,13 @@ #include #include #include +#include #include #include #include +#include +#include +#include #include #include #include @@ -34,6 +38,7 @@ #include #include #include +#include #include #include #include @@ -177,7 +182,7 @@ } -void OLEHandler::saveInteropProperties( uno::Reference< text::XTextDocument > xTextDocument, const OUString& sObjectName ) +void OLEHandler::saveInteropProperties( uno::Reference< text::XTextDocument > xTextDocument, const OUString& sObjectName, const OUString& sOldObjectName ) { const OUString sGrabBagPropName = UNO_NAME_MISC_OBJ_INTEROPGRABBAG; const OUString sEmbeddingsPropName = "EmbeddedObjects"; @@ -200,6 +205,17 @@ // save ProgID of current object sal_Int32 length = objectsList.getLength(); + + // If we got an "old name", erase that first. + if (!sOldObjectName.isEmpty()) + { + comphelper::SequenceAsHashMap aMap(objectsList); + comphelper::SequenceAsHashMap::iterator it = aMap.find(sOldObjectName); + if (it != aMap.end()) + aMap.erase(it); + objectsList = aMap.getAsConstPropertyValueList(); + } + objectsList.realloc( length + 1 ); objectsList[length].Name = sObjectName; objectsList[length].Value = uno::Any( m_sProgId ); @@ -218,6 +234,56 @@ xDocProps->setPropertyValue( sGrabBagPropName, uno::Any( aGrabBag ) ); } +void OLEHandler::importStream(uno::Reference xComponentContext, uno::Reference xTextDocument, uno::Reference xOLE) +{ + OUString aFilterService, aFilterName; + if (m_sProgId == "Word.Document.12") + { + aFilterService = "com.sun.star.comp.Writer.WriterFilter"; + aFilterName = "writer_MS_Word_2007"; + } + + if (!m_xInputStream.is() || aFilterService.isEmpty()) + return; + + // Create the filter service. + uno::Reference xInterface = xComponentContext->getServiceManager()->createInstanceWithContext(aFilterService, xComponentContext); + + // Initialize it. + uno::Sequence aArgs(1); + aArgs[0].Name = "Type"; + aArgs[0].Value <<= OUString(aFilterName); + uno::Sequence aAnySeq(1); + aAnySeq[0] <<= aArgs; + uno::Reference xInitialization(xInterface, uno::UNO_QUERY); + xInitialization->initialize(aAnySeq); + + // Set target document. + uno::Reference xImporter(xInterface, uno::UNO_QUERY); + uno::Reference xSupplier(xOLE, uno::UNO_QUERY); + uno::Reference xEmbeddedObject(xSupplier->getEmbeddedObject(), uno::UNO_QUERY); + xImporter->setTargetDocument( xEmbeddedObject ); + + // Import the input stream. + utl::MediaDescriptor aMediaDescriptor; + aMediaDescriptor["InputStream"] <<= m_xInputStream; + uno::Reference xFilter(xInterface, uno::UNO_QUERY); + xFilter->filter(aMediaDescriptor.getAsConstPropertyValueList()); + + // Now that the data is imported, update the (typically) changed stream name. + uno::Reference xPropertySet(xOLE, uno::UNO_QUERY); + saveInteropProperties(xTextDocument, xPropertySet->getPropertyValue("StreamName").get(), m_aURL); +} + +OUString OLEHandler::getCLSID() +{ + OUString aRet; + + if (m_sProgId == "Word.Document.12") + aRet = "8BC6B165-B1B2-4EDD-aa47-dae2ee689dd6"; + + return aRet; +} OUString OLEHandler::copyOLEOStream( uno::Reference< text::XTextDocument > xTextDocument ) { @@ -260,6 +326,7 @@ } uno::Reference< lang::XComponent > xComp( xEmbeddedResolver, uno::UNO_QUERY_THROW ); xComp->dispose(); + m_aURL = aURL; } catch( const uno::Exception& ) { diff -Nru libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/OLEHandler.hxx libreoffice-l10n-4.3.2/writerfilter/source/dmapper/OLEHandler.hxx --- libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/OLEHandler.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/writerfilter/source/dmapper/OLEHandler.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -34,8 +34,12 @@ class XInputStream; } namespace text{ + class XTextContent; class XTextDocument; } + namespace uno { + class XComponentContext; + } }}} namespace writerfilter { namespace dmapper @@ -51,6 +55,8 @@ OUString m_sDrawAspect; OUString m_sObjectId; OUString m_sr_id; + /// The stream URL right after the import of the raw data. + OUString m_aURL; sal_Int32 m_nDxaOrig; sal_Int32 m_nDyaOrig; @@ -72,7 +78,7 @@ // Interoperability virtual void saveInteropProperties( ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextDocument > xTextDocument, - const OUString& sObjectName ); + const OUString& sObjectName, const OUString& sOldObjectName = OUString() ); public: OLEHandler(DomainMapper& rDomainMapper); @@ -83,6 +89,13 @@ inline bool isOLEObject( ) { return m_xInputStream.is( ); }; OUString copyOLEOStream( ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextDocument > xTextDocument ); + /// In case of a valid CLSID, import the native data to the previously created empty OLE object. + void importStream(css::uno::Reference xComponentContext, + css::uno::Reference xTextDocument, + css::uno::Reference xOLE); + + /// Get the CLSID of the OLE object, in case we can find one based on m_sProgId. + OUString getCLSID(); ::com::sun::star::awt::Size getSize() const { return m_aShapeSize;} ::com::sun::star::awt::Point getPosition() const { return m_aShapePosition;} diff -Nru libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/PropertyIds.cxx libreoffice-l10n-4.3.2/writerfilter/source/dmapper/PropertyIds.cxx --- libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/PropertyIds.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/writerfilter/source/dmapper/PropertyIds.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -393,6 +393,7 @@ case PROP_TABLE_INTEROP_GRAB_BAG : sName = "TableInteropGrabBag"; break; case PROP_APPLY_PARAGRAPH_MARK_FORMAT_TO_NUMBERING : sName = "ApplyParagraphMarkFormatToNumbering"; break; case PROP_CELL_DIRECTION: sName = "CellDirection"; break; + case PROP_CELL_HIDE_MARK: sName = "CellHideMark"; break; } ::std::pair aInsertIt = m_pImpl->aNameMap.insert( PropertyNameMap_t::value_type( eId, sName )); diff -Nru libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/PropertyIds.hxx libreoffice-l10n-4.3.2/writerfilter/source/dmapper/PropertyIds.hxx --- libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/PropertyIds.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/writerfilter/source/dmapper/PropertyIds.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -365,6 +365,7 @@ ,PROP_INDEX_ENTRY_TYPE ,PROP_APPLY_PARAGRAPH_MARK_FORMAT_TO_NUMBERING ,PROP_CELL_DIRECTION + ,PROP_CELL_HIDE_MARK }; struct PropertyNameSupplier_Impl; class PropertyNameSupplier diff -Nru libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/PropertyMap.cxx libreoffice-l10n-4.3.2/writerfilter/source/dmapper/PropertyMap.cxx --- libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/PropertyMap.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/writerfilter/source/dmapper/PropertyMap.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include @@ -31,6 +32,7 @@ #include #include #include +#include #include #include #include @@ -426,6 +428,12 @@ m_aFirstPageStyle = uno::Reference< beans::XPropertySet > ( xTextFactory->createInstance("com.sun.star.style.PageStyle"), uno::UNO_QUERY); + // Ensure that m_aFollowPageStyle has been created + GetPageStyle( xPageStyles, xTextFactory, false ); + // Chain m_aFollowPageStyle to be after m_aFirstPageStyle + m_aFirstPageStyle->setPropertyValue("FollowStyle", + uno::makeAny(m_sFollowPageStyleName)); + if (xPageStyles.is()) xPageStyles->insertByName( m_sFirstPageStyleName, uno::makeAny(m_aFirstPageStyle) ); } @@ -707,6 +715,74 @@ #define MIN_HEAD_FOOT_HEIGHT 100 //minimum header/footer height +void SectionPropertyMap::CopyHeaderFooter( uno::Reference< beans::XPropertySet > xPrevStyle, + uno::Reference< beans::XPropertySet > xStyle ) +{ + PropertyNameSupplier& rPropNameSupplier = PropertyNameSupplier::GetPropertyNameSupplier(); + + try { + // Loop over the Header and Footer properties to copy them + static const PropertyIds aProperties[] = + { + PROP_HEADER_TEXT, + PROP_FOOTER_TEXT, + }; + + bool bHasPrevHeader = false; + bool bHasHeader = false; + + OUString sHeaderIsOn = rPropNameSupplier.GetName( PROP_HEADER_IS_ON ); + if (xPrevStyle.is()) + xPrevStyle->getPropertyValue( sHeaderIsOn ) >>= bHasPrevHeader; + if (xStyle.is()) + xStyle->getPropertyValue( sHeaderIsOn ) >>= bHasHeader; + bool bCopyHeader = bHasPrevHeader && !bHasHeader; + + if ( bCopyHeader ) + xStyle->setPropertyValue( sHeaderIsOn, uno::makeAny( sal_True ) ); + + bool bHasPrevFooter = false; + bool bHasFooter = false; + + OUString sFooterIsOn = rPropNameSupplier.GetName( PROP_FOOTER_IS_ON ); + if (xPrevStyle.is()) + xPrevStyle->getPropertyValue( sFooterIsOn ) >>= bHasPrevFooter; + if (xStyle.is()) + xStyle->getPropertyValue( sFooterIsOn ) >>= bHasFooter; + bool bCopyFooter = bHasPrevFooter && !bHasFooter; + + if ( bCopyFooter && xStyle.is() ) + xStyle->setPropertyValue( sFooterIsOn, uno::makeAny( sal_True ) ); + + // Copying the text properties + for ( int i = 0, nNbProps = 2; i < nNbProps; i++ ) + { + bool bIsHeader = ( i < nNbProps / 2 ); + PropertyIds aPropId = aProperties[i]; + OUString sName = rPropNameSupplier.GetName( aPropId ); + + if ( ( bIsHeader && bCopyHeader ) || ( !bIsHeader && bCopyFooter ) ) + { + SAL_INFO("writerfilter", "Copying " << sName); + // TODO has to be copied + uno::Reference< text::XTextCopy > xTxt; + if (xStyle.is()) + xTxt.set(xStyle->getPropertyValue( sName ), uno::UNO_QUERY_THROW ); + + uno::Reference< text::XTextCopy > xPrevTxt; + if (xPrevStyle.is()) + xPrevTxt.set(xPrevStyle->getPropertyValue( sName ), uno::UNO_QUERY_THROW ); + + xTxt->copyText( xPrevTxt ); + } + } + } + catch ( const uno::Exception& e ) + { + SAL_INFO("writerfilter", "An exception occurred in SectionPropertyMap::CopyHeaderFooter( ) - " << e.Message); + } +} + void SectionPropertyMap::CopyLastHeaderFooter( bool bFirstPage, DomainMapper_Impl& rDM_Impl ) { SAL_INFO("writerfilter", "START>>> SectionPropertyMap::CopyLastHeaderFooter()"); @@ -721,70 +797,7 @@ rDM_Impl.GetPageStyles(), rDM_Impl.GetTextFactory(), bFirstPage ); - - PropertyNameSupplier& rPropNameSupplier = PropertyNameSupplier::GetPropertyNameSupplier(); - - try { - // Loop over the Header and Footer properties to copy them - static const PropertyIds aProperties[] = - { - PROP_HEADER_TEXT, - PROP_FOOTER_TEXT, - }; - - bool bHasPrevHeader = false; - bool bHasHeader = false; - - OUString sHeaderIsOn = rPropNameSupplier.GetName( PROP_HEADER_IS_ON ); - if (xPrevStyle.is()) - xPrevStyle->getPropertyValue( sHeaderIsOn ) >>= bHasPrevHeader; - if (xStyle.is()) - xStyle->getPropertyValue( sHeaderIsOn ) >>= bHasHeader; - bool bCopyHeader = bHasPrevHeader && !bHasHeader; - - if ( bCopyHeader ) - xStyle->setPropertyValue( sHeaderIsOn, uno::makeAny( sal_True ) ); - - bool bHasPrevFooter = false; - bool bHasFooter = false; - - OUString sFooterIsOn = rPropNameSupplier.GetName( PROP_FOOTER_IS_ON ); - if (xPrevStyle.is()) - xPrevStyle->getPropertyValue( sFooterIsOn ) >>= bHasPrevFooter; - if (xStyle.is()) - xStyle->getPropertyValue( sFooterIsOn ) >>= bHasFooter; - bool bCopyFooter = bHasPrevFooter && !bHasFooter; - - if ( bCopyFooter && xStyle.is() ) - xStyle->setPropertyValue( sFooterIsOn, uno::makeAny( sal_True ) ); - - // Copying the text properties - for ( int i = 0, nNbProps = 2; i < nNbProps; i++ ) - { - bool bIsHeader = ( i < nNbProps / 2 ); - PropertyIds aPropId = aProperties[i]; - OUString sName = rPropNameSupplier.GetName( aPropId ); - - if ( ( bIsHeader && bCopyHeader ) || ( !bIsHeader && bCopyFooter ) ) - { - SAL_INFO("writerfilter", "Copying " << sName); - // TODO has to be copied - uno::Reference< text::XTextCopy > xTxt; - if (xStyle.is()) - xTxt.set(xStyle->getPropertyValue( sName ), uno::UNO_QUERY_THROW ); - - uno::Reference< text::XTextCopy > xPrevTxt; - if (xPrevStyle.is()) - xPrevTxt.set(xPrevStyle->getPropertyValue( sName ), uno::UNO_QUERY_THROW ); - - xTxt->copyText( xPrevTxt ); - } - } - } - catch ( const uno::Exception& e ) - { - SAL_INFO("writerfilter", "An exception occurred in SectionPropertyMap::CopyLastHeaderFooter( ) - " << e.Message); - } + CopyHeaderFooter( xPrevStyle, xStyle ); } SAL_INFO("writerfilter", "END>>> SectionPropertyMap::CopyLastHeaderFooter()"); } @@ -862,6 +875,7 @@ // Restore original top margin, so we don't end up with a smaller margin in case we have to produce two page styles from one Word section. m_nTopMargin = nTopMargin; m_nHeaderTop = nHeaderTop; + m_nBottomMargin = nBottomMargin; m_nHeaderBottom = nHeaderBottom; } @@ -956,7 +970,8 @@ } } - //depending on the break type no page styles should be created + // break type : 0 - No break 1 - New Column 2 - New page 3 - Even page 4 - odd page + // depending on the break type no page styles should be created // If the section type is missing, but we have columns, then this should be // handled as a continuous section break. if(m_nBreakType == 0 || (m_nBreakType == -1 && m_nColumnCount > 0)) @@ -1122,11 +1137,6 @@ if( xColumns.is() ) xFirstPageStyle->setPropertyValue( rPropNameSupplier.GetName( PROP_TEXT_COLUMNS ), uno::makeAny( xColumns )); - - // If the 'Different First Page' flag is turned on - do not ignore it - // If the 'Diffferent First Page' is non-checked, it must be checked - the flag should be imported (so it would look in LO like in Word) - xFirstPageStyle->setPropertyValue(rPropNameSupplier.GetName( PROP_FIRST_IS_SHARED ), uno::makeAny( false )); - xFollowPageStyle->setPropertyValue(rPropNameSupplier.GetName( PROP_FIRST_IS_SHARED ), uno::makeAny( false )); } ApplyBorderToPageStyles( rDM_Impl.GetPageStyles( ), rDM_Impl.GetTextFactory( ), m_nBorderParams ); @@ -1136,51 +1146,44 @@ { //now apply this break at the first paragraph of this section uno::Reference xRangeProperties(lcl_GetRangeProperties(m_bIsFirstSection, rDM_Impl, m_xStartingRange)); - /* break type - 0 - No break 1 - New Column 2 - New page 3 - Even page 4 - odd page */ - if ((m_bTitlePage && m_bIsFirstSection) || !m_bTitlePage) - { - if (xRangeProperties.is() && rDM_Impl.IsNewDoc()) - xRangeProperties->setPropertyValue(rPropNameSupplier.GetName( PROP_PAGE_DESC_NAME ), - uno::makeAny( m_bTitlePage ? m_sFirstPageStyleName : m_sFollowPageStyleName )); - } - else + + // Handle page breaks with odd/even page numbering. We need to use an extra page style for setting the page style + // to left/right, because if we set it to the normal style, we'd set it to "First Page"/"Default Style", which would + // break them (all default pages would be only left or right). + if (m_nBreakType == 3 || m_nBreakType == 4) { - // In this miserable situation (second or later section on a title page), make sure that the header / footer is not lost. - uno::Reference< container::XNameAccess > xPageStyles(rDM_Impl.GetPageStyles(), uno::UNO_QUERY); - if (xPageStyles->hasByName(m_sFollowPageStyleName)) + OUString* pageStyle = m_bTitlePage ? &m_sFirstPageStyleName : &m_sFollowPageStyleName; + OUString evenOddStyleName = lcl_FindUnusedPageStyleName(rDM_Impl.GetPageStyles()->getElementNames()); + uno::Reference< beans::XPropertySet > evenOddStyle( + rDM_Impl.GetTextFactory()->createInstance("com.sun.star.style.PageStyle"), + uno::UNO_QUERY); + // Unfortunately using setParent() does not work for page styles, so make a deep copy of the page style. + uno::Reference< beans::XPropertySet > pageProperties( m_bTitlePage ? m_aFirstPageStyle : m_aFollowPageStyle ); + uno::Reference< beans::XPropertySetInfo > pagePropertiesInfo( pageProperties->getPropertySetInfo()); + uno::Sequence< beans::Property > propertyList( pagePropertiesInfo->getProperties()); + for( int i = 0; i < propertyList.getLength(); ++i ) { - uno::Reference xCurrent(xPageStyles->getByName(rPropNameSupplier.GetName(PROP_STANDARD)), uno::UNO_QUERY); - uno::Reference xFollow(xPageStyles->getByName(m_sFollowPageStyleName), uno::UNO_QUERY); - - if (xFollow->getPropertyValue(rPropNameSupplier.GetName(PROP_HEADER_IS_ON)).get()) - { - xCurrent->setPropertyValue(rPropNameSupplier.GetName(PROP_HEADER_IS_ON), uno::makeAny(sal_True)); - uno::Reference xCurrentRange(xCurrent->getPropertyValue(rPropNameSupplier.GetName(PROP_HEADER_TEXT)), uno::UNO_QUERY_THROW); - xCurrentRange->setString(""); - uno::Reference xCurrentTxt(xCurrentRange, uno::UNO_QUERY_THROW); - uno::Reference xFollowTxt(xFollow->getPropertyValue(rPropNameSupplier.GetName(PROP_HEADER_TEXT)), uno::UNO_QUERY_THROW); - xCurrentTxt->copyText(xFollowTxt); - } - if (xFollow->getPropertyValue(rPropNameSupplier.GetName(PROP_FOOTER_IS_ON)).get()) - { - xCurrent->setPropertyValue(rPropNameSupplier.GetName(PROP_FOOTER_IS_ON), uno::makeAny(sal_True)); - uno::Reference xCurrentRange(xCurrent->getPropertyValue(rPropNameSupplier.GetName(PROP_FOOTER_TEXT)), uno::UNO_QUERY_THROW); - xCurrentRange->setString(""); - uno::Reference xCurrentTxt(xCurrentRange, uno::UNO_QUERY_THROW); - uno::Reference xFollowTxt(xFollow->getPropertyValue(rPropNameSupplier.GetName(PROP_FOOTER_TEXT)), uno::UNO_QUERY_THROW); - xCurrentTxt->copyText(xFollowTxt); - } + if(( propertyList[i].Attributes & beans::PropertyAttribute::READONLY ) == 0 ) + evenOddStyle->setPropertyValue( propertyList[ i ].Name, pageProperties->getPropertyValue( propertyList[ i ].Name )); } + evenOddStyle->setPropertyValue("FollowStyle", uno::makeAny(*pageStyle)); + rDM_Impl.GetPageStyles()->insertByName( evenOddStyleName, uno::makeAny( evenOddStyle ) ); + evenOddStyle->setPropertyValue("HeaderIsOn", uno::makeAny(sal_False)); + evenOddStyle->setPropertyValue("FooterIsOn", uno::makeAny(sal_False)); + CopyHeaderFooter( pageProperties, evenOddStyle ); + *pageStyle = evenOddStyleName; // And use it instead of the original one (which is set as follow of this one). + if (m_nBreakType == 3) + evenOddStyle->setPropertyValue(rPropNameSupplier.GetName(PROP_PAGE_STYLE_LAYOUT), uno::makeAny(style::PageStyleLayout_LEFT)); + else if (m_nBreakType == 4) + evenOddStyle->setPropertyValue(rPropNameSupplier.GetName(PROP_PAGE_STYLE_LAYOUT), uno::makeAny(style::PageStyleLayout_RIGHT)); } - // handle page breaks with odd/even page numbering - style::PageStyleLayout nPageStyleLayout(style::PageStyleLayout_ALL); - if (m_nBreakType == 3) - nPageStyleLayout = style::PageStyleLayout_LEFT; - else if (m_nBreakType == 4) - nPageStyleLayout = style::PageStyleLayout_RIGHT; - if (nPageStyleLayout) - xFollowPageStyle->setPropertyValue(rPropNameSupplier.GetName(PROP_PAGE_STYLE_LAYOUT), uno::makeAny(nPageStyleLayout)); + + if (xRangeProperties.is() && rDM_Impl.IsNewDoc()) + xRangeProperties->setPropertyValue( + rPropNameSupplier.GetName( PROP_PAGE_DESC_NAME ), + uno::makeAny( m_bTitlePage ? m_sFirstPageStyleName + : m_sFollowPageStyleName )); + if(m_bPageNoRestart || m_nPageNumber >= 0) { sal_Int16 nPageNumber = m_nPageNumber >= 0 ? static_cast< sal_Int16 >(m_nPageNumber) : 1; diff -Nru libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/PropertyMap.hxx libreoffice-l10n-4.3.2/writerfilter/source/dmapper/PropertyMap.hxx --- libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/PropertyMap.hxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/writerfilter/source/dmapper/PropertyMap.hxx 2014-09-16 19:56:04.000000000 +0000 @@ -205,6 +205,8 @@ ::com::sun::star::uno::Reference< com::sun::star::text::XTextColumns > ApplyColumnProperties( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > xFollowPageStyle ); void CopyLastHeaderFooter( bool bFirstPage, DomainMapper_Impl& rDM_Impl ); + void CopyHeaderFooter( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > xPrevStyle, + ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > xStyle ); void PrepareHeaderFooterProperties( bool bFirstPage ); bool HasHeader( bool bFirstPage ) const; bool HasFooter( bool bFirstPage ) const; diff -Nru libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/StyleSheetTable.cxx libreoffice-l10n-4.3.2/writerfilter/source/dmapper/StyleSheetTable.cxx --- libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/StyleSheetTable.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/writerfilter/source/dmapper/StyleSheetTable.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -1161,7 +1161,8 @@ xPropertySet->setPropertyValue("StyleInteropGrabBag", uno::makeAny(aGrabBag)); } - if (pEntry->bAutoRedefine) + // List styles don't support automatic update. + if (pEntry->bAutoRedefine && !bListStyle) xPropertySet->setPropertyValue("IsAutoUpdate", uno::makeAny(sal_True)); } else if(pEntry->nStyleTypeCode == STYLE_TYPE_TABLE) diff -Nru libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/TablePropertiesHandler.cxx libreoffice-l10n-4.3.2/writerfilter/source/dmapper/TablePropertiesHandler.cxx --- libreoffice-l10n-4.3.1~rc2/writerfilter/source/dmapper/TablePropertiesHandler.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/writerfilter/source/dmapper/TablePropertiesHandler.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -381,6 +381,14 @@ } } break; + case NS_ooxml::LN_CT_TcPrBase_hideMark: + if (nIntValue) + { + TablePropertyMapPtr pPropMap(new TablePropertyMap()); + pPropMap->Insert(PROP_CELL_HIDE_MARK, uno::makeAny(nIntValue)); + cellProps(pPropMap); + } + break; default: // Not handled here, give the next handler a chance. bRet = false; diff -Nru libreoffice-l10n-4.3.1~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx libreoffice-l10n-4.3.2/writerfilter/source/rtftok/rtfdocumentimpl.cxx --- libreoffice-l10n-4.3.1~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx 2014-08-26 04:07:49.000000000 +0000 +++ libreoffice-l10n-4.3.2/writerfilter/source/rtftok/rtfdocumentimpl.cxx 2014-09-16 19:56:04.000000000 +0000 @@ -467,6 +467,10 @@ if (m_bNeedPap) { m_bNeedPap = false; // reset early, so we can avoid recursion when calling ourselves + + if (m_aStates.empty()) + return; + if (!m_aStates.top().pCurrentBuffer) { writerfilter::Reference::Pointer_t const pParagraphProperties( @@ -921,14 +925,14 @@ RTFSprms aPoshSprms; if (m_aStates.top().aShape.nHoriOrientRelationToken > 0) aPoshSprms.set(NS_ooxml::LN_CT_PosH_relativeFrom, RTFValue::Pointer_t(new RTFValue(m_aStates.top().aShape.nHoriOrientRelationToken))); - if (m_aStates.top().aShape.nLeft > 0) + if (m_aStates.top().aShape.nLeft != 0) writerfilter::dmapper::PositionHandler::setPositionOffset(OUString::number(MM100_TO_EMU(m_aStates.top().aShape.nLeft)), false); aAnchorSprms.set(NS_ooxml::LN_CT_Anchor_positionH, RTFValue::Pointer_t(new RTFValue(aPoshSprms))); RTFSprms aPosvSprms; if (m_aStates.top().aShape.nVertOrientRelationToken > 0) aPosvSprms.set(NS_ooxml::LN_CT_PosV_relativeFrom, RTFValue::Pointer_t(new RTFValue(m_aStates.top().aShape.nVertOrientRelationToken))); - if (m_aStates.top().aShape.nTop > 0) + if (m_aStates.top().aShape.nTop != 0) writerfilter::dmapper::PositionHandler::setPositionOffset(OUString::number(MM100_TO_EMU(m_aStates.top().aShape.nTop)), true); aAnchorSprms.set(NS_ooxml::LN_CT_Anchor_positionV, RTFValue::Pointer_t(new RTFValue(aPosvSprms))); @@ -3743,7 +3747,7 @@ break; case RTF_HIGHLIGHT: { - RTFValue::Pointer_t pValue(new RTFValue(getColorTable(nParam))); + RTFValue::Pointer_t pValue(new RTFValue(nParam ? getColorTable(nParam) : COL_AUTO)); m_aStates.top().aCharacterSprms.set(NS_ooxml::LN_EG_RPrBase_highlight, pValue); } break;